Ubuntu
		
	commited on
		
		
					Commit 
							
							·
						
						8c0ba5b
	
1
								Parent(s):
							
							8a989e9
								
upload int8 onnx model
Browse filesSigned-off-by: Ubuntu <azure-node-inc@ICX-96c-672m-node1.154d1uripq3e3njnrimblpn0hg.cx.internal.cloudapp.net>
- README.md +89 -0
- added_tokens.json +108 -0
- config.json +202 -0
- decoder_model.onnx +3 -0
- decoder_with_past_model.onnx +3 -0
- encoder_model.onnx +3 -0
- generation_config.json +247 -0
- merges.txt +0 -0
- normalizer.json +1742 -0
- preprocessor_config.json +14 -0
- special_tokens_map.json +133 -0
- tokenizer.json +0 -0
- tokenizer_config.json +36 -0
- vocab.json +0 -0
    	
        README.md
    CHANGED
    
    | @@ -1,3 +1,92 @@ | |
| 1 | 
             
            ---
         | 
| 2 | 
             
            license: apache-2.0
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
| 3 | 
             
            ---
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
             
            ---
         | 
| 2 | 
             
            license: apache-2.0
         | 
| 3 | 
            +
            datasets:
         | 
| 4 | 
            +
            - librispeech_asr
         | 
| 5 | 
            +
            metrics:
         | 
| 6 | 
            +
            - wer
         | 
| 7 | 
            +
            pipeline_tag: automatic-speech-recognition
         | 
| 8 | 
            +
            tags:
         | 
| 9 | 
            +
            - automatic-speech-recognition
         | 
| 10 | 
            +
            - int8
         | 
| 11 | 
            +
            - ONNX
         | 
| 12 | 
            +
            - PostTrainingDynamic
         | 
| 13 | 
            +
            - Intel® Neural Compressor
         | 
| 14 | 
            +
            - neural-compressor
         | 
| 15 | 
            +
            library_name: transformers
         | 
| 16 | 
             
            ---
         | 
| 17 | 
            +
            ## Model Details: INT8 Whisper tiny
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            Whisper is a pre-trained model for automatic speech recognition (ASR) and speech translation. Trained on 680k hours of labelled data, Whisper models demonstrate a strong ability to generalise to many datasets and domains without the need for fine-tuning.
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            This int8 ONNX model is generated by [neural-compressor](https://github.com/intel/neural-compressor) and the fp32 model can be exported with below command:
         | 
| 22 | 
            +
            ```shell
         | 
| 23 | 
            +
            optimum-cli export onnx --model openai/whisper-small whisper-small-with-past/ --task automatic-speech-recognition-with-past --opset 13
         | 
| 24 | 
            +
            ```
         | 
| 25 | 
            +
             | 
| 26 | 
            +
            | Model Detail | Description |
         | 
| 27 | 
            +
            | ----------- | ----------- | 
         | 
| 28 | 
            +
            | Model Authors - Company | Intel | 
         | 
| 29 | 
            +
            | Date | August 25, 2023 | 
         | 
| 30 | 
            +
            | Version | 1 | 
         | 
| 31 | 
            +
            | Type | Speech Recognition | 
         | 
| 32 | 
            +
            | Paper or Other Resources | - | 
         | 
| 33 | 
            +
            | License | Apache 2.0 |
         | 
| 34 | 
            +
            | Questions or Comments | [Community Tab](https://huggingface.co/Intel/whisper-tiny-int8-dynamic/discussions)|
         | 
| 35 | 
            +
             | 
| 36 | 
            +
            | Intended Use | Description |
         | 
| 37 | 
            +
            | ----------- | ----------- | 
         | 
| 38 | 
            +
            | Primary intended uses | You can use the raw model for automatic speech recognition inference | 
         | 
| 39 | 
            +
            | Primary intended users | Anyone doing automatic speech recognition inference | 
         | 
| 40 | 
            +
            | Out-of-scope uses | This model in most cases will need to be fine-tuned for your particular task.  The model should not be used to intentionally create hostile or alienating environments for people.|
         | 
| 41 | 
            +
             | 
| 42 | 
            +
             | 
| 43 | 
            +
            ### How to use
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            Download the model by cloning the repository:
         | 
| 46 | 
            +
            ```shell
         | 
| 47 | 
            +
            git clone https://huggingface.co/Intel/whisper-tiny-int8-dynamic
         | 
| 48 | 
            +
            ```
         | 
| 49 | 
            +
             | 
| 50 | 
            +
            Evaluate the model with below code:
         | 
| 51 | 
            +
            ```python
         | 
| 52 | 
            +
            import os
         | 
| 53 | 
            +
            from evaluate import load
         | 
| 54 | 
            +
            from datasets import load_dataset
         | 
| 55 | 
            +
            from transformers import WhisperForConditionalGeneration, WhisperProcessor, AutoConfig
         | 
| 56 | 
            +
            model_name = 'openai/whisper-tiny'
         | 
| 57 | 
            +
            model_path = 'whisper-tiny-int8-dynamic'
         | 
| 58 | 
            +
            processor = WhisperProcessor.from_pretrained(model_name)
         | 
| 59 | 
            +
            model = WhisperForConditionalGeneration.from_pretrained(model_name)
         | 
| 60 | 
            +
            config = AutoConfig.from_pretrained(model_name)
         | 
| 61 | 
            +
            wer = load("wer")
         | 
| 62 | 
            +
            librispeech_test_clean = load_dataset("librispeech_asr", "clean", split="test")
         | 
| 63 | 
            +
            from optimum.onnxruntime import ORTModelForSpeechSeq2Seq
         | 
| 64 | 
            +
            from transformers import PretrainedConfig
         | 
| 65 | 
            +
            model_config = PretrainedConfig.from_pretrained(model_name)
         | 
| 66 | 
            +
            predictions = []
         | 
| 67 | 
            +
            references = []
         | 
| 68 | 
            +
            sessions = ORTModelForSpeechSeq2Seq.load_model(
         | 
| 69 | 
            +
                        os.path.join(model_path, 'encoder_model.onnx'),
         | 
| 70 | 
            +
                        os.path.join(model_path, 'decoder_model.onnx'),
         | 
| 71 | 
            +
                        os.path.join(model_path, 'decoder_with_past_model.onnx'))
         | 
| 72 | 
            +
            model = ORTModelForSpeechSeq2Seq(sessions[0], sessions[1], model_config, model_path, sessions[2])
         | 
| 73 | 
            +
            for idx, batch in enumerate(librispeech_test_clean):
         | 
| 74 | 
            +
                audio = batch["audio"]
         | 
| 75 | 
            +
                input_features = processor(audio["array"], sampling_rate=audio["sampling_rate"], return_tensors="pt").input_features
         | 
| 76 | 
            +
                reference = processor.tokenizer._normalize(batch['text'])
         | 
| 77 | 
            +
                references.append(reference)
         | 
| 78 | 
            +
                predicted_ids = model.generate(input_features)[0]
         | 
| 79 | 
            +
                transcription = processor.decode(predicted_ids)
         | 
| 80 | 
            +
                prediction = processor.tokenizer._normalize(transcription)
         | 
| 81 | 
            +
                predictions.append(prediction)
         | 
| 82 | 
            +
            wer_result = wer.compute(references=references, predictions=predictions)
         | 
| 83 | 
            +
            print(f"Result wer: {wer_result * 100}")
         | 
| 84 | 
            +
            accuracy = 1 - wer_result
         | 
| 85 | 
            +
            print("Accuracy: %.5f" % accuracy)
         | 
| 86 | 
            +
            ```
         | 
| 87 | 
            +
             | 
| 88 | 
            +
            ## Metrics (Model Performance):
         | 
| 89 | 
            +
            | Model  | Model Size (GB) | wer |
         | 
| 90 | 
            +
            |---|:---:|:---:|
         | 
| 91 | 
            +
            | FP32 |0.58|7.56|
         | 
| 92 | 
            +
            | INT8 |0.11|7.73|
         | 
    	
        added_tokens.json
    ADDED
    
    | @@ -0,0 +1,108 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "<|af|>": 50327,
         | 
| 3 | 
            +
              "<|am|>": 50334,
         | 
| 4 | 
            +
              "<|ar|>": 50272,
         | 
| 5 | 
            +
              "<|as|>": 50350,
         | 
| 6 | 
            +
              "<|az|>": 50304,
         | 
| 7 | 
            +
              "<|ba|>": 50355,
         | 
| 8 | 
            +
              "<|be|>": 50330,
         | 
| 9 | 
            +
              "<|bg|>": 50292,
         | 
| 10 | 
            +
              "<|bn|>": 50302,
         | 
| 11 | 
            +
              "<|bo|>": 50347,
         | 
| 12 | 
            +
              "<|br|>": 50309,
         | 
| 13 | 
            +
              "<|bs|>": 50315,
         | 
| 14 | 
            +
              "<|ca|>": 50270,
         | 
| 15 | 
            +
              "<|cs|>": 50283,
         | 
| 16 | 
            +
              "<|cy|>": 50297,
         | 
| 17 | 
            +
              "<|da|>": 50285,
         | 
| 18 | 
            +
              "<|de|>": 50261,
         | 
| 19 | 
            +
              "<|el|>": 50281,
         | 
| 20 | 
            +
              "<|en|>": 50259,
         | 
| 21 | 
            +
              "<|es|>": 50262,
         | 
| 22 | 
            +
              "<|et|>": 50307,
         | 
| 23 | 
            +
              "<|eu|>": 50310,
         | 
| 24 | 
            +
              "<|fa|>": 50300,
         | 
| 25 | 
            +
              "<|fi|>": 50277,
         | 
| 26 | 
            +
              "<|fo|>": 50338,
         | 
| 27 | 
            +
              "<|fr|>": 50265,
         | 
| 28 | 
            +
              "<|gl|>": 50319,
         | 
| 29 | 
            +
              "<|gu|>": 50333,
         | 
| 30 | 
            +
              "<|haw|>": 50352,
         | 
| 31 | 
            +
              "<|ha|>": 50354,
         | 
| 32 | 
            +
              "<|he|>": 50279,
         | 
| 33 | 
            +
              "<|hi|>": 50276,
         | 
| 34 | 
            +
              "<|hr|>": 50291,
         | 
| 35 | 
            +
              "<|ht|>": 50339,
         | 
| 36 | 
            +
              "<|hu|>": 50286,
         | 
| 37 | 
            +
              "<|hy|>": 50312,
         | 
| 38 | 
            +
              "<|id|>": 50275,
         | 
| 39 | 
            +
              "<|is|>": 50311,
         | 
| 40 | 
            +
              "<|it|>": 50274,
         | 
| 41 | 
            +
              "<|ja|>": 50266,
         | 
| 42 | 
            +
              "<|jw|>": 50356,
         | 
| 43 | 
            +
              "<|ka|>": 50329,
         | 
| 44 | 
            +
              "<|kk|>": 50316,
         | 
| 45 | 
            +
              "<|km|>": 50323,
         | 
| 46 | 
            +
              "<|kn|>": 50306,
         | 
| 47 | 
            +
              "<|ko|>": 50264,
         | 
| 48 | 
            +
              "<|la|>": 50294,
         | 
| 49 | 
            +
              "<|lb|>": 50345,
         | 
| 50 | 
            +
              "<|ln|>": 50353,
         | 
| 51 | 
            +
              "<|lo|>": 50336,
         | 
| 52 | 
            +
              "<|lt|>": 50293,
         | 
| 53 | 
            +
              "<|lv|>": 50301,
         | 
| 54 | 
            +
              "<|mg|>": 50349,
         | 
| 55 | 
            +
              "<|mi|>": 50295,
         | 
| 56 | 
            +
              "<|mk|>": 50308,
         | 
| 57 | 
            +
              "<|ml|>": 50296,
         | 
| 58 | 
            +
              "<|mn|>": 50314,
         | 
| 59 | 
            +
              "<|mr|>": 50320,
         | 
| 60 | 
            +
              "<|ms|>": 50282,
         | 
| 61 | 
            +
              "<|mt|>": 50343,
         | 
| 62 | 
            +
              "<|my|>": 50346,
         | 
| 63 | 
            +
              "<|ne|>": 50313,
         | 
| 64 | 
            +
              "<|nl|>": 50271,
         | 
| 65 | 
            +
              "<|nn|>": 50342,
         | 
| 66 | 
            +
              "<|nocaptions|>": 50362,
         | 
| 67 | 
            +
              "<|notimestamps|>": 50363,
         | 
| 68 | 
            +
              "<|no|>": 50288,
         | 
| 69 | 
            +
              "<|oc|>": 50328,
         | 
| 70 | 
            +
              "<|pa|>": 50321,
         | 
| 71 | 
            +
              "<|pl|>": 50269,
         | 
| 72 | 
            +
              "<|ps|>": 50340,
         | 
| 73 | 
            +
              "<|pt|>": 50267,
         | 
| 74 | 
            +
              "<|ro|>": 50284,
         | 
| 75 | 
            +
              "<|ru|>": 50263,
         | 
| 76 | 
            +
              "<|sa|>": 50344,
         | 
| 77 | 
            +
              "<|sd|>": 50332,
         | 
| 78 | 
            +
              "<|si|>": 50322,
         | 
| 79 | 
            +
              "<|sk|>": 50298,
         | 
| 80 | 
            +
              "<|sl|>": 50305,
         | 
| 81 | 
            +
              "<|sn|>": 50324,
         | 
| 82 | 
            +
              "<|so|>": 50326,
         | 
| 83 | 
            +
              "<|sq|>": 50317,
         | 
| 84 | 
            +
              "<|sr|>": 50303,
         | 
| 85 | 
            +
              "<|startoflm|>": 50360,
         | 
| 86 | 
            +
              "<|startofprev|>": 50361,
         | 
| 87 | 
            +
              "<|startoftranscript|>": 50258,
         | 
| 88 | 
            +
              "<|su|>": 50357,
         | 
| 89 | 
            +
              "<|sv|>": 50273,
         | 
| 90 | 
            +
              "<|sw|>": 50318,
         | 
| 91 | 
            +
              "<|ta|>": 50287,
         | 
| 92 | 
            +
              "<|te|>": 50299,
         | 
| 93 | 
            +
              "<|tg|>": 50331,
         | 
| 94 | 
            +
              "<|th|>": 50289,
         | 
| 95 | 
            +
              "<|tk|>": 50341,
         | 
| 96 | 
            +
              "<|tl|>": 50348,
         | 
| 97 | 
            +
              "<|transcribe|>": 50359,
         | 
| 98 | 
            +
              "<|translate|>": 50358,
         | 
| 99 | 
            +
              "<|tr|>": 50268,
         | 
| 100 | 
            +
              "<|tt|>": 50351,
         | 
| 101 | 
            +
              "<|uk|>": 50280,
         | 
| 102 | 
            +
              "<|ur|>": 50290,
         | 
| 103 | 
            +
              "<|uz|>": 50337,
         | 
| 104 | 
            +
              "<|vi|>": 50278,
         | 
| 105 | 
            +
              "<|yi|>": 50335,
         | 
| 106 | 
            +
              "<|yo|>": 50325,
         | 
| 107 | 
            +
              "<|zh|>": 50260
         | 
| 108 | 
            +
            }
         | 
    	
        config.json
    ADDED
    
    | @@ -0,0 +1,202 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_name_or_path": "openai/whisper-tiny",
         | 
| 3 | 
            +
              "activation_dropout": 0.0,
         | 
| 4 | 
            +
              "activation_function": "gelu",
         | 
| 5 | 
            +
              "add_cross_attention": false,
         | 
| 6 | 
            +
              "apply_spec_augment": false,
         | 
| 7 | 
            +
              "architectures": [
         | 
| 8 | 
            +
                "WhisperForConditionalGeneration"
         | 
| 9 | 
            +
              ],
         | 
| 10 | 
            +
              "attention_dropout": 0.0,
         | 
| 11 | 
            +
              "bad_words_ids": null,
         | 
| 12 | 
            +
              "begin_suppress_tokens": [
         | 
| 13 | 
            +
                220,
         | 
| 14 | 
            +
                50257
         | 
| 15 | 
            +
              ],
         | 
| 16 | 
            +
              "bos_token_id": 50257,
         | 
| 17 | 
            +
              "chunk_size_feed_forward": 0,
         | 
| 18 | 
            +
              "classifier_proj_size": 256,
         | 
| 19 | 
            +
              "cross_attention_hidden_size": null,
         | 
| 20 | 
            +
              "d_model": 384,
         | 
| 21 | 
            +
              "decoder_attention_heads": 6,
         | 
| 22 | 
            +
              "decoder_ffn_dim": 1536,
         | 
| 23 | 
            +
              "decoder_layerdrop": 0.0,
         | 
| 24 | 
            +
              "decoder_layers": 4,
         | 
| 25 | 
            +
              "decoder_start_token_id": 50258,
         | 
| 26 | 
            +
              "diversity_penalty": 0.0,
         | 
| 27 | 
            +
              "do_sample": false,
         | 
| 28 | 
            +
              "dropout": 0.0,
         | 
| 29 | 
            +
              "early_stopping": false,
         | 
| 30 | 
            +
              "encoder_attention_heads": 6,
         | 
| 31 | 
            +
              "encoder_ffn_dim": 1536,
         | 
| 32 | 
            +
              "encoder_layerdrop": 0.0,
         | 
| 33 | 
            +
              "encoder_layers": 4,
         | 
| 34 | 
            +
              "encoder_no_repeat_ngram_size": 0,
         | 
| 35 | 
            +
              "eos_token_id": 50257,
         | 
| 36 | 
            +
              "exponential_decay_length_penalty": null,
         | 
| 37 | 
            +
              "finetuning_task": null,
         | 
| 38 | 
            +
              "forced_bos_token_id": null,
         | 
| 39 | 
            +
              "forced_decoder_ids": [
         | 
| 40 | 
            +
                [
         | 
| 41 | 
            +
                  1,
         | 
| 42 | 
            +
                  50259
         | 
| 43 | 
            +
                ],
         | 
| 44 | 
            +
                [
         | 
| 45 | 
            +
                  2,
         | 
| 46 | 
            +
                  50359
         | 
| 47 | 
            +
                ],
         | 
| 48 | 
            +
                [
         | 
| 49 | 
            +
                  3,
         | 
| 50 | 
            +
                  50363
         | 
| 51 | 
            +
                ]
         | 
| 52 | 
            +
              ],
         | 
| 53 | 
            +
              "forced_eos_token_id": null,
         | 
| 54 | 
            +
              "id2label": {
         | 
| 55 | 
            +
                "0": "LABEL_0",
         | 
| 56 | 
            +
                "1": "LABEL_1"
         | 
| 57 | 
            +
              },
         | 
| 58 | 
            +
              "init_std": 0.02,
         | 
| 59 | 
            +
              "is_decoder": false,
         | 
| 60 | 
            +
              "is_encoder_decoder": true,
         | 
| 61 | 
            +
              "label2id": {
         | 
| 62 | 
            +
                "LABEL_0": 0,
         | 
| 63 | 
            +
                "LABEL_1": 1
         | 
| 64 | 
            +
              },
         | 
| 65 | 
            +
              "length_penalty": 1.0,
         | 
| 66 | 
            +
              "mask_feature_length": 10,
         | 
| 67 | 
            +
              "mask_feature_min_masks": 0,
         | 
| 68 | 
            +
              "mask_feature_prob": 0.0,
         | 
| 69 | 
            +
              "mask_time_length": 10,
         | 
| 70 | 
            +
              "mask_time_min_masks": 2,
         | 
| 71 | 
            +
              "mask_time_prob": 0.05,
         | 
| 72 | 
            +
              "max_length": 448,
         | 
| 73 | 
            +
              "max_source_positions": 1500,
         | 
| 74 | 
            +
              "max_target_positions": 448,
         | 
| 75 | 
            +
              "min_length": 0,
         | 
| 76 | 
            +
              "model_type": "whisper",
         | 
| 77 | 
            +
              "no_repeat_ngram_size": 0,
         | 
| 78 | 
            +
              "num_beam_groups": 1,
         | 
| 79 | 
            +
              "num_beams": 1,
         | 
| 80 | 
            +
              "num_hidden_layers": 4,
         | 
| 81 | 
            +
              "num_mel_bins": 80,
         | 
| 82 | 
            +
              "num_return_sequences": 1,
         | 
| 83 | 
            +
              "output_attentions": false,
         | 
| 84 | 
            +
              "output_hidden_states": false,
         | 
| 85 | 
            +
              "output_scores": false,
         | 
| 86 | 
            +
              "pad_token_id": 50257,
         | 
| 87 | 
            +
              "prefix": null,
         | 
| 88 | 
            +
              "problem_type": null,
         | 
| 89 | 
            +
              "pruned_heads": {},
         | 
| 90 | 
            +
              "remove_invalid_values": false,
         | 
| 91 | 
            +
              "repetition_penalty": 1.0,
         | 
| 92 | 
            +
              "return_dict": true,
         | 
| 93 | 
            +
              "return_dict_in_generate": false,
         | 
| 94 | 
            +
              "scale_embedding": false,
         | 
| 95 | 
            +
              "sep_token_id": null,
         | 
| 96 | 
            +
              "suppress_tokens": [
         | 
| 97 | 
            +
                1,
         | 
| 98 | 
            +
                2,
         | 
| 99 | 
            +
                7,
         | 
| 100 | 
            +
                8,
         | 
| 101 | 
            +
                9,
         | 
| 102 | 
            +
                10,
         | 
| 103 | 
            +
                14,
         | 
| 104 | 
            +
                25,
         | 
| 105 | 
            +
                26,
         | 
| 106 | 
            +
                27,
         | 
| 107 | 
            +
                28,
         | 
| 108 | 
            +
                29,
         | 
| 109 | 
            +
                31,
         | 
| 110 | 
            +
                58,
         | 
| 111 | 
            +
                59,
         | 
| 112 | 
            +
                60,
         | 
| 113 | 
            +
                61,
         | 
| 114 | 
            +
                62,
         | 
| 115 | 
            +
                63,
         | 
| 116 | 
            +
                90,
         | 
| 117 | 
            +
                91,
         | 
| 118 | 
            +
                92,
         | 
| 119 | 
            +
                93,
         | 
| 120 | 
            +
                359,
         | 
| 121 | 
            +
                503,
         | 
| 122 | 
            +
                522,
         | 
| 123 | 
            +
                542,
         | 
| 124 | 
            +
                873,
         | 
| 125 | 
            +
                893,
         | 
| 126 | 
            +
                902,
         | 
| 127 | 
            +
                918,
         | 
| 128 | 
            +
                922,
         | 
| 129 | 
            +
                931,
         | 
| 130 | 
            +
                1350,
         | 
| 131 | 
            +
                1853,
         | 
| 132 | 
            +
                1982,
         | 
| 133 | 
            +
                2460,
         | 
| 134 | 
            +
                2627,
         | 
| 135 | 
            +
                3246,
         | 
| 136 | 
            +
                3253,
         | 
| 137 | 
            +
                3268,
         | 
| 138 | 
            +
                3536,
         | 
| 139 | 
            +
                3846,
         | 
| 140 | 
            +
                3961,
         | 
| 141 | 
            +
                4183,
         | 
| 142 | 
            +
                4667,
         | 
| 143 | 
            +
                6585,
         | 
| 144 | 
            +
                6647,
         | 
| 145 | 
            +
                7273,
         | 
| 146 | 
            +
                9061,
         | 
| 147 | 
            +
                9383,
         | 
| 148 | 
            +
                10428,
         | 
| 149 | 
            +
                10929,
         | 
| 150 | 
            +
                11938,
         | 
| 151 | 
            +
                12033,
         | 
| 152 | 
            +
                12331,
         | 
| 153 | 
            +
                12562,
         | 
| 154 | 
            +
                13793,
         | 
| 155 | 
            +
                14157,
         | 
| 156 | 
            +
                14635,
         | 
| 157 | 
            +
                15265,
         | 
| 158 | 
            +
                15618,
         | 
| 159 | 
            +
                16553,
         | 
| 160 | 
            +
                16604,
         | 
| 161 | 
            +
                18362,
         | 
| 162 | 
            +
                18956,
         | 
| 163 | 
            +
                20075,
         | 
| 164 | 
            +
                21675,
         | 
| 165 | 
            +
                22520,
         | 
| 166 | 
            +
                26130,
         | 
| 167 | 
            +
                26161,
         | 
| 168 | 
            +
                26435,
         | 
| 169 | 
            +
                28279,
         | 
| 170 | 
            +
                29464,
         | 
| 171 | 
            +
                31650,
         | 
| 172 | 
            +
                32302,
         | 
| 173 | 
            +
                32470,
         | 
| 174 | 
            +
                36865,
         | 
| 175 | 
            +
                42863,
         | 
| 176 | 
            +
                47425,
         | 
| 177 | 
            +
                49870,
         | 
| 178 | 
            +
                50254,
         | 
| 179 | 
            +
                50258,
         | 
| 180 | 
            +
                50358,
         | 
| 181 | 
            +
                50359,
         | 
| 182 | 
            +
                50360,
         | 
| 183 | 
            +
                50361,
         | 
| 184 | 
            +
                50362
         | 
| 185 | 
            +
              ],
         | 
| 186 | 
            +
              "task_specific_params": null,
         | 
| 187 | 
            +
              "temperature": 1.0,
         | 
| 188 | 
            +
              "tf_legacy_loss": false,
         | 
| 189 | 
            +
              "tie_encoder_decoder": false,
         | 
| 190 | 
            +
              "tie_word_embeddings": true,
         | 
| 191 | 
            +
              "tokenizer_class": null,
         | 
| 192 | 
            +
              "top_k": 50,
         | 
| 193 | 
            +
              "top_p": 1.0,
         | 
| 194 | 
            +
              "torch_dtype": null,
         | 
| 195 | 
            +
              "torchscript": false,
         | 
| 196 | 
            +
              "transformers_version": "4.30.2",
         | 
| 197 | 
            +
              "typical_p": 1.0,
         | 
| 198 | 
            +
              "use_bfloat16": false,
         | 
| 199 | 
            +
              "use_cache": true,
         | 
| 200 | 
            +
              "use_weighted_layer_sum": false,
         | 
| 201 | 
            +
              "vocab_size": 51865
         | 
| 202 | 
            +
            }
         | 
    	
        decoder_model.onnx
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:32484176410b1711d6f6cea13b63f7ff32c6ea0cbfd7f99e258f1fd8e58c4f7c
         | 
| 3 | 
            +
            size 50588217
         | 
    	
        decoder_with_past_model.onnx
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:90d495bc38d010805b0c84ca9b29ecacab94b07d244f2957bac19381f764f3cb
         | 
| 3 | 
            +
            size 49364460
         | 
    	
        encoder_model.onnx
    ADDED
    
    | @@ -0,0 +1,3 @@ | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            version https://git-lfs.github.com/spec/v1
         | 
| 2 | 
            +
            oid sha256:e43507536d8023e91a9f161458c12c0d166e66bd4616bf9d2c8174dc1b55176f
         | 
| 3 | 
            +
            size 17205262
         | 
    	
        generation_config.json
    ADDED
    
    | @@ -0,0 +1,247 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "alignment_heads": [
         | 
| 3 | 
            +
                [
         | 
| 4 | 
            +
                  2,
         | 
| 5 | 
            +
                  2
         | 
| 6 | 
            +
                ],
         | 
| 7 | 
            +
                [
         | 
| 8 | 
            +
                  3,
         | 
| 9 | 
            +
                  0
         | 
| 10 | 
            +
                ],
         | 
| 11 | 
            +
                [
         | 
| 12 | 
            +
                  3,
         | 
| 13 | 
            +
                  2
         | 
| 14 | 
            +
                ],
         | 
| 15 | 
            +
                [
         | 
| 16 | 
            +
                  3,
         | 
| 17 | 
            +
                  3
         | 
| 18 | 
            +
                ],
         | 
| 19 | 
            +
                [
         | 
| 20 | 
            +
                  3,
         | 
| 21 | 
            +
                  4
         | 
| 22 | 
            +
                ],
         | 
| 23 | 
            +
                [
         | 
| 24 | 
            +
                  3,
         | 
| 25 | 
            +
                  5
         | 
| 26 | 
            +
                ]
         | 
| 27 | 
            +
              ],
         | 
| 28 | 
            +
              "begin_suppress_tokens": [
         | 
| 29 | 
            +
                220,
         | 
| 30 | 
            +
                50257
         | 
| 31 | 
            +
              ],
         | 
| 32 | 
            +
              "bos_token_id": 50257,
         | 
| 33 | 
            +
              "decoder_start_token_id": 50258,
         | 
| 34 | 
            +
              "eos_token_id": 50257,
         | 
| 35 | 
            +
              "forced_decoder_ids": [
         | 
| 36 | 
            +
                [
         | 
| 37 | 
            +
                  1,
         | 
| 38 | 
            +
                  null
         | 
| 39 | 
            +
                ],
         | 
| 40 | 
            +
                [
         | 
| 41 | 
            +
                  2,
         | 
| 42 | 
            +
                  50359
         | 
| 43 | 
            +
                ]
         | 
| 44 | 
            +
              ],
         | 
| 45 | 
            +
              "is_multilingual": true,
         | 
| 46 | 
            +
              "lang_to_id": {
         | 
| 47 | 
            +
                "<|af|>": 50327,
         | 
| 48 | 
            +
                "<|am|>": 50334,
         | 
| 49 | 
            +
                "<|ar|>": 50272,
         | 
| 50 | 
            +
                "<|as|>": 50350,
         | 
| 51 | 
            +
                "<|az|>": 50304,
         | 
| 52 | 
            +
                "<|ba|>": 50355,
         | 
| 53 | 
            +
                "<|be|>": 50330,
         | 
| 54 | 
            +
                "<|bg|>": 50292,
         | 
| 55 | 
            +
                "<|bn|>": 50302,
         | 
| 56 | 
            +
                "<|bo|>": 50347,
         | 
| 57 | 
            +
                "<|br|>": 50309,
         | 
| 58 | 
            +
                "<|bs|>": 50315,
         | 
| 59 | 
            +
                "<|ca|>": 50270,
         | 
| 60 | 
            +
                "<|cs|>": 50283,
         | 
| 61 | 
            +
                "<|cy|>": 50297,
         | 
| 62 | 
            +
                "<|da|>": 50285,
         | 
| 63 | 
            +
                "<|de|>": 50261,
         | 
| 64 | 
            +
                "<|el|>": 50281,
         | 
| 65 | 
            +
                "<|en|>": 50259,
         | 
| 66 | 
            +
                "<|es|>": 50262,
         | 
| 67 | 
            +
                "<|et|>": 50307,
         | 
| 68 | 
            +
                "<|eu|>": 50310,
         | 
| 69 | 
            +
                "<|fa|>": 50300,
         | 
| 70 | 
            +
                "<|fi|>": 50277,
         | 
| 71 | 
            +
                "<|fo|>": 50338,
         | 
| 72 | 
            +
                "<|fr|>": 50265,
         | 
| 73 | 
            +
                "<|gl|>": 50319,
         | 
| 74 | 
            +
                "<|gu|>": 50333,
         | 
| 75 | 
            +
                "<|haw|>": 50352,
         | 
| 76 | 
            +
                "<|ha|>": 50354,
         | 
| 77 | 
            +
                "<|he|>": 50279,
         | 
| 78 | 
            +
                "<|hi|>": 50276,
         | 
| 79 | 
            +
                "<|hr|>": 50291,
         | 
| 80 | 
            +
                "<|ht|>": 50339,
         | 
| 81 | 
            +
                "<|hu|>": 50286,
         | 
| 82 | 
            +
                "<|hy|>": 50312,
         | 
| 83 | 
            +
                "<|id|>": 50275,
         | 
| 84 | 
            +
                "<|is|>": 50311,
         | 
| 85 | 
            +
                "<|it|>": 50274,
         | 
| 86 | 
            +
                "<|ja|>": 50266,
         | 
| 87 | 
            +
                "<|jw|>": 50356,
         | 
| 88 | 
            +
                "<|ka|>": 50329,
         | 
| 89 | 
            +
                "<|kk|>": 50316,
         | 
| 90 | 
            +
                "<|km|>": 50323,
         | 
| 91 | 
            +
                "<|kn|>": 50306,
         | 
| 92 | 
            +
                "<|ko|>": 50264,
         | 
| 93 | 
            +
                "<|la|>": 50294,
         | 
| 94 | 
            +
                "<|lb|>": 50345,
         | 
| 95 | 
            +
                "<|ln|>": 50353,
         | 
| 96 | 
            +
                "<|lo|>": 50336,
         | 
| 97 | 
            +
                "<|lt|>": 50293,
         | 
| 98 | 
            +
                "<|lv|>": 50301,
         | 
| 99 | 
            +
                "<|mg|>": 50349,
         | 
| 100 | 
            +
                "<|mi|>": 50295,
         | 
| 101 | 
            +
                "<|mk|>": 50308,
         | 
| 102 | 
            +
                "<|ml|>": 50296,
         | 
| 103 | 
            +
                "<|mn|>": 50314,
         | 
| 104 | 
            +
                "<|mr|>": 50320,
         | 
| 105 | 
            +
                "<|ms|>": 50282,
         | 
| 106 | 
            +
                "<|mt|>": 50343,
         | 
| 107 | 
            +
                "<|my|>": 50346,
         | 
| 108 | 
            +
                "<|ne|>": 50313,
         | 
| 109 | 
            +
                "<|nl|>": 50271,
         | 
| 110 | 
            +
                "<|nn|>": 50342,
         | 
| 111 | 
            +
                "<|no|>": 50288,
         | 
| 112 | 
            +
                "<|oc|>": 50328,
         | 
| 113 | 
            +
                "<|pa|>": 50321,
         | 
| 114 | 
            +
                "<|pl|>": 50269,
         | 
| 115 | 
            +
                "<|ps|>": 50340,
         | 
| 116 | 
            +
                "<|pt|>": 50267,
         | 
| 117 | 
            +
                "<|ro|>": 50284,
         | 
| 118 | 
            +
                "<|ru|>": 50263,
         | 
| 119 | 
            +
                "<|sa|>": 50344,
         | 
| 120 | 
            +
                "<|sd|>": 50332,
         | 
| 121 | 
            +
                "<|si|>": 50322,
         | 
| 122 | 
            +
                "<|sk|>": 50298,
         | 
| 123 | 
            +
                "<|sl|>": 50305,
         | 
| 124 | 
            +
                "<|sn|>": 50324,
         | 
| 125 | 
            +
                "<|so|>": 50326,
         | 
| 126 | 
            +
                "<|sq|>": 50317,
         | 
| 127 | 
            +
                "<|sr|>": 50303,
         | 
| 128 | 
            +
                "<|su|>": 50357,
         | 
| 129 | 
            +
                "<|sv|>": 50273,
         | 
| 130 | 
            +
                "<|sw|>": 50318,
         | 
| 131 | 
            +
                "<|ta|>": 50287,
         | 
| 132 | 
            +
                "<|te|>": 50299,
         | 
| 133 | 
            +
                "<|tg|>": 50331,
         | 
| 134 | 
            +
                "<|th|>": 50289,
         | 
| 135 | 
            +
                "<|tk|>": 50341,
         | 
| 136 | 
            +
                "<|tl|>": 50348,
         | 
| 137 | 
            +
                "<|tr|>": 50268,
         | 
| 138 | 
            +
                "<|tt|>": 50351,
         | 
| 139 | 
            +
                "<|uk|>": 50280,
         | 
| 140 | 
            +
                "<|ur|>": 50290,
         | 
| 141 | 
            +
                "<|uz|>": 50337,
         | 
| 142 | 
            +
                "<|vi|>": 50278,
         | 
| 143 | 
            +
                "<|yi|>": 50335,
         | 
| 144 | 
            +
                "<|yo|>": 50325,
         | 
| 145 | 
            +
                "<|zh|>": 50260
         | 
| 146 | 
            +
              },
         | 
| 147 | 
            +
              "max_initial_timestamp_index": 1,
         | 
| 148 | 
            +
              "max_length": 448,
         | 
| 149 | 
            +
              "no_timestamps_token_id": 50363,
         | 
| 150 | 
            +
              "pad_token_id": 50257,
         | 
| 151 | 
            +
              "return_timestamps": false,
         | 
| 152 | 
            +
              "suppress_tokens": [
         | 
| 153 | 
            +
                1,
         | 
| 154 | 
            +
                2,
         | 
| 155 | 
            +
                7,
         | 
| 156 | 
            +
                8,
         | 
| 157 | 
            +
                9,
         | 
| 158 | 
            +
                10,
         | 
| 159 | 
            +
                14,
         | 
| 160 | 
            +
                25,
         | 
| 161 | 
            +
                26,
         | 
| 162 | 
            +
                27,
         | 
| 163 | 
            +
                28,
         | 
| 164 | 
            +
                29,
         | 
| 165 | 
            +
                31,
         | 
| 166 | 
            +
                58,
         | 
| 167 | 
            +
                59,
         | 
| 168 | 
            +
                60,
         | 
| 169 | 
            +
                61,
         | 
| 170 | 
            +
                62,
         | 
| 171 | 
            +
                63,
         | 
| 172 | 
            +
                90,
         | 
| 173 | 
            +
                91,
         | 
| 174 | 
            +
                92,
         | 
| 175 | 
            +
                93,
         | 
| 176 | 
            +
                359,
         | 
| 177 | 
            +
                503,
         | 
| 178 | 
            +
                522,
         | 
| 179 | 
            +
                542,
         | 
| 180 | 
            +
                873,
         | 
| 181 | 
            +
                893,
         | 
| 182 | 
            +
                902,
         | 
| 183 | 
            +
                918,
         | 
| 184 | 
            +
                922,
         | 
| 185 | 
            +
                931,
         | 
| 186 | 
            +
                1350,
         | 
| 187 | 
            +
                1853,
         | 
| 188 | 
            +
                1982,
         | 
| 189 | 
            +
                2460,
         | 
| 190 | 
            +
                2627,
         | 
| 191 | 
            +
                3246,
         | 
| 192 | 
            +
                3253,
         | 
| 193 | 
            +
                3268,
         | 
| 194 | 
            +
                3536,
         | 
| 195 | 
            +
                3846,
         | 
| 196 | 
            +
                3961,
         | 
| 197 | 
            +
                4183,
         | 
| 198 | 
            +
                4667,
         | 
| 199 | 
            +
                6585,
         | 
| 200 | 
            +
                6647,
         | 
| 201 | 
            +
                7273,
         | 
| 202 | 
            +
                9061,
         | 
| 203 | 
            +
                9383,
         | 
| 204 | 
            +
                10428,
         | 
| 205 | 
            +
                10929,
         | 
| 206 | 
            +
                11938,
         | 
| 207 | 
            +
                12033,
         | 
| 208 | 
            +
                12331,
         | 
| 209 | 
            +
                12562,
         | 
| 210 | 
            +
                13793,
         | 
| 211 | 
            +
                14157,
         | 
| 212 | 
            +
                14635,
         | 
| 213 | 
            +
                15265,
         | 
| 214 | 
            +
                15618,
         | 
| 215 | 
            +
                16553,
         | 
| 216 | 
            +
                16604,
         | 
| 217 | 
            +
                18362,
         | 
| 218 | 
            +
                18956,
         | 
| 219 | 
            +
                20075,
         | 
| 220 | 
            +
                21675,
         | 
| 221 | 
            +
                22520,
         | 
| 222 | 
            +
                26130,
         | 
| 223 | 
            +
                26161,
         | 
| 224 | 
            +
                26435,
         | 
| 225 | 
            +
                28279,
         | 
| 226 | 
            +
                29464,
         | 
| 227 | 
            +
                31650,
         | 
| 228 | 
            +
                32302,
         | 
| 229 | 
            +
                32470,
         | 
| 230 | 
            +
                36865,
         | 
| 231 | 
            +
                42863,
         | 
| 232 | 
            +
                47425,
         | 
| 233 | 
            +
                49870,
         | 
| 234 | 
            +
                50254,
         | 
| 235 | 
            +
                50258,
         | 
| 236 | 
            +
                50358,
         | 
| 237 | 
            +
                50359,
         | 
| 238 | 
            +
                50360,
         | 
| 239 | 
            +
                50361,
         | 
| 240 | 
            +
                50362
         | 
| 241 | 
            +
              ],
         | 
| 242 | 
            +
              "task_to_id": {
         | 
| 243 | 
            +
                "transcribe": 50359,
         | 
| 244 | 
            +
                "translate": 50358
         | 
| 245 | 
            +
              },
         | 
| 246 | 
            +
              "transformers_version": "4.30.2"
         | 
| 247 | 
            +
            }
         | 
    	
        merges.txt
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        normalizer.json
    ADDED
    
    | @@ -0,0 +1,1742 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "accessorise": "accessorize",
         | 
| 3 | 
            +
              "accessorised": "accessorized",
         | 
| 4 | 
            +
              "accessorises": "accessorizes",
         | 
| 5 | 
            +
              "accessorising": "accessorizing",
         | 
| 6 | 
            +
              "acclimatisation": "acclimatization",
         | 
| 7 | 
            +
              "acclimatise": "acclimatize",
         | 
| 8 | 
            +
              "acclimatised": "acclimatized",
         | 
| 9 | 
            +
              "acclimatises": "acclimatizes",
         | 
| 10 | 
            +
              "acclimatising": "acclimatizing",
         | 
| 11 | 
            +
              "accoutrements": "accouterments",
         | 
| 12 | 
            +
              "aeon": "eon",
         | 
| 13 | 
            +
              "aeons": "eons",
         | 
| 14 | 
            +
              "aerogramme": "aerogram",
         | 
| 15 | 
            +
              "aerogrammes": "aerograms",
         | 
| 16 | 
            +
              "aeroplane": "airplane",
         | 
| 17 | 
            +
              "aeroplanes": "airplanes",
         | 
| 18 | 
            +
              "aesthete": "esthete",
         | 
| 19 | 
            +
              "aesthetes": "esthetes",
         | 
| 20 | 
            +
              "aesthetic": "esthetic",
         | 
| 21 | 
            +
              "aesthetically": "esthetically",
         | 
| 22 | 
            +
              "aesthetics": "esthetics",
         | 
| 23 | 
            +
              "aetiology": "etiology",
         | 
| 24 | 
            +
              "ageing": "aging",
         | 
| 25 | 
            +
              "aggrandisement": "aggrandizement",
         | 
| 26 | 
            +
              "agonise": "agonize",
         | 
| 27 | 
            +
              "agonised": "agonized",
         | 
| 28 | 
            +
              "agonises": "agonizes",
         | 
| 29 | 
            +
              "agonising": "agonizing",
         | 
| 30 | 
            +
              "agonisingly": "agonizingly",
         | 
| 31 | 
            +
              "almanack": "almanac",
         | 
| 32 | 
            +
              "almanacks": "almanacs",
         | 
| 33 | 
            +
              "aluminium": "aluminum",
         | 
| 34 | 
            +
              "amortisable": "amortizable",
         | 
| 35 | 
            +
              "amortisation": "amortization",
         | 
| 36 | 
            +
              "amortisations": "amortizations",
         | 
| 37 | 
            +
              "amortise": "amortize",
         | 
| 38 | 
            +
              "amortised": "amortized",
         | 
| 39 | 
            +
              "amortises": "amortizes",
         | 
| 40 | 
            +
              "amortising": "amortizing",
         | 
| 41 | 
            +
              "amphitheatre": "amphitheater",
         | 
| 42 | 
            +
              "amphitheatres": "amphitheaters",
         | 
| 43 | 
            +
              "anaemia": "anemia",
         | 
| 44 | 
            +
              "anaemic": "anemic",
         | 
| 45 | 
            +
              "anaesthesia": "anesthesia",
         | 
| 46 | 
            +
              "anaesthetic": "anesthetic",
         | 
| 47 | 
            +
              "anaesthetics": "anesthetics",
         | 
| 48 | 
            +
              "anaesthetise": "anesthetize",
         | 
| 49 | 
            +
              "anaesthetised": "anesthetized",
         | 
| 50 | 
            +
              "anaesthetises": "anesthetizes",
         | 
| 51 | 
            +
              "anaesthetising": "anesthetizing",
         | 
| 52 | 
            +
              "anaesthetist": "anesthetist",
         | 
| 53 | 
            +
              "anaesthetists": "anesthetists",
         | 
| 54 | 
            +
              "anaesthetize": "anesthetize",
         | 
| 55 | 
            +
              "anaesthetized": "anesthetized",
         | 
| 56 | 
            +
              "anaesthetizes": "anesthetizes",
         | 
| 57 | 
            +
              "anaesthetizing": "anesthetizing",
         | 
| 58 | 
            +
              "analogue": "analog",
         | 
| 59 | 
            +
              "analogues": "analogs",
         | 
| 60 | 
            +
              "analyse": "analyze",
         | 
| 61 | 
            +
              "analysed": "analyzed",
         | 
| 62 | 
            +
              "analyses": "analyzes",
         | 
| 63 | 
            +
              "analysing": "analyzing",
         | 
| 64 | 
            +
              "anglicise": "anglicize",
         | 
| 65 | 
            +
              "anglicised": "anglicized",
         | 
| 66 | 
            +
              "anglicises": "anglicizes",
         | 
| 67 | 
            +
              "anglicising": "anglicizing",
         | 
| 68 | 
            +
              "annualised": "annualized",
         | 
| 69 | 
            +
              "antagonise": "antagonize",
         | 
| 70 | 
            +
              "antagonised": "antagonized",
         | 
| 71 | 
            +
              "antagonises": "antagonizes",
         | 
| 72 | 
            +
              "antagonising": "antagonizing",
         | 
| 73 | 
            +
              "apologise": "apologize",
         | 
| 74 | 
            +
              "apologised": "apologized",
         | 
| 75 | 
            +
              "apologises": "apologizes",
         | 
| 76 | 
            +
              "apologising": "apologizing",
         | 
| 77 | 
            +
              "appal": "appall",
         | 
| 78 | 
            +
              "appals": "appalls",
         | 
| 79 | 
            +
              "appetiser": "appetizer",
         | 
| 80 | 
            +
              "appetisers": "appetizers",
         | 
| 81 | 
            +
              "appetising": "appetizing",
         | 
| 82 | 
            +
              "appetisingly": "appetizingly",
         | 
| 83 | 
            +
              "arbour": "arbor",
         | 
| 84 | 
            +
              "arbours": "arbors",
         | 
| 85 | 
            +
              "archaeologically": "archeologically",
         | 
| 86 | 
            +
              "archaeologist": "archeologist",
         | 
| 87 | 
            +
              "archaeologists": "archeologists",
         | 
| 88 | 
            +
              "archaeology": "archeology</span>",
         | 
| 89 | 
            +
              "archeological": "archaeological",
         | 
| 90 | 
            +
              "ardour": "ardor",
         | 
| 91 | 
            +
              "armour": "armor",
         | 
| 92 | 
            +
              "armoured": "armored",
         | 
| 93 | 
            +
              "armourer": "armorer",
         | 
| 94 | 
            +
              "armourers": "armorers",
         | 
| 95 | 
            +
              "armouries": "armories",
         | 
| 96 | 
            +
              "armoury": "armory",
         | 
| 97 | 
            +
              "artefact": "artifact",
         | 
| 98 | 
            +
              "artefacts": "artifacts",
         | 
| 99 | 
            +
              "authorise": "authorize",
         | 
| 100 | 
            +
              "authorised": "authorized",
         | 
| 101 | 
            +
              "authorises": "authorizes",
         | 
| 102 | 
            +
              "authorising": "authorizing",
         | 
| 103 | 
            +
              "axe": "ax",
         | 
| 104 | 
            +
              "backpedalled": "backpedaled",
         | 
| 105 | 
            +
              "backpedalling": "backpedaling",
         | 
| 106 | 
            +
              "bannister": "banister",
         | 
| 107 | 
            +
              "bannisters": "banisters",
         | 
| 108 | 
            +
              "baptise": "baptize",
         | 
| 109 | 
            +
              "baptised": "baptized",
         | 
| 110 | 
            +
              "baptises": "baptizes",
         | 
| 111 | 
            +
              "baptising": "baptizing",
         | 
| 112 | 
            +
              "bastardise": "bastardize",
         | 
| 113 | 
            +
              "bastardised": "bastardized",
         | 
| 114 | 
            +
              "bastardises": "bastardizes",
         | 
| 115 | 
            +
              "bastardising": "bastardizing",
         | 
| 116 | 
            +
              "battleax": "battleaxe",
         | 
| 117 | 
            +
              "baulk": "balk",
         | 
| 118 | 
            +
              "baulked": "balked",
         | 
| 119 | 
            +
              "baulking": "balking",
         | 
| 120 | 
            +
              "baulks": "balks",
         | 
| 121 | 
            +
              "bedevilled": "bedeviled",
         | 
| 122 | 
            +
              "bedevilling": "bedeviling",
         | 
| 123 | 
            +
              "behaviour": "behavior",
         | 
| 124 | 
            +
              "behavioural": "behavioral",
         | 
| 125 | 
            +
              "behaviourism": "behaviorism",
         | 
| 126 | 
            +
              "behaviourist": "behaviorist",
         | 
| 127 | 
            +
              "behaviourists": "behaviorists",
         | 
| 128 | 
            +
              "behaviours": "behaviors",
         | 
| 129 | 
            +
              "behove": "behoove",
         | 
| 130 | 
            +
              "behoved": "behooved",
         | 
| 131 | 
            +
              "behoves": "behooves",
         | 
| 132 | 
            +
              "bejewelled": "bejeweled",
         | 
| 133 | 
            +
              "belabour": "belabor",
         | 
| 134 | 
            +
              "belaboured": "belabored",
         | 
| 135 | 
            +
              "belabouring": "belaboring",
         | 
| 136 | 
            +
              "belabours": "belabors",
         | 
| 137 | 
            +
              "bevelled": "beveled",
         | 
| 138 | 
            +
              "bevvies": "bevies",
         | 
| 139 | 
            +
              "bevvy": "bevy",
         | 
| 140 | 
            +
              "biassed": "biased",
         | 
| 141 | 
            +
              "biassing": "biasing",
         | 
| 142 | 
            +
              "bingeing": "binging",
         | 
| 143 | 
            +
              "bougainvillaea": "bougainvillea",
         | 
| 144 | 
            +
              "bougainvillaeas": "bougainvilleas",
         | 
| 145 | 
            +
              "bowdlerise": "bowdlerize",
         | 
| 146 | 
            +
              "bowdlerised": "bowdlerized",
         | 
| 147 | 
            +
              "bowdlerises": "bowdlerizes",
         | 
| 148 | 
            +
              "bowdlerising": "bowdlerizing",
         | 
| 149 | 
            +
              "breathalyse": "breathalyze",
         | 
| 150 | 
            +
              "breathalysed": "breathalyzed",
         | 
| 151 | 
            +
              "breathalyser": "breathalyzer",
         | 
| 152 | 
            +
              "breathalysers": "breathalyzers",
         | 
| 153 | 
            +
              "breathalyses": "breathalyzes",
         | 
| 154 | 
            +
              "breathalysing": "breathalyzing",
         | 
| 155 | 
            +
              "brutalise": "brutalize",
         | 
| 156 | 
            +
              "brutalised": "brutalized",
         | 
| 157 | 
            +
              "brutalises": "brutalizes",
         | 
| 158 | 
            +
              "brutalising": "brutalizing",
         | 
| 159 | 
            +
              "busses": "buses",
         | 
| 160 | 
            +
              "bussing": "busing",
         | 
| 161 | 
            +
              "caesarean": "cesarean",
         | 
| 162 | 
            +
              "caesareans": "cesareans",
         | 
| 163 | 
            +
              "calibre": "caliber",
         | 
| 164 | 
            +
              "calibres": "calibers",
         | 
| 165 | 
            +
              "calliper": "caliper",
         | 
| 166 | 
            +
              "callipers": "calipers",
         | 
| 167 | 
            +
              "callisthenics": "calisthenics",
         | 
| 168 | 
            +
              "canalise": "canalize",
         | 
| 169 | 
            +
              "canalised": "canalized",
         | 
| 170 | 
            +
              "canalises": "canalizes",
         | 
| 171 | 
            +
              "canalising": "canalizing",
         | 
| 172 | 
            +
              "cancelation": "cancellation",
         | 
| 173 | 
            +
              "cancelations": "cancellations",
         | 
| 174 | 
            +
              "cancelled": "canceled",
         | 
| 175 | 
            +
              "cancelling": "canceling",
         | 
| 176 | 
            +
              "candour": "candor",
         | 
| 177 | 
            +
              "cannibalise": "cannibalize",
         | 
| 178 | 
            +
              "cannibalised": "cannibalized",
         | 
| 179 | 
            +
              "cannibalises": "cannibalizes",
         | 
| 180 | 
            +
              "cannibalising": "cannibalizing",
         | 
| 181 | 
            +
              "canonise": "canonize",
         | 
| 182 | 
            +
              "canonised": "canonized",
         | 
| 183 | 
            +
              "canonises": "canonizes",
         | 
| 184 | 
            +
              "canonising": "canonizing",
         | 
| 185 | 
            +
              "capitalise": "capitalize",
         | 
| 186 | 
            +
              "capitalised": "capitalized",
         | 
| 187 | 
            +
              "capitalises": "capitalizes",
         | 
| 188 | 
            +
              "capitalising": "capitalizing",
         | 
| 189 | 
            +
              "caramelise": "caramelize",
         | 
| 190 | 
            +
              "caramelised": "caramelized",
         | 
| 191 | 
            +
              "caramelises": "caramelizes",
         | 
| 192 | 
            +
              "caramelising": "caramelizing",
         | 
| 193 | 
            +
              "carbonise": "carbonize",
         | 
| 194 | 
            +
              "carbonised": "carbonized",
         | 
| 195 | 
            +
              "carbonises": "carbonizes",
         | 
| 196 | 
            +
              "carbonising": "carbonizing",
         | 
| 197 | 
            +
              "carolled": "caroled",
         | 
| 198 | 
            +
              "carolling": "caroling",
         | 
| 199 | 
            +
              "catalogue": "catalog",
         | 
| 200 | 
            +
              "catalogued": "cataloged",
         | 
| 201 | 
            +
              "catalogues": "catalogs",
         | 
| 202 | 
            +
              "cataloguing": "cataloging",
         | 
| 203 | 
            +
              "catalyse": "catalyze",
         | 
| 204 | 
            +
              "catalysed": "catalyzed",
         | 
| 205 | 
            +
              "catalyses": "catalyzes",
         | 
| 206 | 
            +
              "catalysing": "catalyzing",
         | 
| 207 | 
            +
              "categorise": "categorize",
         | 
| 208 | 
            +
              "categorised": "categorized",
         | 
| 209 | 
            +
              "categorises": "categorizes",
         | 
| 210 | 
            +
              "categorising": "categorizing",
         | 
| 211 | 
            +
              "cauterise": "cauterize",
         | 
| 212 | 
            +
              "cauterised": "cauterized",
         | 
| 213 | 
            +
              "cauterises": "cauterizes",
         | 
| 214 | 
            +
              "cauterising": "cauterizing",
         | 
| 215 | 
            +
              "cavilled": "caviled",
         | 
| 216 | 
            +
              "cavilling": "caviling",
         | 
| 217 | 
            +
              "centigramme": "centigram",
         | 
| 218 | 
            +
              "centigrammes": "centigrams",
         | 
| 219 | 
            +
              "centilitre": "centiliter",
         | 
| 220 | 
            +
              "centilitres": "centiliters",
         | 
| 221 | 
            +
              "centimetre": "centimeter",
         | 
| 222 | 
            +
              "centimetres": "centimeters",
         | 
| 223 | 
            +
              "centralise": "centralize",
         | 
| 224 | 
            +
              "centralised": "centralized",
         | 
| 225 | 
            +
              "centralises": "centralizes",
         | 
| 226 | 
            +
              "centralising": "centralizing",
         | 
| 227 | 
            +
              "centre": "center",
         | 
| 228 | 
            +
              "centred": "centered",
         | 
| 229 | 
            +
              "centrefold": "centerfold",
         | 
| 230 | 
            +
              "centrefolds": "centerfolds",
         | 
| 231 | 
            +
              "centrepiece": "centerpiece",
         | 
| 232 | 
            +
              "centrepieces": "centerpieces",
         | 
| 233 | 
            +
              "centres": "centers",
         | 
| 234 | 
            +
              "channelled": "channeled",
         | 
| 235 | 
            +
              "channelling": "channeling",
         | 
| 236 | 
            +
              "characterise": "characterize",
         | 
| 237 | 
            +
              "characterised": "characterized",
         | 
| 238 | 
            +
              "characterises": "characterizes",
         | 
| 239 | 
            +
              "characterising": "characterizing",
         | 
| 240 | 
            +
              "cheque": "check",
         | 
| 241 | 
            +
              "chequebook": "checkbook",
         | 
| 242 | 
            +
              "chequebooks": "checkbooks",
         | 
| 243 | 
            +
              "chequered": "checkered",
         | 
| 244 | 
            +
              "cheques": "checks",
         | 
| 245 | 
            +
              "chilli": "chili",
         | 
| 246 | 
            +
              "chimaera": "chimera",
         | 
| 247 | 
            +
              "chimaeras": "chimeras",
         | 
| 248 | 
            +
              "chiselled": "chiseled",
         | 
| 249 | 
            +
              "chiselling": "chiseling",
         | 
| 250 | 
            +
              "circularise": "circularize",
         | 
| 251 | 
            +
              "circularised": "circularized",
         | 
| 252 | 
            +
              "circularises": "circularizes",
         | 
| 253 | 
            +
              "circularising": "circularizing",
         | 
| 254 | 
            +
              "civilise": "civilize",
         | 
| 255 | 
            +
              "civilised": "civilized",
         | 
| 256 | 
            +
              "civilises": "civilizes",
         | 
| 257 | 
            +
              "civilising": "civilizing",
         | 
| 258 | 
            +
              "clamour": "clamor",
         | 
| 259 | 
            +
              "clamoured": "clamored",
         | 
| 260 | 
            +
              "clamouring": "clamoring",
         | 
| 261 | 
            +
              "clamours": "clamors",
         | 
| 262 | 
            +
              "clangour": "clangor",
         | 
| 263 | 
            +
              "clarinettist": "clarinetist",
         | 
| 264 | 
            +
              "clarinettists": "clarinetists",
         | 
| 265 | 
            +
              "collectivise": "collectivize",
         | 
| 266 | 
            +
              "collectivised": "collectivized",
         | 
| 267 | 
            +
              "collectivises": "collectivizes",
         | 
| 268 | 
            +
              "collectivising": "collectivizing",
         | 
| 269 | 
            +
              "colonisation": "colonization",
         | 
| 270 | 
            +
              "colonise": "colonize",
         | 
| 271 | 
            +
              "colonised": "colonized",
         | 
| 272 | 
            +
              "coloniser": "colonizer",
         | 
| 273 | 
            +
              "colonisers": "colonizers",
         | 
| 274 | 
            +
              "colonises": "colonizes",
         | 
| 275 | 
            +
              "colonising": "colonizing",
         | 
| 276 | 
            +
              "colour": "color",
         | 
| 277 | 
            +
              "colourant": "colorant",
         | 
| 278 | 
            +
              "colourants": "colorants",
         | 
| 279 | 
            +
              "coloured": "colored",
         | 
| 280 | 
            +
              "coloureds": "coloreds",
         | 
| 281 | 
            +
              "colourful": "colorful",
         | 
| 282 | 
            +
              "colourfully": "colorfully",
         | 
| 283 | 
            +
              "colouring": "coloring",
         | 
| 284 | 
            +
              "colourize": "colorize",
         | 
| 285 | 
            +
              "colourized": "colorized",
         | 
| 286 | 
            +
              "colourizes": "colorizes",
         | 
| 287 | 
            +
              "colourizing": "colorizing",
         | 
| 288 | 
            +
              "colourless": "colorless",
         | 
| 289 | 
            +
              "colours": "colors",
         | 
| 290 | 
            +
              "commercialise": "commercialize",
         | 
| 291 | 
            +
              "commercialised": "commercialized",
         | 
| 292 | 
            +
              "commercialises": "commercializes",
         | 
| 293 | 
            +
              "commercialising": "commercializing",
         | 
| 294 | 
            +
              "compartmentalise": "compartmentalize",
         | 
| 295 | 
            +
              "compartmentalised": "compartmentalized",
         | 
| 296 | 
            +
              "compartmentalises": "compartmentalizes",
         | 
| 297 | 
            +
              "compartmentalising": "compartmentalizing",
         | 
| 298 | 
            +
              "computerise": "computerize",
         | 
| 299 | 
            +
              "computerised": "computerized",
         | 
| 300 | 
            +
              "computerises": "computerizes",
         | 
| 301 | 
            +
              "computerising": "computerizing",
         | 
| 302 | 
            +
              "conceptualise": "conceptualize",
         | 
| 303 | 
            +
              "conceptualised": "conceptualized",
         | 
| 304 | 
            +
              "conceptualises": "conceptualizes",
         | 
| 305 | 
            +
              "conceptualising": "conceptualizing",
         | 
| 306 | 
            +
              "connexion": "connection",
         | 
| 307 | 
            +
              "connexions": "connections",
         | 
| 308 | 
            +
              "contextualise": "contextualize",
         | 
| 309 | 
            +
              "contextualised": "contextualized",
         | 
| 310 | 
            +
              "contextualises": "contextualizes",
         | 
| 311 | 
            +
              "contextualising": "contextualizing",
         | 
| 312 | 
            +
              "cosier": "cozier",
         | 
| 313 | 
            +
              "cosies": "cozies",
         | 
| 314 | 
            +
              "cosiest": "coziest",
         | 
| 315 | 
            +
              "cosily": "cozily",
         | 
| 316 | 
            +
              "cosiness": "coziness",
         | 
| 317 | 
            +
              "cosy": "cozy",
         | 
| 318 | 
            +
              "councillor": "councilor",
         | 
| 319 | 
            +
              "councillors": "councilors",
         | 
| 320 | 
            +
              "counselled": "counseled",
         | 
| 321 | 
            +
              "counselling": "counseling",
         | 
| 322 | 
            +
              "counsellor": "counselor",
         | 
| 323 | 
            +
              "counsellors": "counselors",
         | 
| 324 | 
            +
              "crenelated": "crenellated",
         | 
| 325 | 
            +
              "criminalise": "criminalize",
         | 
| 326 | 
            +
              "criminalised": "criminalized",
         | 
| 327 | 
            +
              "criminalises": "criminalizes",
         | 
| 328 | 
            +
              "criminalising": "criminalizing",
         | 
| 329 | 
            +
              "criticise": "criticize",
         | 
| 330 | 
            +
              "criticised": "criticized",
         | 
| 331 | 
            +
              "criticises": "criticizes",
         | 
| 332 | 
            +
              "criticising": "criticizing",
         | 
| 333 | 
            +
              "crueller": "crueler",
         | 
| 334 | 
            +
              "cruellest": "cruelest",
         | 
| 335 | 
            +
              "crystallisation": "crystallization",
         | 
| 336 | 
            +
              "crystallise": "crystallize",
         | 
| 337 | 
            +
              "crystallised": "crystallized",
         | 
| 338 | 
            +
              "crystallises": "crystallizes",
         | 
| 339 | 
            +
              "crystallising": "crystallizing",
         | 
| 340 | 
            +
              "cudgelled": "cudgeled",
         | 
| 341 | 
            +
              "cudgelling": "cudgeling",
         | 
| 342 | 
            +
              "customise": "customize",
         | 
| 343 | 
            +
              "customised": "customized",
         | 
| 344 | 
            +
              "customises": "customizes",
         | 
| 345 | 
            +
              "customising": "customizing",
         | 
| 346 | 
            +
              "cypher": "cipher",
         | 
| 347 | 
            +
              "cyphers": "ciphers",
         | 
| 348 | 
            +
              "decentralisation": "decentralization",
         | 
| 349 | 
            +
              "decentralise": "decentralize",
         | 
| 350 | 
            +
              "decentralised": "decentralized",
         | 
| 351 | 
            +
              "decentralises": "decentralizes",
         | 
| 352 | 
            +
              "decentralising": "decentralizing",
         | 
| 353 | 
            +
              "decriminalisation": "decriminalization",
         | 
| 354 | 
            +
              "decriminalise": "decriminalize",
         | 
| 355 | 
            +
              "decriminalised": "decriminalized",
         | 
| 356 | 
            +
              "decriminalises": "decriminalizes",
         | 
| 357 | 
            +
              "decriminalising": "decriminalizing",
         | 
| 358 | 
            +
              "defence": "defense",
         | 
| 359 | 
            +
              "defenceless": "defenseless",
         | 
| 360 | 
            +
              "defences": "defenses",
         | 
| 361 | 
            +
              "dehumanisation": "dehumanization",
         | 
| 362 | 
            +
              "dehumanise": "dehumanize",
         | 
| 363 | 
            +
              "dehumanised": "dehumanized",
         | 
| 364 | 
            +
              "dehumanises": "dehumanizes",
         | 
| 365 | 
            +
              "dehumanising": "dehumanizing",
         | 
| 366 | 
            +
              "demeanour": "demeanor",
         | 
| 367 | 
            +
              "demilitarisation": "demilitarization",
         | 
| 368 | 
            +
              "demilitarise": "demilitarize",
         | 
| 369 | 
            +
              "demilitarised": "demilitarized",
         | 
| 370 | 
            +
              "demilitarises": "demilitarizes",
         | 
| 371 | 
            +
              "demilitarising": "demilitarizing",
         | 
| 372 | 
            +
              "demobilisation": "demobilization",
         | 
| 373 | 
            +
              "demobilise": "demobilize",
         | 
| 374 | 
            +
              "demobilised": "demobilized",
         | 
| 375 | 
            +
              "demobilises": "demobilizes",
         | 
| 376 | 
            +
              "demobilising": "demobilizing",
         | 
| 377 | 
            +
              "democratisation": "democratization",
         | 
| 378 | 
            +
              "democratise": "democratize",
         | 
| 379 | 
            +
              "democratised": "democratized",
         | 
| 380 | 
            +
              "democratises": "democratizes",
         | 
| 381 | 
            +
              "democratising": "democratizing",
         | 
| 382 | 
            +
              "demonise": "demonize",
         | 
| 383 | 
            +
              "demonised": "demonized",
         | 
| 384 | 
            +
              "demonises": "demonizes",
         | 
| 385 | 
            +
              "demonising": "demonizing",
         | 
| 386 | 
            +
              "demoralisation": "demoralization",
         | 
| 387 | 
            +
              "demoralise": "demoralize",
         | 
| 388 | 
            +
              "demoralised": "demoralized",
         | 
| 389 | 
            +
              "demoralises": "demoralizes",
         | 
| 390 | 
            +
              "demoralising": "demoralizing",
         | 
| 391 | 
            +
              "denationalisation": "denationalization",
         | 
| 392 | 
            +
              "denationalise": "denationalize",
         | 
| 393 | 
            +
              "denationalised": "denationalized",
         | 
| 394 | 
            +
              "denationalises": "denationalizes",
         | 
| 395 | 
            +
              "denationalising": "denationalizing",
         | 
| 396 | 
            +
              "deodorise": "deodorize",
         | 
| 397 | 
            +
              "deodorised": "deodorized",
         | 
| 398 | 
            +
              "deodorises": "deodorizes",
         | 
| 399 | 
            +
              "deodorising": "deodorizing",
         | 
| 400 | 
            +
              "depersonalise": "depersonalize",
         | 
| 401 | 
            +
              "depersonalised": "depersonalized",
         | 
| 402 | 
            +
              "depersonalises": "depersonalizes",
         | 
| 403 | 
            +
              "depersonalising": "depersonalizing",
         | 
| 404 | 
            +
              "deputise": "deputize",
         | 
| 405 | 
            +
              "deputised": "deputized",
         | 
| 406 | 
            +
              "deputises": "deputizes",
         | 
| 407 | 
            +
              "deputising": "deputizing",
         | 
| 408 | 
            +
              "desensitisation": "desensitization",
         | 
| 409 | 
            +
              "desensitise": "desensitize",
         | 
| 410 | 
            +
              "desensitised": "desensitized",
         | 
| 411 | 
            +
              "desensitises": "desensitizes",
         | 
| 412 | 
            +
              "desensitising": "desensitizing",
         | 
| 413 | 
            +
              "destabilisation": "destabilization",
         | 
| 414 | 
            +
              "destabilise": "destabilize",
         | 
| 415 | 
            +
              "destabilised": "destabilized",
         | 
| 416 | 
            +
              "destabilises": "destabilizes",
         | 
| 417 | 
            +
              "destabilising": "destabilizing",
         | 
| 418 | 
            +
              "dialled": "dialed",
         | 
| 419 | 
            +
              "dialling": "dialing",
         | 
| 420 | 
            +
              "dialogue": "dialog",
         | 
| 421 | 
            +
              "dialogues": "dialogs",
         | 
| 422 | 
            +
              "diarrhoea": "diarrhea",
         | 
| 423 | 
            +
              "digitise": "digitize",
         | 
| 424 | 
            +
              "digitised": "digitized",
         | 
| 425 | 
            +
              "digitises": "digitizes",
         | 
| 426 | 
            +
              "digitising": "digitizing",
         | 
| 427 | 
            +
              "disc": "disk",
         | 
| 428 | 
            +
              "discolour": "discolor",
         | 
| 429 | 
            +
              "discoloured": "discolored",
         | 
| 430 | 
            +
              "discolouring": "discoloring",
         | 
| 431 | 
            +
              "discolours": "discolors",
         | 
| 432 | 
            +
              "discs": "disks",
         | 
| 433 | 
            +
              "disembowelled": "disemboweled",
         | 
| 434 | 
            +
              "disembowelling": "disemboweling",
         | 
| 435 | 
            +
              "disfavour": "disfavor",
         | 
| 436 | 
            +
              "dishevelled": "disheveled",
         | 
| 437 | 
            +
              "dishonour": "dishonor",
         | 
| 438 | 
            +
              "dishonourable": "dishonorable",
         | 
| 439 | 
            +
              "dishonourably": "dishonorably",
         | 
| 440 | 
            +
              "dishonoured": "dishonored",
         | 
| 441 | 
            +
              "dishonouring": "dishonoring",
         | 
| 442 | 
            +
              "dishonours": "dishonors",
         | 
| 443 | 
            +
              "disorganisation": "disorganization",
         | 
| 444 | 
            +
              "disorganised": "disorganized",
         | 
| 445 | 
            +
              "distil": "distill",
         | 
| 446 | 
            +
              "distils": "distills",
         | 
| 447 | 
            +
              "dramatisation": "dramatization",
         | 
| 448 | 
            +
              "dramatisations": "dramatizations",
         | 
| 449 | 
            +
              "dramatise": "dramatize",
         | 
| 450 | 
            +
              "dramatised": "dramatized",
         | 
| 451 | 
            +
              "dramatises": "dramatizes",
         | 
| 452 | 
            +
              "dramatising": "dramatizing",
         | 
| 453 | 
            +
              "draught": "draft",
         | 
| 454 | 
            +
              "draughtboard": "draftboard",
         | 
| 455 | 
            +
              "draughtboards": "draftboards",
         | 
| 456 | 
            +
              "draughtier": "draftier",
         | 
| 457 | 
            +
              "draughtiest": "draftiest",
         | 
| 458 | 
            +
              "draughts": "drafts",
         | 
| 459 | 
            +
              "draughtsman": "draftsman",
         | 
| 460 | 
            +
              "draughtsmanship": "draftsmanship",
         | 
| 461 | 
            +
              "draughtsmen": "draftsmen",
         | 
| 462 | 
            +
              "draughtswoman": "draftswoman",
         | 
| 463 | 
            +
              "draughtswomen": "draftswomen",
         | 
| 464 | 
            +
              "draughty": "drafty",
         | 
| 465 | 
            +
              "drivelled": "driveled",
         | 
| 466 | 
            +
              "drivelling": "driveling",
         | 
| 467 | 
            +
              "duelled": "dueled",
         | 
| 468 | 
            +
              "duelling": "dueling",
         | 
| 469 | 
            +
              "economise": "economize",
         | 
| 470 | 
            +
              "economised": "economized",
         | 
| 471 | 
            +
              "economises": "economizes",
         | 
| 472 | 
            +
              "economising": "economizing",
         | 
| 473 | 
            +
              "editorialise": "editorialize",
         | 
| 474 | 
            +
              "editorialised": "editorialized",
         | 
| 475 | 
            +
              "editorialises": "editorializes",
         | 
| 476 | 
            +
              "editorialising": "editorializing",
         | 
| 477 | 
            +
              "edoema": "edema",
         | 
| 478 | 
            +
              "empathise": "empathize",
         | 
| 479 | 
            +
              "empathised": "empathized",
         | 
| 480 | 
            +
              "empathises": "empathizes",
         | 
| 481 | 
            +
              "empathising": "empathizing",
         | 
| 482 | 
            +
              "emphasise": "emphasize",
         | 
| 483 | 
            +
              "emphasised": "emphasized",
         | 
| 484 | 
            +
              "emphasises": "emphasizes",
         | 
| 485 | 
            +
              "emphasising": "emphasizing",
         | 
| 486 | 
            +
              "enamelled": "enameled",
         | 
| 487 | 
            +
              "enamelling": "enameling",
         | 
| 488 | 
            +
              "enamoured": "enamored",
         | 
| 489 | 
            +
              "encyclopaedia": "encyclopedia",
         | 
| 490 | 
            +
              "encyclopaedias": "encyclopedias",
         | 
| 491 | 
            +
              "encyclopaedic": "encyclopedic",
         | 
| 492 | 
            +
              "endeavour": "endeavor",
         | 
| 493 | 
            +
              "endeavoured": "endeavored",
         | 
| 494 | 
            +
              "endeavouring": "endeavoring",
         | 
| 495 | 
            +
              "endeavours": "endeavors",
         | 
| 496 | 
            +
              "energise": "energize",
         | 
| 497 | 
            +
              "energised": "energized",
         | 
| 498 | 
            +
              "energises": "energizes",
         | 
| 499 | 
            +
              "energising": "energizing",
         | 
| 500 | 
            +
              "enrol": "enroll",
         | 
| 501 | 
            +
              "enrols": "enrolls",
         | 
| 502 | 
            +
              "enthral": "enthrall",
         | 
| 503 | 
            +
              "enthrals": "enthralls",
         | 
| 504 | 
            +
              "epaulette": "epaulet",
         | 
| 505 | 
            +
              "epaulettes": "epaulets",
         | 
| 506 | 
            +
              "epicentre": "epicenter",
         | 
| 507 | 
            +
              "epicentres": "epicenters",
         | 
| 508 | 
            +
              "epilogue": "epilog",
         | 
| 509 | 
            +
              "epilogues": "epilogs",
         | 
| 510 | 
            +
              "epitomise": "epitomize",
         | 
| 511 | 
            +
              "epitomised": "epitomized",
         | 
| 512 | 
            +
              "epitomises": "epitomizes",
         | 
| 513 | 
            +
              "epitomising": "epitomizing",
         | 
| 514 | 
            +
              "equalisation": "equalization",
         | 
| 515 | 
            +
              "equalise": "equalize",
         | 
| 516 | 
            +
              "equalised": "equalized",
         | 
| 517 | 
            +
              "equaliser": "equalizer",
         | 
| 518 | 
            +
              "equalisers": "equalizers",
         | 
| 519 | 
            +
              "equalises": "equalizes",
         | 
| 520 | 
            +
              "equalising": "equalizing",
         | 
| 521 | 
            +
              "eulogise": "eulogize",
         | 
| 522 | 
            +
              "eulogised": "eulogized",
         | 
| 523 | 
            +
              "eulogises": "eulogizes",
         | 
| 524 | 
            +
              "eulogising": "eulogizing",
         | 
| 525 | 
            +
              "evangelise": "evangelize",
         | 
| 526 | 
            +
              "evangelised": "evangelized",
         | 
| 527 | 
            +
              "evangelises": "evangelizes",
         | 
| 528 | 
            +
              "evangelising": "evangelizing",
         | 
| 529 | 
            +
              "exorcise": "exorcize",
         | 
| 530 | 
            +
              "exorcised": "exorcized",
         | 
| 531 | 
            +
              "exorcises": "exorcizes",
         | 
| 532 | 
            +
              "exorcising": "exorcizing",
         | 
| 533 | 
            +
              "extemporisation": "extemporization",
         | 
| 534 | 
            +
              "extemporise": "extemporize",
         | 
| 535 | 
            +
              "extemporised": "extemporized",
         | 
| 536 | 
            +
              "extemporises": "extemporizes",
         | 
| 537 | 
            +
              "extemporising": "extemporizing",
         | 
| 538 | 
            +
              "externalisation": "externalization",
         | 
| 539 | 
            +
              "externalisations": "externalizations",
         | 
| 540 | 
            +
              "externalise": "externalize",
         | 
| 541 | 
            +
              "externalised": "externalized",
         | 
| 542 | 
            +
              "externalises": "externalizes",
         | 
| 543 | 
            +
              "externalising": "externalizing",
         | 
| 544 | 
            +
              "factorise": "factorize",
         | 
| 545 | 
            +
              "factorised": "factorized",
         | 
| 546 | 
            +
              "factorises": "factorizes",
         | 
| 547 | 
            +
              "factorising": "factorizing",
         | 
| 548 | 
            +
              "faecal": "fecal",
         | 
| 549 | 
            +
              "faeces": "feces",
         | 
| 550 | 
            +
              "familiarisation": "familiarization",
         | 
| 551 | 
            +
              "familiarise": "familiarize",
         | 
| 552 | 
            +
              "familiarised": "familiarized",
         | 
| 553 | 
            +
              "familiarises": "familiarizes",
         | 
| 554 | 
            +
              "familiarising": "familiarizing",
         | 
| 555 | 
            +
              "fantasise": "fantasize",
         | 
| 556 | 
            +
              "fantasised": "fantasized",
         | 
| 557 | 
            +
              "fantasises": "fantasizes",
         | 
| 558 | 
            +
              "fantasising": "fantasizing",
         | 
| 559 | 
            +
              "favour": "favor",
         | 
| 560 | 
            +
              "favourable": "favorable",
         | 
| 561 | 
            +
              "favourably": "favorably",
         | 
| 562 | 
            +
              "favoured": "favored",
         | 
| 563 | 
            +
              "favouring": "favoring",
         | 
| 564 | 
            +
              "favourite": "favorite",
         | 
| 565 | 
            +
              "favourites": "favorites",
         | 
| 566 | 
            +
              "favouritism": "favoritism",
         | 
| 567 | 
            +
              "favours": "favors",
         | 
| 568 | 
            +
              "feminise": "feminize",
         | 
| 569 | 
            +
              "feminised": "feminized",
         | 
| 570 | 
            +
              "feminises": "feminizes",
         | 
| 571 | 
            +
              "feminising": "feminizing",
         | 
| 572 | 
            +
              "fertilisation": "fertilization",
         | 
| 573 | 
            +
              "fertilise": "fertilize",
         | 
| 574 | 
            +
              "fertilised": "fertilized",
         | 
| 575 | 
            +
              "fertiliser": "fertilizer",
         | 
| 576 | 
            +
              "fertilisers": "fertilizers",
         | 
| 577 | 
            +
              "fertilises": "fertilizes",
         | 
| 578 | 
            +
              "fertilising": "fertilizing",
         | 
| 579 | 
            +
              "fervour": "fervor",
         | 
| 580 | 
            +
              "fibre": "fiber",
         | 
| 581 | 
            +
              "fibreglass": "fiberglass",
         | 
| 582 | 
            +
              "fibres": "fibers",
         | 
| 583 | 
            +
              "fictionalisation": "fictionalization",
         | 
| 584 | 
            +
              "fictionalisations": "fictionalizations",
         | 
| 585 | 
            +
              "fictionalise": "fictionalize",
         | 
| 586 | 
            +
              "fictionalised": "fictionalized",
         | 
| 587 | 
            +
              "fictionalises": "fictionalizes",
         | 
| 588 | 
            +
              "fictionalising": "fictionalizing",
         | 
| 589 | 
            +
              "fillet": "filet",
         | 
| 590 | 
            +
              "filleted": "fileted",
         | 
| 591 | 
            +
              "filleting": "fileting",
         | 
| 592 | 
            +
              "fillets": "filets",
         | 
| 593 | 
            +
              "finalisation": "finalization",
         | 
| 594 | 
            +
              "finalise": "finalize",
         | 
| 595 | 
            +
              "finalised": "finalized",
         | 
| 596 | 
            +
              "finalises": "finalizes",
         | 
| 597 | 
            +
              "finalising": "finalizing",
         | 
| 598 | 
            +
              "flautist": "flutist",
         | 
| 599 | 
            +
              "flautists": "flutists",
         | 
| 600 | 
            +
              "flavour": "flavor",
         | 
| 601 | 
            +
              "flavoured": "flavored",
         | 
| 602 | 
            +
              "flavouring": "flavoring",
         | 
| 603 | 
            +
              "flavourings": "flavorings",
         | 
| 604 | 
            +
              "flavourless": "flavorless",
         | 
| 605 | 
            +
              "flavours": "flavors",
         | 
| 606 | 
            +
              "flavoursome": "flavorsome",
         | 
| 607 | 
            +
              "flyer / flier": "flier / flyer",
         | 
| 608 | 
            +
              "foetal": "fetal",
         | 
| 609 | 
            +
              "foetid": "fetid",
         | 
| 610 | 
            +
              "foetus": "fetus",
         | 
| 611 | 
            +
              "foetuses": "fetuses",
         | 
| 612 | 
            +
              "formalisation": "formalization",
         | 
| 613 | 
            +
              "formalise": "formalize",
         | 
| 614 | 
            +
              "formalised": "formalized",
         | 
| 615 | 
            +
              "formalises": "formalizes",
         | 
| 616 | 
            +
              "formalising": "formalizing",
         | 
| 617 | 
            +
              "fossilisation": "fossilization",
         | 
| 618 | 
            +
              "fossilise": "fossilize",
         | 
| 619 | 
            +
              "fossilised": "fossilized",
         | 
| 620 | 
            +
              "fossilises": "fossilizes",
         | 
| 621 | 
            +
              "fossilising": "fossilizing",
         | 
| 622 | 
            +
              "fraternisation": "fraternization",
         | 
| 623 | 
            +
              "fraternise": "fraternize",
         | 
| 624 | 
            +
              "fraternised": "fraternized",
         | 
| 625 | 
            +
              "fraternises": "fraternizes",
         | 
| 626 | 
            +
              "fraternising": "fraternizing",
         | 
| 627 | 
            +
              "fulfil": "fulfill",
         | 
| 628 | 
            +
              "fulfilment": "fulfillment",
         | 
| 629 | 
            +
              "fulfils": "fulfills",
         | 
| 630 | 
            +
              "funnelled": "funneled",
         | 
| 631 | 
            +
              "funnelling": "funneling",
         | 
| 632 | 
            +
              "gage": "gauge",
         | 
| 633 | 
            +
              "gaged": "gauged",
         | 
| 634 | 
            +
              "gages": "gauges",
         | 
| 635 | 
            +
              "gaging": "gauging",
         | 
| 636 | 
            +
              "galvanise": "galvanize",
         | 
| 637 | 
            +
              "galvanised": "galvanized",
         | 
| 638 | 
            +
              "galvanises": "galvanizes",
         | 
| 639 | 
            +
              "galvanising": "galvanizing",
         | 
| 640 | 
            +
              "gambolled": "gamboled",
         | 
| 641 | 
            +
              "gambolling": "gamboling",
         | 
| 642 | 
            +
              "gaol": "jail",
         | 
| 643 | 
            +
              "gaolbird": "jailbird",
         | 
| 644 | 
            +
              "gaolbirds": "jailbirds",
         | 
| 645 | 
            +
              "gaolbreak": "jailbreak",
         | 
| 646 | 
            +
              "gaolbreaks": "jailbreaks",
         | 
| 647 | 
            +
              "gaoled": "jailed",
         | 
| 648 | 
            +
              "gaoler": "jailer",
         | 
| 649 | 
            +
              "gaolers": "jailers",
         | 
| 650 | 
            +
              "gaoling": "jailing",
         | 
| 651 | 
            +
              "gaols": "jails",
         | 
| 652 | 
            +
              "gasses": "gases",
         | 
| 653 | 
            +
              "generalisation": "generalization",
         | 
| 654 | 
            +
              "generalisations": "generalizations",
         | 
| 655 | 
            +
              "generalise": "generalize",
         | 
| 656 | 
            +
              "generalised": "generalized",
         | 
| 657 | 
            +
              "generalises": "generalizes",
         | 
| 658 | 
            +
              "generalising": "generalizing",
         | 
| 659 | 
            +
              "ghettoise": "ghettoize",
         | 
| 660 | 
            +
              "ghettoised": "ghettoized",
         | 
| 661 | 
            +
              "ghettoises": "ghettoizes",
         | 
| 662 | 
            +
              "ghettoising": "ghettoizing",
         | 
| 663 | 
            +
              "gipsies": "gypsies",
         | 
| 664 | 
            +
              "glamor": "glamour",
         | 
| 665 | 
            +
              "glamorise": "glamorize",
         | 
| 666 | 
            +
              "glamorised": "glamorized",
         | 
| 667 | 
            +
              "glamorises": "glamorizes",
         | 
| 668 | 
            +
              "glamorising": "glamorizing",
         | 
| 669 | 
            +
              "globalisation": "globalization",
         | 
| 670 | 
            +
              "globalise": "globalize",
         | 
| 671 | 
            +
              "globalised": "globalized",
         | 
| 672 | 
            +
              "globalises": "globalizes",
         | 
| 673 | 
            +
              "globalising": "globalizing",
         | 
| 674 | 
            +
              "glueing": "gluing",
         | 
| 675 | 
            +
              "goitre": "goiter",
         | 
| 676 | 
            +
              "goitres": "goiters",
         | 
| 677 | 
            +
              "gonorrhoea": "gonorrhea",
         | 
| 678 | 
            +
              "gramme": "gram",
         | 
| 679 | 
            +
              "grammes": "grams",
         | 
| 680 | 
            +
              "gravelled": "graveled",
         | 
| 681 | 
            +
              "grey": "gray",
         | 
| 682 | 
            +
              "greyed": "grayed",
         | 
| 683 | 
            +
              "greying": "graying",
         | 
| 684 | 
            +
              "greyish": "grayish",
         | 
| 685 | 
            +
              "greyness": "grayness",
         | 
| 686 | 
            +
              "greys": "grays",
         | 
| 687 | 
            +
              "grovelled": "groveled",
         | 
| 688 | 
            +
              "grovelling": "groveling",
         | 
| 689 | 
            +
              "groyne": "groin",
         | 
| 690 | 
            +
              "groynes": "groins",
         | 
| 691 | 
            +
              "gruelling": "grueling",
         | 
| 692 | 
            +
              "gruellingly": "gruelingly",
         | 
| 693 | 
            +
              "gryphon": "griffin",
         | 
| 694 | 
            +
              "gryphons": "griffins",
         | 
| 695 | 
            +
              "gynaecological": "gynecological",
         | 
| 696 | 
            +
              "gynaecologist": "gynecologist",
         | 
| 697 | 
            +
              "gynaecologists": "gynecologists",
         | 
| 698 | 
            +
              "gynaecology": "gynecology",
         | 
| 699 | 
            +
              "haematological": "hematological",
         | 
| 700 | 
            +
              "haematologist": "hematologist",
         | 
| 701 | 
            +
              "haematologists": "hematologists",
         | 
| 702 | 
            +
              "haematology": "hematology",
         | 
| 703 | 
            +
              "haemoglobin": "hemoglobin",
         | 
| 704 | 
            +
              "haemophilia": "hemophilia",
         | 
| 705 | 
            +
              "haemophiliac": "hemophiliac",
         | 
| 706 | 
            +
              "haemophiliacs": "hemophiliacs",
         | 
| 707 | 
            +
              "haemorrhage": "hemorrhage",
         | 
| 708 | 
            +
              "haemorrhaged": "hemorrhaged",
         | 
| 709 | 
            +
              "haemorrhages": "hemorrhages",
         | 
| 710 | 
            +
              "haemorrhaging": "hemorrhaging",
         | 
| 711 | 
            +
              "haemorrhoids": "hemorrhoids",
         | 
| 712 | 
            +
              "harbour": "harbor",
         | 
| 713 | 
            +
              "harboured": "harbored",
         | 
| 714 | 
            +
              "harbouring": "harboring",
         | 
| 715 | 
            +
              "harbours": "harbors",
         | 
| 716 | 
            +
              "harmonisation": "harmonization",
         | 
| 717 | 
            +
              "harmonise": "harmonize",
         | 
| 718 | 
            +
              "harmonised": "harmonized",
         | 
| 719 | 
            +
              "harmonises": "harmonizes",
         | 
| 720 | 
            +
              "harmonising": "harmonizing",
         | 
| 721 | 
            +
              "homoeopath": "homeopath",
         | 
| 722 | 
            +
              "homoeopathic": "homeopathic",
         | 
| 723 | 
            +
              "homoeopaths": "homeopaths",
         | 
| 724 | 
            +
              "homoeopathy": "homeopathy",
         | 
| 725 | 
            +
              "homogenise": "homogenize",
         | 
| 726 | 
            +
              "homogenised": "homogenized",
         | 
| 727 | 
            +
              "homogenises": "homogenizes",
         | 
| 728 | 
            +
              "homogenising": "homogenizing",
         | 
| 729 | 
            +
              "honour": "honor",
         | 
| 730 | 
            +
              "honourable": "honorable",
         | 
| 731 | 
            +
              "honourably": "honorably",
         | 
| 732 | 
            +
              "honoured": "honored",
         | 
| 733 | 
            +
              "honouring": "honoring",
         | 
| 734 | 
            +
              "honours": "honors",
         | 
| 735 | 
            +
              "hospitalisation": "hospitalization",
         | 
| 736 | 
            +
              "hospitalise": "hospitalize",
         | 
| 737 | 
            +
              "hospitalised": "hospitalized",
         | 
| 738 | 
            +
              "hospitalises": "hospitalizes",
         | 
| 739 | 
            +
              "hospitalising": "hospitalizing",
         | 
| 740 | 
            +
              "humanise": "humanize",
         | 
| 741 | 
            +
              "humanised": "humanized",
         | 
| 742 | 
            +
              "humanises": "humanizes",
         | 
| 743 | 
            +
              "humanising": "humanizing",
         | 
| 744 | 
            +
              "humour": "humor",
         | 
| 745 | 
            +
              "humoured": "humored",
         | 
| 746 | 
            +
              "humouring": "humoring",
         | 
| 747 | 
            +
              "humourless": "humorless",
         | 
| 748 | 
            +
              "humours": "humors",
         | 
| 749 | 
            +
              "hybridise": "hybridize",
         | 
| 750 | 
            +
              "hybridised": "hybridized",
         | 
| 751 | 
            +
              "hybridises": "hybridizes",
         | 
| 752 | 
            +
              "hybridising": "hybridizing",
         | 
| 753 | 
            +
              "hypnotise": "hypnotize",
         | 
| 754 | 
            +
              "hypnotised": "hypnotized",
         | 
| 755 | 
            +
              "hypnotises": "hypnotizes",
         | 
| 756 | 
            +
              "hypnotising": "hypnotizing",
         | 
| 757 | 
            +
              "hypothesise": "hypothesize",
         | 
| 758 | 
            +
              "hypothesised": "hypothesized",
         | 
| 759 | 
            +
              "hypothesises": "hypothesizes",
         | 
| 760 | 
            +
              "hypothesising": "hypothesizing",
         | 
| 761 | 
            +
              "idealisation": "idealization",
         | 
| 762 | 
            +
              "idealise": "idealize",
         | 
| 763 | 
            +
              "idealised": "idealized",
         | 
| 764 | 
            +
              "idealises": "idealizes",
         | 
| 765 | 
            +
              "idealising": "idealizing",
         | 
| 766 | 
            +
              "idolise": "idolize",
         | 
| 767 | 
            +
              "idolised": "idolized",
         | 
| 768 | 
            +
              "idolises": "idolizes",
         | 
| 769 | 
            +
              "idolising": "idolizing",
         | 
| 770 | 
            +
              "immobilisation": "immobilization",
         | 
| 771 | 
            +
              "immobilise": "immobilize",
         | 
| 772 | 
            +
              "immobilised": "immobilized",
         | 
| 773 | 
            +
              "immobiliser": "immobilizer",
         | 
| 774 | 
            +
              "immobilisers": "immobilizers",
         | 
| 775 | 
            +
              "immobilises": "immobilizes",
         | 
| 776 | 
            +
              "immobilising": "immobilizing",
         | 
| 777 | 
            +
              "immortalise": "immortalize",
         | 
| 778 | 
            +
              "immortalised": "immortalized",
         | 
| 779 | 
            +
              "immortalises": "immortalizes",
         | 
| 780 | 
            +
              "immortalising": "immortalizing",
         | 
| 781 | 
            +
              "immunisation": "immunization",
         | 
| 782 | 
            +
              "immunise": "immunize",
         | 
| 783 | 
            +
              "immunised": "immunized",
         | 
| 784 | 
            +
              "immunises": "immunizes",
         | 
| 785 | 
            +
              "immunising": "immunizing",
         | 
| 786 | 
            +
              "impanelled": "impaneled",
         | 
| 787 | 
            +
              "impanelling": "impaneling",
         | 
| 788 | 
            +
              "imperilled": "imperiled",
         | 
| 789 | 
            +
              "imperilling": "imperiling",
         | 
| 790 | 
            +
              "individualise": "individualize",
         | 
| 791 | 
            +
              "individualised": "individualized",
         | 
| 792 | 
            +
              "individualises": "individualizes",
         | 
| 793 | 
            +
              "individualising": "individualizing",
         | 
| 794 | 
            +
              "industrialise": "industrialize",
         | 
| 795 | 
            +
              "industrialised": "industrialized",
         | 
| 796 | 
            +
              "industrialises": "industrializes",
         | 
| 797 | 
            +
              "industrialising": "industrializing",
         | 
| 798 | 
            +
              "inflexion": "inflection",
         | 
| 799 | 
            +
              "inflexions": "inflections",
         | 
| 800 | 
            +
              "initialise": "initialize",
         | 
| 801 | 
            +
              "initialised": "initialized",
         | 
| 802 | 
            +
              "initialises": "initializes",
         | 
| 803 | 
            +
              "initialising": "initializing",
         | 
| 804 | 
            +
              "initialled": "initialed",
         | 
| 805 | 
            +
              "initialling": "initialing",
         | 
| 806 | 
            +
              "instal": "install",
         | 
| 807 | 
            +
              "instalment": "installment",
         | 
| 808 | 
            +
              "instalments": "installments",
         | 
| 809 | 
            +
              "instals": "installs",
         | 
| 810 | 
            +
              "instil": "instill",
         | 
| 811 | 
            +
              "instils": "instills",
         | 
| 812 | 
            +
              "institutionalisation": "institutionalization",
         | 
| 813 | 
            +
              "institutionalise": "institutionalize",
         | 
| 814 | 
            +
              "institutionalised": "institutionalized",
         | 
| 815 | 
            +
              "institutionalises": "institutionalizes",
         | 
| 816 | 
            +
              "institutionalising": "institutionalizing",
         | 
| 817 | 
            +
              "intellectualise": "intellectualize",
         | 
| 818 | 
            +
              "intellectualised": "intellectualized",
         | 
| 819 | 
            +
              "intellectualises": "intellectualizes",
         | 
| 820 | 
            +
              "intellectualising": "intellectualizing",
         | 
| 821 | 
            +
              "internalisation": "internalization",
         | 
| 822 | 
            +
              "internalise": "internalize",
         | 
| 823 | 
            +
              "internalised": "internalized",
         | 
| 824 | 
            +
              "internalises": "internalizes",
         | 
| 825 | 
            +
              "internalising": "internalizing",
         | 
| 826 | 
            +
              "internationalisation": "internationalization",
         | 
| 827 | 
            +
              "internationalise": "internationalize",
         | 
| 828 | 
            +
              "internationalised": "internationalized",
         | 
| 829 | 
            +
              "internationalises": "internationalizes",
         | 
| 830 | 
            +
              "internationalising": "internationalizing",
         | 
| 831 | 
            +
              "ionisation": "ionization",
         | 
| 832 | 
            +
              "ionise": "ionize",
         | 
| 833 | 
            +
              "ionised": "ionized",
         | 
| 834 | 
            +
              "ioniser": "ionizer",
         | 
| 835 | 
            +
              "ionisers": "ionizers",
         | 
| 836 | 
            +
              "ionises": "ionizes",
         | 
| 837 | 
            +
              "ionising": "ionizing",
         | 
| 838 | 
            +
              "italicise": "italicize",
         | 
| 839 | 
            +
              "italicised": "italicized",
         | 
| 840 | 
            +
              "italicises": "italicizes",
         | 
| 841 | 
            +
              "italicising": "italicizing",
         | 
| 842 | 
            +
              "itemise": "itemize",
         | 
| 843 | 
            +
              "itemised": "itemized",
         | 
| 844 | 
            +
              "itemises": "itemizes",
         | 
| 845 | 
            +
              "itemising": "itemizing",
         | 
| 846 | 
            +
              "jeopardise": "jeopardize",
         | 
| 847 | 
            +
              "jeopardised": "jeopardized",
         | 
| 848 | 
            +
              "jeopardises": "jeopardizes",
         | 
| 849 | 
            +
              "jeopardising": "jeopardizing",
         | 
| 850 | 
            +
              "jewelled": "jeweled",
         | 
| 851 | 
            +
              "jeweller": "jeweler",
         | 
| 852 | 
            +
              "jewellers": "jewelers",
         | 
| 853 | 
            +
              "jewellery": "jewelry",
         | 
| 854 | 
            +
              "judgement": "judgment",
         | 
| 855 | 
            +
              "kilogramme": "kilogram",
         | 
| 856 | 
            +
              "kilogrammes": "kilograms",
         | 
| 857 | 
            +
              "kilometre": "kilometer",
         | 
| 858 | 
            +
              "kilometres": "kilometers",
         | 
| 859 | 
            +
              "labelled": "labeled",
         | 
| 860 | 
            +
              "labelling": "labeling",
         | 
| 861 | 
            +
              "labour": "labor",
         | 
| 862 | 
            +
              "laboured": "labored",
         | 
| 863 | 
            +
              "labourer": "laborer",
         | 
| 864 | 
            +
              "labourers": "laborers",
         | 
| 865 | 
            +
              "labouring": "laboring",
         | 
| 866 | 
            +
              "labours": "labors",
         | 
| 867 | 
            +
              "lacklustre": "lackluster",
         | 
| 868 | 
            +
              "legalisation": "legalization",
         | 
| 869 | 
            +
              "legalise": "legalize",
         | 
| 870 | 
            +
              "legalised": "legalized",
         | 
| 871 | 
            +
              "legalises": "legalizes",
         | 
| 872 | 
            +
              "legalising": "legalizing",
         | 
| 873 | 
            +
              "legitimise": "legitimize",
         | 
| 874 | 
            +
              "legitimised": "legitimized",
         | 
| 875 | 
            +
              "legitimises": "legitimizes",
         | 
| 876 | 
            +
              "legitimising": "legitimizing",
         | 
| 877 | 
            +
              "leukaemia": "leukemia",
         | 
| 878 | 
            +
              "levelled": "leveled",
         | 
| 879 | 
            +
              "leveller": "leveler",
         | 
| 880 | 
            +
              "levellers": "levelers",
         | 
| 881 | 
            +
              "levelling": "leveling",
         | 
| 882 | 
            +
              "libelled": "libeled",
         | 
| 883 | 
            +
              "libelling": "libeling",
         | 
| 884 | 
            +
              "libellous": "libelous",
         | 
| 885 | 
            +
              "liberalisation": "liberalization",
         | 
| 886 | 
            +
              "liberalise": "liberalize",
         | 
| 887 | 
            +
              "liberalised": "liberalized",
         | 
| 888 | 
            +
              "liberalises": "liberalizes",
         | 
| 889 | 
            +
              "liberalising": "liberalizing",
         | 
| 890 | 
            +
              "licence": "license",
         | 
| 891 | 
            +
              "licenced": "licensed",
         | 
| 892 | 
            +
              "licences": "licenses",
         | 
| 893 | 
            +
              "licencing": "licensing",
         | 
| 894 | 
            +
              "likeable": "likable",
         | 
| 895 | 
            +
              "lionisation": "lionization",
         | 
| 896 | 
            +
              "lionise": "lionize",
         | 
| 897 | 
            +
              "lionised": "lionized",
         | 
| 898 | 
            +
              "lionises": "lionizes",
         | 
| 899 | 
            +
              "lionising": "lionizing",
         | 
| 900 | 
            +
              "liquidise": "liquidize",
         | 
| 901 | 
            +
              "liquidised": "liquidized",
         | 
| 902 | 
            +
              "liquidiser": "liquidizer",
         | 
| 903 | 
            +
              "liquidisers": "liquidizers",
         | 
| 904 | 
            +
              "liquidises": "liquidizes",
         | 
| 905 | 
            +
              "liquidising": "liquidizing",
         | 
| 906 | 
            +
              "litre": "liter",
         | 
| 907 | 
            +
              "litres": "liters",
         | 
| 908 | 
            +
              "localise": "localize",
         | 
| 909 | 
            +
              "localised": "localized",
         | 
| 910 | 
            +
              "localises": "localizes",
         | 
| 911 | 
            +
              "localising": "localizing",
         | 
| 912 | 
            +
              "louvre": "louver",
         | 
| 913 | 
            +
              "louvred": "louvered",
         | 
| 914 | 
            +
              "louvres": "louvers",
         | 
| 915 | 
            +
              "lustre": "luster",
         | 
| 916 | 
            +
              "magnetise": "magnetize",
         | 
| 917 | 
            +
              "magnetised": "magnetized",
         | 
| 918 | 
            +
              "magnetises": "magnetizes",
         | 
| 919 | 
            +
              "magnetising": "magnetizing",
         | 
| 920 | 
            +
              "manoeuvrability": "maneuverability",
         | 
| 921 | 
            +
              "manoeuvrable": "maneuverable",
         | 
| 922 | 
            +
              "manoeuvre": "maneuver",
         | 
| 923 | 
            +
              "manoeuvred": "maneuvered",
         | 
| 924 | 
            +
              "manoeuvres": "maneuvers",
         | 
| 925 | 
            +
              "manoeuvring": "maneuvering",
         | 
| 926 | 
            +
              "manoeuvrings": "maneuverings",
         | 
| 927 | 
            +
              "marginalisation": "marginalization",
         | 
| 928 | 
            +
              "marginalise": "marginalize",
         | 
| 929 | 
            +
              "marginalised": "marginalized",
         | 
| 930 | 
            +
              "marginalises": "marginalizes",
         | 
| 931 | 
            +
              "marginalising": "marginalizing",
         | 
| 932 | 
            +
              "marshalled": "marshaled",
         | 
| 933 | 
            +
              "marshalling": "marshaling",
         | 
| 934 | 
            +
              "marvelled": "marveled",
         | 
| 935 | 
            +
              "marvelling": "marveling",
         | 
| 936 | 
            +
              "marvellous": "marvelous",
         | 
| 937 | 
            +
              "marvellously": "marvelously",
         | 
| 938 | 
            +
              "materialisation": "materialization",
         | 
| 939 | 
            +
              "materialise": "materialize",
         | 
| 940 | 
            +
              "materialised": "materialized",
         | 
| 941 | 
            +
              "materialises": "materializes",
         | 
| 942 | 
            +
              "materialising": "materializing",
         | 
| 943 | 
            +
              "maximisation": "maximization",
         | 
| 944 | 
            +
              "maximise": "maximize",
         | 
| 945 | 
            +
              "maximised": "maximized",
         | 
| 946 | 
            +
              "maximises": "maximizes",
         | 
| 947 | 
            +
              "maximising": "maximizing",
         | 
| 948 | 
            +
              "meagre": "meager",
         | 
| 949 | 
            +
              "mechanisation": "mechanization",
         | 
| 950 | 
            +
              "mechanise": "mechanize",
         | 
| 951 | 
            +
              "mechanised": "mechanized",
         | 
| 952 | 
            +
              "mechanises": "mechanizes",
         | 
| 953 | 
            +
              "mechanising": "mechanizing",
         | 
| 954 | 
            +
              "mediaeval": "medieval",
         | 
| 955 | 
            +
              "memorialise": "memorialize",
         | 
| 956 | 
            +
              "memorialised": "memorialized",
         | 
| 957 | 
            +
              "memorialises": "memorializes",
         | 
| 958 | 
            +
              "memorialising": "memorializing",
         | 
| 959 | 
            +
              "memorise": "memorize",
         | 
| 960 | 
            +
              "memorised": "memorized",
         | 
| 961 | 
            +
              "memorises": "memorizes",
         | 
| 962 | 
            +
              "memorising": "memorizing",
         | 
| 963 | 
            +
              "mesmerise": "mesmerize",
         | 
| 964 | 
            +
              "mesmerised": "mesmerized",
         | 
| 965 | 
            +
              "mesmerises": "mesmerizes",
         | 
| 966 | 
            +
              "mesmerising": "mesmerizing",
         | 
| 967 | 
            +
              "metabolise": "metabolize",
         | 
| 968 | 
            +
              "metabolised": "metabolized",
         | 
| 969 | 
            +
              "metabolises": "metabolizes",
         | 
| 970 | 
            +
              "metabolising": "metabolizing",
         | 
| 971 | 
            +
              "metre": "meter",
         | 
| 972 | 
            +
              "metres": "meters",
         | 
| 973 | 
            +
              "mhm": "hmm",
         | 
| 974 | 
            +
              "micrometre": "micrometer",
         | 
| 975 | 
            +
              "micrometres": "micrometers",
         | 
| 976 | 
            +
              "militarise": "militarize",
         | 
| 977 | 
            +
              "militarised": "militarized",
         | 
| 978 | 
            +
              "militarises": "militarizes",
         | 
| 979 | 
            +
              "militarising": "militarizing",
         | 
| 980 | 
            +
              "milligramme": "milligram",
         | 
| 981 | 
            +
              "milligrammes": "milligrams",
         | 
| 982 | 
            +
              "millilitre": "milliliter",
         | 
| 983 | 
            +
              "millilitres": "milliliters",
         | 
| 984 | 
            +
              "millimetre": "millimeter",
         | 
| 985 | 
            +
              "millimetres": "millimeters",
         | 
| 986 | 
            +
              "miniaturisation": "miniaturization",
         | 
| 987 | 
            +
              "miniaturise": "miniaturize",
         | 
| 988 | 
            +
              "miniaturised": "miniaturized",
         | 
| 989 | 
            +
              "miniaturises": "miniaturizes",
         | 
| 990 | 
            +
              "miniaturising": "miniaturizing",
         | 
| 991 | 
            +
              "minibusses": "minibuses",
         | 
| 992 | 
            +
              "minimise": "minimize",
         | 
| 993 | 
            +
              "minimised": "minimized",
         | 
| 994 | 
            +
              "minimises": "minimizes",
         | 
| 995 | 
            +
              "minimising": "minimizing",
         | 
| 996 | 
            +
              "misbehaviour": "misbehavior",
         | 
| 997 | 
            +
              "misdemeanour": "misdemeanor",
         | 
| 998 | 
            +
              "misdemeanours": "misdemeanors",
         | 
| 999 | 
            +
              "misspelt": "misspelled",
         | 
| 1000 | 
            +
              "mitre": "miter",
         | 
| 1001 | 
            +
              "mitres": "miters",
         | 
| 1002 | 
            +
              "mm": "hmm",
         | 
| 1003 | 
            +
              "mmm": "hmm",
         | 
| 1004 | 
            +
              "mobilisation": "mobilization",
         | 
| 1005 | 
            +
              "mobilise": "mobilize",
         | 
| 1006 | 
            +
              "mobilised": "mobilized",
         | 
| 1007 | 
            +
              "mobilises": "mobilizes",
         | 
| 1008 | 
            +
              "mobilising": "mobilizing",
         | 
| 1009 | 
            +
              "modelled": "modeled",
         | 
| 1010 | 
            +
              "modeller": "modeler",
         | 
| 1011 | 
            +
              "modellers": "modelers",
         | 
| 1012 | 
            +
              "modelling": "modeling",
         | 
| 1013 | 
            +
              "modernise": "modernize",
         | 
| 1014 | 
            +
              "modernised": "modernized",
         | 
| 1015 | 
            +
              "modernises": "modernizes",
         | 
| 1016 | 
            +
              "modernising": "modernizing",
         | 
| 1017 | 
            +
              "moisturise": "moisturize",
         | 
| 1018 | 
            +
              "moisturised": "moisturized",
         | 
| 1019 | 
            +
              "moisturiser": "moisturizer",
         | 
| 1020 | 
            +
              "moisturisers": "moisturizers",
         | 
| 1021 | 
            +
              "moisturises": "moisturizes",
         | 
| 1022 | 
            +
              "moisturising": "moisturizing",
         | 
| 1023 | 
            +
              "monologue": "monolog",
         | 
| 1024 | 
            +
              "monologues": "monologs",
         | 
| 1025 | 
            +
              "monopolisation": "monopolization",
         | 
| 1026 | 
            +
              "monopolise": "monopolize",
         | 
| 1027 | 
            +
              "monopolised": "monopolized",
         | 
| 1028 | 
            +
              "monopolises": "monopolizes",
         | 
| 1029 | 
            +
              "monopolising": "monopolizing",
         | 
| 1030 | 
            +
              "moralise": "moralize",
         | 
| 1031 | 
            +
              "moralised": "moralized",
         | 
| 1032 | 
            +
              "moralises": "moralizes",
         | 
| 1033 | 
            +
              "moralising": "moralizing",
         | 
| 1034 | 
            +
              "motorised": "motorized",
         | 
| 1035 | 
            +
              "mould": "mold",
         | 
| 1036 | 
            +
              "moulded": "molded",
         | 
| 1037 | 
            +
              "moulder": "molder",
         | 
| 1038 | 
            +
              "mouldered": "moldered",
         | 
| 1039 | 
            +
              "mouldering": "moldering",
         | 
| 1040 | 
            +
              "moulders": "molders",
         | 
| 1041 | 
            +
              "mouldier": "moldier",
         | 
| 1042 | 
            +
              "mouldiest": "moldiest",
         | 
| 1043 | 
            +
              "moulding": "molding",
         | 
| 1044 | 
            +
              "mouldings": "moldings",
         | 
| 1045 | 
            +
              "moulds": "molds",
         | 
| 1046 | 
            +
              "mouldy": "moldy",
         | 
| 1047 | 
            +
              "moult": "molt",
         | 
| 1048 | 
            +
              "moulted": "molted",
         | 
| 1049 | 
            +
              "moulting": "molting",
         | 
| 1050 | 
            +
              "moults": "molts",
         | 
| 1051 | 
            +
              "moustache": "mustache",
         | 
| 1052 | 
            +
              "moustached": "mustached",
         | 
| 1053 | 
            +
              "moustaches": "mustaches",
         | 
| 1054 | 
            +
              "moustachioed": "mustachioed",
         | 
| 1055 | 
            +
              "multicoloured": "multicolored",
         | 
| 1056 | 
            +
              "nationalisation": "nationalization",
         | 
| 1057 | 
            +
              "nationalisations": "nationalizations",
         | 
| 1058 | 
            +
              "nationalise": "nationalize",
         | 
| 1059 | 
            +
              "nationalised": "nationalized",
         | 
| 1060 | 
            +
              "nationalises": "nationalizes",
         | 
| 1061 | 
            +
              "nationalising": "nationalizing",
         | 
| 1062 | 
            +
              "naturalisation": "naturalization",
         | 
| 1063 | 
            +
              "naturalise": "naturalize",
         | 
| 1064 | 
            +
              "naturalised": "naturalized",
         | 
| 1065 | 
            +
              "naturalises": "naturalizes",
         | 
| 1066 | 
            +
              "naturalising": "naturalizing",
         | 
| 1067 | 
            +
              "neighbour": "neighbor",
         | 
| 1068 | 
            +
              "neighbourhood": "neighborhood",
         | 
| 1069 | 
            +
              "neighbourhoods": "neighborhoods",
         | 
| 1070 | 
            +
              "neighbouring": "neighboring",
         | 
| 1071 | 
            +
              "neighbourliness": "neighborliness",
         | 
| 1072 | 
            +
              "neighbourly": "neighborly",
         | 
| 1073 | 
            +
              "neighbours": "neighbors",
         | 
| 1074 | 
            +
              "neutralisation": "neutralization",
         | 
| 1075 | 
            +
              "neutralise": "neutralize",
         | 
| 1076 | 
            +
              "neutralised": "neutralized",
         | 
| 1077 | 
            +
              "neutralises": "neutralizes",
         | 
| 1078 | 
            +
              "neutralising": "neutralizing",
         | 
| 1079 | 
            +
              "normalisation": "normalization",
         | 
| 1080 | 
            +
              "normalise": "normalize",
         | 
| 1081 | 
            +
              "normalised": "normalized",
         | 
| 1082 | 
            +
              "normalises": "normalizes",
         | 
| 1083 | 
            +
              "normalising": "normalizing",
         | 
| 1084 | 
            +
              "odour": "odor",
         | 
| 1085 | 
            +
              "odourless": "odorless",
         | 
| 1086 | 
            +
              "odours": "odors",
         | 
| 1087 | 
            +
              "oesophagus": "esophagus",
         | 
| 1088 | 
            +
              "oesophaguses": "esophaguses",
         | 
| 1089 | 
            +
              "oestrogen": "estrogen",
         | 
| 1090 | 
            +
              "offence": "offense",
         | 
| 1091 | 
            +
              "offences": "offenses",
         | 
| 1092 | 
            +
              "omelette": "omelet",
         | 
| 1093 | 
            +
              "omelettes": "omelets",
         | 
| 1094 | 
            +
              "optimise": "optimize",
         | 
| 1095 | 
            +
              "optimised": "optimized",
         | 
| 1096 | 
            +
              "optimises": "optimizes",
         | 
| 1097 | 
            +
              "optimising": "optimizing",
         | 
| 1098 | 
            +
              "organisation": "organization",
         | 
| 1099 | 
            +
              "organisational": "organizational",
         | 
| 1100 | 
            +
              "organisations": "organizations",
         | 
| 1101 | 
            +
              "organise": "organize",
         | 
| 1102 | 
            +
              "organised": "organized",
         | 
| 1103 | 
            +
              "organiser": "organizer",
         | 
| 1104 | 
            +
              "organisers": "organizers",
         | 
| 1105 | 
            +
              "organises": "organizes",
         | 
| 1106 | 
            +
              "organising": "organizing",
         | 
| 1107 | 
            +
              "orthopaedic": "orthopedic",
         | 
| 1108 | 
            +
              "orthopaedics": "orthopedics",
         | 
| 1109 | 
            +
              "ostracise": "ostracize",
         | 
| 1110 | 
            +
              "ostracised": "ostracized",
         | 
| 1111 | 
            +
              "ostracises": "ostracizes",
         | 
| 1112 | 
            +
              "ostracising": "ostracizing",
         | 
| 1113 | 
            +
              "outmanoeuvre": "outmaneuver",
         | 
| 1114 | 
            +
              "outmanoeuvred": "outmaneuvered",
         | 
| 1115 | 
            +
              "outmanoeuvres": "outmaneuvers",
         | 
| 1116 | 
            +
              "outmanoeuvring": "outmaneuvering",
         | 
| 1117 | 
            +
              "overemphasise": "overemphasize",
         | 
| 1118 | 
            +
              "overemphasised": "overemphasized",
         | 
| 1119 | 
            +
              "overemphasises": "overemphasizes",
         | 
| 1120 | 
            +
              "overemphasising": "overemphasizing",
         | 
| 1121 | 
            +
              "oxidisation": "oxidization",
         | 
| 1122 | 
            +
              "oxidise": "oxidize",
         | 
| 1123 | 
            +
              "oxidised": "oxidized",
         | 
| 1124 | 
            +
              "oxidises": "oxidizes",
         | 
| 1125 | 
            +
              "oxidising": "oxidizing",
         | 
| 1126 | 
            +
              "paederast": "pederast",
         | 
| 1127 | 
            +
              "paederasts": "pederasts",
         | 
| 1128 | 
            +
              "paediatric": "pediatric",
         | 
| 1129 | 
            +
              "paediatrician": "pediatrician",
         | 
| 1130 | 
            +
              "paediatricians": "pediatricians",
         | 
| 1131 | 
            +
              "paediatrics": "pediatrics",
         | 
| 1132 | 
            +
              "paedophile": "pedophile",
         | 
| 1133 | 
            +
              "paedophiles": "pedophiles",
         | 
| 1134 | 
            +
              "paedophilia": "pedophilia",
         | 
| 1135 | 
            +
              "palaeolithic": "paleolithic",
         | 
| 1136 | 
            +
              "palaeontologist": "paleontologist",
         | 
| 1137 | 
            +
              "palaeontologists": "paleontologists",
         | 
| 1138 | 
            +
              "palaeontology": "paleontology",
         | 
| 1139 | 
            +
              "panelled": "paneled",
         | 
| 1140 | 
            +
              "panelling": "paneling",
         | 
| 1141 | 
            +
              "panellist": "panelist",
         | 
| 1142 | 
            +
              "panellists": "panelists",
         | 
| 1143 | 
            +
              "paralyse": "paralyze",
         | 
| 1144 | 
            +
              "paralysed": "paralyzed",
         | 
| 1145 | 
            +
              "paralyses": "paralyzes",
         | 
| 1146 | 
            +
              "paralysing": "paralyzing",
         | 
| 1147 | 
            +
              "parcelled": "parceled",
         | 
| 1148 | 
            +
              "parcelling": "parceling",
         | 
| 1149 | 
            +
              "parlour": "parlor",
         | 
| 1150 | 
            +
              "parlours": "parlors",
         | 
| 1151 | 
            +
              "particularise": "particularize",
         | 
| 1152 | 
            +
              "particularised": "particularized",
         | 
| 1153 | 
            +
              "particularises": "particularizes",
         | 
| 1154 | 
            +
              "particularising": "particularizing",
         | 
| 1155 | 
            +
              "passivisation": "passivization",
         | 
| 1156 | 
            +
              "passivise": "passivize",
         | 
| 1157 | 
            +
              "passivised": "passivized",
         | 
| 1158 | 
            +
              "passivises": "passivizes",
         | 
| 1159 | 
            +
              "passivising": "passivizing",
         | 
| 1160 | 
            +
              "pasteurisation": "pasteurization",
         | 
| 1161 | 
            +
              "pasteurise": "pasteurize",
         | 
| 1162 | 
            +
              "pasteurised": "pasteurized",
         | 
| 1163 | 
            +
              "pasteurises": "pasteurizes",
         | 
| 1164 | 
            +
              "pasteurising": "pasteurizing",
         | 
| 1165 | 
            +
              "patronise": "patronize",
         | 
| 1166 | 
            +
              "patronised": "patronized",
         | 
| 1167 | 
            +
              "patronises": "patronizes",
         | 
| 1168 | 
            +
              "patronising": "patronizing",
         | 
| 1169 | 
            +
              "patronisingly": "patronizingly",
         | 
| 1170 | 
            +
              "pedalled": "pedaled",
         | 
| 1171 | 
            +
              "pedalling": "pedaling",
         | 
| 1172 | 
            +
              "pedestrianisation": "pedestrianization",
         | 
| 1173 | 
            +
              "pedestrianise": "pedestrianize",
         | 
| 1174 | 
            +
              "pedestrianised": "pedestrianized",
         | 
| 1175 | 
            +
              "pedestrianises": "pedestrianizes",
         | 
| 1176 | 
            +
              "pedestrianising": "pedestrianizing",
         | 
| 1177 | 
            +
              "penalise": "penalize",
         | 
| 1178 | 
            +
              "penalised": "penalized",
         | 
| 1179 | 
            +
              "penalises": "penalizes",
         | 
| 1180 | 
            +
              "penalising": "penalizing",
         | 
| 1181 | 
            +
              "pencilled": "penciled",
         | 
| 1182 | 
            +
              "pencilling": "penciling",
         | 
| 1183 | 
            +
              "personalise": "personalize",
         | 
| 1184 | 
            +
              "personalised": "personalized",
         | 
| 1185 | 
            +
              "personalises": "personalizes",
         | 
| 1186 | 
            +
              "personalising": "personalizing",
         | 
| 1187 | 
            +
              "pharmacopoeia": "pharmacopeia",
         | 
| 1188 | 
            +
              "pharmacopoeias": "pharmacopeias",
         | 
| 1189 | 
            +
              "philosophise": "philosophize",
         | 
| 1190 | 
            +
              "philosophised": "philosophized",
         | 
| 1191 | 
            +
              "philosophises": "philosophizes",
         | 
| 1192 | 
            +
              "philosophising": "philosophizing",
         | 
| 1193 | 
            +
              "philtre": "filter",
         | 
| 1194 | 
            +
              "philtres": "filters",
         | 
| 1195 | 
            +
              "phoney": "phony",
         | 
| 1196 | 
            +
              "plagiarise": "plagiarize",
         | 
| 1197 | 
            +
              "plagiarised": "plagiarized",
         | 
| 1198 | 
            +
              "plagiarises": "plagiarizes",
         | 
| 1199 | 
            +
              "plagiarising": "plagiarizing",
         | 
| 1200 | 
            +
              "plough": "plow",
         | 
| 1201 | 
            +
              "ploughed": "plowed",
         | 
| 1202 | 
            +
              "ploughing": "plowing",
         | 
| 1203 | 
            +
              "ploughman": "plowman",
         | 
| 1204 | 
            +
              "ploughmen": "plowmen",
         | 
| 1205 | 
            +
              "ploughs": "plows",
         | 
| 1206 | 
            +
              "ploughshare": "plowshare",
         | 
| 1207 | 
            +
              "ploughshares": "plowshares",
         | 
| 1208 | 
            +
              "polarisation": "polarization",
         | 
| 1209 | 
            +
              "polarise": "polarize",
         | 
| 1210 | 
            +
              "polarised": "polarized",
         | 
| 1211 | 
            +
              "polarises": "polarizes",
         | 
| 1212 | 
            +
              "polarising": "polarizing",
         | 
| 1213 | 
            +
              "politicisation": "politicization",
         | 
| 1214 | 
            +
              "politicise": "politicize",
         | 
| 1215 | 
            +
              "politicised": "politicized",
         | 
| 1216 | 
            +
              "politicises": "politicizes",
         | 
| 1217 | 
            +
              "politicising": "politicizing",
         | 
| 1218 | 
            +
              "popularisation": "popularization",
         | 
| 1219 | 
            +
              "popularise": "popularize",
         | 
| 1220 | 
            +
              "popularised": "popularized",
         | 
| 1221 | 
            +
              "popularises": "popularizes",
         | 
| 1222 | 
            +
              "popularising": "popularizing",
         | 
| 1223 | 
            +
              "pouffe": "pouf",
         | 
| 1224 | 
            +
              "pouffes": "poufs",
         | 
| 1225 | 
            +
              "practise": "practice",
         | 
| 1226 | 
            +
              "practised": "practiced",
         | 
| 1227 | 
            +
              "practises": "practices",
         | 
| 1228 | 
            +
              "practising": "practicing",
         | 
| 1229 | 
            +
              "praesidium": "presidium",
         | 
| 1230 | 
            +
              "praesidiums": "presidiums",
         | 
| 1231 | 
            +
              "pressurisation": "pressurization",
         | 
| 1232 | 
            +
              "pressurise": "pressurize",
         | 
| 1233 | 
            +
              "pressurised": "pressurized",
         | 
| 1234 | 
            +
              "pressurises": "pressurizes",
         | 
| 1235 | 
            +
              "pressurising": "pressurizing",
         | 
| 1236 | 
            +
              "pretence": "pretense",
         | 
| 1237 | 
            +
              "pretences": "pretenses",
         | 
| 1238 | 
            +
              "primaeval": "primeval",
         | 
| 1239 | 
            +
              "prioritisation": "prioritization",
         | 
| 1240 | 
            +
              "prioritise": "prioritize",
         | 
| 1241 | 
            +
              "prioritised": "prioritized",
         | 
| 1242 | 
            +
              "prioritises": "prioritizes",
         | 
| 1243 | 
            +
              "prioritising": "prioritizing",
         | 
| 1244 | 
            +
              "privatisation": "privatization",
         | 
| 1245 | 
            +
              "privatisations": "privatizations",
         | 
| 1246 | 
            +
              "privatise": "privatize",
         | 
| 1247 | 
            +
              "privatised": "privatized",
         | 
| 1248 | 
            +
              "privatises": "privatizes",
         | 
| 1249 | 
            +
              "privatising": "privatizing",
         | 
| 1250 | 
            +
              "professionalisation": "professionalization",
         | 
| 1251 | 
            +
              "professionalise": "professionalize",
         | 
| 1252 | 
            +
              "professionalised": "professionalized",
         | 
| 1253 | 
            +
              "professionalises": "professionalizes",
         | 
| 1254 | 
            +
              "professionalising": "professionalizing",
         | 
| 1255 | 
            +
              "programme": "program",
         | 
| 1256 | 
            +
              "programmes": "programs",
         | 
| 1257 | 
            +
              "prologue": "prolog",
         | 
| 1258 | 
            +
              "prologues": "prologs",
         | 
| 1259 | 
            +
              "propagandise": "propagandize",
         | 
| 1260 | 
            +
              "propagandised": "propagandized",
         | 
| 1261 | 
            +
              "propagandises": "propagandizes",
         | 
| 1262 | 
            +
              "propagandising": "propagandizing",
         | 
| 1263 | 
            +
              "proselytise": "proselytize",
         | 
| 1264 | 
            +
              "proselytised": "proselytized",
         | 
| 1265 | 
            +
              "proselytiser": "proselytizer",
         | 
| 1266 | 
            +
              "proselytisers": "proselytizers",
         | 
| 1267 | 
            +
              "proselytises": "proselytizes",
         | 
| 1268 | 
            +
              "proselytising": "proselytizing",
         | 
| 1269 | 
            +
              "psychoanalyse": "psychoanalyze",
         | 
| 1270 | 
            +
              "psychoanalysed": "psychoanalyzed",
         | 
| 1271 | 
            +
              "psychoanalyses": "psychoanalyzes",
         | 
| 1272 | 
            +
              "psychoanalysing": "psychoanalyzing",
         | 
| 1273 | 
            +
              "publicise": "publicize",
         | 
| 1274 | 
            +
              "publicised": "publicized",
         | 
| 1275 | 
            +
              "publicises": "publicizes",
         | 
| 1276 | 
            +
              "publicising": "publicizing",
         | 
| 1277 | 
            +
              "pulverisation": "pulverization",
         | 
| 1278 | 
            +
              "pulverise": "pulverize",
         | 
| 1279 | 
            +
              "pulverised": "pulverized",
         | 
| 1280 | 
            +
              "pulverises": "pulverizes",
         | 
| 1281 | 
            +
              "pulverising": "pulverizing",
         | 
| 1282 | 
            +
              "pummelled": "pummel",
         | 
| 1283 | 
            +
              "pummelling": "pummeled",
         | 
| 1284 | 
            +
              "pyjama": "pajama",
         | 
| 1285 | 
            +
              "pyjamas": "pajamas",
         | 
| 1286 | 
            +
              "pzazz": "pizzazz",
         | 
| 1287 | 
            +
              "quarrelled": "quarreled",
         | 
| 1288 | 
            +
              "quarrelling": "quarreling",
         | 
| 1289 | 
            +
              "radicalise": "radicalize",
         | 
| 1290 | 
            +
              "radicalised": "radicalized",
         | 
| 1291 | 
            +
              "radicalises": "radicalizes",
         | 
| 1292 | 
            +
              "radicalising": "radicalizing",
         | 
| 1293 | 
            +
              "rancour": "rancor",
         | 
| 1294 | 
            +
              "randomise": "randomize",
         | 
| 1295 | 
            +
              "randomised": "randomized",
         | 
| 1296 | 
            +
              "randomises": "randomizes",
         | 
| 1297 | 
            +
              "randomising": "randomizing",
         | 
| 1298 | 
            +
              "rationalisation": "rationalization",
         | 
| 1299 | 
            +
              "rationalisations": "rationalizations",
         | 
| 1300 | 
            +
              "rationalise": "rationalize",
         | 
| 1301 | 
            +
              "rationalised": "rationalized",
         | 
| 1302 | 
            +
              "rationalises": "rationalizes",
         | 
| 1303 | 
            +
              "rationalising": "rationalizing",
         | 
| 1304 | 
            +
              "ravelled": "raveled",
         | 
| 1305 | 
            +
              "ravelling": "raveling",
         | 
| 1306 | 
            +
              "realisable": "realizable",
         | 
| 1307 | 
            +
              "realisation": "realization",
         | 
| 1308 | 
            +
              "realisations": "realizations",
         | 
| 1309 | 
            +
              "realise": "realize",
         | 
| 1310 | 
            +
              "realised": "realized",
         | 
| 1311 | 
            +
              "realises": "realizes",
         | 
| 1312 | 
            +
              "realising": "realizing",
         | 
| 1313 | 
            +
              "recognisable": "recognizable",
         | 
| 1314 | 
            +
              "recognisably": "recognizably",
         | 
| 1315 | 
            +
              "recognisance": "recognizance",
         | 
| 1316 | 
            +
              "recognise": "recognize",
         | 
| 1317 | 
            +
              "recognised": "recognized",
         | 
| 1318 | 
            +
              "recognises": "recognizes",
         | 
| 1319 | 
            +
              "recognising": "recognizing",
         | 
| 1320 | 
            +
              "reconnoitre": "reconnoiter",
         | 
| 1321 | 
            +
              "reconnoitred": "reconnoitered",
         | 
| 1322 | 
            +
              "reconnoitres": "reconnoiters",
         | 
| 1323 | 
            +
              "reconnoitring": "reconnoitering",
         | 
| 1324 | 
            +
              "refuelled": "refueled",
         | 
| 1325 | 
            +
              "refuelling": "refueling",
         | 
| 1326 | 
            +
              "regularisation": "regularization",
         | 
| 1327 | 
            +
              "regularise": "regularize",
         | 
| 1328 | 
            +
              "regularised": "regularized",
         | 
| 1329 | 
            +
              "regularises": "regularizes",
         | 
| 1330 | 
            +
              "regularising": "regularizing",
         | 
| 1331 | 
            +
              "remodelled": "remodeled",
         | 
| 1332 | 
            +
              "remodelling": "remodeling",
         | 
| 1333 | 
            +
              "remould": "remold",
         | 
| 1334 | 
            +
              "remoulded": "remolded",
         | 
| 1335 | 
            +
              "remoulding": "remolding",
         | 
| 1336 | 
            +
              "remoulds": "remolds",
         | 
| 1337 | 
            +
              "reorganisation": "reorganization",
         | 
| 1338 | 
            +
              "reorganisations": "reorganizations",
         | 
| 1339 | 
            +
              "reorganise": "reorganize",
         | 
| 1340 | 
            +
              "reorganised": "reorganized",
         | 
| 1341 | 
            +
              "reorganises": "reorganizes",
         | 
| 1342 | 
            +
              "reorganising": "reorganizing",
         | 
| 1343 | 
            +
              "revelled": "reveled",
         | 
| 1344 | 
            +
              "reveller": "reveler",
         | 
| 1345 | 
            +
              "revellers": "revelers",
         | 
| 1346 | 
            +
              "revelling": "reveling",
         | 
| 1347 | 
            +
              "revitalise": "revitalize",
         | 
| 1348 | 
            +
              "revitalised": "revitalized",
         | 
| 1349 | 
            +
              "revitalises": "revitalizes",
         | 
| 1350 | 
            +
              "revitalising": "revitalizing",
         | 
| 1351 | 
            +
              "revolutionise": "revolutionize",
         | 
| 1352 | 
            +
              "revolutionised": "revolutionized",
         | 
| 1353 | 
            +
              "revolutionises": "revolutionizes",
         | 
| 1354 | 
            +
              "revolutionising": "revolutionizing",
         | 
| 1355 | 
            +
              "rhapsodise": "rhapsodize",
         | 
| 1356 | 
            +
              "rhapsodised": "rhapsodized",
         | 
| 1357 | 
            +
              "rhapsodises": "rhapsodizes",
         | 
| 1358 | 
            +
              "rhapsodising": "rhapsodizing",
         | 
| 1359 | 
            +
              "rigour": "rigor",
         | 
| 1360 | 
            +
              "rigours": "rigors",
         | 
| 1361 | 
            +
              "ritualised": "ritualized",
         | 
| 1362 | 
            +
              "rivalled": "rivaled",
         | 
| 1363 | 
            +
              "rivalling": "rivaling",
         | 
| 1364 | 
            +
              "romanticise": "romanticize",
         | 
| 1365 | 
            +
              "romanticised": "romanticized",
         | 
| 1366 | 
            +
              "romanticises": "romanticizes",
         | 
| 1367 | 
            +
              "romanticising": "romanticizing",
         | 
| 1368 | 
            +
              "rumour": "rumor",
         | 
| 1369 | 
            +
              "rumoured": "rumored",
         | 
| 1370 | 
            +
              "rumours": "rumors",
         | 
| 1371 | 
            +
              "sabre": "saber",
         | 
| 1372 | 
            +
              "sabres": "sabers",
         | 
| 1373 | 
            +
              "saltpetre": "saltpeter",
         | 
| 1374 | 
            +
              "sanitise": "sanitize",
         | 
| 1375 | 
            +
              "sanitised": "sanitized",
         | 
| 1376 | 
            +
              "sanitises": "sanitizes",
         | 
| 1377 | 
            +
              "sanitising": "sanitizing",
         | 
| 1378 | 
            +
              "satirise": "satirize",
         | 
| 1379 | 
            +
              "satirised": "satirized",
         | 
| 1380 | 
            +
              "satirises": "satirizes",
         | 
| 1381 | 
            +
              "satirising": "satirizing",
         | 
| 1382 | 
            +
              "saviour": "savior",
         | 
| 1383 | 
            +
              "saviours": "saviors",
         | 
| 1384 | 
            +
              "savour": "savor",
         | 
| 1385 | 
            +
              "savoured": "savored",
         | 
| 1386 | 
            +
              "savouries": "savories",
         | 
| 1387 | 
            +
              "savouring": "savoring",
         | 
| 1388 | 
            +
              "savours": "savors",
         | 
| 1389 | 
            +
              "savoury": "savory",
         | 
| 1390 | 
            +
              "scandalise": "scandalize",
         | 
| 1391 | 
            +
              "scandalised": "scandalized",
         | 
| 1392 | 
            +
              "scandalises": "scandalizes",
         | 
| 1393 | 
            +
              "scandalising": "scandalizing",
         | 
| 1394 | 
            +
              "sceptic": "skeptic",
         | 
| 1395 | 
            +
              "sceptical": "skeptical",
         | 
| 1396 | 
            +
              "sceptically": "skeptically",
         | 
| 1397 | 
            +
              "scepticism": "skepticism",
         | 
| 1398 | 
            +
              "sceptics": "skeptics",
         | 
| 1399 | 
            +
              "sceptre": "scepter",
         | 
| 1400 | 
            +
              "sceptres": "scepters",
         | 
| 1401 | 
            +
              "scrutinise": "scrutinize",
         | 
| 1402 | 
            +
              "scrutinised": "scrutinized",
         | 
| 1403 | 
            +
              "scrutinises": "scrutinizes",
         | 
| 1404 | 
            +
              "scrutinising": "scrutinizing",
         | 
| 1405 | 
            +
              "secularisation": "secularization",
         | 
| 1406 | 
            +
              "secularise": "secularize",
         | 
| 1407 | 
            +
              "secularised": "secularized",
         | 
| 1408 | 
            +
              "secularises": "secularizes",
         | 
| 1409 | 
            +
              "secularising": "secularizing",
         | 
| 1410 | 
            +
              "sensationalise": "sensationalize",
         | 
| 1411 | 
            +
              "sensationalised": "sensationalized",
         | 
| 1412 | 
            +
              "sensationalises": "sensationalizes",
         | 
| 1413 | 
            +
              "sensationalising": "sensationalizing",
         | 
| 1414 | 
            +
              "sensitise": "sensitize",
         | 
| 1415 | 
            +
              "sensitised": "sensitized",
         | 
| 1416 | 
            +
              "sensitises": "sensitizes",
         | 
| 1417 | 
            +
              "sensitising": "sensitizing",
         | 
| 1418 | 
            +
              "sentimentalise": "sentimentalize",
         | 
| 1419 | 
            +
              "sentimentalised": "sentimentalized",
         | 
| 1420 | 
            +
              "sentimentalises": "sentimentalizes",
         | 
| 1421 | 
            +
              "sentimentalising": "sentimentalizing",
         | 
| 1422 | 
            +
              "sepulchre": "sepulcher",
         | 
| 1423 | 
            +
              "sepulchres": "sepulchers",
         | 
| 1424 | 
            +
              "serialisation": "serialization",
         | 
| 1425 | 
            +
              "serialisations": "serializations",
         | 
| 1426 | 
            +
              "serialise": "serialize",
         | 
| 1427 | 
            +
              "serialised": "serialized",
         | 
| 1428 | 
            +
              "serialises": "serializes",
         | 
| 1429 | 
            +
              "serialising": "serializing",
         | 
| 1430 | 
            +
              "sermonise": "sermonize",
         | 
| 1431 | 
            +
              "sermonised": "sermonized",
         | 
| 1432 | 
            +
              "sermonises": "sermonizes",
         | 
| 1433 | 
            +
              "sermonising": "sermonizing",
         | 
| 1434 | 
            +
              "sheikh": "sheik",
         | 
| 1435 | 
            +
              "shovelled": "shoveled",
         | 
| 1436 | 
            +
              "shovelling": "shoveling",
         | 
| 1437 | 
            +
              "shrivelled": "shriveled",
         | 
| 1438 | 
            +
              "shrivelling": "shriveling",
         | 
| 1439 | 
            +
              "signalise": "signalize",
         | 
| 1440 | 
            +
              "signalised": "signalized",
         | 
| 1441 | 
            +
              "signalises": "signalizes",
         | 
| 1442 | 
            +
              "signalising": "signalizing",
         | 
| 1443 | 
            +
              "signalled": "signaled",
         | 
| 1444 | 
            +
              "signalling": "signaling",
         | 
| 1445 | 
            +
              "smoulder": "smolder",
         | 
| 1446 | 
            +
              "smouldered": "smoldered",
         | 
| 1447 | 
            +
              "smouldering": "smoldering",
         | 
| 1448 | 
            +
              "smoulders": "smolders",
         | 
| 1449 | 
            +
              "snivelled": "sniveled",
         | 
| 1450 | 
            +
              "snivelling": "sniveling",
         | 
| 1451 | 
            +
              "snorkelled": "snorkeled",
         | 
| 1452 | 
            +
              "snorkelling": "snorkeling",
         | 
| 1453 | 
            +
              "snowplough": "snowplow",
         | 
| 1454 | 
            +
              "snowploughs": "snowplow",
         | 
| 1455 | 
            +
              "socialisation": "socialization",
         | 
| 1456 | 
            +
              "socialise": "socialize",
         | 
| 1457 | 
            +
              "socialised": "socialized",
         | 
| 1458 | 
            +
              "socialises": "socializes",
         | 
| 1459 | 
            +
              "socialising": "socializing",
         | 
| 1460 | 
            +
              "sodomise": "sodomize",
         | 
| 1461 | 
            +
              "sodomised": "sodomized",
         | 
| 1462 | 
            +
              "sodomises": "sodomizes",
         | 
| 1463 | 
            +
              "sodomising": "sodomizing",
         | 
| 1464 | 
            +
              "solemnise": "solemnize",
         | 
| 1465 | 
            +
              "solemnised": "solemnized",
         | 
| 1466 | 
            +
              "solemnises": "solemnizes",
         | 
| 1467 | 
            +
              "solemnising": "solemnizing",
         | 
| 1468 | 
            +
              "sombre": "somber",
         | 
| 1469 | 
            +
              "specialisation": "specialization",
         | 
| 1470 | 
            +
              "specialisations": "specializations",
         | 
| 1471 | 
            +
              "specialise": "specialize",
         | 
| 1472 | 
            +
              "specialised": "specialized",
         | 
| 1473 | 
            +
              "specialises": "specializes",
         | 
| 1474 | 
            +
              "specialising": "specializing",
         | 
| 1475 | 
            +
              "spectre": "specter",
         | 
| 1476 | 
            +
              "spectres": "specters",
         | 
| 1477 | 
            +
              "spiralled": "spiraled",
         | 
| 1478 | 
            +
              "spiralling": "spiraling",
         | 
| 1479 | 
            +
              "splendour": "splendor",
         | 
| 1480 | 
            +
              "splendours": "splendors",
         | 
| 1481 | 
            +
              "squirrelled": "squirreled",
         | 
| 1482 | 
            +
              "squirrelling": "squirreling",
         | 
| 1483 | 
            +
              "stabilisation": "stabilization",
         | 
| 1484 | 
            +
              "stabilise": "stabilize",
         | 
| 1485 | 
            +
              "stabilised": "stabilized",
         | 
| 1486 | 
            +
              "stabiliser": "stabilizer",
         | 
| 1487 | 
            +
              "stabilisers": "stabilizers",
         | 
| 1488 | 
            +
              "stabilises": "stabilizes",
         | 
| 1489 | 
            +
              "stabilising": "stabilizing",
         | 
| 1490 | 
            +
              "standardisation": "standardization",
         | 
| 1491 | 
            +
              "standardise": "standardize",
         | 
| 1492 | 
            +
              "standardised": "standardized",
         | 
| 1493 | 
            +
              "standardises": "standardizes",
         | 
| 1494 | 
            +
              "standardising": "standardizing",
         | 
| 1495 | 
            +
              "stencilled": "stenciled",
         | 
| 1496 | 
            +
              "stencilling": "stenciling",
         | 
| 1497 | 
            +
              "sterilisation": "sterilization",
         | 
| 1498 | 
            +
              "sterilisations": "sterilizations",
         | 
| 1499 | 
            +
              "sterilise": "sterilize",
         | 
| 1500 | 
            +
              "sterilised": "sterilized",
         | 
| 1501 | 
            +
              "steriliser": "sterilizer",
         | 
| 1502 | 
            +
              "sterilisers": "sterilizers",
         | 
| 1503 | 
            +
              "sterilises": "sterilizes",
         | 
| 1504 | 
            +
              "sterilising": "sterilizing",
         | 
| 1505 | 
            +
              "stigmatisation": "stigmatization",
         | 
| 1506 | 
            +
              "stigmatise": "stigmatize",
         | 
| 1507 | 
            +
              "stigmatised": "stigmatized",
         | 
| 1508 | 
            +
              "stigmatises": "stigmatizes",
         | 
| 1509 | 
            +
              "stigmatising": "stigmatizing",
         | 
| 1510 | 
            +
              "storey": "story",
         | 
| 1511 | 
            +
              "storeys": "stories",
         | 
| 1512 | 
            +
              "subsidisation": "subsidization",
         | 
| 1513 | 
            +
              "subsidise": "subsidize",
         | 
| 1514 | 
            +
              "subsidised": "subsidized",
         | 
| 1515 | 
            +
              "subsidiser": "subsidizer",
         | 
| 1516 | 
            +
              "subsidisers": "subsidizers",
         | 
| 1517 | 
            +
              "subsidises": "subsidizes",
         | 
| 1518 | 
            +
              "subsidising": "subsidizing",
         | 
| 1519 | 
            +
              "succour": "succor",
         | 
| 1520 | 
            +
              "succoured": "succored",
         | 
| 1521 | 
            +
              "succouring": "succoring",
         | 
| 1522 | 
            +
              "succours": "succors",
         | 
| 1523 | 
            +
              "sulphate": "sulfate",
         | 
| 1524 | 
            +
              "sulphates": "sulfates",
         | 
| 1525 | 
            +
              "sulphide": "sulfide",
         | 
| 1526 | 
            +
              "sulphides": "sulfides",
         | 
| 1527 | 
            +
              "sulphur": "sulfur",
         | 
| 1528 | 
            +
              "sulphurous": "sulfurous",
         | 
| 1529 | 
            +
              "summarise": "summarize",
         | 
| 1530 | 
            +
              "summarised": "summarized",
         | 
| 1531 | 
            +
              "summarises": "summarizes",
         | 
| 1532 | 
            +
              "summarising": "summarizing",
         | 
| 1533 | 
            +
              "swivelled": "swiveled",
         | 
| 1534 | 
            +
              "swivelling": "swiveling",
         | 
| 1535 | 
            +
              "symbolise": "symbolize",
         | 
| 1536 | 
            +
              "symbolised": "symbolized",
         | 
| 1537 | 
            +
              "symbolises": "symbolizes",
         | 
| 1538 | 
            +
              "symbolising": "symbolizing",
         | 
| 1539 | 
            +
              "sympathise": "sympathize",
         | 
| 1540 | 
            +
              "sympathised": "sympathized",
         | 
| 1541 | 
            +
              "sympathiser": "sympathizer",
         | 
| 1542 | 
            +
              "sympathisers": "sympathizers",
         | 
| 1543 | 
            +
              "sympathises": "sympathizes",
         | 
| 1544 | 
            +
              "sympathising": "sympathizing",
         | 
| 1545 | 
            +
              "synchronisation": "synchronization",
         | 
| 1546 | 
            +
              "synchronise": "synchronize",
         | 
| 1547 | 
            +
              "synchronised": "synchronized",
         | 
| 1548 | 
            +
              "synchronises": "synchronizes",
         | 
| 1549 | 
            +
              "synchronising": "synchronizing",
         | 
| 1550 | 
            +
              "synthesise": "synthesize",
         | 
| 1551 | 
            +
              "synthesised": "synthesized",
         | 
| 1552 | 
            +
              "synthesiser": "synthesizer",
         | 
| 1553 | 
            +
              "synthesisers": "synthesizers",
         | 
| 1554 | 
            +
              "synthesises": "synthesizes",
         | 
| 1555 | 
            +
              "synthesising": "synthesizing",
         | 
| 1556 | 
            +
              "syphon": "siphon",
         | 
| 1557 | 
            +
              "syphoned": "siphoned",
         | 
| 1558 | 
            +
              "syphoning": "siphoning",
         | 
| 1559 | 
            +
              "syphons": "siphons",
         | 
| 1560 | 
            +
              "systematisation": "systematization",
         | 
| 1561 | 
            +
              "systematise": "systematize",
         | 
| 1562 | 
            +
              "systematised": "systematized",
         | 
| 1563 | 
            +
              "systematises": "systematizes",
         | 
| 1564 | 
            +
              "systematising": "systematizing",
         | 
| 1565 | 
            +
              "tantalise": "tantalize",
         | 
| 1566 | 
            +
              "tantalised": "tantalized",
         | 
| 1567 | 
            +
              "tantalises": "tantalizes",
         | 
| 1568 | 
            +
              "tantalising": "tantalizing",
         | 
| 1569 | 
            +
              "tantalisingly": "tantalizingly",
         | 
| 1570 | 
            +
              "tasselled": "tasseled",
         | 
| 1571 | 
            +
              "technicolour": "technicolor",
         | 
| 1572 | 
            +
              "temporise": "temporize",
         | 
| 1573 | 
            +
              "temporised": "temporized",
         | 
| 1574 | 
            +
              "temporises": "temporizes",
         | 
| 1575 | 
            +
              "temporising": "temporizing",
         | 
| 1576 | 
            +
              "tenderise": "tenderize",
         | 
| 1577 | 
            +
              "tenderised": "tenderized",
         | 
| 1578 | 
            +
              "tenderises": "tenderizes",
         | 
| 1579 | 
            +
              "tenderising": "tenderizing",
         | 
| 1580 | 
            +
              "terrorise": "terrorize",
         | 
| 1581 | 
            +
              "terrorised": "terrorized",
         | 
| 1582 | 
            +
              "terrorises": "terrorizes",
         | 
| 1583 | 
            +
              "terrorising": "terrorizing",
         | 
| 1584 | 
            +
              "theatre": "theater",
         | 
| 1585 | 
            +
              "theatregoer": "theatergoer",
         | 
| 1586 | 
            +
              "theatregoers": "theatergoers",
         | 
| 1587 | 
            +
              "theatres": "theaters",
         | 
| 1588 | 
            +
              "theorise": "theorize",
         | 
| 1589 | 
            +
              "theorised": "theorized",
         | 
| 1590 | 
            +
              "theorises": "theorizes",
         | 
| 1591 | 
            +
              "theorising": "theorizing",
         | 
| 1592 | 
            +
              "tonne": "ton",
         | 
| 1593 | 
            +
              "tonnes": "tons",
         | 
| 1594 | 
            +
              "towelled": "toweled",
         | 
| 1595 | 
            +
              "towelling": "toweling",
         | 
| 1596 | 
            +
              "toxaemia": "toxemia",
         | 
| 1597 | 
            +
              "tranquillise": "tranquilize",
         | 
| 1598 | 
            +
              "tranquillised": "tranquilized",
         | 
| 1599 | 
            +
              "tranquilliser": "tranquilizer",
         | 
| 1600 | 
            +
              "tranquillisers": "tranquilizers",
         | 
| 1601 | 
            +
              "tranquillises": "tranquilizes",
         | 
| 1602 | 
            +
              "tranquillising": "tranquilizing",
         | 
| 1603 | 
            +
              "tranquillity": "tranquility",
         | 
| 1604 | 
            +
              "tranquillize": "tranquilize",
         | 
| 1605 | 
            +
              "tranquillized": "tranquilized",
         | 
| 1606 | 
            +
              "tranquillizer": "tranquilizer",
         | 
| 1607 | 
            +
              "tranquillizers": "tranquilizers",
         | 
| 1608 | 
            +
              "tranquillizes": "tranquilizes",
         | 
| 1609 | 
            +
              "tranquillizing": "tranquilizing",
         | 
| 1610 | 
            +
              "tranquilly": "tranquility",
         | 
| 1611 | 
            +
              "transistorised": "transistorized",
         | 
| 1612 | 
            +
              "traumatise": "traumatize",
         | 
| 1613 | 
            +
              "traumatised": "traumatized",
         | 
| 1614 | 
            +
              "traumatises": "traumatizes",
         | 
| 1615 | 
            +
              "traumatising": "traumatizing",
         | 
| 1616 | 
            +
              "travelled": "traveled",
         | 
| 1617 | 
            +
              "traveller": "traveler",
         | 
| 1618 | 
            +
              "travellers": "travelers",
         | 
| 1619 | 
            +
              "travelling": "traveling",
         | 
| 1620 | 
            +
              "travelog": "travelogue",
         | 
| 1621 | 
            +
              "travelogs": "travelogues",
         | 
| 1622 | 
            +
              "trialled": "trialed",
         | 
| 1623 | 
            +
              "trialling": "trialing",
         | 
| 1624 | 
            +
              "tricolour": "tricolor",
         | 
| 1625 | 
            +
              "tricolours": "tricolors",
         | 
| 1626 | 
            +
              "trivialise": "trivialize",
         | 
| 1627 | 
            +
              "trivialised": "trivialized",
         | 
| 1628 | 
            +
              "trivialises": "trivializes",
         | 
| 1629 | 
            +
              "trivialising": "trivializing",
         | 
| 1630 | 
            +
              "tumour": "tumor",
         | 
| 1631 | 
            +
              "tumours": "tumors",
         | 
| 1632 | 
            +
              "tunnelled": "tunneled",
         | 
| 1633 | 
            +
              "tunnelling": "tunneling",
         | 
| 1634 | 
            +
              "tyrannise": "tyrannize",
         | 
| 1635 | 
            +
              "tyrannised": "tyrannized",
         | 
| 1636 | 
            +
              "tyrannises": "tyrannizes",
         | 
| 1637 | 
            +
              "tyrannising": "tyrannizing",
         | 
| 1638 | 
            +
              "tyre": "tire",
         | 
| 1639 | 
            +
              "tyres": "tires",
         | 
| 1640 | 
            +
              "unauthorised": "unauthorized",
         | 
| 1641 | 
            +
              "uncivilised": "uncivilized",
         | 
| 1642 | 
            +
              "underutilised": "underutilized",
         | 
| 1643 | 
            +
              "unequalled": "unequaled",
         | 
| 1644 | 
            +
              "unfavourable": "unfavorable",
         | 
| 1645 | 
            +
              "unfavourably": "unfavorably",
         | 
| 1646 | 
            +
              "unionisation": "unionization",
         | 
| 1647 | 
            +
              "unionise": "unionize",
         | 
| 1648 | 
            +
              "unionised": "unionized",
         | 
| 1649 | 
            +
              "unionises": "unionizes",
         | 
| 1650 | 
            +
              "unionising": "unionizing",
         | 
| 1651 | 
            +
              "unorganised": "unorganized",
         | 
| 1652 | 
            +
              "unravelled": "unraveled",
         | 
| 1653 | 
            +
              "unravelling": "unraveling",
         | 
| 1654 | 
            +
              "unrecognisable": "unrecognizable",
         | 
| 1655 | 
            +
              "unrecognised": "unrecognized",
         | 
| 1656 | 
            +
              "unrivalled": "unrivaled",
         | 
| 1657 | 
            +
              "unsavoury": "unsavory",
         | 
| 1658 | 
            +
              "untrammelled": "untrammeled",
         | 
| 1659 | 
            +
              "urbanisation": "urbanization",
         | 
| 1660 | 
            +
              "urbanise": "urbanize",
         | 
| 1661 | 
            +
              "urbanised": "urbanized",
         | 
| 1662 | 
            +
              "urbanises": "urbanizes",
         | 
| 1663 | 
            +
              "urbanising": "urbanizing",
         | 
| 1664 | 
            +
              "utilisable": "utilizable",
         | 
| 1665 | 
            +
              "utilisation": "utilization",
         | 
| 1666 | 
            +
              "utilise": "utilize",
         | 
| 1667 | 
            +
              "utilised": "utilized",
         | 
| 1668 | 
            +
              "utilises": "utilizes",
         | 
| 1669 | 
            +
              "utilising": "utilizing",
         | 
| 1670 | 
            +
              "valour": "valor",
         | 
| 1671 | 
            +
              "vandalise": "vandalize",
         | 
| 1672 | 
            +
              "vandalised": "vandalized",
         | 
| 1673 | 
            +
              "vandalises": "vandalizes",
         | 
| 1674 | 
            +
              "vandalising": "vandalizing",
         | 
| 1675 | 
            +
              "vaporisation": "vaporization",
         | 
| 1676 | 
            +
              "vaporise": "vaporize",
         | 
| 1677 | 
            +
              "vaporised": "vaporized",
         | 
| 1678 | 
            +
              "vaporises": "vaporizes",
         | 
| 1679 | 
            +
              "vaporising": "vaporizing",
         | 
| 1680 | 
            +
              "vapour": "vapor",
         | 
| 1681 | 
            +
              "vapours": "vapors",
         | 
| 1682 | 
            +
              "verbalise": "verbalize",
         | 
| 1683 | 
            +
              "verbalised": "verbalized",
         | 
| 1684 | 
            +
              "verbalises": "verbalizes",
         | 
| 1685 | 
            +
              "verbalising": "verbalizing",
         | 
| 1686 | 
            +
              "victimisation": "victimization",
         | 
| 1687 | 
            +
              "victimise": "victimize",
         | 
| 1688 | 
            +
              "victimised": "victimized",
         | 
| 1689 | 
            +
              "victimises": "victimizes",
         | 
| 1690 | 
            +
              "victimising": "victimizing",
         | 
| 1691 | 
            +
              "videodisc": "videodisk",
         | 
| 1692 | 
            +
              "videodiscs": "videodisks",
         | 
| 1693 | 
            +
              "vigour": "vigor",
         | 
| 1694 | 
            +
              "visualisation": "visualization",
         | 
| 1695 | 
            +
              "visualisations": "visualizations",
         | 
| 1696 | 
            +
              "visualise": "visualize",
         | 
| 1697 | 
            +
              "visualised": "visualized",
         | 
| 1698 | 
            +
              "visualises": "visualizes",
         | 
| 1699 | 
            +
              "visualising": "visualizing",
         | 
| 1700 | 
            +
              "vocalisation": "vocalization",
         | 
| 1701 | 
            +
              "vocalisations": "vocalizations",
         | 
| 1702 | 
            +
              "vocalise": "vocalize",
         | 
| 1703 | 
            +
              "vocalised": "vocalized",
         | 
| 1704 | 
            +
              "vocalises": "vocalizes",
         | 
| 1705 | 
            +
              "vocalising": "vocalizing",
         | 
| 1706 | 
            +
              "vulcanised": "vulcanized",
         | 
| 1707 | 
            +
              "vulgarisation": "vulgarization",
         | 
| 1708 | 
            +
              "vulgarise": "vulgarize",
         | 
| 1709 | 
            +
              "vulgarised": "vulgarized",
         | 
| 1710 | 
            +
              "vulgarises": "vulgarizes",
         | 
| 1711 | 
            +
              "vulgarising": "vulgarizing",
         | 
| 1712 | 
            +
              "waggon": "wagon",
         | 
| 1713 | 
            +
              "waggons": "wagons",
         | 
| 1714 | 
            +
              "watercolour": "watercolor",
         | 
| 1715 | 
            +
              "watercolours": "watercolors",
         | 
| 1716 | 
            +
              "weaselled": "weaseled",
         | 
| 1717 | 
            +
              "weaselling": "weaseling",
         | 
| 1718 | 
            +
              "westernisation": "westernization",
         | 
| 1719 | 
            +
              "westernise": "westernize",
         | 
| 1720 | 
            +
              "westernised": "westernized",
         | 
| 1721 | 
            +
              "westernises": "westernizes",
         | 
| 1722 | 
            +
              "westernising": "westernizing",
         | 
| 1723 | 
            +
              "womanise": "womanize",
         | 
| 1724 | 
            +
              "womanised": "womanized",
         | 
| 1725 | 
            +
              "womaniser": "womanizer",
         | 
| 1726 | 
            +
              "womanisers": "womanizers",
         | 
| 1727 | 
            +
              "womanises": "womanizes",
         | 
| 1728 | 
            +
              "womanising": "womanizing",
         | 
| 1729 | 
            +
              "woollen": "woolen",
         | 
| 1730 | 
            +
              "woollens": "woolens",
         | 
| 1731 | 
            +
              "woollies": "woolies",
         | 
| 1732 | 
            +
              "woolly": "wooly",
         | 
| 1733 | 
            +
              "worshipped": "worshiped",
         | 
| 1734 | 
            +
              "worshipper": "worshiper",
         | 
| 1735 | 
            +
              "worshipping": "worshiping",
         | 
| 1736 | 
            +
              "yodelled": "yodeled",
         | 
| 1737 | 
            +
              "yodelling": "yodeling",
         | 
| 1738 | 
            +
              "yoghourt": "yogurt",
         | 
| 1739 | 
            +
              "yoghourts": "yogurts",
         | 
| 1740 | 
            +
              "yoghurt": "yogurt",
         | 
| 1741 | 
            +
              "yoghurts": "yogurts"
         | 
| 1742 | 
            +
            }
         | 
    	
        preprocessor_config.json
    ADDED
    
    | @@ -0,0 +1,14 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "chunk_length": 30,
         | 
| 3 | 
            +
              "feature_extractor_type": "WhisperFeatureExtractor",
         | 
| 4 | 
            +
              "feature_size": 80,
         | 
| 5 | 
            +
              "hop_length": 160,
         | 
| 6 | 
            +
              "n_fft": 400,
         | 
| 7 | 
            +
              "n_samples": 480000,
         | 
| 8 | 
            +
              "nb_max_frames": 3000,
         | 
| 9 | 
            +
              "padding_side": "right",
         | 
| 10 | 
            +
              "padding_value": 0.0,
         | 
| 11 | 
            +
              "processor_class": "WhisperProcessor",
         | 
| 12 | 
            +
              "return_attention_mask": false,
         | 
| 13 | 
            +
              "sampling_rate": 16000
         | 
| 14 | 
            +
            }
         | 
    	
        special_tokens_map.json
    ADDED
    
    | @@ -0,0 +1,133 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "additional_special_tokens": [
         | 
| 3 | 
            +
                "<|endoftext|>",
         | 
| 4 | 
            +
                "<|startoftranscript|>",
         | 
| 5 | 
            +
                "<|en|>",
         | 
| 6 | 
            +
                "<|zh|>",
         | 
| 7 | 
            +
                "<|de|>",
         | 
| 8 | 
            +
                "<|es|>",
         | 
| 9 | 
            +
                "<|ru|>",
         | 
| 10 | 
            +
                "<|ko|>",
         | 
| 11 | 
            +
                "<|fr|>",
         | 
| 12 | 
            +
                "<|ja|>",
         | 
| 13 | 
            +
                "<|pt|>",
         | 
| 14 | 
            +
                "<|tr|>",
         | 
| 15 | 
            +
                "<|pl|>",
         | 
| 16 | 
            +
                "<|ca|>",
         | 
| 17 | 
            +
                "<|nl|>",
         | 
| 18 | 
            +
                "<|ar|>",
         | 
| 19 | 
            +
                "<|sv|>",
         | 
| 20 | 
            +
                "<|it|>",
         | 
| 21 | 
            +
                "<|id|>",
         | 
| 22 | 
            +
                "<|hi|>",
         | 
| 23 | 
            +
                "<|fi|>",
         | 
| 24 | 
            +
                "<|vi|>",
         | 
| 25 | 
            +
                "<|he|>",
         | 
| 26 | 
            +
                "<|uk|>",
         | 
| 27 | 
            +
                "<|el|>",
         | 
| 28 | 
            +
                "<|ms|>",
         | 
| 29 | 
            +
                "<|cs|>",
         | 
| 30 | 
            +
                "<|ro|>",
         | 
| 31 | 
            +
                "<|da|>",
         | 
| 32 | 
            +
                "<|hu|>",
         | 
| 33 | 
            +
                "<|ta|>",
         | 
| 34 | 
            +
                "<|no|>",
         | 
| 35 | 
            +
                "<|th|>",
         | 
| 36 | 
            +
                "<|ur|>",
         | 
| 37 | 
            +
                "<|hr|>",
         | 
| 38 | 
            +
                "<|bg|>",
         | 
| 39 | 
            +
                "<|lt|>",
         | 
| 40 | 
            +
                "<|la|>",
         | 
| 41 | 
            +
                "<|mi|>",
         | 
| 42 | 
            +
                "<|ml|>",
         | 
| 43 | 
            +
                "<|cy|>",
         | 
| 44 | 
            +
                "<|sk|>",
         | 
| 45 | 
            +
                "<|te|>",
         | 
| 46 | 
            +
                "<|fa|>",
         | 
| 47 | 
            +
                "<|lv|>",
         | 
| 48 | 
            +
                "<|bn|>",
         | 
| 49 | 
            +
                "<|sr|>",
         | 
| 50 | 
            +
                "<|az|>",
         | 
| 51 | 
            +
                "<|sl|>",
         | 
| 52 | 
            +
                "<|kn|>",
         | 
| 53 | 
            +
                "<|et|>",
         | 
| 54 | 
            +
                "<|mk|>",
         | 
| 55 | 
            +
                "<|br|>",
         | 
| 56 | 
            +
                "<|eu|>",
         | 
| 57 | 
            +
                "<|is|>",
         | 
| 58 | 
            +
                "<|hy|>",
         | 
| 59 | 
            +
                "<|ne|>",
         | 
| 60 | 
            +
                "<|mn|>",
         | 
| 61 | 
            +
                "<|bs|>",
         | 
| 62 | 
            +
                "<|kk|>",
         | 
| 63 | 
            +
                "<|sq|>",
         | 
| 64 | 
            +
                "<|sw|>",
         | 
| 65 | 
            +
                "<|gl|>",
         | 
| 66 | 
            +
                "<|mr|>",
         | 
| 67 | 
            +
                "<|pa|>",
         | 
| 68 | 
            +
                "<|si|>",
         | 
| 69 | 
            +
                "<|km|>",
         | 
| 70 | 
            +
                "<|sn|>",
         | 
| 71 | 
            +
                "<|yo|>",
         | 
| 72 | 
            +
                "<|so|>",
         | 
| 73 | 
            +
                "<|af|>",
         | 
| 74 | 
            +
                "<|oc|>",
         | 
| 75 | 
            +
                "<|ka|>",
         | 
| 76 | 
            +
                "<|be|>",
         | 
| 77 | 
            +
                "<|tg|>",
         | 
| 78 | 
            +
                "<|sd|>",
         | 
| 79 | 
            +
                "<|gu|>",
         | 
| 80 | 
            +
                "<|am|>",
         | 
| 81 | 
            +
                "<|yi|>",
         | 
| 82 | 
            +
                "<|lo|>",
         | 
| 83 | 
            +
                "<|uz|>",
         | 
| 84 | 
            +
                "<|fo|>",
         | 
| 85 | 
            +
                "<|ht|>",
         | 
| 86 | 
            +
                "<|ps|>",
         | 
| 87 | 
            +
                "<|tk|>",
         | 
| 88 | 
            +
                "<|nn|>",
         | 
| 89 | 
            +
                "<|mt|>",
         | 
| 90 | 
            +
                "<|sa|>",
         | 
| 91 | 
            +
                "<|lb|>",
         | 
| 92 | 
            +
                "<|my|>",
         | 
| 93 | 
            +
                "<|bo|>",
         | 
| 94 | 
            +
                "<|tl|>",
         | 
| 95 | 
            +
                "<|mg|>",
         | 
| 96 | 
            +
                "<|as|>",
         | 
| 97 | 
            +
                "<|tt|>",
         | 
| 98 | 
            +
                "<|haw|>",
         | 
| 99 | 
            +
                "<|ln|>",
         | 
| 100 | 
            +
                "<|ha|>",
         | 
| 101 | 
            +
                "<|ba|>",
         | 
| 102 | 
            +
                "<|jw|>",
         | 
| 103 | 
            +
                "<|su|>",
         | 
| 104 | 
            +
                "<|translate|>",
         | 
| 105 | 
            +
                "<|transcribe|>",
         | 
| 106 | 
            +
                "<|startoflm|>",
         | 
| 107 | 
            +
                "<|startofprev|>",
         | 
| 108 | 
            +
                "<|nocaptions|>",
         | 
| 109 | 
            +
                "<|notimestamps|>"
         | 
| 110 | 
            +
              ],
         | 
| 111 | 
            +
              "bos_token": {
         | 
| 112 | 
            +
                "content": "<|endoftext|>",
         | 
| 113 | 
            +
                "lstrip": false,
         | 
| 114 | 
            +
                "normalized": true,
         | 
| 115 | 
            +
                "rstrip": false,
         | 
| 116 | 
            +
                "single_word": false
         | 
| 117 | 
            +
              },
         | 
| 118 | 
            +
              "eos_token": {
         | 
| 119 | 
            +
                "content": "<|endoftext|>",
         | 
| 120 | 
            +
                "lstrip": false,
         | 
| 121 | 
            +
                "normalized": true,
         | 
| 122 | 
            +
                "rstrip": false,
         | 
| 123 | 
            +
                "single_word": false
         | 
| 124 | 
            +
              },
         | 
| 125 | 
            +
              "pad_token": "<|endoftext|>",
         | 
| 126 | 
            +
              "unk_token": {
         | 
| 127 | 
            +
                "content": "<|endoftext|>",
         | 
| 128 | 
            +
                "lstrip": false,
         | 
| 129 | 
            +
                "normalized": true,
         | 
| 130 | 
            +
                "rstrip": false,
         | 
| 131 | 
            +
                "single_word": false
         | 
| 132 | 
            +
              }
         | 
| 133 | 
            +
            }
         | 
    	
        tokenizer.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
    	
        tokenizer_config.json
    ADDED
    
    | @@ -0,0 +1,36 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "add_bos_token": false,
         | 
| 3 | 
            +
              "add_prefix_space": false,
         | 
| 4 | 
            +
              "bos_token": {
         | 
| 5 | 
            +
                "__type": "AddedToken",
         | 
| 6 | 
            +
                "content": "<|endoftext|>",
         | 
| 7 | 
            +
                "lstrip": false,
         | 
| 8 | 
            +
                "normalized": true,
         | 
| 9 | 
            +
                "rstrip": false,
         | 
| 10 | 
            +
                "single_word": false
         | 
| 11 | 
            +
              },
         | 
| 12 | 
            +
              "clean_up_tokenization_spaces": true,
         | 
| 13 | 
            +
              "eos_token": {
         | 
| 14 | 
            +
                "__type": "AddedToken",
         | 
| 15 | 
            +
                "content": "<|endoftext|>",
         | 
| 16 | 
            +
                "lstrip": false,
         | 
| 17 | 
            +
                "normalized": true,
         | 
| 18 | 
            +
                "rstrip": false,
         | 
| 19 | 
            +
                "single_word": false
         | 
| 20 | 
            +
              },
         | 
| 21 | 
            +
              "errors": "replace",
         | 
| 22 | 
            +
              "model_max_length": 1024,
         | 
| 23 | 
            +
              "pad_token": null,
         | 
| 24 | 
            +
              "processor_class": "WhisperProcessor",
         | 
| 25 | 
            +
              "return_attention_mask": false,
         | 
| 26 | 
            +
              "tokenizer_class": "WhisperTokenizer",
         | 
| 27 | 
            +
              "trust_remote_code": false,
         | 
| 28 | 
            +
              "unk_token": {
         | 
| 29 | 
            +
                "__type": "AddedToken",
         | 
| 30 | 
            +
                "content": "<|endoftext|>",
         | 
| 31 | 
            +
                "lstrip": false,
         | 
| 32 | 
            +
                "normalized": true,
         | 
| 33 | 
            +
                "rstrip": false,
         | 
| 34 | 
            +
                "single_word": false
         | 
| 35 | 
            +
              }
         | 
| 36 | 
            +
            }
         | 
    	
        vocab.json
    ADDED
    
    | The diff for this file is too large to render. 
		See raw diff | 
|  | 
