From dc779e88dfbbb5c6d1615724e89a25f4f22fc605 Mon Sep 17 00:00:00 2001 From: Robin Munn Date: Thu, 5 Mar 2026 14:38:17 +0700 Subject: [PATCH 1/6] Sync morph type data Implement CRUD for MorphTypeData, add DB migration Make LeadingToken and TrailingToken nullable Register JsonPatchChange for morphTypeData Reject MorphTypeData updates that change MorphType Do not allow ANY JsonPatch changes to MorphType Rename MorphType enum to MorphTypeKind Rename MorphTypeData to MorphType LeadingToken -> Prefix, TrailingToken -> Postfix Matches the names from liblcm, which may help reduce confusion. --- .../Api/FwDataMiniLcmApi.cs | 43 +- .../FwDataMiniLcmBridge/Api/LcmHelpers.cs | 116 +- .../Api/UpdateProxy/UpdateEntryProxy.cs | 2 +- ...peDataProxy.cs => UpdateMorphTypeProxy.cs} | 8 +- .../FwDataMiniLcmBridge.csproj | 1 + .../FwLiteProjectSync.Tests/EntrySyncTests.cs | 6 +- .../Import/ResumableTests.cs | 25 +- .../ProjectSnapshotSerializationTests.cs | 2 +- .../sena-3_snapshot.2026-03-11.verified.txt | 125733 +++++++++++++++ .../SyncTestHelpers.cs | 34 + .../FwLiteProjectSync.Tests/SyncTests.cs | 97 + .../sena-3-live.verified.sqlite | Bin 10944512 -> 11104256 bytes .../sena-3-live_snapshot.verified.txt | 458 + .../CrdtFwdataProjectSyncService.cs | 4 + .../FwLiteProjectSync/DryRunMiniLcmApi.cs | 18 +- .../Import/ResumableImportApi.cs | 4 + .../FwLite/FwLiteProjectSync/MiniLcmImport.cs | 8 +- .../TypeGen/ReinforcedFwLiteTypingConfig.cs | 2 +- .../FwLiteWeb/Hubs/CrdtMiniLcmApiHub.cs | 14 + .../FwLiteWeb/Hubs/MiniLcmApiHubBase.cs | 12 + ...lizationRegressionData.latest.verified.txt | 126 + .../LcmCrdt.Tests/Changes/UseChangesTests.cs | 7 + .../LcmCrdt.Tests/ConfigRegistrationTests.cs | 3 +- .../LcmCrdt.Tests/Data/MigrationTests.cs | 3 + ...ScriptedDb.v1.ProjectSnapshot.verified.txt | 1 + ...ScriptedDb.v2.ProjectSnapshot.verified.txt | 1 + ...lizationRegressionData.latest.verified.txt | 77 + ...pshotTests.VerifyChangeModels.verified.txt | 12 +- ...elSnapshotTests.VerifyDbModel.verified.txt | 35 +- ...sts.VerifyIObjectWithIdModels.verified.txt | 4 + .../SnapshotAtCommitServiceTests.cs | 1 + .../LcmCrdt/Changes/CreateEntryChange.cs | 4 +- .../LcmCrdt/Changes/CreateMorphTypeChange.cs | 56 + backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs | 49 +- .../FwLite/LcmCrdt/Data/MiniLcmRepository.cs | 1 + backend/FwLite/LcmCrdt/LcmCrdtDbContext.cs | 4 + backend/FwLite/LcmCrdt/LcmCrdtKernel.cs | 3 + ...260512104332_AddMorphTypeTable.Designer.cs | 838 + .../20260512104332_AddMorphTypeTable.cs | 60 + .../LcmCrdtDbContextModelSnapshot.cs | 55 + .../AutoFakerHelpers/AutoFakerDefault.cs | 6 +- .../MiniLcm.Tests/QueryEntryTestsBase.cs | 2 +- .../MorphTypeUpdateValidatorTests.cs | 59 + backend/FwLite/MiniLcm/IMiniLcmReadApi.cs | 5 +- backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs | 8 +- .../FwLite/MiniLcm/MiniLcmApiExtensions.cs | 1 + backend/FwLite/MiniLcm/Models/Entry.cs | 2 +- .../FwLite/MiniLcm/Models/IObjectWithId.cs | 1 + backend/FwLite/MiniLcm/Models/MorphType.cs | 21 +- backend/FwLite/MiniLcm/ProjectSnapshot.cs | 3 +- .../MiniLcm/SyncHelpers/MorphTypeDataSync.cs | 71 - .../MiniLcm/SyncHelpers/MorphTypeSync.cs | 76 + .../Validators/MiniLcmApiValidationWrapper.cs | 12 + .../MiniLcm/Validators/MiniLcmValidators.cs | 14 + .../Validators/MorphTypeUpdateValidator.cs | 14 + .../MiniLcm/Validators/MorphTypeValidator.cs | 14 + backend/LfClassicData/LfClassicMiniLcmApi.cs | 13 +- .../generated-types/MiniLcm/Models/IEntry.ts | 4 +- .../MiniLcm/Models/IMorphType.ts | 23 + .../Models/{MorphType.ts => MorphTypeKind.ts} | 5 +- frontend/viewer/src/lib/dotnet-types/index.ts | 2 +- frontend/viewer/src/lib/utils.ts | 4 +- .../src/project/browse/SearchFilter.svelte | 10 +- .../src/project/demo/demo-entry-data.ts | 8 +- .../entry-editor-primitive.stories.svelte | 4 +- frontend/viewer/tests/entry-api-helper.ts | 6 +- 66 files changed, 128077 insertions(+), 238 deletions(-) rename backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/{UpdateMorphTypeDataProxy.cs => UpdateMorphTypeProxy.cs} (84%) create mode 100644 backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-03-11.verified.txt create mode 100644 backend/FwLite/FwLiteProjectSync.Tests/SyncTestHelpers.cs create mode 100644 backend/FwLite/LcmCrdt/Changes/CreateMorphTypeChange.cs create mode 100644 backend/FwLite/LcmCrdt/Migrations/20260512104332_AddMorphTypeTable.Designer.cs create mode 100644 backend/FwLite/LcmCrdt/Migrations/20260512104332_AddMorphTypeTable.cs create mode 100644 backend/FwLite/MiniLcm.Tests/Validators/MorphTypeUpdateValidatorTests.cs delete mode 100644 backend/FwLite/MiniLcm/SyncHelpers/MorphTypeDataSync.cs create mode 100644 backend/FwLite/MiniLcm/SyncHelpers/MorphTypeSync.cs create mode 100644 backend/FwLite/MiniLcm/Validators/MorphTypeUpdateValidator.cs create mode 100644 backend/FwLite/MiniLcm/Validators/MorphTypeValidator.cs create mode 100644 frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IMorphType.ts rename frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/{MorphType.ts => MorphTypeKind.ts} (88%) diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs index 73f85a10a1..fcb70b7bce 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs @@ -541,7 +541,7 @@ await Cache.DoUsingNewOrCurrentUOW("Delete Complex Form Type", }); } - public IAsyncEnumerable GetAllMorphTypeData() + public IAsyncEnumerable GetMorphTypes() { return MorphTypeRepository @@ -550,35 +550,44 @@ public IAsyncEnumerable GetAllMorphTypeData() .Select(FromLcmMorphType); } - public Task GetMorphTypeData(Guid id) + public Task GetMorphType(Guid id) { MorphTypeRepository.TryGetObject(id, out var lcmMorphType); - if (lcmMorphType is null) return Task.FromResult(null); - return Task.FromResult(FromLcmMorphType(lcmMorphType)); + if (lcmMorphType is null) return Task.FromResult(null); + return Task.FromResult(FromLcmMorphType(lcmMorphType)); } - internal MorphTypeData FromLcmMorphType(IMoMorphType morphType) + public Task GetMorphType(MorphTypeKind kind) { - return new MorphTypeData + var guid = LcmHelpers.ToLcmMorphTypeId(kind); + if (guid is null) return Task.FromResult(null); + MorphTypeRepository.TryGetObject(guid.Value, out var lcmMorphType); + if (lcmMorphType is null) return Task.FromResult(null); + return Task.FromResult(FromLcmMorphType(lcmMorphType)); + } + + internal MorphType FromLcmMorphType(IMoMorphType morphType) + { + return new MorphType { Id = morphType.Guid, - MorphType = LcmHelpers.FromLcmMorphType(morphType), + Kind = LcmHelpers.FromLcmMorphType(morphType), Name = FromLcmMultiString(morphType.Name), Abbreviation = FromLcmMultiString(morphType.Abbreviation), Description = FromLcmMultiString(morphType.Description), - LeadingToken = morphType.Prefix, - TrailingToken = morphType.Postfix, + Prefix = morphType.Prefix, + Postfix = morphType.Postfix, SecondaryOrder = morphType.SecondaryOrder, }; } - public Task CreateMorphTypeData(MorphTypeData morphTypeData) + public Task CreateMorphType(MorphType morphType) { // Creating new morph types not allowed in FwData projects, so silently ignore operation - return Task.FromResult(morphTypeData); + return Task.FromResult(morphType); } - public Task UpdateMorphTypeData(Guid id, UpdateObjectInput update) + public Task UpdateMorphType(Guid id, UpdateObjectInput update) { var lcmMorphType = MorphTypeRepository.GetObject(id); if (lcmMorphType is null) throw new NullReferenceException($"unable to find morph type with id {id}"); @@ -587,19 +596,19 @@ public Task UpdateMorphTypeData(Guid id, UpdateObjectInput { - var updateProxy = new UpdateMorphTypeDataProxy(lcmMorphType, this); + var updateProxy = new UpdateMorphTypeProxy(lcmMorphType, this); update.Apply(updateProxy); }); return Task.FromResult(FromLcmMorphType(lcmMorphType)); } - public async Task UpdateMorphTypeData(MorphTypeData before, MorphTypeData after, IMiniLcmApi? api = null) + public async Task UpdateMorphType(MorphType before, MorphType after, IMiniLcmApi? api = null) { - await MorphTypeDataSync.Sync(before, after, api ?? this); - return await GetMorphTypeData(after.Id) ?? throw new NullReferenceException("unable to find morph type with id " + after.Id); + await MorphTypeSync.Sync(before, after, api ?? this); + return await GetMorphType(after.Id) ?? throw new NullReferenceException("unable to find morph type with id " + after.Id); } - public Task DeleteMorphTypeData(Guid id) + public Task DeleteMorphType(Guid id) { // Deleting morph types not allowed in FwData projects, so silently ignore operation return Task.CompletedTask; diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs index e3c77375b0..d3b296cf8e 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs @@ -85,62 +85,62 @@ internal static bool SearchValue(this ITsMultiString multiString, string value) '\u0640', // Arabic Tatweel ]; - internal static MorphType FromLcmMorphType(IMoMorphType? morphType) + internal static MorphTypeKind FromLcmMorphType(IMoMorphType? morphType) { var lcmMorphTypeId = morphType?.Id.Guid; return lcmMorphTypeId switch { - null => MorphType.Unknown, + null => MorphTypeKind.Unknown, // Can't switch on Guids since they're not compile-type constants, but thankfully pattern matching works - Guid g when g == MoMorphTypeTags.kguidMorphBoundRoot => MorphType.BoundRoot, - Guid g when g == MoMorphTypeTags.kguidMorphBoundStem => MorphType.BoundStem, - Guid g when g == MoMorphTypeTags.kguidMorphCircumfix => MorphType.Circumfix, - Guid g when g == MoMorphTypeTags.kguidMorphClitic => MorphType.Clitic, - Guid g when g == MoMorphTypeTags.kguidMorphEnclitic => MorphType.Enclitic, - Guid g when g == MoMorphTypeTags.kguidMorphInfix => MorphType.Infix, - Guid g when g == MoMorphTypeTags.kguidMorphParticle => MorphType.Particle, - Guid g when g == MoMorphTypeTags.kguidMorphPrefix => MorphType.Prefix, - Guid g when g == MoMorphTypeTags.kguidMorphProclitic => MorphType.Proclitic, - Guid g when g == MoMorphTypeTags.kguidMorphRoot => MorphType.Root, - Guid g when g == MoMorphTypeTags.kguidMorphSimulfix => MorphType.Simulfix, - Guid g when g == MoMorphTypeTags.kguidMorphStem => MorphType.Stem, - Guid g when g == MoMorphTypeTags.kguidMorphSuffix => MorphType.Suffix, - Guid g when g == MoMorphTypeTags.kguidMorphSuprafix => MorphType.Suprafix, - Guid g when g == MoMorphTypeTags.kguidMorphInfixingInterfix => MorphType.InfixingInterfix, - Guid g when g == MoMorphTypeTags.kguidMorphPrefixingInterfix => MorphType.PrefixingInterfix, - Guid g when g == MoMorphTypeTags.kguidMorphSuffixingInterfix => MorphType.SuffixingInterfix, - Guid g when g == MoMorphTypeTags.kguidMorphPhrase => MorphType.Phrase, - Guid g when g == MoMorphTypeTags.kguidMorphDiscontiguousPhrase => MorphType.DiscontiguousPhrase, - _ => MorphType.Other, + Guid g when g == MoMorphTypeTags.kguidMorphBoundRoot => MorphTypeKind.BoundRoot, + Guid g when g == MoMorphTypeTags.kguidMorphBoundStem => MorphTypeKind.BoundStem, + Guid g when g == MoMorphTypeTags.kguidMorphCircumfix => MorphTypeKind.Circumfix, + Guid g when g == MoMorphTypeTags.kguidMorphClitic => MorphTypeKind.Clitic, + Guid g when g == MoMorphTypeTags.kguidMorphEnclitic => MorphTypeKind.Enclitic, + Guid g when g == MoMorphTypeTags.kguidMorphInfix => MorphTypeKind.Infix, + Guid g when g == MoMorphTypeTags.kguidMorphParticle => MorphTypeKind.Particle, + Guid g when g == MoMorphTypeTags.kguidMorphPrefix => MorphTypeKind.Prefix, + Guid g when g == MoMorphTypeTags.kguidMorphProclitic => MorphTypeKind.Proclitic, + Guid g when g == MoMorphTypeTags.kguidMorphRoot => MorphTypeKind.Root, + Guid g when g == MoMorphTypeTags.kguidMorphSimulfix => MorphTypeKind.Simulfix, + Guid g when g == MoMorphTypeTags.kguidMorphStem => MorphTypeKind.Stem, + Guid g when g == MoMorphTypeTags.kguidMorphSuffix => MorphTypeKind.Suffix, + Guid g when g == MoMorphTypeTags.kguidMorphSuprafix => MorphTypeKind.Suprafix, + Guid g when g == MoMorphTypeTags.kguidMorphInfixingInterfix => MorphTypeKind.InfixingInterfix, + Guid g when g == MoMorphTypeTags.kguidMorphPrefixingInterfix => MorphTypeKind.PrefixingInterfix, + Guid g when g == MoMorphTypeTags.kguidMorphSuffixingInterfix => MorphTypeKind.SuffixingInterfix, + Guid g when g == MoMorphTypeTags.kguidMorphPhrase => MorphTypeKind.Phrase, + Guid g when g == MoMorphTypeTags.kguidMorphDiscontiguousPhrase => MorphTypeKind.DiscontiguousPhrase, + // Non-canonical Guids should not be guessed, but be mapped to Unknown + _ => MorphTypeKind.Unknown, }; } - internal static Guid? ToLcmMorphTypeId(MorphType morphType) + internal static Guid? ToLcmMorphTypeId(MorphTypeKind morphType) { return morphType switch { - MorphType.BoundRoot => MoMorphTypeTags.kguidMorphBoundRoot, - MorphType.BoundStem => MoMorphTypeTags.kguidMorphBoundStem, - MorphType.Circumfix => MoMorphTypeTags.kguidMorphCircumfix, - MorphType.Clitic => MoMorphTypeTags.kguidMorphClitic, - MorphType.Enclitic => MoMorphTypeTags.kguidMorphEnclitic, - MorphType.Infix => MoMorphTypeTags.kguidMorphInfix, - MorphType.Particle => MoMorphTypeTags.kguidMorphParticle, - MorphType.Prefix => MoMorphTypeTags.kguidMorphPrefix, - MorphType.Proclitic => MoMorphTypeTags.kguidMorphProclitic, - MorphType.Root => MoMorphTypeTags.kguidMorphRoot, - MorphType.Simulfix => MoMorphTypeTags.kguidMorphSimulfix, - MorphType.Stem => MoMorphTypeTags.kguidMorphStem, - MorphType.Suffix => MoMorphTypeTags.kguidMorphSuffix, - MorphType.Suprafix => MoMorphTypeTags.kguidMorphSuprafix, - MorphType.InfixingInterfix => MoMorphTypeTags.kguidMorphInfixingInterfix, - MorphType.PrefixingInterfix => MoMorphTypeTags.kguidMorphPrefixingInterfix, - MorphType.SuffixingInterfix => MoMorphTypeTags.kguidMorphSuffixingInterfix, - MorphType.Phrase => MoMorphTypeTags.kguidMorphPhrase, - MorphType.DiscontiguousPhrase => MoMorphTypeTags.kguidMorphDiscontiguousPhrase, - MorphType.Unknown => null, - MorphType.Other => null, // Note that this will not round-trip with FromLcmMorphType + MorphTypeKind.BoundRoot => MoMorphTypeTags.kguidMorphBoundRoot, + MorphTypeKind.BoundStem => MoMorphTypeTags.kguidMorphBoundStem, + MorphTypeKind.Circumfix => MoMorphTypeTags.kguidMorphCircumfix, + MorphTypeKind.Clitic => MoMorphTypeTags.kguidMorphClitic, + MorphTypeKind.Enclitic => MoMorphTypeTags.kguidMorphEnclitic, + MorphTypeKind.Infix => MoMorphTypeTags.kguidMorphInfix, + MorphTypeKind.Particle => MoMorphTypeTags.kguidMorphParticle, + MorphTypeKind.Prefix => MoMorphTypeTags.kguidMorphPrefix, + MorphTypeKind.Proclitic => MoMorphTypeTags.kguidMorphProclitic, + MorphTypeKind.Root => MoMorphTypeTags.kguidMorphRoot, + MorphTypeKind.Simulfix => MoMorphTypeTags.kguidMorphSimulfix, + MorphTypeKind.Stem => MoMorphTypeTags.kguidMorphStem, + MorphTypeKind.Suffix => MoMorphTypeTags.kguidMorphSuffix, + MorphTypeKind.Suprafix => MoMorphTypeTags.kguidMorphSuprafix, + MorphTypeKind.InfixingInterfix => MoMorphTypeTags.kguidMorphInfixingInterfix, + MorphTypeKind.PrefixingInterfix => MoMorphTypeTags.kguidMorphPrefixingInterfix, + MorphTypeKind.SuffixingInterfix => MoMorphTypeTags.kguidMorphSuffixingInterfix, + MorphTypeKind.Phrase => MoMorphTypeTags.kguidMorphPhrase, + MorphTypeKind.DiscontiguousPhrase => MoMorphTypeTags.kguidMorphDiscontiguousPhrase, + MorphTypeKind.Unknown => null, _ => null, }; } @@ -212,7 +212,7 @@ internal static string PickText(this ICmObject obj, ITsMultiString multiString, return multiString.get_String(wsHandle)?.Text ?? string.Empty; } - internal static IMoForm CreateLexemeForm(this LcmCache cache, MorphType morphType) + internal static IMoForm CreateLexemeForm(this LcmCache cache, MorphTypeKind morphType) { return IsAffixMorphType(morphType) @@ -220,27 +220,27 @@ internal static IMoForm CreateLexemeForm(this LcmCache cache, MorphType morphTyp : cache.ServiceLocator.GetInstance().Create(); } - internal static bool IsAffixMorphType(MorphType morphType) + internal static bool IsAffixMorphType(MorphTypeKind morphType) { return morphType switch { // Affixes of all types should use the Affix morph type factory - MorphType.Circumfix => true, - MorphType.Infix => true, - MorphType.Prefix => true, - MorphType.Simulfix => true, - MorphType.Suffix => true, - MorphType.Suprafix => true, - MorphType.InfixingInterfix => true, - MorphType.PrefixingInterfix => true, - MorphType.SuffixingInterfix => true, + MorphTypeKind.Circumfix => true, + MorphTypeKind.Infix => true, + MorphTypeKind.Prefix => true, + MorphTypeKind.Simulfix => true, + MorphTypeKind.Suffix => true, + MorphTypeKind.Suprafix => true, + MorphTypeKind.InfixingInterfix => true, + MorphTypeKind.PrefixingInterfix => true, + MorphTypeKind.SuffixingInterfix => true, // Everything else should use the Stem morph type factory _ => false, }; } - internal static ILexEntry CreateEntry(this LcmCache cache, Guid id, MorphType morphType) + internal static ILexEntry CreateEntry(this LcmCache cache, Guid id, MorphTypeKind morphType) { var lexEntry = cache.ServiceLocator.GetInstance().Create(id, cache.ServiceLocator.GetInstance().Singleton.LexDbOA); @@ -248,11 +248,11 @@ internal static ILexEntry CreateEntry(this LcmCache cache, Guid id, MorphType mo return lexEntry; } - internal static IMoForm SetLexemeForm(ILexEntry lexEntry, MorphType morphType, LcmCache cache) + internal static IMoForm SetLexemeForm(ILexEntry lexEntry, MorphTypeKind morphType, LcmCache cache) { lexEntry.LexemeFormOA = cache.CreateLexemeForm(morphType); //must be done after the IMoForm is set on the LexemeForm property - var lcmMorphType = ToLcmMorphTypeId(morphType) ?? ToLcmMorphTypeId(MorphType.Stem); + var lcmMorphType = ToLcmMorphTypeId(morphType) ?? ToLcmMorphTypeId(MorphTypeKind.Stem); lexEntry.LexemeFormOA.MorphTypeRA = cache.ServiceLocator.GetInstance().GetObject(lcmMorphType!.Value); return lexEntry.LexemeFormOA; } diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateEntryProxy.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateEntryProxy.cs index 91b01e1d1a..031301d907 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateEntryProxy.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateEntryProxy.cs @@ -41,7 +41,7 @@ public override RichMultiString LiteralMeaning set => throw new NotImplementedException(); } - public override MorphType MorphType + public override MorphTypeKind MorphType { get => throw new NotImplementedException(); set => Console.WriteLine("setting MorphType not implemented"); // Not throwing, for now diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateMorphTypeDataProxy.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateMorphTypeProxy.cs similarity index 84% rename from backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateMorphTypeDataProxy.cs rename to backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateMorphTypeProxy.cs index 873ec41b1c..833eb1ffd9 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateMorphTypeDataProxy.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateMorphTypeProxy.cs @@ -3,12 +3,12 @@ namespace FwDataMiniLcmBridge.Api.UpdateProxy; -public class UpdateMorphTypeDataProxy : MorphTypeData +public class UpdateMorphTypeProxy : MorphType { private readonly IMoMorphType _lcmMorphType; private readonly FwDataMiniLcmApi _lexboxLcmApi; - public UpdateMorphTypeDataProxy(IMoMorphType lcmMorphType, FwDataMiniLcmApi lexboxLcmApi) + public UpdateMorphTypeProxy(IMoMorphType lcmMorphType, FwDataMiniLcmApi lexboxLcmApi) { _lcmMorphType = lcmMorphType; Id = lcmMorphType.Guid; @@ -33,13 +33,13 @@ public override RichMultiString Description set => throw new NotImplementedException(); } - public override string LeadingToken + public override string? Prefix { get => _lcmMorphType.Prefix; set => _lcmMorphType.Prefix = value; } - public override string TrailingToken + public override string? Postfix { get => _lcmMorphType.Postfix; set => _lcmMorphType.Postfix = value; diff --git a/backend/FwLite/FwDataMiniLcmBridge/FwDataMiniLcmBridge.csproj b/backend/FwLite/FwDataMiniLcmBridge/FwDataMiniLcmBridge.csproj index 12cc55f323..6a251cff62 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/FwDataMiniLcmBridge.csproj +++ b/backend/FwLite/FwDataMiniLcmBridge/FwDataMiniLcmBridge.csproj @@ -17,6 +17,7 @@ + diff --git a/backend/FwLite/FwLiteProjectSync.Tests/EntrySyncTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/EntrySyncTests.cs index 9d8e21a5d4..eafedd2d13 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/EntrySyncTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/EntrySyncTests.cs @@ -34,18 +34,18 @@ public async Task FwDataApiDoesNotUpdateMorphType() var entry = await Api.CreateEntry(new() { LexemeForm = { { "en", "morph-type-test" } }, - MorphType = MorphType.BoundStem + MorphType = MorphTypeKind.BoundStem }); // act var updatedEntry = entry.Copy(); - updatedEntry.MorphType = MorphType.Suffix; + updatedEntry.MorphType = MorphTypeKind.Suffix; await EntrySync.SyncFull(entry, updatedEntry, Api); // assert var actual = await Api.GetEntry(entry.Id); actual.Should().NotBeNull(); - actual.MorphType.Should().Be(MorphType.BoundStem); + actual.MorphType.Should().Be(MorphTypeKind.BoundStem); } } diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs index 1a97ac32f3..954084d1bc 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs @@ -38,6 +38,18 @@ public async Task ImportProject_IsResumable_AcrossRandomFailures() }).ToList(); var expectedPartsOfSpeech = Enumerable.Range(1, 10) .Select(i => new PartOfSpeech { Id = Guid.NewGuid(), Name = { ["en"] = $"pos{i}" } }).ToList(); + var expectedMorphTypes = Enum.GetValues() + .Select(typ => new MorphType() + { + Id = Guid.NewGuid(), + Name = new() { ["en"] = $"Test Morph Type {(int)typ} {typ}" }, + Abbreviation = new() { ["en"] = $"Tst MrphTyp{(int)typ}" }, + Description = new() { { "en", new RichString($"test desc for {typ}") } }, + Prefix = null, + Postfix = null, + Kind = typ, + SecondaryOrder = 0 + }).ToList(); var mockFrom = new Mock(); IMiniLcmApi mockTo = new UnreliableApi( @@ -80,6 +92,8 @@ public async Task ImportProject_IsResumable_AcrossRandomFailures() Id = Guid.NewGuid(), Name = new(){ ["en"] = "Test Complex Form Type" } }])); + mockFrom.Setup(f => f.GetMorphTypes()) + .Returns(MockAsyncEnumerable(expectedMorphTypes)); mockFrom.Setup(f => f.GetSemanticDomains()) .Returns(MockAsyncEnumerable([new SemanticDomain() { @@ -95,7 +109,7 @@ public async Task ImportProject_IsResumable_AcrossRandomFailures() ); // Act: retry until all are imported - var maxTries = 20; + var maxTries = 30; for (var attempt = 0; attempt < maxTries; attempt++) { try @@ -111,10 +125,14 @@ public async Task ImportProject_IsResumable_AcrossRandomFailures() var createdEntries = await mockTo.GetAllEntries().ToArrayAsync(); var createdPartsOfSpeech = await mockTo.GetPartsOfSpeech().ToArrayAsync(); + var createdMorphTypes = await mockTo.GetMorphTypes().ToArrayAsync(); // Assert createdPartsOfSpeech.Select(pos => pos.Name["en"]).Should().BeEquivalentTo(expectedPartsOfSpeech.Select(p => p.Name["en"])); createdEntries.Select(e => e.LexemeForm["en"]).Should().BeEquivalentTo(expectedEntries.Select(e => e.LexemeForm["en"])); + createdMorphTypes.Select(e => e.Name["en"]).Should().BeEquivalentTo(expectedMorphTypes.Select(e => e.Name["en"])); + createdMorphTypes.Select(e => e.Kind).Should().BeEquivalentTo(expectedMorphTypes.Select(e => e.Kind)); + } @@ -183,6 +201,11 @@ Task IMiniLcmWriteApi.CreateComplexFormType(ComplexFormType com ResumableTests.MaybeThrowRandom(random, 0.2); return _api.CreateComplexFormType(complexFormType); } + Task IMiniLcmWriteApi.CreateMorphType(MorphType morphType) + { + ResumableTests.MaybeThrowRandom(random, 0.02); + return _api.CreateMorphType(morphType); + } Task IMiniLcmWriteApi.CreateSemanticDomain(SemanticDomain semanticDomain) { ResumableTests.MaybeThrowRandom(random, 0.2); diff --git a/backend/FwLite/FwLiteProjectSync.Tests/ProjectSnapshotSerializationTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/ProjectSnapshotSerializationTests.cs index e96abdb650..62d34ebd22 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/ProjectSnapshotSerializationTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/ProjectSnapshotSerializationTests.cs @@ -42,7 +42,7 @@ public async Task AssertSena3Snapshots(string sourceSnapshotName) Path.Combine(".", nameof(ProjectSnapshotSerializationTests))); var snapshotPath = ProjectSnapshotService.SnapshotPath(fwDataProject); - File.Copy(RelativePath($"Snapshots\\{sourceSnapshotName}"), snapshotPath, overwrite: true); + File.Copy(RelativePath(Path.Combine("Snapshots", sourceSnapshotName)), snapshotPath, overwrite: true); // act - read the current snapshot var snapshot = await snapshotService.GetProjectSnapshot(fwDataProject) diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-03-11.verified.txt b/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-03-11.verified.txt new file mode 100644 index 0000000000..9187788e8c --- /dev/null +++ b/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-03-11.verified.txt @@ -0,0 +1,125733 @@ +{ + "Entries": [ + { + "Id": "34779c06-5a73-4fe9-8325-b110b23f9293", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "f53f0f28-3ec1-4051-b9a3-fafdca6209ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": { + "en": { + "Spans": [ + { + "Text": "they", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "eles", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "3P\u002B2", + "pt": "3P\u002B2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e73d5de2-b5ec-4cc8-a679-7f7ca8f673f9", + "Order": 2, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "04f6ebb2-31c2-4089-a9e8-68cc32b6d5d1", + "Order": 3, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b2565e07-2e43-43cb-b533-247f100ac548", + "Order": 4, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3360f2c7-1026-4558-a0fb-e9574aae16ee", + "Order": 5, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "88d44583-89e9-46f9-a0b1-a627503e16fb", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "513cede9-4db7-43db-86e0-86a382f79087", + "Order": 1, + "DeletedAt": null, + "EntryId": "88d44583-89e9-46f9-a0b1-a627503e16fb", + "Definition": {}, + "Gloss": { + "en": "he\u002BPST", + "pt": "ele\u002BPST" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f34831ff-af51-4e62-b56f-4968e1f294fa", + "Order": 2, + "DeletedAt": null, + "EntryId": "88d44583-89e9-46f9-a0b1-a627503e16fb", + "Definition": {}, + "Gloss": { + "en": "they\u002BPST", + "pt": "eles\u002BPST" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "71d39408-9158-429d-9fb2-7f0967c9016c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": { + "en": { + "Spans": [ + { + "Text": "he", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ele", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "6e869577-8f59-4ebe-bbff-a45c07f4e4c2", + "Order": 2, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e8ef7f59-3646-459a-96c7-482d3c747e8f", + "Order": 3, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "8b2c9d67-ff37-429f-a3ca-678fe960e001", + "Order": 4, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af56599e-3eb6-4b61-984d-f69267a0b4a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "6b9b59b9-629f-4c8d-90c8-878a40a35ee8", + "Order": 1, + "DeletedAt": null, + "EntryId": "af56599e-3eb6-4b61-984d-f69267a0b4a2", + "Definition": {}, + "Gloss": { + "en": "-er", + "pt": "nominalizador" + }, + "PartOfSpeech": { + "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "Name": { + "en": "Nominalizer", + "pt": "Nominalizador" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd045907-e8fc-46a3-8f8d-f71bd956275f", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd045907-e8fc-46a3-8f8d-f71bd956275f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "of", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "de", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "ASSOC", + "pt": "ASSOC" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6f7fe99a-de48-4761-b58f-688bfec15073", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mwana wa Fa\u0301tima", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "child of Fatima", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "crianc\u0327a de Fa\u0301tima", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d7029d27-45bc-4e53-968e-3c754805eb0a", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "82d967cc-94e1-47ee-ab71-303394ab0470", + "Order": 1, + "DeletedAt": null, + "EntryId": "d7029d27-45bc-4e53-968e-3c754805eb0a", + "Definition": {}, + "Gloss": { + "en": "3S\u002B1", + "pt": "3S\u002B1" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d7a3eba8-7cd3-43c2-8f77-2dd39d41643c", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "b2c77883-9555-4f6f-9b63-2d5e3e0921e7", + "Order": 1, + "DeletedAt": null, + "EntryId": "d7a3eba8-7cd3-43c2-8f77-2dd39d41643c", + "Definition": {}, + "Gloss": { + "en": "IND", + "pt": "IND" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7727ed9-55da-4c34-bdec-f34b7a07019e", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1af27ad8-7b07-462b-90fe-115b5bd63ecd", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7727ed9-55da-4c34-bdec-f34b7a07019e", + "Definition": {}, + "Gloss": { + "en": "PAST", + "pt": "PASSADO" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f91cf0e0-b3c2-4478-9f1f-becaecf307e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9e9ad5c2-26f8-4ed1-9803-2af452088701", + "Order": 1, + "DeletedAt": null, + "EntryId": "f91cf0e0-b3c2-4478-9f1f-becaecf307e5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "associative prefix", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "prefixo associativo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "assocpx", + "pt": "assocpx" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc02be9f-32fb-470b-b305-1395b664a1fb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9e9ad5c2-26f8-4ed1-9803-2af452088701", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a15b8ae6-207c-4999-b1e0-f95a348d1bdc", + "DeletedAt": null, + "LexemeForm": { + "seh": "adidi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "892fa71e-e2cb-4e2f-9ca9-d37d77c5acda", + "Order": 1, + "DeletedAt": null, + "EntryId": "a15b8ae6-207c-4999-b1e0-f95a348d1bdc", + "Definition": {}, + "Gloss": { + "en": "good", + "pt": "bom" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e488d546-1af3-4d79-8ec5-2063442fc8e9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akazi adidi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "boas mulheres", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "892fa71e-e2cb-4e2f-9ca9-d37d77c5acda", + "DeletedAt": null + } + ] + }, + { + "Id": "13e26eb7-5809-40d3-a08d-78c704ba8a30", + "Order": 2, + "DeletedAt": null, + "EntryId": "a15b8ae6-207c-4999-b1e0-f95a348d1bdc", + "Definition": {}, + "Gloss": { + "en": "right side", + "pt": "direita" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eef348ea-4321-400c-a29b-8a101b6dea79", + "DeletedAt": null, + "LexemeForm": { + "seh": "aji" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "8e037741-77d2-4149-abc1-1f40881a50c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "eef348ea-4321-400c-a29b-8a101b6dea79", + "Definition": {}, + "Gloss": { + "en": "agent", + "pt": "agent" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b05564f5-3b1e-4ac5-b7ed-b3cd1e77b57f", + "DeletedAt": null, + "LexemeForm": { + "seh": "aka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "65b0d7bb-29ee-4982-909a-9871001ba0cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "b05564f5-3b1e-4ac5-b7ed-b3cd1e77b57f", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5db6e79d-de66-4ec6-84c1-af3cd170f90d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ambuk" + }, + "CitationForm": { + "seh": "ambuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "67d78fa6-b914-4ac0-94c5-6acd1c2fe657", + "Order": 1, + "DeletedAt": null, + "EntryId": "5db6e79d-de66-4ec6-84c1-af3cd170f90d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to cross a body of water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cross", + "pt": "atravessar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b8846f7-7b55-436d-b47a-5f9a8a5897f2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ng\u0027ona yaambuka.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "The crocodile crossed (the river).", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "O crocodilo atravessou (rio).", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "67d78fa6-b914-4ac0-94c5-6acd1c2fe657", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd7231ed-843a-4ec3-b14d-934ecf90635d", + "DeletedAt": null, + "LexemeForm": { + "seh": "an" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "0f19a966-61e5-47ae-9388-cf8c4c6ef04c", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd7231ed-843a-4ec3-b14d-934ecf90635d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Reciprocal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Reci\u0301proca", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "REC", + "pt": "REC" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "023c3f6e-4868-4839-ae3b-4cb78878c735", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "For \u0022iyan\u0022, nikijibiya\u0301na, nikidairiya\u0301na; akakutana", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "0f19a966-61e5-47ae-9388-cf8c4c6ef04c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "425289f4-fbcd-4644-99d7-c9417e20fa66", + "DeletedAt": null, + "LexemeForm": { + "seh": "ande" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f71411f-5cd2-475c-b194-ea8f19a72a58", + "Order": 1, + "DeletedAt": null, + "EntryId": "425289f4-fbcd-4644-99d7-c9417e20fa66", + "Definition": {}, + "Gloss": { + "en": "yes", + "pt": "sim" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7121a57e-a4da-4c79-b310-3543c30f676a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ani" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b9d67f3d-1e16-4216-932d-b0c6cbb24bc7", + "Order": 1, + "DeletedAt": null, + "EntryId": "7121a57e-a4da-4c79-b310-3543c30f676a", + "Definition": {}, + "Gloss": { + "en": "who?", + "pt": "quem?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4db108bc-e229-4c8f-bd18-3b2b01e8d474", + "DeletedAt": null, + "LexemeForm": { + "seh": "anji" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a282c3c1-ed8d-4f68-8c21-767c95ac2822", + "Order": 1, + "DeletedAt": null, + "EntryId": "4db108bc-e229-4c8f-bd18-3b2b01e8d474", + "Definition": {}, + "Gloss": { + "en": "what?", + "pt": "que?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3af2c61b-b41b-43f4-9915-bb2957437f18", + "Order": 2, + "DeletedAt": null, + "EntryId": "4db108bc-e229-4c8f-bd18-3b2b01e8d474", + "Definition": {}, + "Gloss": { + "en": "which?", + "pt": "qual?" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8b58b2b6-99db-401c-b491-0b770483c52a", + "DeletedAt": null, + "LexemeForm": { + "seh": "apa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f7405ef5-b9d6-4ce5-85ec-9d31f699368f", + "Order": 1, + "DeletedAt": null, + "EntryId": "8b58b2b6-99db-401c-b491-0b770483c52a", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "240a69e1-0f0d-4086-99d3-67bb1b24769d", + "DeletedAt": null, + "LexemeForm": { + "seh": "api" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e66b59dd-3258-4135-91a1-f9c488aa8c92", + "Order": 1, + "DeletedAt": null, + "EntryId": "240a69e1-0f0d-4086-99d3-67bb1b24769d", + "Definition": {}, + "Gloss": { + "en": "what", + "pt": "o que" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8ee372e-24dd-4a72-99b5-ddb4691f0a04", + "DeletedAt": null, + "LexemeForm": { + "seh": "awa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a61ace74-399d-41fb-9ca4-51f82adbc934", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8ee372e-24dd-4a72-99b5-ddb4691f0a04", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c360ef88-a3e8-4d17-85f0-106e3713b17d", + "DeletedAt": null, + "LexemeForm": { + "seh": "b" + }, + "CitationForm": { + "seh": "ba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "74fb07c9-24d4-4b19-b496-c66dc02011e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "c360ef88-a3e8-4d17-85f0-106e3713b17d", + "Definition": {}, + "Gloss": { + "en": "steal", + "pt": "roubar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "75f95bb3-0ab4-46be-b846-f63061c0a82e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mbava aba.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "O ladra\u0303o roubou.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "74fb07c9-24d4-4b19-b496-c66dc02011e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "baba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "983254a5-8270-438b-8bbc-09cbca7a6611", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "Definition": {}, + "Gloss": { + "en": "father", + "pt": "pai" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0bf786a4-79ce-47fb-952c-9665228d7d62", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,33; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "983254a5-8270-438b-8bbc-09cbca7a6611", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "2e0cf09a-d18d-4bef-8bc2-ba68a6ed1ff1", + "MaybeId": "2e0cf09a-d18d-4bef-8bc2-ba68a6ed1ff1", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "ComponentSenseId": null, + "ComponentHeadword": "baba" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62aca34b-6826-40fd-b6bf-7c93aa8151c1", + "DeletedAt": null, + "LexemeForm": { + "seh": "bal" + }, + "CitationForm": { + "seh": "bala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "018a07df-4eac-4c21-becd-717530e1ff84", + "Order": 1, + "DeletedAt": null, + "EntryId": "62aca34b-6826-40fd-b6bf-7c93aa8151c1", + "Definition": {}, + "Gloss": { + "en": "give birth", + "pt": "dar a\u0300 luz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "855a0bfc-b305-41de-aa78-69632523b2be", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "018a07df-4eac-4c21-becd-717530e1ff84", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "701bbea4-6b2f-45c9-8a01-86d512091405", + "DeletedAt": null, + "LexemeForm": { + "seh": "balalik" + }, + "CitationForm": { + "seh": "balalika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", + "Order": 1, + "DeletedAt": null, + "EntryId": "701bbea4-6b2f-45c9-8a01-86d512091405", + "Definition": {}, + "Gloss": { + "en": "flee", + "pt": "fugir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2ec0a2fb-c15e-4d6e-a900-2843e8b77752", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", + "DeletedAt": null + }, + { + "Id": "a8ce8e9f-0d3c-42b3-8097-088e1d5aa328", + "Order": 2, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f577d57d-c388-44c5-893e-3ea9e86fef1f", + "DeletedAt": null, + "LexemeForm": { + "seh": "balangaz" + }, + "CitationForm": { + "seh": "balangaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d51d8ad2-5320-4551-a267-5d3379d91fb8", + "Order": 1, + "DeletedAt": null, + "EntryId": "f577d57d-c388-44c5-893e-3ea9e86fef1f", + "Definition": {}, + "Gloss": { + "en": "console", + "pt": "consolar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0420aef-0469-43e7-9f3a-c292efa3eeee", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d51d8ad2-5320-4551-a267-5d3379d91fb8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bc811169-1d4c-4b34-b5db-c3e6bae77eaa", + "DeletedAt": null, + "LexemeForm": { + "seh": "balik" + }, + "CitationForm": { + "seh": "balika" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fdd35987-d88b-4fba-b815-b255c72f8329", + "Order": 1, + "DeletedAt": null, + "EntryId": "bc811169-1d4c-4b34-b5db-c3e6bae77eaa", + "Definition": {}, + "Gloss": { + "en": "be beautiful", + "pt": "ser bonito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57026efa-52e6-4c48-869a-f835431e0865", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iye abalika", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "ela e\u0301 bonito", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "fdd35987-d88b-4fba-b815-b255c72f8329", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "770499a2-61b0-4a78-bbd3-ce224000426a", + "DeletedAt": null, + "LexemeForm": { + "seh": "balis" + }, + "CitationForm": { + "seh": "balisa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7cc77c4a-6c21-4d00-8d27-b032bc94803d", + "Order": 1, + "DeletedAt": null, + "EntryId": "770499a2-61b0-4a78-bbd3-ce224000426a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "help give birth", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ajudar dar a luz; fazer trabalho de parteira", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "midwiving", + "pt": "partejar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3c6317f-d236-46bf-90de-c7f53f75e1fa", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7cc77c4a-6c21-4d00-8d27-b032bc94803d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c436590-64d7-4e22-a23b-faa24483af9f", + "DeletedAt": null, + "LexemeForm": { + "seh": "baliw" + }, + "CitationForm": { + "seh": "baliwa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "496bf17c-c4c9-4aff-adf2-ed9aa9761409", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c436590-64d7-4e22-a23b-faa24483af9f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be born", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "nascer-se", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "be born", + "pt": "nascer-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2bebdc10-9dc9-40bb-8c93-42e67394332e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "496bf17c-c4c9-4aff-adf2-ed9aa9761409", + "DeletedAt": null + } + ] + }, + { + "Id": "61fe82af-1b62-47a8-9d3e-e0f7684b12fa", + "Order": 2, + "DeletedAt": null, + "EntryId": "6c436590-64d7-4e22-a23b-faa24483af9f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to strap on one\u0027s back", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "strap on back", + "pt": "por ao colo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03d6652b-0af8-40a3-b2ee-574c53dcfb2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bambaya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d59756d9-3fe2-4cd6-9e2e-372ae603152a", + "Order": 1, + "DeletedAt": null, + "EntryId": "03d6652b-0af8-40a3-b2ee-574c53dcfb2c", + "Definition": {}, + "Gloss": { + "en": "sweet potato", + "pt": "batata doce" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "707c1239-2753-4584-a698-58af283cb5f7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mabambaya mikulu", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "batata doce grande", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d59756d9-3fe2-4cd6-9e2e-372ae603152a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "883129d8-a131-4cd0-97d1-2c9e7f64af65", + "DeletedAt": null, + "LexemeForm": { + "seh": "bandazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38b340b9-6fb4-4134-a7aa-e69a4000c9bf", + "Order": 1, + "DeletedAt": null, + "EntryId": "883129d8-a131-4cd0-97d1-2c9e7f64af65", + "Definition": { + "en": { + "Spans": [ + { + "Text": "servant", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "empregado de casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "servant", + "pt": "empregado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cffb14ac-72f1-46d2-9b56-5b9fdc5bf98f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,26 (mbandazi - sic)", + "Ws": "en" + } + ] + }, + "SenseId": "38b340b9-6fb4-4134-a7aa-e69a4000c9bf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c75d29f-519c-4dc8-9eb7-a249ded94116", + "DeletedAt": null, + "LexemeForm": { + "seh": "bande" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fc0fef0-c127-467b-8c09-f10fdd3ddb6a", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c75d29f-519c-4dc8-9eb7-a249ded94116", + "Definition": { + "en": { + "Spans": [ + { + "Text": "flower , type that floats in mass on water w/ red flower", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "flor aqua\u0301tica vermelha", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "flower", + "pt": "flor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c345f278-91ff-463d-b9a6-8abac8a267eb", + "Name": { + "en": "Grass, herb, vine" + }, + "Code": "1.5.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8da005e-99a9-4a5b-acb2-d9037e417e7d", + "DeletedAt": null, + "LexemeForm": { + "seh": "banja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14301224-b2b0-42d9-b443-6cdaf860db27", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8da005e-99a9-4a5b-acb2-d9037e417e7d", + "Definition": {}, + "Gloss": { + "en": "marriage", + "pt": "casamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adcc7584-28dc-4e3a-969c-7cfc8914126a", + "DeletedAt": null, + "LexemeForm": { + "seh": "banku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f5ba1c7-2628-4669-899e-7615d7862b3d", + "Order": 1, + "DeletedAt": null, + "EntryId": "adcc7584-28dc-4e3a-969c-7cfc8914126a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "stool", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "banco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stool", + "pt": "banco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4c138b44-773a-4423-8a63-00bcb36707a3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "6f5ba1c7-2628-4669-899e-7615d7862b3d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96cc590b-25cf-4334-8ac3-a066de706286", + "DeletedAt": null, + "LexemeForm": { + "seh": "bara" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fea4ede0-f970-4b38-97eb-5d7075f0288b", + "Order": 1, + "DeletedAt": null, + "EntryId": "96cc590b-25cf-4334-8ac3-a066de706286", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sea, a body of water in which one can not see the other side", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sea", + "pt": "mar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7c4b9531-23e3-4053-bbd0-1e918f894c44", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "fea4ede0-f970-4b38-97eb-5d7075f0288b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c2d5080f-e67a-45ce-8a2a-cbddc75a3657", + "DeletedAt": null, + "LexemeForm": { + "seh": "ba\u0301rigi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef626122-aeda-4bd1-951b-63ba29d6e74a", + "Order": 1, + "DeletedAt": null, + "EntryId": "c2d5080f-e67a-45ce-8a2a-cbddc75a3657", + "Definition": {}, + "Gloss": { + "en": "barge", + "pt": "barco (tipo)" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3d586ba6-4f08-46d8-b02c-3bbb822f3092", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef626122-aeda-4bd1-951b-63ba29d6e74a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f562c819-73e1-4236-91e4-847fe06a8be8", + "DeletedAt": null, + "LexemeForm": { + "seh": "basa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "db7715d2-59de-4222-a5b7-18c72ba46beb", + "Order": 1, + "DeletedAt": null, + "EntryId": "f562c819-73e1-4236-91e4-847fe06a8be8", + "Definition": {}, + "Gloss": { + "en": "work", + "pt": "trabalho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d68911f6-6507-483a-b015-44726fdf868a", + "Name": { + "en": "Work" + }, + "Code": "6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f1f0113c-ecbc-4ece-bf02-9ef61cfa9afb", + "DeletedAt": null, + "LexemeForm": { + "seh": "basi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", + "Order": 1, + "DeletedAt": null, + "EntryId": "f1f0113c-ecbc-4ece-bf02-9ef61cfa9afb", + "Definition": {}, + "Gloss": { + "en": "only", + "pt": "so\u0301mente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "153977d2-d0d6-41e3-9e2e-4e11ec288295", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisalonga ciSena basi.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Falo somente Sena.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", + "DeletedAt": null + }, + { + "Id": "ca86d398-f420-48e1-8f8e-5f816dfa35ac", + "Order": 2, + "Sentence": {}, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": ".", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", + "DeletedAt": null + } + ] + }, + { + "Id": "333e5026-83bf-4acd-a0b0-af2f04e1687e", + "Order": 2, + "DeletedAt": null, + "EntryId": "f1f0113c-ecbc-4ece-bf02-9ef61cfa9afb", + "Definition": {}, + "Gloss": { + "en": "it is enough", + "pt": "chega" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9899f188-30ef-41b5-9fc0-bb92576fd18a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Basi, lekani kulongabve.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Chega, na\u0303o fala mais", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "333e5026-83bf-4acd-a0b0-af2f04e1687e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "221797c8-b045-4baf-82fb-891c3efa1fcd", + "DeletedAt": null, + "LexemeForm": { + "seh": "batha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09ccd17c-8e0a-4208-95dc-e41cb6b78de9", + "Order": 1, + "DeletedAt": null, + "EntryId": "221797c8-b045-4baf-82fb-891c3efa1fcd", + "Definition": {}, + "Gloss": { + "en": "duck", + "pt": "pato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b2bb077a-92c8-4e54-8dfa-c89efd60b82d", + "Name": { + "en": "Poultry raising" + }, + "Code": "6.3.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "18f15fd1-f614-490d-9f56-65a805892b0a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "09ccd17c-8e0a-4208-95dc-e41cb6b78de9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8d55e377-05d0-425a-941b-60881e640fa5", + "DeletedAt": null, + "LexemeForm": { + "seh": "baulu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef8ce53f-c686-4c74-80c2-ada05ff8a85a", + "Order": 1, + "DeletedAt": null, + "EntryId": "8d55e377-05d0-425a-941b-60881e640fa5", + "Definition": {}, + "Gloss": { + "en": "coffin", + "pt": "caixa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5c4c434b-5a06-4172-ae1d-673f39d729ec", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ef8ce53f-c686-4c74-80c2-ada05ff8a85a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41989bc6-8c43-426f-8465-6e78018dc115", + "DeletedAt": null, + "LexemeForm": { + "seh": "bemberuwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58d47fd5-21e6-4a19-8ca9-768b77eb0c8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "41989bc6-8c43-426f-8465-6e78018dc115", + "Definition": {}, + "Gloss": { + "en": "butterfly", + "pt": "borboleta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "144f8d59-ea75-444d-8077-9890b72470f2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogeiro", + "Ws": "en" + } + ] + }, + "SenseId": "58d47fd5-21e6-4a19-8ca9-768b77eb0c8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "164ebd28-78ff-424d-9fb0-038ef844b184", + "DeletedAt": null, + "LexemeForm": { + "seh": "benga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc7b9218-27a9-4ba7-9b69-79a469019855", + "Order": 1, + "DeletedAt": null, + "EntryId": "164ebd28-78ff-424d-9fb0-038ef844b184", + "Definition": {}, + "Gloss": { + "en": "hole", + "pt": "buraco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bb87e9c7-fe9d-4bd2-a3cd-36042fcb7709", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "cc7b9218-27a9-4ba7-9b69-79a469019855", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35a5b430-b2cf-4268-8fc7-8552624e7332", + "DeletedAt": null, + "LexemeForm": { + "seh": "ber" + }, + "CitationForm": { + "seh": "bera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5ec694c-59ec-4765-af3b-314095d1bd7d", + "Order": 1, + "DeletedAt": null, + "EntryId": "35a5b430-b2cf-4268-8fc7-8552624e7332", + "Definition": {}, + "Gloss": { + "en": "rob someone", + "pt": "robar alguem" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efbcca31-d5c8-4b33-a152-d8acd16b1eb6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a5ec694c-59ec-4765-af3b-314095d1bd7d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f61ef333-e7aa-498d-862a-09f451bbf42f", + "DeletedAt": null, + "LexemeForm": { + "seh": "bere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6fa0e00f-3280-498a-b33b-cca6d76f3857", + "Order": 1, + "DeletedAt": null, + "EntryId": "f61ef333-e7aa-498d-862a-09f451bbf42f", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "mama, seio", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "breast", + "pt": "mama" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e24f4f31-b037-4649-a4d5-55e6075f41a4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "6fa0e00f-3280-498a-b33b-cca6d76f3857", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d22403db-fb8c-456b-8c97-452893cae4bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "beser" + }, + "CitationForm": { + "seh": "besera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a88193aa-85c7-471f-8f05-939690f832b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "d22403db-fb8c-456b-8c97-452893cae4bb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake up between midnight and sunrise", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Acordar depois de meianoite ate nascer de sol.", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake up early", + "pt": "amanhecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57a87af7-4487-4527-8236-cab4ace6559c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iye abesera kugombe", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "He woke up early to go to the river.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Ele amadrugou para rio", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a88193aa-85c7-471f-8f05-939690f832b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f394fcf-b537-4ac5-9c99-cc4c58faac9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bhande" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d028302e-d03b-4cc8-a588-5c3ef9e449e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f394fcf-b537-4ac5-9c99-cc4c58faac9e", + "Definition": {}, + "Gloss": { + "en": "belt", + "pt": "cinto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ee6e993c-5551-42ae-b35e-26bc6aeeb3a4", + "Name": { + "en": "Men\u0027s clothing" + }, + "Code": "5.3.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "0d058fef-c535-41ef-be83-0980ee1c650e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d028302e-d03b-4cc8-a588-5c3ef9e449e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "681f3444-dff2-4ce8-bba8-afa28818de7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "bhonzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d4bf84ed-04fd-41a4-a4ca-312a0a8f171e", + "Order": 1, + "DeletedAt": null, + "EntryId": "681f3444-dff2-4ce8-bba8-afa28818de7f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "leg bone of a certain animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "osso de perna dum certo animal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "leg bone", + "pt": "osso de perna " + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "381c1f98-3295-492f-afb2-41805596f99c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d4bf84ed-04fd-41a4-a4ca-312a0a8f171e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81e36df2-9f0a-4a06-90f8-188016d62937", + "DeletedAt": null, + "LexemeForm": { + "seh": "bibvu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bfe613da-5e41-4cce-ac69-4f4b4d1e29ff", + "Order": 1, + "DeletedAt": null, + "EntryId": "81e36df2-9f0a-4a06-90f8-188016d62937", + "Definition": {}, + "Gloss": { + "en": "jealousy", + "pt": "inveja" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2376f4c-8713-44f7-8058-1ded7b253968", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bfe613da-5e41-4cce-ac69-4f4b4d1e29ff", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "23ab3e8b-5244-4f83-8134-869dd17442e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "bichu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "82e9e4c7-3572-4246-8a6b-5dc29d16a278", + "Order": 1, + "DeletedAt": null, + "EntryId": "23ab3e8b-5244-4f83-8134-869dd17442e8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "slave, person under punishment, one who works against one\u0027s will", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "escravo, pessoa castigada, na\u0303o trabalho pelo vontade", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "slave", + "pt": "escravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "434d7ed9-9efb-47a2-bb84-d9ecf24625d4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "82e9e4c7-3572-4246-8a6b-5dc29d16a278", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a73d442f-8314-4b6f-a396-206fde5f7804", + "DeletedAt": null, + "LexemeForm": { + "seh": "bidz" + }, + "CitationForm": { + "seh": "bidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "40cf2e97-7ba4-4deb-953a-491f165099e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a73d442f-8314-4b6f-a396-206fde5f7804", + "Definition": {}, + "Gloss": { + "en": "submerge", + "pt": "mergulhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86e857fa-f9c8-40b8-b617-1c0ef4ae71dd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "40cf2e97-7ba4-4deb-953a-491f165099e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e18419f9-a34a-4afe-ad7b-3c56b77b097d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bimbi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a92f97b-b8fd-47f4-9a0b-6bc48878475a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e18419f9-a34a-4afe-ad7b-3c56b77b097d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ocean wave", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "wave", + "pt": "onda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "741c417a-11e9-460c-9ab3-51b8220df016", + "Name": { + "en": "Wave" + }, + "Code": "1.3.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "d3653a1b-0521-46d9-91a2-7d17f5c4d744", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6a92f97b-b8fd-47f4-9a0b-6bc48878475a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6b0df727-94e7-47cd-96c6-a37662297947", + "DeletedAt": null, + "LexemeForm": { + "seh": "bira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "161e717b-55e7-45a5-800b-4dc9e1c4fa30", + "Order": 1, + "DeletedAt": null, + "EntryId": "6b0df727-94e7-47cd-96c6-a37662297947", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sheep, ewe or ram", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "orvelho ou orvelha", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "sheep", + "pt": "ovelho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "26b97047-edb1-44e9-8c7b-463de9cfbe78", + "Name": { + "en": "Sheep" + }, + "Code": "6.3.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "53bbf6a2-c41a-43ec-9a04-9aa5da9c119c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "161e717b-55e7-45a5-800b-4dc9e1c4fa30", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fdc4ebf8-8a7a-4584-9256-a10267b68669", + "DeletedAt": null, + "LexemeForm": { + "seh": "biri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b8639913-e8cf-4bbf-8598-0cb7c2421f01", + "Order": 1, + "DeletedAt": null, + "EntryId": "fdc4ebf8-8a7a-4584-9256-a10267b68669", + "Definition": {}, + "Gloss": { + "en": "glory", + "pt": "glo\u0301ria" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68b2b516-b793-4ff1-8abe-a0d6e3399b3a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b8639913-e8cf-4bbf-8598-0cb7c2421f01", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ca8ab7e5-b8e8-4263-bbbf-96caf53c6adc", + "DeletedAt": null, + "LexemeForm": { + "seh": "bisal" + }, + "CitationForm": { + "seh": "bisala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c2a64c53-bb9f-4485-adce-56aa1bca3acc", + "Order": 1, + "DeletedAt": null, + "EntryId": "ca8ab7e5-b8e8-4263-bbbf-96caf53c6adc", + "Definition": {}, + "Gloss": { + "en": "hide", + "pt": "esconder-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aa987582-1d47-4a14-b81c-869eae50f4f2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c2a64c53-bb9f-4485-adce-56aa1bca3acc", + "DeletedAt": null + } + ] + }, + { + "Id": "d74a27ca-630a-4e62-9ad1-0dce9252870f", + "Order": 2, + "DeletedAt": null, + "EntryId": "ca8ab7e5-b8e8-4263-bbbf-96caf53c6adc", + "Definition": {}, + "Gloss": { + "en": "hidden", + "pt": "escondido" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3330d4cb-d668-4a8d-bad9-6d35e750d3b7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "pinthu pya kubisala", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "coisas escondidos", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "d74a27ca-630a-4e62-9ad1-0dce9252870f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4b4e98b0-7b69-44a0-8444-9b447c5764b9", + "Order": 1, + "DeletedAt": null, + "EntryId": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "Definition": {}, + "Gloss": { + "en": "one", + "pt": "um" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db0b3ff3-6d48-49e2-9b22-ae909d9690e0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nkazi m\u0027bodzi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "one wife", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "esposa uma", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "4b4e98b0-7b69-44a0-8444-9b447c5764b9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "736b1dad-e623-4715-955c-bb214ca94f5d", + "MaybeId": "736b1dad-e623-4715-955c-bb214ca94f5d", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "ComplexFormHeadword": "bodzi-bodzi", + "ComponentEntryId": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "ComponentSenseId": null, + "ComponentHeadword": "bodzi" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "DeletedAt": null, + "LexemeForm": { + "seh": "bodzi-bodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "79b8ab72-2b9c-4afa-ad44-47fefb074746", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "Definition": { + "en": { + "Spans": [ + { + "Text": "indicating ephatically", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "the very", + "pt": "o mesmo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac1e8487-62d0-4a0a-b1b2-8ea157d340b1", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Awene abodzi-bodzi ndio adalonga.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Eles mesmos foram falar. (Sa\u0303o eles mesmo que falaram.)", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "79b8ab72-2b9c-4afa-ad44-47fefb074746", + "DeletedAt": null + }, + { + "Id": "fd20594d-5831-462d-a460-ce4ca3687bc7", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cinthu cibodzi-bodzi; pinthu pibodzi-bodzi; cibodzi na cibodzi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "aquele coisa mesmo; aqueles mesmos coisas; um por um", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "79b8ab72-2b9c-4afa-ad44-47fefb074746", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "736b1dad-e623-4715-955c-bb214ca94f5d", + "MaybeId": "736b1dad-e623-4715-955c-bb214ca94f5d", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "ComplexFormHeadword": "bodzi-bodzi", + "ComponentEntryId": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "ComponentSenseId": null, + "ComponentHeadword": "bodzi" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05ef2b9c-f0a3-498e-b26b-47e860f20fe7", + "DeletedAt": null, + "LexemeForm": { + "seh": "bokho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "036e4c4f-31f1-4824-8ebe-51fa5a9fbe43", + "Order": 1, + "DeletedAt": null, + "EntryId": "05ef2b9c-f0a3-498e-b26b-47e860f20fe7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "goat male", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cabrito masculino", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "goat", + "pt": "cabrito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b3fcded-5440-4ca7-a870-4de86d693b27", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:18,26", + "Ws": "en" + } + ] + }, + "SenseId": "036e4c4f-31f1-4824-8ebe-51fa5a9fbe43", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91f2b11a-1ee4-4725-aef4-0a03366ed0e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "bokosi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57bd9b42-76ed-4fa4-8a43-d8ca70973b03", + "Order": 1, + "DeletedAt": null, + "EntryId": "91f2b11a-1ee4-4725-aef4-0a03366ed0e4", + "Definition": {}, + "Gloss": { + "en": "box", + "pt": "caixa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21752c5c-ccd4-4cf0-8347-5580173da164", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "57bd9b42-76ed-4fa4-8a43-d8ca70973b03", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb7504eb-e687-454b-89e5-8f5b459e085d", + "DeletedAt": null, + "LexemeForm": { + "seh": "boliboli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e138d2ab-fea1-421d-bd27-1a901309ac1a", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb7504eb-e687-454b-89e5-8f5b459e085d", + "Definition": {}, + "Gloss": { + "en": "blind", + "pt": "cego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f16bfb0b-a465-492c-b2b2-4c70672fc7ba", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e138d2ab-fea1-421d-bd27-1a901309ac1a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "97d765f4-286b-48e8-a76c-b66a61428cb2", + "DeletedAt": null, + "LexemeForm": { + "seh": "bondia" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "229fdf0b-c330-423a-8eb2-6a0fc8c76d2b", + "Order": 1, + "DeletedAt": null, + "EntryId": "97d765f4-286b-48e8-a76c-b66a61428cb2", + "Definition": {}, + "Gloss": { + "en": "good morning", + "pt": "bom dia" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0155b177-1fe0-4d45-8fe7-b25a438fa67f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "229fdf0b-c330-423a-8eb2-6a0fc8c76d2b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b5afaed-1da7-4062-8992-e2f6076d2886", + "DeletedAt": null, + "LexemeForm": { + "seh": "bongwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eea4e67f-9514-4bfb-9bfc-af148446d34f", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b5afaed-1da7-4062-8992-e2f6076d2886", + "Definition": { + "en": { + "Spans": [ + { + "Text": "baboon", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "baboon", + "pt": "babui\u0301no" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "03ae473b-9283-4e4f-a4fe-9f1733c22c66", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "eea4e67f-9514-4bfb-9bfc-af148446d34f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "afc73a10-6dd1-464d-9633-c05541c427d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "bonzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09c319ff-53fe-4453-b088-8327effb47b7", + "Order": 1, + "DeletedAt": null, + "EntryId": "afc73a10-6dd1-464d-9633-c05541c427d7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the clan name for the Nyazeze family", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "nome duma cla\u0303", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "name", + "pt": "nome" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f120be26-15b0-45c0-b215-d84417a7ed57", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "09c319ff-53fe-4453-b088-8327effb47b7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a3ddb7a7-7adc-4b30-b4de-578bcecd95f9", + "DeletedAt": null, + "LexemeForm": { + "seh": "boo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3301cd02-b803-4fdd-8e0b-1fd9802b699d", + "Order": 1, + "DeletedAt": null, + "EntryId": "a3ddb7a7-7adc-4b30-b4de-578bcecd95f9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the deepest part of a river or ocean", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "ocean bottom", + "pt": "fundu do mar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fd5cade4-bafb-47c2-8c60-389c43bfcca1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3301cd02-b803-4fdd-8e0b-1fd9802b699d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16f79c67-c08f-4c8f-8df1-9209bc4005b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "botari" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "93dd2162-dedc-42bf-9fc6-49e6a765bdf8", + "Order": 1, + "DeletedAt": null, + "EntryId": "16f79c67-c08f-4c8f-8df1-9209bc4005b2", + "Definition": {}, + "Gloss": { + "en": "good afternoon", + "pt": "boa tarde" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "79b53161-d4d7-4aec-8b0b-91ae794b596e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "93dd2162-dedc-42bf-9fc6-49e6a765bdf8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "97fc469d-9916-454d-8ff0-277f973f8674", + "DeletedAt": null, + "LexemeForm": { + "seh": "bote" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1dc5dfb2-e140-4fa2-85b4-ebf9c7cce900", + "Order": 1, + "DeletedAt": null, + "EntryId": "97fc469d-9916-454d-8ff0-277f973f8674", + "Definition": {}, + "Gloss": { + "en": "boat", + "pt": "barco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c167ffe-9941-4d5a-894a-225aa7be4b20", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1dc5dfb2-e140-4fa2-85b4-ebf9c7cce900", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a9f24a4-3148-448c-a6c0-097c8bc5dcb5", + "DeletedAt": null, + "LexemeForm": { + "seh": "bukhu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84fe5c47-2cac-4abd-b53f-7f75700cb745", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a9f24a4-3148-448c-a6c0-097c8bc5dcb5", + "Definition": {}, + "Gloss": { + "en": "book", + "pt": "livro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5def4ccd-951a-4cc6-b6e0-45a0918f77eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulangeti" + }, + "CitationForm": { + "seh": "bulangeti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ffe18b3-db9e-4cf9-9076-107940104d19", + "Order": 1, + "DeletedAt": null, + "EntryId": "5def4ccd-951a-4cc6-b6e0-45a0918f77eb", + "Definition": {}, + "Gloss": { + "en": "cover", + "pt": "manta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ed29ce4-ff90-4fed-92c8-c77769e4699b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "5ffe18b3-db9e-4cf9-9076-107940104d19", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d4060ee2-f42b-4ae0-a47e-1781a0b3310d", + "DeletedAt": null, + "LexemeForm": { + "seh": "buluk" + }, + "CitationForm": { + "seh": "buluka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4517e997-6cec-46b3-9596-1e51ac14702d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d4060ee2-f42b-4ae0-a47e-1781a0b3310d", + "Definition": {}, + "Gloss": { + "en": "leave", + "pt": "sair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f0208049-06e8-4d15-a0be-81c2844bf1e0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "4517e997-6cec-46b3-9596-1e51ac14702d", + "DeletedAt": null + } + ] + }, + { + "Id": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", + "Order": 2, + "DeletedAt": null, + "EntryId": "d4060ee2-f42b-4ae0-a47e-1781a0b3310d", + "Definition": {}, + "Gloss": { + "en": "produce", + "pt": "produzir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d824a4dc-3b6d-466d-9d77-6b42c5750487", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mpunga wabuluka maningi.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "O arroz produziu muito.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "The rice produced a lot.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulukir" + }, + "CitationForm": { + "seh": "bulukira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21bac99f-c587-4576-b08c-14ca69dadd83", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "Definition": {}, + "Gloss": { + "en": "appear", + "pt": "aparecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df765343-ce79-4d76-b9c5-76ab706fa840", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ya kumabulukira dzuwa", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "east (lit the place of the sunrise) ma- = lugar", + "Ws": "en" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "21bac99f-c587-4576-b08c-14ca69dadd83", + "DeletedAt": null + } + ] + }, + { + "Id": "35a38de9-1800-47e0-b4ad-5db19ac79db2", + "Order": 2, + "DeletedAt": null, + "EntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "Definition": {}, + "Gloss": { + "en": "come out", + "pt": "sair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ef9ddb54-2d19-450d-9264-f872a8f94776", + "Order": 3, + "DeletedAt": null, + "EntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "Definition": {}, + "Gloss": { + "en": "from then on", + "pt": "partindo dali\u0301" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "e5460a70-3a92-47f7-8d4f-8d882728e0d7", + "MaybeId": "e5460a70-3a92-47f7-8d4f-8d882728e0d7", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "ComplexFormHeadword": "kubulukira", + "ComponentEntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "ComponentSenseId": null, + "ComponentHeadword": "bulukira" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c06eb11b-067a-44cd-aa2e-2e56a2ea8970", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulumund" + }, + "CitationForm": { + "seh": "bulumunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3fe67f6b-5514-47fc-be95-ac53ee7d8b56", + "Order": 1, + "DeletedAt": null, + "EntryId": "c06eb11b-067a-44cd-aa2e-2e56a2ea8970", + "Definition": {}, + "Gloss": { + "en": "roll in", + "pt": "rebolando" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "81c6e631-7e90-4b11-aac5-b859ad71f327", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3fe67f6b-5514-47fc-be95-ac53ee7d8b56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b77ab23f-1a6f-46f3-a01d-19948315b026", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulus" + }, + "CitationForm": { + "seh": "bulusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6edd952c-0bdc-4c73-bfb9-1051f163db9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b77ab23f-1a6f-46f3-a01d-19948315b026", + "Definition": {}, + "Gloss": { + "en": "throw out", + "pt": "tirar fora" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c104ff5-8b88-4abf-af74-edacf61cf379", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6edd952c-0bdc-4c73-bfb9-1051f163db9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9df0b4e0-33e8-4bf3-9dbf-6e3c5048a569", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulusir" + }, + "CitationForm": { + "seh": "bulusira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "574b5528-5784-42ff-b9d9-fcc156dcc49f", + "Order": 1, + "DeletedAt": null, + "EntryId": "9df0b4e0-33e8-4bf3-9dbf-6e3c5048a569", + "Definition": { + "en": { + "Spans": [ + { + "Text": "remove, release prisoner", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "remove", + "pt": "tirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d98551bd-e134-4bb1-967a-5a2fd25051da", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "574b5528-5784-42ff-b9d9-fcc156dcc49f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29f67617-7668-4535-943f-40c4d62c408c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bume" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0d40e283-a355-41fa-9919-a800096e3319", + "Order": 1, + "DeletedAt": null, + "EntryId": "29f67617-7668-4535-943f-40c4d62c408c", + "Definition": {}, + "Gloss": { + "en": "dew", + "pt": "orvalho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b8ede155-d17b-4a90-8846-e34ea3237320", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:13,19; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0d40e283-a355-41fa-9919-a800096e3319", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dafecdb2-b969-43eb-8e9f-fa35aed5e5a1", + "DeletedAt": null, + "LexemeForm": { + "seh": "buru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b98fbde-93bd-4cca-a342-180aa7b92411", + "Order": 1, + "DeletedAt": null, + "EntryId": "dafecdb2-b969-43eb-8e9f-fa35aed5e5a1", + "Definition": {}, + "Gloss": { + "en": "donkey", + "pt": "juntameta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "edca7805-b861-4979-a18a-63ef1086eeff", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5b98fbde-93bd-4cca-a342-180aa7b92411", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bv" + }, + "CitationForm": { + "seh": "bva" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "528e7166-69ba-4991-b067-f411475442b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "Definition": {}, + "Gloss": { + "en": "hear", + "pt": "ouvir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f68490f8-f661-4b39-ac14-867caef887f7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisabva pisa.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "I feel hot.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Sinto quente.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4 (bv a); Orth; sulo037; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "528e7166-69ba-4991-b067-f411475442b1", + "DeletedAt": null + }, + { + "Id": "e848d802-b842-44fb-b389-fcb84a113fe9", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musabvanji? Ndisabva kupha manungo onsene.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "como se sente? Sinto dores corpo inteiro.", + "Ws": "en" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "528e7166-69ba-4991-b067-f411475442b1", + "DeletedAt": null + } + ] + }, + { + "Id": "fabcc53e-8dd3-4be5-9af5-4f81981ba5be", + "Order": 2, + "DeletedAt": null, + "EntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "Definition": {}, + "Gloss": { + "en": "feel", + "pt": "sentir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "bb65f916-e679-4e05-a575-aaa75e5f01ec", + "MaybeId": "bb65f916-e679-4e05-a575-aaa75e5f01ec", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "ComplexFormHeadword": "kubverana", + "ComponentEntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "ComponentSenseId": null, + "ComponentHeadword": "bva" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35385d36-a39a-4d8f-8d15-6f6207a555a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "bval" + }, + "CitationForm": { + "seh": "bvala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "23a00ada-22b0-402a-a714-8264414db39e", + "Order": 1, + "DeletedAt": null, + "EntryId": "35385d36-a39a-4d8f-8d15-6f6207a555a8", + "Definition": {}, + "Gloss": { + "en": "wear", + "pt": "vestir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ac6299b-ee72-4c3e-af84-3e3ae1c82f29", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndabvala capeu.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Usei chapeu.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "23a00ada-22b0-402a-a714-8264414db39e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "def608e7-d69a-4460-b60b-ad5af7ea9e4c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvalir" + }, + "CitationForm": { + "seh": "bvalira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ea6aae0-5081-4ec7-b418-80d6294553d5", + "Order": 1, + "DeletedAt": null, + "EntryId": "def608e7-d69a-4460-b60b-ad5af7ea9e4c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be well dressed", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dapper", + "pt": "vestir bem" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ade98355-401b-4349-8d9c-1187277048be", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0ea6aae0-5081-4ec7-b418-80d6294553d5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ec4b20c-c13e-4e8f-bf8f-a6440d6fd302", + "DeletedAt": null, + "LexemeForm": { + "seh": "bve" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "c15ddf45-a80c-411b-9dbc-d844af283e5f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ec4b20c-c13e-4e8f-bf8f-a6440d6fd302", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Negative intensifier, \u0022never ever\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Intensificador negative \u0022nunca, jamais\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NEGINT", + "pt": "NEGINT" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f3d7730-31a4-46bb-8345-2bdfb13714d4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Hadaonabve munthu unango tayu.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o viram mais o outra pessoa na\u0303o", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "c15ddf45-a80c-411b-9dbc-d844af283e5f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba97a4b2-f81a-4831-987f-41bfaef251ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvek" + }, + "CitationForm": { + "seh": "bveka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba97a4b2-f81a-4831-987f-41bfaef251ed", + "Definition": {}, + "Gloss": { + "en": "understand", + "pt": "percerber-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe2f5c16-ea3b-43fd-b9c6-6d932bf22dd3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", + "DeletedAt": null + }, + { + "Id": "9142ca40-bc9d-4713-a120-bd2e68d4b188", + "Order": 2, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", + "DeletedAt": null + } + ] + }, + { + "Id": "6e0952c8-002d-4c3c-b00a-313f65628c58", + "Order": 2, + "DeletedAt": null, + "EntryId": "ba97a4b2-f81a-4831-987f-41bfaef251ed", + "Definition": {}, + "Gloss": { + "en": "comprehend", + "pt": "compreender-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f616266-624b-46cc-9fe6-37721bd7dad1", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvembe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df9f4687-672d-4c65-a178-49a1b007c18e", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f616266-624b-46cc-9fe6-37721bd7dad1", + "Definition": {}, + "Gloss": { + "en": "watermelon", + "pt": "melancia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dd6ef32-e6bc-4973-b8b3-b6fa340b7675", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "df9f4687-672d-4c65-a178-49a1b007c18e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c5b197a-70a3-49dc-a9be-776b5d0b4fc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "bver" + }, + "CitationForm": { + "seh": "bvera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "82f97729-0549-4583-876e-d3adf864f6c1", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c5b197a-70a3-49dc-a9be-776b5d0b4fc1", + "Definition": {}, + "Gloss": { + "en": "obey", + "pt": "obedecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2b5fab2-cfc5-4b08-b309-f2ef0950e2d4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "82f97729-0549-4583-876e-d3adf864f6c1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "85672120-e3c4-4b47-9f5a-be0ace166f78", + "DeletedAt": null, + "LexemeForm": { + "seh": "bveran" + }, + "CitationForm": { + "seh": "bverana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d9a83e05-e52d-41e1-bbab-7733e09b0ca1", + "Order": 1, + "DeletedAt": null, + "EntryId": "85672120-e3c4-4b47-9f5a-be0ace166f78", + "Definition": {}, + "Gloss": { + "en": "make agreement", + "pt": "combinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "69455770-fca7-4f41-9e7d-236e8f094ce6", + "Name": { + "en": "Covenant" + }, + "Code": "4.7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ac6dec6-1b8f-463c-8239-e2acb93586b1", + "Name": { + "en": "Unity" + }, + "Code": "4.1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3c6ec08e-0069-4cd1-9024-95d07407159d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndisabverana na Antonyo.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Eu combina-se bem com Anto\u0301nio.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "sulo2:16", + "Ws": "en" + } + ] + }, + "SenseId": "d9a83e05-e52d-41e1-bbab-7733e09b0ca1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c68ec3c-1814-4ff5-8142-7c2bf40b2b3e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bves" + }, + "CitationForm": { + "seh": "bvesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14c24243-dc54-422a-880f-1d326cbad344", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c68ec3c-1814-4ff5-8142-7c2bf40b2b3e", + "Definition": {}, + "Gloss": { + "en": "listen", + "pt": "escutar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f0fa93ae-aa47-46bd-9022-e0f3a9b6e366", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sidapibvesa tayu", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o percebi", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "14c24243-dc54-422a-880f-1d326cbad344", + "DeletedAt": null + } + ] + }, + { + "Id": "346cb2f1-ca16-47ec-bc29-5451f89fed1d", + "Order": 2, + "DeletedAt": null, + "EntryId": "6c68ec3c-1814-4ff5-8142-7c2bf40b2b3e", + "Definition": {}, + "Gloss": { + "en": "understand", + "pt": "perceber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7b88f2c2-647f-4f46-86d9-9f9207db465c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvin" + }, + "CitationForm": { + "seh": "bvina" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "71fc904e-ac67-4964-8db3-f5c8f2d8c477", + "Order": 1, + "DeletedAt": null, + "EntryId": "7b88f2c2-647f-4f46-86d9-9f9207db465c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "dance any dance", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dance", + "pt": "danc\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d88db3c5-62ed-4ac3-bd70-7f74230d069a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "71fc904e-ac67-4964-8db3-f5c8f2d8c477", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "19df53f9-3790-49a9-a8ab-c37003eed83c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvumb" + }, + "CitationForm": { + "seh": "bvumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "19034ed9-ec16-4284-92f7-905c3d5ef8f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "19df53f9-3790-49a9-a8ab-c37003eed83c", + "Definition": {}, + "Gloss": { + "en": "rain", + "pt": "chover" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d681a231-c74b-4969-afd9-13b9c5f2eae6", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu zulo abvumba", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Ontem choveu", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "19034ed9-ec16-4284-92f7-905c3d5ef8f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13acc98c-1d92-4456-9516-180ec96c0ac3", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvumbe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6cc2b1b5-5dbe-45f6-8afb-66b2449798be", + "Order": 1, + "DeletedAt": null, + "EntryId": "13acc98c-1d92-4456-9516-180ec96c0ac3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Vlei rat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "water rat", + "pt": "rato de agua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "92cd4bc7-7c50-4a70-936a-3bc2cd4e5c1f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "6cc2b1b5-5dbe-45f6-8afb-66b2449798be", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a1c97fba-7489-4390-9da8-2fbcda2cb8dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvun" + }, + "CitationForm": { + "seh": "bvuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73e108cc-db6b-4233-b1ad-b72688055779", + "Order": 1, + "DeletedAt": null, + "EntryId": "a1c97fba-7489-4390-9da8-2fbcda2cb8dd", + "Definition": {}, + "Gloss": { + "en": "harvest", + "pt": "colher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4dab76ba-1ffb-4649-8cd9-34269159100c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Abvuna mphuga.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "They harvested rice.", + "Ws": "seh" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Eles colheram arroz.", + "Ws": "seh" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "73e108cc-db6b-4233-b1ad-b72688055779", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b2fc8bd-b0bb-4905-a159-d55f5fa13eff", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvungaz" + }, + "CitationForm": { + "seh": "bvungaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3b192b76-c082-4f51-9c65-ce2dab292a7a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b2fc8bd-b0bb-4905-a159-d55f5fa13eff", + "Definition": {}, + "Gloss": { + "en": "mix together", + "pt": "misturar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14bc016d-b5bb-4114-bec9-789000329ecd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3b192b76-c082-4f51-9c65-ce2dab292a7a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "edfd6867-472d-4a25-a992-119920785529", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvunz" + }, + "CitationForm": { + "seh": "bvunza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7e2c9813-6bc2-42f9-906a-917aec1e20f5", + "Order": 1, + "DeletedAt": null, + "EntryId": "edfd6867-472d-4a25-a992-119920785529", + "Definition": {}, + "Gloss": { + "en": "ask to", + "pt": "perguntar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f6f307fc-36d1-4e28-98e6-1a7417fcf872", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndoko kabvunze Antonyo mangwana abwere kuno.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Vai pedir Anto\u0301nio para amanha vir ca\u0301.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "7e2c9813-6bc2-42f9-906a-917aec1e20f5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d6818699-a9e5-40b4-814e-ee6063ebb962", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvunzir" + }, + "CitationForm": { + "seh": "bvunzira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f8b3aaa2-b810-4804-b9c2-72376143235f", + "Order": 1, + "DeletedAt": null, + "EntryId": "d6818699-a9e5-40b4-814e-ee6063ebb962", + "Definition": {}, + "Gloss": { + "en": "love", + "pt": "namorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a0258c2-d7a3-40b0-a933-2dc71c759402", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc3a436b-07c6-4c05-8c78-9bbe82ce5549", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a0258c2-d7a3-40b0-a933-2dc71c759402", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cord for making nets", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "linha para fazer rede", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "cord", + "pt": "linha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "885a9d2b-9492-4f37-a05a-022adae98685", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira buazi \u0022tow\u0022 p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dc3a436b-07c6-4c05-8c78-9bbe82ce5549", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2c1bbb47-cd19-4710-acd5-a363834ac79a", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwek" + }, + "CitationForm": { + "seh": "bweka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "18815e26-697e-4b5d-9054-5abac267dcd1", + "Order": 1, + "DeletedAt": null, + "EntryId": "2c1bbb47-cd19-4710-acd5-a363834ac79a", + "Definition": {}, + "Gloss": { + "en": "confess", + "pt": "confessar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cb7dbee8-ba65-4c22-b359-7409b55eb8d3", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bweka kudawa kwako.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Confessa os teus pecados.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "18815e26-697e-4b5d-9054-5abac267dcd1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b8aa2bdb-139d-48c2-8ce1-5bfc53a01d58", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwek" + }, + "CitationForm": { + "seh": "bweka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e429f500-bf9a-4c3d-9783-1b70eaa744dd", + "Order": 1, + "DeletedAt": null, + "EntryId": "b8aa2bdb-139d-48c2-8ce1-5bfc53a01d58", + "Definition": { + "en": { + "Spans": [ + { + "Text": "talk without thinking", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "falar sem pensar, \u0022fala barato\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "careless talk", + "pt": "falar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwer" + }, + "CitationForm": { + "seh": "bwera" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "Definition": {}, + "Gloss": { + "en": "come", + "pt": "vir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "19130813-273c-4bfe-9b14-0785ec757722", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bwera pano.", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", + "DeletedAt": null + }, + { + "Id": "896591a4-d69e-43c4-8978-e229ceb30fe7", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Anda ca.", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "6ec14ead-90b4-4018-8641-d792e42235c4", + "MaybeId": "6ec14ead-90b4-4018-8641-d792e42235c4", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "ComplexFormHeadword": "mambwera-mbwera", + "ComponentEntryId": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "ComponentSenseId": null, + "ComponentHeadword": "bwera" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "792a935e-eec4-481a-a6b8-fa33ad2720c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwerer" + }, + "CitationForm": { + "seh": "bwerera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cfdbb3a-856b-42cc-a288-34fbb0109fb4", + "Order": 1, + "DeletedAt": null, + "EntryId": "792a935e-eec4-481a-a6b8-fa33ad2720c3", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "regressar, voltar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "return", + "pt": "regressar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9914843d-90b7-4a51-9e10-3c84895daaac", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8cfdbb3a-856b-42cc-a288-34fbb0109fb4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75740a33-1e68-4c23-9086-8b6b3884a1b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "bweres" + }, + "CitationForm": { + "seh": "bweresa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ee1a56f-8c3a-4428-96bd-4789818e9c4b", + "Order": 1, + "DeletedAt": null, + "EntryId": "75740a33-1e68-4c23-9086-8b6b3884a1b3", + "Definition": {}, + "Gloss": { + "en": "bring", + "pt": "trazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1ccca91a-eaa6-4d9b-a7f0-c24810c1c818", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0ee1a56f-8c3a-4428-96bd-4789818e9c4b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5e222505-b346-48b6-97a1-5c471d853903", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwerezer" + }, + "CitationForm": { + "seh": "bwerezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c854bbb5-a15d-4fb3-a044-712160f19483", + "Order": 1, + "DeletedAt": null, + "EntryId": "5e222505-b346-48b6-97a1-5c471d853903", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to respond in kind", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "react", + "pt": "reagir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8d231a11-9085-4b62-994b-240f274bc530", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c854bbb5-a15d-4fb3-a044-712160f19483", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "579f89fd-3f9d-4bec-8bcb-b0c9334ea25e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwezer" + }, + "CitationForm": { + "seh": "bwezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7d4c55b8-b905-48ab-b1d5-063cb01ff3fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "579f89fd-3f9d-4bec-8bcb-b0c9334ea25e", + "Definition": {}, + "Gloss": { + "en": "give back", + "pt": "devolver" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ba8201a-742d-4bb6-9b36-240349fd4710", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "7d4c55b8-b905-48ab-b1d5-063cb01ff3fb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c7c36ff-b229-4143-afe3-d5f721823651", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzal" + }, + "CitationForm": { + "seh": "bzala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b5b7814e-a85d-4825-9ef0-5f4426d64031", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c7c36ff-b229-4143-afe3-d5f721823651", + "Definition": {}, + "Gloss": { + "en": "sow seeds", + "pt": "semear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7fda3f12-bacb-4e81-9507-4989fbd01f2d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b5b7814e-a85d-4825-9ef0-5f4426d64031", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b51ce7b-2f84-4afc-81be-ca4ed5f94f57", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e163b20d-9a33-4870-bae4-eccbff6fb1ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b51ce7b-2f84-4afc-81be-ca4ed5f94f57", + "Definition": {}, + "Gloss": { + "en": "direita", + "pt": "esqueda" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8f9ec27-abd3-4bc2-a26f-0945b49de84f", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzimb" + }, + "CitationForm": { + "seh": "bzimba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb256afd-ba11-4319-817d-e4932fb704c3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8f9ec27-abd3-4bc2-a26f-0945b49de84f", + "Definition": {}, + "Gloss": { + "en": "swell", + "pt": "inchar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "11e8661c-a07e-4a3f-8f2d-2ea3d7494501", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "fb256afd-ba11-4319-817d-e4932fb704c3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f67e332a-b296-4967-ace3-5583ce66e95b", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzwal" + }, + "CitationForm": { + "seh": "bzwala" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b84dc935-feaf-4489-9434-1da83cfb5e7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "f67e332a-b296-4967-ace3-5583ce66e95b", + "Definition": {}, + "Gloss": { + "en": "plant", + "pt": "semear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db997605-c9e0-4876-bc61-9bd5ed62c9b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5bfee4a9-8bf1-4d74-a3e6-98163225cb42", + "Order": 1, + "DeletedAt": null, + "EntryId": "db997605-c9e0-4876-bc61-9bd5ed62c9b1", + "Definition": {}, + "Gloss": { + "en": "thing", + "pt": "coisa" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bd7068ce-9d4f-4696-9efc-e66983553492", + "DeletedAt": null, + "LexemeForm": { + "seh": "cabanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b84f1059-e013-43da-b6e8-6690c6220dee", + "Order": 1, + "DeletedAt": null, + "EntryId": "bd7068ce-9d4f-4696-9efc-e66983553492", + "Definition": { + "en": { + "Spans": [ + { + "Text": "corn beer", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cerveja de milho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "beer", + "pt": "cerveja" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e68bb1cb-a213-484e-8cb8-ff80a7bf0c62", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cabanga wadzipa wadidi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "cerveja forte boa", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "b84f1059-e013-43da-b6e8-6690c6220dee", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e339b423-2cd4-4394-b8be-bfc968e3d587", + "DeletedAt": null, + "LexemeForm": { + "seh": "adu" + }, + "CitationForm": { + "seh": "cadu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c0b81ea-659c-4336-8907-d943baa454af", + "Order": 1, + "DeletedAt": null, + "EntryId": "e339b423-2cd4-4394-b8be-bfc968e3d587", + "Definition": {}, + "Gloss": { + "en": "flea", + "pt": "pulga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ecc39bc2-6336-48ca-be46-cf5e49a3c267", + "Name": { + "en": "Insect" + }, + "Code": "1.6.1.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fde8315e-49f0-4950-8c3c-289f189bd261", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1c0b81ea-659c-4336-8907-d943baa454af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c981801-97f8-4d60-914d-540bf97baabf", + "DeletedAt": null, + "LexemeForm": { + "seh": "aka" + }, + "CitationForm": { + "seh": "caka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0e4f6dec-8624-4d51-93b4-f3b613a4872e", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c981801-97f8-4d60-914d-540bf97baabf", + "Definition": {}, + "Gloss": { + "en": "year", + "pt": "ano" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf2b3aa6-0ead-4450-8ddc-4b4bfefc14d2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; George; sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "0e4f6dec-8624-4d51-93b4-f3b613a4872e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "613e4d2d-9eaa-4b8e-932e-491e98366048", + "DeletedAt": null, + "LexemeForm": { + "seh": "akudya" + }, + "CitationForm": { + "seh": "cakudya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "46b94bc1-614c-4a32-9be0-3f8fc2a78fec", + "Order": 1, + "DeletedAt": null, + "EntryId": "613e4d2d-9eaa-4b8e-932e-491e98366048", + "Definition": {}, + "Gloss": { + "en": "food", + "pt": "comida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5", + "Name": { + "en": "Food" + }, + "Code": "5.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3b1a645c-87b0-4a38-85b3-232e51856cb5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "46b94bc1-614c-4a32-9be0-3f8fc2a78fec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57571972-5e4d-400a-b594-04ade6b11e81", + "DeletedAt": null, + "LexemeForm": { + "seh": "akugawika" + }, + "CitationForm": { + "seh": "cakugawika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "40de284d-f04e-40c3-8546-aa7b293e3b75", + "Order": 1, + "DeletedAt": null, + "EntryId": "57571972-5e4d-400a-b594-04ade6b11e81", + "Definition": {}, + "Gloss": { + "en": "dividable", + "pt": "dividivel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7cfbedf3-8864-45bc-9613-56de7bbacc4b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "40de284d-f04e-40c3-8546-aa7b293e3b75", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3ef6f432-c3bc-4615-87e0-dbcf57411452", + "DeletedAt": null, + "LexemeForm": { + "seh": "akutoma" + }, + "CitationForm": { + "seh": "cakutoma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7c838f3f-0518-4cc1-9468-43df99c9b9dc", + "Order": 1, + "DeletedAt": null, + "EntryId": "3ef6f432-c3bc-4615-87e0-dbcf57411452", + "Definition": {}, + "Gloss": { + "en": "first", + "pt": "premeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c9227e9d-61c2-41a2-99ae-78c1dcd19565", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7c838f3f-0518-4cc1-9468-43df99c9b9dc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd296946-5721-4e1b-8cd3-b69a5c3c7eec", + "DeletedAt": null, + "LexemeForm": { + "seh": "ala" + }, + "CitationForm": { + "seh": "cala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "876f34e6-2f52-4365-8539-e22ae469c701", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd296946-5721-4e1b-8cd3-b69a5c3c7eec", + "Definition": {}, + "Gloss": { + "en": "finger", + "pt": "dedo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e5ea0cf-0b0f-4d6c-b549-222ea0eec8fd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "876f34e6-2f52-4365-8539-e22ae469c701", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04fea218-fef5-4df3-b2d4-da1198dd16dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "cap" + }, + "CitationForm": { + "seh": "capa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bcf0c7ea-17ee-4699-b6bc-d6cbd59d775d", + "Order": 1, + "DeletedAt": null, + "EntryId": "04fea218-fef5-4df3-b2d4-da1198dd16dd", + "Definition": {}, + "Gloss": { + "en": "row", + "pt": "remar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5698015-209c-4ef4-9dbb-21b859fe0fd0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:, George Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bcf0c7ea-17ee-4699-b6bc-d6cbd59d775d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e24c479a-3d15-4cf4-97b6-139e766365ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "aso" + }, + "CitationForm": { + "seh": "caso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "103e9e1d-c8fa-40ad-9854-16961c1966cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "e24c479a-3d15-4cf4-97b6-139e766365ab", + "Definition": { + "en": { + "Spans": [ + { + "Text": "elephant trunk", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tronco de elefante", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trunk", + "pt": "tronco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1eeb1fcf-49da-4615-ab03-6a4900aae601", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "103e9e1d-c8fa-40ad-9854-16961c1966cb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b70f66e-e9e0-42c5-929f-2c046c74d1b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "ce" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "231e0ad6-ca31-4eaf-84b9-116b6791e7c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b70f66e-e9e0-42c5-929f-2c046c74d1b2", + "Definition": {}, + "Gloss": { + "en": "his", + "pt": "d\u0027ele" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b96816ec-5e30-4ac4-9f9c-5832cded8a28", + "DeletedAt": null, + "LexemeForm": { + "seh": "edza" + }, + "CitationForm": { + "seh": "cedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9599c2f-03c9-4b27-ade3-844499a60168", + "Order": 1, + "DeletedAt": null, + "EntryId": "b96816ec-5e30-4ac4-9f9c-5832cded8a28", + "Definition": {}, + "Gloss": { + "en": "in the light", + "pt": "na luz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "228dcdc4-be8d-4bf9-b141-394c77268648", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Cidima na cedza", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "Darkness and light", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Escuridao e luz", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f9599c2f-03c9-4b27-ade3-844499a60168", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d26a9cc7-6cf2-4fa2-badf-bc98a771ba07", + "DeletedAt": null, + "LexemeForm": { + "seh": "ceker" + }, + "CitationForm": { + "seh": "cekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5e1535f3-c85a-493a-b58e-34e08ff7a3dc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d26a9cc7-6cf2-4fa2-badf-bc98a771ba07", + "Definition": {}, + "Gloss": { + "en": "cut", + "pt": "cortar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f2b16755-5b81-4403-82c3-b7924a56bfab", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5e1535f3-c85a-493a-b58e-34e08ff7a3dc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96750d61-22b6-4ff0-a0de-b483eb866109", + "DeletedAt": null, + "LexemeForm": { + "seh": "cemer" + }, + "CitationForm": { + "seh": "cemera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "262c9ce4-ce33-4332-8ad0-5d93180cf438", + "Order": 1, + "DeletedAt": null, + "EntryId": "96750d61-22b6-4ff0-a0de-b483eb866109", + "Definition": {}, + "Gloss": { + "en": "call", + "pt": "chamar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c554af2-a283-4220-8789-b5bbc99a1fbe", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "262c9ce4-ce33-4332-8ad0-5d93180cf438", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72a67175-6d5f-4966-b5b2-f7163e776984", + "DeletedAt": null, + "LexemeForm": { + "seh": "cen" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7dc211fe-5eac-4381-97fa-e8d1a0a8d674", + "Order": 1, + "DeletedAt": null, + "EntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "Definition": { + "en": { + "Spans": [ + { + "Text": "white, pure, holy", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "blanco, puro, santo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "white", + "pt": "blanco" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "7adf468c-b93a-4b04-8af6-4c691122a4eb", + "Name": { + "en": "White" + }, + "Code": "8.3.3.3.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "7d9e442d-044c-4766-8dad-435c6610a449", + "Order": 2, + "DeletedAt": null, + "EntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "Definition": { + "en": { + "Spans": [ + { + "Text": "pure, holy, having the character of God", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "puro, santo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "pure", + "pt": "puro" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "83adeb9d-c0be-4073-894d-913014420280", + "Name": { + "en": "Good" + }, + "Code": "8.3.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "7e0308a3-d18a-4aa9-b19e-f89607514106", + "MaybeId": "7e0308a3-d18a-4aa9-b19e-f89607514106", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "ComplexFormHeadword": "uceni", + "ComponentEntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "ComponentSenseId": null, + "ComponentHeadword": "cen" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1943da94-0157-475f-9309-3311de1fcd6c", + "DeletedAt": null, + "LexemeForm": { + "seh": "cenjedz" + }, + "CitationForm": { + "seh": "cenjedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "daf3cc27-166e-4225-b673-0a7d9b691574", + "Order": 1, + "DeletedAt": null, + "EntryId": "1943da94-0157-475f-9309-3311de1fcd6c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "warn severely", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "informar anticipademente aquele que vai acontecer", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "notify", + "pt": "advirtir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2650825b-0c92-48cb-afdd-150dcf66a07d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "daf3cc27-166e-4225-b673-0a7d9b691574", + "DeletedAt": null + } + ] + }, + { + "Id": "6211b4a9-91ec-4828-9539-387ea6645bae", + "Order": 2, + "DeletedAt": null, + "EntryId": "1943da94-0157-475f-9309-3311de1fcd6c", + "Definition": {}, + "Gloss": { + "en": "alert", + "pt": "alertar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09687988-afc0-4df4-aa57-6ab1cd8678db", + "DeletedAt": null, + "LexemeForm": { + "seh": "cenjer" + }, + "CitationForm": { + "seh": "cenjera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "47c21100-95f6-4f45-ac84-3f1472109473", + "Order": 1, + "DeletedAt": null, + "EntryId": "09687988-afc0-4df4-aa57-6ab1cd8678db", + "Definition": {}, + "Gloss": { + "en": "sly", + "pt": "esperto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a7f7d4c2-761e-4777-b505-900fd2f7637c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "47c21100-95f6-4f45-ac84-3f1472109473", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ac05a156-d0e3-4acf-8b72-9248585699e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "cep" + }, + "CitationForm": { + "seh": "cepa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "182613e5-19d1-40b2-a15f-b69debd53e79", + "Order": 1, + "DeletedAt": null, + "EntryId": "ac05a156-d0e3-4acf-8b72-9248585699e3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "is a small amount", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "e\u0301 pouco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "is little", + "pt": "e\u0301 pouco" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b5238fd3-bf93-49f8-b31a-0510d77b4b2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "cepes" + }, + "CitationForm": { + "seh": "cepesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6bacbaec-0a03-4a7d-91da-13c635e8db28", + "Order": 1, + "DeletedAt": null, + "EntryId": "b5238fd3-bf93-49f8-b31a-0510d77b4b2c", + "Definition": {}, + "Gloss": { + "en": "make smaller", + "pt": "diminuir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f536fee5-6293-4af3-9e03-daaf9528cdb2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6bacbaec-0a03-4a7d-91da-13c635e8db28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "320782c0-3123-4d84-8c31-b1fde37ce4e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "cepesek" + }, + "CitationForm": { + "seh": "cepeseka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22e9311b-db4b-4067-b2a7-3dfbfc153559", + "Order": 1, + "DeletedAt": null, + "EntryId": "320782c0-3123-4d84-8c31-b1fde37ce4e0", + "Definition": {}, + "Gloss": { + "en": "humble-oneself", + "pt": "humilar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "364cf938-7db8-4ce7-83d8-6b8f4c5b0a31", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "22e9311b-db4b-4067-b2a7-3dfbfc153559", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "615658eb-1b32-40cc-b903-4cc1ca2c6f90", + "DeletedAt": null, + "LexemeForm": { + "seh": "cetum" + }, + "CitationForm": { + "seh": "cetuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdb94fca-9c10-4bd6-9980-74048048df01", + "Order": 1, + "DeletedAt": null, + "EntryId": "615658eb-1b32-40cc-b903-4cc1ca2c6f90", + "Definition": {}, + "Gloss": { + "en": "making lighning", + "pt": "relampejar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a34a8e16-1b48-4838-bf07-9a2fcc5b59ad", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "bdb94fca-9c10-4bd6-9980-74048048df01", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "20131126-9f1c-45fb-b2e6-39269cfffda7", + "DeletedAt": null, + "LexemeForm": { + "seh": "cez" + }, + "CitationForm": { + "seh": "ceza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f78f10bb-ac27-43cb-83f7-334e218b8fe1", + "Order": 1, + "DeletedAt": null, + "EntryId": "20131126-9f1c-45fb-b2e6-39269cfffda7", + "Definition": {}, + "Gloss": { + "en": "converse", + "pt": "conversar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e38e8e82-c346-4204-96e9-44b7e3d14bd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "checa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e3df798-e0fc-4e46-9c1d-8f2e0b09ff12", + "Order": 1, + "DeletedAt": null, + "EntryId": "e38e8e82-c346-4204-96e9-44b7e3d14bd8", + "Definition": {}, + "Gloss": { + "en": "sand", + "pt": "areia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bae858f6-1224-4d69-9685-1c14ac7f8500", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1e3df798-e0fc-4e46-9c1d-8f2e0b09ff12", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c38267b9-fc32-4c5b-a4ce-066cfbd08d77", + "DeletedAt": null, + "LexemeForm": { + "seh": "chek" + }, + "CitationForm": { + "seh": "cheka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "28d53a45-4107-441d-9931-5d878d16844a", + "Order": 1, + "DeletedAt": null, + "EntryId": "c38267b9-fc32-4c5b-a4ce-066cfbd08d77", + "Definition": {}, + "Gloss": { + "en": "plant", + "pt": "plantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "834a7732-a145-4de4-9a65-c5076fa974e0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "28d53a45-4107-441d-9931-5d878d16844a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d70ccb3d-389c-4892-8fb3-f4b5337439a1", + "DeletedAt": null, + "LexemeForm": { + "seh": "cheker" + }, + "CitationForm": { + "seh": "chekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b66ba0ba-bf19-4f63-a1e1-aed0ad7f113a", + "Order": 1, + "DeletedAt": null, + "EntryId": "d70ccb3d-389c-4892-8fb3-f4b5337439a1", + "Definition": {}, + "Gloss": { + "en": "transplant", + "pt": "transplantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00b7d7bf-93ae-44ec-8ca2-327873541433", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b66ba0ba-bf19-4f63-a1e1-aed0ad7f113a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "268a7a80-1dd1-444b-9dd1-44829d9a0aa5", + "DeletedAt": null, + "LexemeForm": { + "seh": "chereng" + }, + "CitationForm": { + "seh": "cherenga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2be15d9d-3a82-4367-94b8-ccea9ba80bea", + "Order": 1, + "DeletedAt": null, + "EntryId": "268a7a80-1dd1-444b-9dd1-44829d9a0aa5", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ser pobre , ser sem possibilidades", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "be poor", + "pt": "ser pobre" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "07f3c5b0-f1ed-4f20-b85b-9bd5852d7ef2", + "DeletedAt": null, + "LexemeForm": { + "seh": "chikwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21facabb-a7f9-4f41-9fe3-8e6132dcbb66", + "Order": 1, + "DeletedAt": null, + "EntryId": "07f3c5b0-f1ed-4f20-b85b-9bd5852d7ef2", + "Definition": {}, + "Gloss": { + "en": "support", + "pt": "suporte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1eee3e09-e8b4-4212-baa2-56b142ec6780", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "21facabb-a7f9-4f41-9fe3-8e6132dcbb66", + "DeletedAt": null + } + ] + }, + { + "Id": "c4d03434-2267-4f9b-af23-85a1b3c4795d", + "Order": 2, + "DeletedAt": null, + "EntryId": "07f3c5b0-f1ed-4f20-b85b-9bd5852d7ef2", + "Definition": {}, + "Gloss": { + "en": "column", + "pt": "coluna" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7191a861-3eda-4796-aa6b-6f39d03faf27", + "DeletedAt": null, + "LexemeForm": { + "seh": "ching" + }, + "CitationForm": { + "seh": "chinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "37ba838d-656a-4819-a527-ffea32a2a288", + "Order": 1, + "DeletedAt": null, + "EntryId": "7191a861-3eda-4796-aa6b-6f39d03faf27", + "Definition": {}, + "Gloss": { + "en": "take revenge", + "pt": "vingar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "934bcebd-32f3-4a80-8e1b-f66070f557ad", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "37ba838d-656a-4819-a527-ffea32a2a288", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f020aa46-e8bd-4151-ab5b-1d404ec71c47", + "DeletedAt": null, + "LexemeForm": { + "seh": "chinyuk" + }, + "CitationForm": { + "seh": "chinyuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fa2dec63-26d6-4f6a-89f2-185b005d3b27", + "Order": 1, + "DeletedAt": null, + "EntryId": "f020aa46-e8bd-4151-ab5b-1d404ec71c47", + "Definition": {}, + "Gloss": { + "en": "repent", + "pt": "arrepender-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "50e69e7f-2f6f-430f-a5ff-613f389a0317", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "fa2dec63-26d6-4f6a-89f2-185b005d3b27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0a612a5-81a5-4807-9f49-ac924cb5718e", + "DeletedAt": null, + "LexemeForm": { + "seh": "chiru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e2906ba-2068-4582-b306-9609e69a003e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0a612a5-81a5-4807-9f49-ac924cb5718e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "house rat only", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "rato de casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rat", + "pt": "rato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "66d09465-56c7-4037-a52c-588a613c1656", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Orth; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "8e2906ba-2068-4582-b306-9609e69a003e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c70fedb1-bcba-4036-88c9-e11e8fbbfbd9", + "DeletedAt": null, + "LexemeForm": { + "seh": "chit" + }, + "CitationForm": { + "seh": "chita" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "108cb187-a924-40c4-b5ea-fb903dc52593", + "Order": 1, + "DeletedAt": null, + "EntryId": "c70fedb1-bcba-4036-88c9-e11e8fbbfbd9", + "Definition": {}, + "Gloss": { + "en": "descend", + "pt": "descer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f390a2d0-67a4-46f9-9e0e-09ff3190a27f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "108cb187-a924-40c4-b5ea-fb903dc52593", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e9fbb1fa-f8c6-456c-aaf8-d521d05c0d65", + "DeletedAt": null, + "LexemeForm": { + "seh": "chith" + }, + "CitationForm": { + "seh": "chitha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e6857eda-73f7-44a1-94a1-94582543cc79", + "Order": 1, + "DeletedAt": null, + "EntryId": "e9fbb1fa-f8c6-456c-aaf8-d521d05c0d65", + "Definition": {}, + "Gloss": { + "en": "come down", + "pt": "descer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d7a9c684-23d1-4aff-92e1-9371e389d920", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e6857eda-73f7-44a1-94a1-94582543cc79", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db5d0299-6574-4917-92a5-60febd57a16e", + "DeletedAt": null, + "LexemeForm": { + "seh": "chitichiti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8ba0704-0642-4800-9cd7-6b4aaf4c8878", + "Order": 1, + "DeletedAt": null, + "EntryId": "db5d0299-6574-4917-92a5-60febd57a16e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "from 22 hours to 2 hours", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "midnight", + "pt": "alto noite" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "98578e9c-cea7-4fd3-89f8-6299c93827f7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c8ba0704-0642-4800-9cd7-6b4aaf4c8878", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42f95c0d-3810-457e-bd51-3c3cad5577e1", + "DeletedAt": null, + "LexemeForm": { + "seh": "choco" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3bbc4b24-cab8-4bc2-9746-6781d12d2cd5", + "Order": 1, + "DeletedAt": null, + "EntryId": "42f95c0d-3810-457e-bd51-3c3cad5577e1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cardinal bird (red bird w/ form like a sparrow)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cardinal bird", + "pt": "passaro tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7f0851cc-5438-45a6-a45c-dc4b847288ee", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "3bbc4b24-cab8-4bc2-9746-6781d12d2cd5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d277f2b0-d5be-4ba5-bc75-2337ddce0307", + "DeletedAt": null, + "LexemeForm": { + "seh": "chodol" + }, + "CitationForm": { + "seh": "chodola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7d6aba3e-e816-42e1-89dc-d60080422343", + "Order": 1, + "DeletedAt": null, + "EntryId": "d277f2b0-d5be-4ba5-bc75-2337ddce0307", + "Definition": {}, + "Gloss": { + "en": "pick", + "pt": "tirar fruta" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23e567c0-5d74-4379-a49f-7709107c6436", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "7d6aba3e-e816-42e1-89dc-d60080422343", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d9974a61-1b77-429e-848f-57504d035ff5", + "DeletedAt": null, + "LexemeForm": { + "seh": "chunyuk" + }, + "CitationForm": { + "seh": "chunyuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01ee130a-b3dc-4f84-b7eb-669c3a06cf67", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9974a61-1b77-429e-848f-57504d035ff5", + "Definition": {}, + "Gloss": { + "en": "repent", + "pt": "arrepender-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f184278f-8f44-4035-89dd-196fcd4eca30", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "01ee130a-b3dc-4f84-b7eb-669c3a06cf67", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1378eabe-b763-462c-b1bb-10b431325426", + "DeletedAt": null, + "LexemeForm": { + "seh": "ci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "f82e5d68-7c90-4a5b-974d-1fc2381964cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "1378eabe-b763-462c-b1bb-10b431325426", + "Definition": { + "en": { + "Spans": [ + { + "Text": "diminuative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "diminuativo or a new and unknown thing", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0d5f9eff-a863-426f-a1e6-06fd1918ddc4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cindzinda", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "small city", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cidade pequeno", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "f82e5d68-7c90-4a5b-974d-1fc2381964cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "fb19e30f-b594-491f-bf4b-bb6f244eb325", + "Order": 1, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3abf789a-e5cc-4214-a8ff-d74a3377be74", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "fb19e30f-b594-491f-bf4b-bb6f244eb325", + "DeletedAt": null + } + ] + }, + { + "Id": "d7dc87e1-9a7d-4537-bb8d-bf93cb2bbcff", + "Order": 2, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "151e4c76-30e4-4eed-b474-2d438c278906", + "Order": 3, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ca12b919-bc83-4894-b6e3-3089415ff852", + "Order": 4, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bcddb80e-89a3-496a-ad39-633b76392dcb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "808aeefc-e04c-4512-b883-56c9955c4ea6", + "Order": 1, + "DeletedAt": null, + "EntryId": "bcddb80e-89a3-496a-ad39-633b76392dcb", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7214e40-f6dc-4a7f-a97e-c87d875dc12b", + "DeletedAt": null, + "LexemeForm": { + "seh": "bisobiso" + }, + "CitationForm": { + "seh": "cibisobiso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d0b16565-d636-4342-9e70-fd81bf5cd259", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7214e40-f6dc-4a7f-a97e-c87d875dc12b", + "Definition": {}, + "Gloss": { + "en": "secret", + "pt": "segredo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de00eeed-5f6c-458b-985a-1d2d1ed5bad8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d0b16565-d636-4342-9e70-fd81bf5cd259", + "DeletedAt": null + } + ] + }, + { + "Id": "51f20902-34e8-41f0-bab4-72173fecea6f", + "Order": 2, + "DeletedAt": null, + "EntryId": "f7214e40-f6dc-4a7f-a97e-c87d875dc12b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hide and seek", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "jogo de escondidas", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "game", + "pt": "jogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0006f482-a078-4cef-9c5a-8bd35b53cf72", + "DeletedAt": null, + "LexemeForm": { + "seh": "bubu bubu" + }, + "CitationForm": { + "seh": "cibubu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07086e7d-dfcc-4f4e-b0d6-0be7a7943f97", + "Order": 1, + "DeletedAt": null, + "EntryId": "0006f482-a078-4cef-9c5a-8bd35b53cf72", + "Definition": {}, + "Gloss": { + "en": "stammering", + "pt": "gaguez" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c2dbe83a-d638-45ac-a6d5-5f041b9dde71", + "Name": { + "en": "Disabled" + }, + "Code": "2.5.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "03dfb70c-98ae-49b1-810e-9e0482e4837b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "07086e7d-dfcc-4f4e-b0d6-0be7a7943f97", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c81e352-3f32-4ff2-b1e6-21f673e578d8", + "DeletedAt": null, + "LexemeForm": { + "seh": "bverano" + }, + "CitationForm": { + "seh": "cibverano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "455056b1-a9dc-441e-9fce-95ce0c058bce", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c81e352-3f32-4ff2-b1e6-21f673e578d8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "plan, contract, covenant", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "harmonia, alianc\u0327a, entendemento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "contract", + "pt": "harmonia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cfa20cd4-b550-4869-8205-e00d1a372bd7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "455056b1-a9dc-441e-9fce-95ce0c058bce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0439e9d1-7c48-4296-8ed1-9abb000b9268", + "DeletedAt": null, + "LexemeForm": { + "seh": "dade" + }, + "CitationForm": { + "seh": "cidade" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "938cda59-6ed4-482d-a5fb-23a3bc2d6f0c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0439e9d1-7c48-4296-8ed1-9abb000b9268", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a rack for trying fish", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "drying rack", + "pt": "secagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c300e47d-58d0-4c38-8999-4b20c3bf6d19", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "938cda59-6ed4-482d-a5fb-23a3bc2d6f0c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08de3c15-f03f-4d84-a2f0-f97fe7f3877d", + "DeletedAt": null, + "LexemeForm": { + "seh": "dima" + }, + "CitationForm": { + "seh": "cidima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b9bb5f59-f628-4b10-a849-f98804e37846", + "Order": 1, + "DeletedAt": null, + "EntryId": "08de3c15-f03f-4d84-a2f0-f97fe7f3877d", + "Definition": {}, + "Gloss": { + "en": "darkness", + "pt": "escurida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4b1977ca-dc85-49de-b583-88ca24fea7a5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b9bb5f59-f628-4b10-a849-f98804e37846", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fd4e75a-7f77-4ada-98e4-da4b8c32ca1b", + "DeletedAt": null, + "LexemeForm": { + "seh": "dumbiriro" + }, + "CitationForm": { + "seh": "cidumbiriro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ebe4d9f3-1e6d-40b8-be42-c47e67170f86", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fd4e75a-7f77-4ada-98e4-da4b8c32ca1b", + "Definition": {}, + "Gloss": { + "en": "promise", + "pt": "promessa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2bb655f6-4c24-4c23-9b8a-20a78675945e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ebe4d9f3-1e6d-40b8-be42-c47e67170f86", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fb2e03b-621f-44b3-b14a-784abbe06f4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzindikiro" + }, + "CitationForm": { + "seh": "cidzindikiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1dba9c3-0682-4507-a6b7-bc983f25197f", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fb2e03b-621f-44b3-b14a-784abbe06f4f", + "Definition": {}, + "Gloss": { + "en": "sign", + "pt": "sinal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a5230e85-2372-4869-ac18-3dbe6a77015e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c1dba9c3-0682-4507-a6b7-bc983f25197f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af290488-019e-459d-a94e-8c98e5510022", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzo" + }, + "CitationForm": { + "seh": "cidzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4135e832-8813-4ab3-a07a-2e4266735271", + "Order": 1, + "DeletedAt": null, + "EntryId": "af290488-019e-459d-a94e-8c98e5510022", + "Definition": {}, + "Gloss": { + "en": "power", + "pt": "poder" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f9e45b2e-c654-40e7-bc08-d4517d8cbb92", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "4135e832-8813-4ab3-a07a-2e4266735271", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa44c7f6-f596-417f-8c95-13bd62e2dab4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu-dzulu" + }, + "CitationForm": { + "seh": "cidzulu-dzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc5334da-90ac-479b-a827-7e50b0dfed82", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa44c7f6-f596-417f-8c95-13bd62e2dab4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "floating above with space between", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "above", + "pt": "por cima" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ff466d3d-f890-4628-9adb-be795bed657c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "cc5334da-90ac-479b-a827-7e50b0dfed82", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75271c68-093a-43ce-8a0a-d3929d2a7c7a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fu" + }, + "CitationForm": { + "seh": "cifu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d8d36c69-d082-4474-a85d-b3cd6a549364", + "Order": 1, + "DeletedAt": null, + "EntryId": "75271c68-093a-43ce-8a0a-d3929d2a7c7a", + "Definition": {}, + "Gloss": { + "en": "stomach", + "pt": "esto\u0302mago" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4630dd7a-2efb-448d-9063-e18ffadf19ba", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d8d36c69-d082-4474-a85d-b3cd6a549364", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d014b34-6f5e-4861-b5e3-a9c09b2690f8", + "DeletedAt": null, + "LexemeForm": { + "seh": "cifupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bdb18775-6b18-48e5-9abc-dbb1739ef993", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d014b34-6f5e-4861-b5e3-a9c09b2690f8", + "Definition": {}, + "Gloss": { + "en": "close to", + "pt": "perto" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef129f0f-dc62-42b6-9e90-83bc0b216d06", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuwo" + }, + "CitationForm": { + "seh": "cifuwo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2446f241-0aea-43cb-8f94-df126030df9c", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef129f0f-dc62-42b6-9e90-83bc0b216d06", + "Definition": { + "en": { + "Spans": [ + { + "Text": "domestic animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "animal domesticos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "animal", + "pt": "animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ac55f9e-9c88-4fa9-8b36-4c0bd8227c2b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2446f241-0aea-43cb-8f94-df126030df9c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91fc9a4e-7558-4f87-aaae-d7a6a55c36de", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuyo" + }, + "CitationForm": { + "seh": "cifuyo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a0dd2817-6a0c-4123-8fd5-0e92d3e3f298", + "Order": 1, + "DeletedAt": null, + "EntryId": "91fc9a4e-7558-4f87-aaae-d7a6a55c36de", + "Definition": {}, + "Gloss": { + "en": "livestock", + "pt": "cria" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "957eefd2-3bfb-4872-b52a-73aaefc2f245", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a0dd2817-6a0c-4123-8fd5-0e92d3e3f298", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "54bcd96a-4b3c-46ef-aba4-9b92a095d749", + "DeletedAt": null, + "LexemeForm": { + "seh": "gumbwa" + }, + "CitationForm": { + "seh": "cigumbwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab896c4e-a906-4937-ac67-898b7f8cdff7", + "Order": 1, + "DeletedAt": null, + "EntryId": "54bcd96a-4b3c-46ef-aba4-9b92a095d749", + "Definition": { + "en": { + "Spans": [ + { + "Text": "trap for catching birds alive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "armadilha para apanhar passaros vivo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trap", + "pt": "armadilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "196f81d0-6a1a-4cc0-936a-367423ff485c", + "Name": { + "en": "Trap" + }, + "Code": "6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e0992cd-c04c-4b55-beab-6b0a3c98a994", + "Name": { + "en": "Hunting birds" + }, + "Code": "6.4.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "60300565-563d-4d17-b7d0-20d3105547fb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ab896c4e-a906-4937-ac67-898b7f8cdff7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e64d3bfe-bbf8-4624-b213-bfb17e47316f", + "DeletedAt": null, + "LexemeForm": { + "seh": "cikairi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7f172dfe-8c32-4b4e-96a0-e53094aa3cae", + "Order": 1, + "DeletedAt": null, + "EntryId": "e64d3bfe-bbf8-4624-b213-bfb17e47316f", + "Definition": {}, + "Gloss": { + "en": "second", + "pt": "segunda" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7ab16ccc-f41e-4a3c-8d45-82dc2d71c1cb", + "DeletedAt": null, + "LexemeForm": { + "seh": "kalango" + }, + "CitationForm": { + "seh": "cikalango" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9b5a296-5d59-437e-a2ee-29c9a8b0680e", + "Order": 1, + "DeletedAt": null, + "EntryId": "7ab16ccc-f41e-4a3c-8d45-82dc2d71c1cb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "clay pot", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "panela de barro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "pot", + "pt": "barro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4824c2f8-3421-40ee-a5f2-a192f08da57e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "f9b5a296-5d59-437e-a2ee-29c9a8b0680e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "929d9057-b854-4c54-99c3-aca9d037a0a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazi" + }, + "CitationForm": { + "seh": "cikazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "33af2390-171d-4ea1-9aef-695eb3cb38f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "929d9057-b854-4c54-99c3-aca9d037a0a4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "manners proper to women", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "costumes do mulhers", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "women\u0027s ways", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ea621e0-ed73-4b9a-9448-bb7257a819f2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "33af2390-171d-4ea1-9aef-695eb3cb38f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b2943039-1383-4604-8b58-3323a5f69270", + "DeletedAt": null, + "LexemeForm": { + "seh": "khulupiriro" + }, + "CitationForm": { + "seh": "cikhulupiriro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c947e1f9-14e9-4598-96de-2b3bb20331fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "b2943039-1383-4604-8b58-3323a5f69270", + "Definition": {}, + "Gloss": { + "en": "faith", + "pt": "fe\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ca5a8a21-6394-4948-a0e9-d2415d42deec", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c947e1f9-14e9-4598-96de-2b3bb20331fa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7e9f5b5-7c2c-4542-95cc-8965159dff84", + "DeletedAt": null, + "LexemeForm": { + "seh": "khumbi" + }, + "CitationForm": { + "seh": "cikhumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "862251ea-bcf4-4e60-a115-6aeace6a308e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7e9f5b5-7c2c-4542-95cc-8965159dff84", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a small temporary hut, lean-to", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hut", + "pt": "casota" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f10751c9-9cef-483b-b826-a1c5bf4514fb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "862251ea-bcf4-4e60-a115-6aeace6a308e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "faab2875-df3f-445e-9634-7fe56767b2e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "cikwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c868028-605f-4f16-a916-4f6861f296cf", + "Order": 1, + "DeletedAt": null, + "EntryId": "faab2875-df3f-445e-9634-7fe56767b2e3", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "celeiro, grande cesta de palha que guarda um tipo de comida, colocado dentro da casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "food store", + "pt": "celeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5", + "Name": { + "en": "Food" + }, + "Code": "5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd436263-30a3-498c-93f6-3d5682f7f7c0", + "Name": { + "en": "Commerce" + }, + "Code": "6.9.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "9cf174c8-1d53-4736-9eb3-eb3a82a3d927", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0c868028-605f-4f16-a916-4f6861f296cf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0b20cfc-a93e-46f5-b9d5-5c68a48f7460", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwi" + }, + "CitationForm": { + "seh": "cikwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c482d897-19bc-4cf4-bb82-46621906e181", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0b20cfc-a93e-46f5-b9d5-5c68a48f7460", + "Definition": {}, + "Gloss": { + "en": "thousand", + "pt": "mil" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "475eefae-b5e5-4d15-8459-553744124fee", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c482d897-19bc-4cf4-bb82-46621906e181", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "DeletedAt": null, + "LexemeForm": { + "seh": "maso-maso" + }, + "CitationForm": { + "seh": "cimaso-maso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "598cba57-6ea3-47b7-8545-7333e7080211", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "Definition": {}, + "Gloss": { + "en": "want all", + "pt": "quer tudo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b543095b-fe00-4b90-9bfc-d244f5ab05d3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "598cba57-6ea3-47b7-8545-7333e7080211", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "c222ef71-2a59-4360-a62b-61a036491166", + "MaybeId": "c222ef71-2a59-4360-a62b-61a036491166", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "ComplexFormHeadword": "cimaso-maso", + "ComponentEntryId": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "ComponentSenseId": null, + "ComponentHeadword": "diso" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aee9ca97-646b-439b-bba9-605b94e9919c", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbalame" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f2111a87-c2b3-4aba-85c5-6f988e989c56", + "Order": 1, + "DeletedAt": null, + "EntryId": "aee9ca97-646b-439b-bba9-605b94e9919c", + "Definition": {}, + "Gloss": { + "en": "small bird", + "pt": "passarinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a939fc75-bc5b-4915-b5b5-baf66791d9b4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f2111a87-c2b3-4aba-85c5-6f988e989c56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d23a7e2-3e64-4843-bc4e-260c8f272ccc", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbanjiri" + }, + "CitationForm": { + "seh": "cimbanjiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b608d3ff-420b-43b8-b839-a9ef23597f28", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d23a7e2-3e64-4843-bc4e-260c8f272ccc", + "Definition": {}, + "Gloss": { + "en": "grass", + "pt": "relva" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05256871-a155-46e0-b126-9dbfe58554c6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b608d3ff-420b-43b8-b839-a9ef23597f28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "083f3256-2345-4d2c-aea9-f6980dd66fee", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbiz" + }, + "CitationForm": { + "seh": "cimbiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35081858-7200-4c60-90b9-3ddc794dfef9", + "Order": 1, + "DeletedAt": null, + "EntryId": "083f3256-2345-4d2c-aea9-f6980dd66fee", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hurry, quick", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hurry", + "pt": "apressar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a793f71-1455-4be9-b63f-636a2a343815", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Wacimbiza na kulonga.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Apressou na falar.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "35081858-7200-4c60-90b9-3ddc794dfef9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "466adc08-27b9-4fa7-bd77-94acda873468", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fbc75fe2-b0ef-44ee-8e33-fa7d177135d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "466adc08-27b9-4fa7-bd77-94acda873468", + "Definition": {}, + "Gloss": { + "en": "toilet", + "pt": "latrina" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bd53691a-560e-4acc-a9bc-dfdc1d8e9c57", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e98d8742-759c-40bd-a462-485372657540", + "Order": 1, + "DeletedAt": null, + "EntryId": "bd53691a-560e-4acc-a9bc-dfdc1d8e9c57", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "cabrito pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "kid goat", + "pt": "cabrito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6aee6b52-e2b9-49e7-82c5-cb83484a571f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya; Alicete", + "Ws": "en" + } + ] + }, + "SenseId": "e98d8742-759c-40bd-a462-485372657540", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fcf1714a-0916-4bdb-ae0f-85cb3a0553c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "medzo" + }, + "CitationForm": { + "seh": "cimedzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e0644624-a939-4c56-b130-eda7980c29e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "fcf1714a-0916-4bdb-ae0f-85cb3a0553c8", + "Definition": {}, + "Gloss": { + "en": "fishing hook ", + "pt": "anzol" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e363c8af-bc2c-40af-8949-52663a9aec4b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e0644624-a939-4c56-b130-eda7980c29e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18b3c7e0-b275-4078-ba68-192a2798e7e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "mera" + }, + "CitationForm": { + "seh": "cimera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4d4bafa5-6b53-4377-ad56-876de7ba1292", + "Order": 1, + "DeletedAt": null, + "EntryId": "18b3c7e0-b275-4078-ba68-192a2798e7e5", + "Definition": {}, + "Gloss": { + "en": "germination", + "pt": "germinac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ff1fa02-0733-46d1-b91d-ef98ff337979", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4d4bafa5-6b53-4377-ad56-876de7ba1292", + "DeletedAt": null + } + ] + }, + { + "Id": "0218bc31-f936-4d57-93e8-f87c15bf9f63", + "Order": 2, + "DeletedAt": null, + "EntryId": "18b3c7e0-b275-4078-ba68-192a2798e7e5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "yeast in powder form", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "yeast", + "pt": "fermento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a982178-6213-4db7-bb55-8833cd568551", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfunye" + }, + "CitationForm": { + "seh": "cimpfunye" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "667eb258-45b0-413e-b101-f9ccc7cbb64c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a982178-6213-4db7-bb55-8833cd568551", + "Definition": {}, + "Gloss": { + "en": "bugs", + "pt": "bichinhos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df9257de-f63e-4525-a9d7-4a924d7bf31c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "667eb258-45b0-413e-b101-f9ccc7cbb64c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a3313ea-9847-4d75-be41-d39205a6fa5c", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": { + "seh": "cimuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d16174f8-2b94-4c11-a10e-eb053d32ff07", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a3313ea-9847-4d75-be41-d39205a6fa5c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "manners proper to men", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "costumes de homens", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "men\u0027s ways", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "567efd7a-a5d0-4199-bc3a-2a7dda06c02d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "d16174f8-2b94-4c11-a10e-eb053d32ff07", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d892f47e-cac1-4e77-99fd-8a47e174f105", + "DeletedAt": null, + "LexemeForm": { + "seh": "muti" + }, + "CitationForm": { + "seh": "cimuti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0df2a01b-5501-4222-b5c4-3560033a535b", + "Order": 1, + "DeletedAt": null, + "EntryId": "d892f47e-cac1-4e77-99fd-8a47e174f105", + "Definition": {}, + "Gloss": { + "en": "shrub", + "pt": "arbusto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "13b8bf4c-d0c3-44c2-b0a3-f528efe4a918", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0df2a01b-5501-4222-b5c4-3560033a535b", + "DeletedAt": null + } + ] + }, + { + "Id": "b979cb5e-7abc-429e-acdf-27475037a08c", + "Order": 2, + "DeletedAt": null, + "EntryId": "d892f47e-cac1-4e77-99fd-8a47e174f105", + "Definition": {}, + "Gloss": { + "en": "small stick", + "pt": "pau pequeno" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "424ccd42-9505-489d-bd3a-78242055a519", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimwan" + }, + "CitationForm": { + "seh": "cimwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef506d5f-36a9-4afd-8986-958e74274b79", + "Order": 1, + "DeletedAt": null, + "EntryId": "424ccd42-9505-489d-bd3a-78242055a519", + "Definition": {}, + "Gloss": { + "en": "not able", + "pt": "na\u0303o conseguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "acffb21f-c1fe-4b67-8a1e-e6aee10d15a0", + "DeletedAt": null, + "LexemeForm": { + "seh": "nai" + }, + "CitationForm": { + "seh": "cinai" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8af77e66-bc0e-4b3d-8860-5a7b8628de13", + "Order": 1, + "DeletedAt": null, + "EntryId": "acffb21f-c1fe-4b67-8a1e-e6aee10d15a0", + "Definition": {}, + "Gloss": { + "en": "Thursday", + "pt": "quinta-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e220a0ba-f4a6-4326-a904-28eab8d10f0f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "8af77e66-bc0e-4b3d-8860-5a7b8628de13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3040010a-bca2-493a-a572-cd3ea591933c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nanazi" + }, + "CitationForm": { + "seh": "cinanazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b70c2d47-0841-4045-afac-e3779f3f7bdc", + "Order": 1, + "DeletedAt": null, + "EntryId": "3040010a-bca2-493a-a572-cd3ea591933c", + "Definition": {}, + "Gloss": { + "en": "pinapple", + "pt": "anana\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f3c9c0e-ff00-481a-812e-d3345e89c876", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "b70c2d47-0841-4045-afac-e3779f3f7bdc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f7a72ce-d248-4e61-96fc-7d3d74332b52", + "DeletedAt": null, + "LexemeForm": { + "seh": "cincino" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "feeafad4-6f4a-4514-ac5f-3a3e784346ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f7a72ce-d248-4e61-96fc-7d3d74332b52", + "Definition": {}, + "Gloss": { + "en": "now", + "pt": "agora" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "27d49110-3c24-4ac8-98ce-506e97cf95e8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "feeafad4-6f4a-4514-ac5f-3a3e784346ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eec577ad-c643-4a82-80ed-1586c94fa694", + "DeletedAt": null, + "LexemeForm": { + "seh": "cing" + }, + "CitationForm": { + "seh": "cinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a7cbae04-07cd-4468-8e0e-001bc7040c54", + "Order": 1, + "DeletedAt": null, + "EntryId": "eec577ad-c643-4a82-80ed-1586c94fa694", + "Definition": {}, + "Gloss": { + "en": "cut hair", + "pt": "cortar cabelho" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "55a1cb26-c65d-404a-9f68-4f1f9457aa6e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a7cbae04-07cd-4468-8e0e-001bc7040c54", + "DeletedAt": null + } + ] + }, + { + "Id": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", + "Order": 2, + "DeletedAt": null, + "EntryId": "eec577ad-c643-4a82-80ed-1586c94fa694", + "Definition": {}, + "Gloss": { + "en": "shave", + "pt": "barbear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "18d1988a-089a-406c-8077-f4a85f2d7389", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndacinga ndebvu", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "I cut (my) beard", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cortei barba", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4088a137-2d8c-4cce-8623-7fd3005077e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "cingidz" + }, + "CitationForm": { + "seh": "cingidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6634b06f-e8af-46a2-832b-e65f7e87387e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4088a137-2d8c-4cce-8623-7fd3005077e0", + "Definition": {}, + "Gloss": { + "en": "quick", + "pt": "apressar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ef780fb-01df-49b2-b05a-b46fa344eb0d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6634b06f-e8af-46a2-832b-e65f7e87387e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "470b4f46-3904-4953-b32f-4107affa7d0c", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngungundu" + }, + "CitationForm": { + "seh": "cingungundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b41d2ad6-a040-4971-8dba-b1173e7dbdd0", + "Order": 1, + "DeletedAt": null, + "EntryId": "470b4f46-3904-4953-b32f-4107affa7d0c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tree civet, eat honey, Nandinia binotata", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "civet", + "pt": "almiscareiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3da2adfb-88fc-41b1-abbe-7dcd291001ac", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b41d2ad6-a040-4971-8dba-b1173e7dbdd0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da4f0ce0-515f-4716-b7e6-ea49d63acd0f", + "DeletedAt": null, + "LexemeForm": { + "seh": "cinj" + }, + "CitationForm": { + "seh": "cinja" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7c0458ed-29b5-49fb-85ca-1be940e30804", + "Order": 1, + "DeletedAt": null, + "EntryId": "da4f0ce0-515f-4716-b7e6-ea49d63acd0f", + "Definition": {}, + "Gloss": { + "en": "change", + "pt": "trocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62614d4b-623c-4dd5-ab8b-d5aa72db9e58", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "7c0458ed-29b5-49fb-85ca-1be940e30804", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57874349-3d18-4f8e-be27-673f546ba236", + "DeletedAt": null, + "LexemeForm": { + "seh": "njira" + }, + "CitationForm": { + "seh": "cinjira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cb2a8121-7277-419a-a9ba-e8ae7b74f41b", + "Order": 1, + "DeletedAt": null, + "EntryId": "57874349-3d18-4f8e-be27-673f546ba236", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "caminho pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trail", + "pt": "caminho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4f6ad2a7-a20f-4b54-b926-cc6570f52688", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cb2a8121-7277-419a-a9ba-e8ae7b74f41b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthu" + }, + "CitationForm": { + "seh": "cinthu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41c948f2-73e7-4a07-b802-1b5434ddcf0b", + "Order": 1, + "DeletedAt": null, + "EntryId": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "Definition": {}, + "Gloss": { + "en": "thing", + "pt": "coisa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88281618-b909-49e4-b0cb-721df2b0256c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "41c948f2-73e7-4a07-b802-1b5434ddcf0b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "bc019346-e8d9-49ad-839d-b7fa2b28f0e4", + "MaybeId": "bc019346-e8d9-49ad-839d-b7fa2b28f0e4", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "ComponentSenseId": null, + "ComponentHeadword": "cinthu" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f73c315f-36a4-4616-81e7-00946a3ae969", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyindiro" + }, + "CitationForm": { + "seh": "cinyindiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "40678389-a031-4bb9-8947-2ecda2aab5d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f73c315f-36a4-4616-81e7-00946a3ae969", + "Definition": {}, + "Gloss": { + "en": "confidence", + "pt": "confianca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14c3084d-05aa-409a-8486-f3cfe619ba87", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "40678389-a031-4bb9-8947-2ecda2aab5d9", + "DeletedAt": null + } + ] + }, + { + "Id": "328fa8c2-8166-4a83-ba6a-35d3eb29acf4", + "Order": 2, + "DeletedAt": null, + "EntryId": "f73c315f-36a4-4616-81e7-00946a3ae969", + "Definition": {}, + "Gloss": { + "en": "faith", + "pt": "fe\u0302" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4717480a-42fe-417d-94ce-7fcb18763467", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyungwe" + }, + "CitationForm": { + "seh": "cinyungwe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "62a80d7e-5461-43a3-92f4-1873889f3511", + "Order": 1, + "DeletedAt": null, + "EntryId": "4717480a-42fe-417d-94ce-7fcb18763467", + "Definition": { + "en": { + "Spans": [ + { + "Text": "language of Nyungwe from Tete", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "li\u0301ngua nyungwe de Tete", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "Nyungwe", + "pt": "nyungwe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a3c26a9-5a27-4bfa-a9b3-88dbaf565a08", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "62a80d7e-5461-43a3-92f4-1873889f3511", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e9023bed-285d-48db-bcd1-abdca443568a", + "DeletedAt": null, + "LexemeForm": { + "seh": "pezipezi" + }, + "CitationForm": { + "seh": "cipezipezi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6812074c-a5f1-4d7a-bc3b-1c6f7a9d6d77", + "Order": 1, + "DeletedAt": null, + "EntryId": "e9023bed-285d-48db-bcd1-abdca443568a", + "Definition": {}, + "Gloss": { + "en": "nude", + "pt": "nu\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c6037c5f-60d4-4a86-8a0b-f7d831f13aca", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "6812074c-a5f1-4d7a-bc3b-1c6f7a9d6d77", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "20d45e0b-5493-41c1-9b26-41e78ee6ccb7", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunziso" + }, + "CitationForm": { + "seh": "cipfunziso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86614d59-54a3-4a59-9ddb-edb9d6645555", + "Order": 1, + "DeletedAt": null, + "EntryId": "20d45e0b-5493-41c1-9b26-41e78ee6ccb7", + "Definition": {}, + "Gloss": { + "en": "lesson", + "pt": "lic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "e4bacc52-dcaa-4e68-b736-f0b5d9aeca41", + "Name": { + "en": "Class, lesson" + }, + "Code": "3.6.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "04cc0316-9a18-47e4-882f-dcf50cd78b4a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "86614d59-54a3-4a59-9ddb-edb9d6645555", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62ad34af-6ba5-40de-a66a-c7e05e09c6db", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunzo" + }, + "CitationForm": { + "seh": "cipfunzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4fb83982-c268-4643-a079-ef6595b52ddf", + "Order": 1, + "DeletedAt": null, + "EntryId": "62ad34af-6ba5-40de-a66a-c7e05e09c6db", + "Definition": {}, + "Gloss": { + "en": "teaching", + "pt": "ensino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6137239a-b469-46be-b7cb-b9ac22fcc195", + "Name": { + "en": "Teach" + }, + "Code": "3.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "cca05c0b-d0d2-4d62-a519-c97e655539a4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "4fb83982-c268-4643-a079-ef6595b52ddf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a673a88c-e0a6-4458-ae81-2c0412297804", + "DeletedAt": null, + "LexemeForm": { + "seh": "phaniphani" + }, + "CitationForm": { + "seh": "ciphaniphani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f4b27c24-e157-489c-8058-03974376986a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a673a88c-e0a6-4458-ae81-2c0412297804", + "Definition": {}, + "Gloss": { + "en": "firefly", + "pt": "pirilampo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61d7ce1c-0288-4448-a92d-321ba4e57fe7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f4b27c24-e157-489c-8058-03974376986a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0f14a0fb-e3cb-4d30-ab8a-e16280dc09c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "phano" + }, + "CitationForm": { + "seh": "ciphano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e2d50560-29f2-45f5-b7f9-75ee665abd0d", + "Order": 1, + "DeletedAt": null, + "EntryId": "0f14a0fb-e3cb-4d30-ab8a-e16280dc09c8", + "Definition": {}, + "Gloss": { + "en": "instrument", + "pt": "instrumento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6553082-fc7c-4e26-b95d-2f77b7cfb62a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e2d50560-29f2-45f5-b7f9-75ee665abd0d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6c02ee0-47e2-442b-9891-138344c6fc00", + "DeletedAt": null, + "LexemeForm": { + "seh": "phoko" + }, + "CitationForm": { + "seh": "ciphoko" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8ab4bf03-6757-4e6f-af7a-13262f5fc23c", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6c02ee0-47e2-442b-9891-138344c6fc00", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "espirito duma pessoa morto visi\u0301vel.", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "ghost", + "pt": "fantasma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb37cb1c-a872-48dd-8437-ffb06876465d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nzimu wace wadza ciphoko.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "O seu espirito transformou-se em fantasma.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "8ab4bf03-6757-4e6f-af7a-13262f5fc23c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "63f35417-415a-4cd2-8a44-1cf21520f3cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": { + "seh": "cipiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3b545c5d-5faa-4483-bbb4-810d89b8921a", + "Order": 1, + "DeletedAt": null, + "EntryId": "63f35417-415a-4cd2-8a44-1cf21520f3cc", + "Definition": {}, + "Gloss": { + "en": "Tuesday", + "pt": "terc\u0327a-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f7758190-59f8-4a46-9b02-58f13336dcfe", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "3b545c5d-5faa-4483-bbb4-810d89b8921a", + "DeletedAt": null + } + ] + }, + { + "Id": "2ef6704b-a7cd-4c84-b9df-b6d7a07a6246", + "Order": 2, + "DeletedAt": null, + "EntryId": "63f35417-415a-4cd2-8a44-1cf21520f3cc", + "Definition": {}, + "Gloss": { + "en": "second", + "pt": "segundo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86741386-5453-42ee-8edc-35c72d3f9cfb", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": { + "seh": "cipiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4f0765ac-5b8c-4689-bf46-2d740e9834b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "86741386-5453-42ee-8edc-35c72d3f9cfb", + "Definition": {}, + "Gloss": { + "en": "snake type", + "pt": "cobra tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d96b2aa6-8ae3-4425-8db6-499d3cb5451b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4f0765ac-5b8c-4689-bf46-2d740e9834b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a50cf75d-caed-4e34-aa5a-1c8f40a8e14d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cipo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8f7d60b4-f32f-4879-8578-765623fd3331", + "Order": 1, + "DeletedAt": null, + "EntryId": "a50cf75d-caed-4e34-aa5a-1c8f40a8e14d", + "Definition": {}, + "Gloss": { + "en": "never", + "pt": "nunca" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67a83f5d-975f-4037-9571-42b18314914e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8f7d60b4-f32f-4879-8578-765623fd3331", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e608cdf7-aebe-474f-aabb-62d13de84f07", + "DeletedAt": null, + "LexemeForm": { + "seh": "posi" + }, + "CitationForm": { + "seh": "ciposi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b2981643-8242-45df-8155-4f9a1b89b784", + "Order": 1, + "DeletedAt": null, + "EntryId": "e608cdf7-aebe-474f-aabb-62d13de84f07", + "Definition": {}, + "Gloss": { + "en": "monday", + "pt": "segunda-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "280b5baa-5684-4863-96a1-3454fa6cfbf2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "b2981643-8242-45df-8155-4f9a1b89b784", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b801113-65fa-4158-afce-5b6d4503afa2", + "DeletedAt": null, + "LexemeForm": { + "seh": "pwazo" + }, + "CitationForm": { + "seh": "cipwazo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be850366-c73f-40d7-b98f-3ec83fea6241", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b801113-65fa-4158-afce-5b6d4503afa2", + "Definition": {}, + "Gloss": { + "en": "ridicule", + "pt": "desprezo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6964ab1d-db07-46f2-bdd3-a2a69462b4e2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2 007", + "Ws": "en" + } + ] + }, + "SenseId": "be850366-c73f-40d7-b98f-3ec83fea6241", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c14d99e8-2370-4016-bf8e-eeaf196d3a33", + "DeletedAt": null, + "LexemeForm": { + "seh": "lengo" + }, + "CitationForm": { + "seh": "cirengo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8cbe762-c449-49b1-8de3-b71ad4861779", + "Order": 1, + "DeletedAt": null, + "EntryId": "c14d99e8-2370-4016-bf8e-eeaf196d3a33", + "Definition": {}, + "Gloss": { + "en": "miracle", + "pt": "milagre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1aca94c3-83e7-4417-b2c1-64572fe7c9bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "riro" + }, + "CitationForm": { + "seh": "ciriro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87d914a0-8762-4a1d-939c-d73fe5ddd9db", + "Order": 1, + "DeletedAt": null, + "EntryId": "1aca94c3-83e7-4417-b2c1-64572fe7c9bd", + "Definition": {}, + "Gloss": { + "en": "crying", + "pt": "choro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b99d458-196c-4618-8996-5e953e27aa93", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "87d914a0-8762-4a1d-939c-d73fe5ddd9db", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3db33890-d94a-450f-ac8b-ad19965a8f9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "rombo" + }, + "CitationForm": { + "seh": "cirombo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "866745ed-de98-43ba-8f7b-a1dd2945cd1b", + "Order": 1, + "DeletedAt": null, + "EntryId": "3db33890-d94a-450f-ac8b-ad19965a8f9d", + "Definition": {}, + "Gloss": { + "en": "garbage", + "pt": "lixo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c8cc3b5e-05e4-4760-9ad7-20097c80ef99", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "866745ed-de98-43ba-8f7b-a1dd2945cd1b", + "DeletedAt": null + } + ] + }, + { + "Id": "6cf5b513-a228-45d4-aefe-8e3c25a10b5f", + "Order": 2, + "DeletedAt": null, + "EntryId": "3db33890-d94a-450f-ac8b-ad19965a8f9d", + "Definition": {}, + "Gloss": { + "en": "wild beasts", + "pt": "animal brava" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9003767-c299-407d-9e1d-0a9fddb2f8ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "ronda" + }, + "CitationForm": { + "seh": "cironda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "15ad161e-ecf7-43b6-9e80-09d7e1cb662e", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9003767-c299-407d-9e1d-0a9fddb2f8ff", + "Definition": {}, + "Gloss": { + "en": "wound", + "pt": "ferida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aec8d3ab-49e8-4d54-ba1a-f5476ad5c06d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "15ad161e-ecf7-43b6-9e80-09d7e1cb662e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d148e7fc-3a9a-4ba8-b0c0-dfe6fcae660f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ropa" + }, + "CitationForm": { + "seh": "ciropa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be0fe661-be7d-47b9-b126-b4fae8a28ffc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d148e7fc-3a9a-4ba8-b0c0-dfe6fcae660f", + "Definition": {}, + "Gloss": { + "en": "blood", + "pt": "sangue" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2ce46338-518c-4d9a-8b9f-ec1154a99c3e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "be0fe661-be7d-47b9-b126-b4fae8a28ffc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e6fc38f3-dbe6-4393-a153-0319d56dd5af", + "DeletedAt": null, + "LexemeForm": { + "seh": "ruzwi" + }, + "CitationForm": { + "seh": "ciruzwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4c9a4100-6f5d-4474-aef6-d12e732a498c", + "Order": 1, + "DeletedAt": null, + "EntryId": "e6fc38f3-dbe6-4393-a153-0319d56dd5af", + "Definition": {}, + "Gloss": { + "en": "whistle", + "pt": "assobio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5bd1dd95-1dc9-4a6b-bf7a-56d833ddf4c2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "4c9a4100-6f5d-4474-aef6-d12e732a498c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61bf9fd9-f4e5-433a-a981-99d12abc636e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sa" + }, + "CitationForm": { + "seh": "cisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "93d839b1-7318-4f4f-8279-90e8fda687a3", + "Order": 1, + "DeletedAt": null, + "EntryId": "61bf9fd9-f4e5-433a-a981-99d12abc636e", + "Definition": {}, + "Gloss": { + "en": "village", + "pt": "aldeia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b536622c-80a3-4b31-9d22-4ed2fb76324d", + "Name": { + "en": "City" + }, + "Code": "4.6.7.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ae8778b0-69c7-4db4-9e12-b36d635f3c4f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "93d839b1-7318-4f4f-8279-90e8fda687a3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b595a54-e45a-402b-8c9d-cac6f5a02374", + "DeletedAt": null, + "LexemeForm": { + "seh": "sayi" + }, + "CitationForm": { + "seh": "cisayi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bbbd1861-ae82-410e-abba-cf73b0e1cb50", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b595a54-e45a-402b-8c9d-cac6f5a02374", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sauce for rice", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sauce", + "pt": "caril" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71ec295f-640e-45a3-8de9-a361819ef2df", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bbbd1861-ae82-410e-abba-cf73b0e1cb50", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bdf95f18-e330-4b53-9db5-593c0a3ed483", + "DeletedAt": null, + "LexemeForm": { + "seh": "sena" + }, + "CitationForm": { + "seh": "cisena" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f5ad0c5-d4b8-4b7d-9954-a3e3467f74a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "bdf95f18-e330-4b53-9db5-593c0a3ed483", + "Definition": {}, + "Gloss": { + "en": "Sena language", + "pt": "li\u0301ngua sena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "459d6aa1-453e-416f-8ae2-aa3a3ae3b266", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "0f5ad0c5-d4b8-4b7d-9954-a3e3467f74a7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5899c54d-65b5-4697-8a30-0709a1d903e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sero" + }, + "CitationForm": { + "seh": "cisero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "849c97b4-d0c2-4fa2-81c7-c2d734332f5e", + "Order": 1, + "DeletedAt": null, + "EntryId": "5899c54d-65b5-4697-8a30-0709a1d903e2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "winnowing basket", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sieve", + "pt": "peneira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2b191e84-3688-4d6a-95eb-7720a8429897", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "849c97b4-d0c2-4fa2-81c7-c2d734332f5e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aef81764-2aa7-4da9-b18f-440d003c925e", + "DeletedAt": null, + "LexemeForm": { + "seh": "cit" + }, + "CitationForm": { + "seh": "cita" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9bb88e99-c84d-49f4-8993-63c19e4891df", + "Order": 1, + "DeletedAt": null, + "EntryId": "aef81764-2aa7-4da9-b18f-440d003c925e", + "Definition": {}, + "Gloss": { + "en": "do", + "pt": "fazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "0adab179-a7f0-45a9-a1c3-1966d68bf45f", + "Order": 2, + "DeletedAt": null, + "EntryId": "aef81764-2aa7-4da9-b18f-440d003c925e", + "Definition": {}, + "Gloss": { + "en": "made" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "011185bb-e8c8-4ab9-80fb-2e19b670e3d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "tatu" + }, + "CitationForm": { + "seh": "citatu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50485a90-b701-4c13-8986-3b6a94d1e82f", + "Order": 1, + "DeletedAt": null, + "EntryId": "011185bb-e8c8-4ab9-80fb-2e19b670e3d0", + "Definition": {}, + "Gloss": { + "en": "Wednesday", + "pt": "quarta-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1be0207-8517-4ec0-add6-5508fca673fb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "50485a90-b701-4c13-8986-3b6a94d1e82f", + "DeletedAt": null + } + ] + }, + { + "Id": "f5e72635-c18f-4558-bff8-af539d7f41c7", + "Order": 2, + "DeletedAt": null, + "EntryId": "011185bb-e8c8-4ab9-80fb-2e19b670e3d0", + "Definition": {}, + "Gloss": { + "en": "third", + "pt": "terceira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd130033-c4dd-4d2b-a355-68280a4f39fb", + "DeletedAt": null, + "LexemeForm": { + "seh": "teketeke" + }, + "CitationForm": { + "seh": "citeketeke" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a506da0-ad78-4381-9286-07190c61fafd", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd130033-c4dd-4d2b-a355-68280a4f39fb", + "Definition": {}, + "Gloss": { + "en": "earthquake", + "pt": "terramoto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3230fe69-1c65-4642-8718-5e183866a2e3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "2a506da0-ad78-4381-9286-07190c61fafd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b02f082-4693-4dca-b7db-b18a22160523", + "DeletedAt": null, + "LexemeForm": { + "seh": "citik" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "caef5950-61dc-4fab-9c45-89bb28aeb063", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b02f082-4693-4dca-b7db-b18a22160523", + "Definition": {}, + "Gloss": { + "en": "happen", + "pt": "aconteceu" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "102c9c28-bf6c-4c14-b43a-7affd6360bb7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tulo" + }, + "CitationForm": { + "seh": "citulo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "babf56f3-4d0a-48fb-8f26-4007551a15c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "102c9c28-bf6c-4c14-b43a-7affd6360bb7", + "Definition": {}, + "Gloss": { + "en": "sleep", + "pt": "sono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6adaa067-1679-4d09-8dd6-b8667bc2cbc7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "babf56f3-4d0a-48fb-8f26-4007551a15c9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7c3cb51-5473-4179-9df3-46809ece89b9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tundu" + }, + "CitationForm": { + "seh": "citundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aad8f67f-05af-46a3-bc2f-39ef6c8ee715", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7c3cb51-5473-4179-9df3-46809ece89b9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "basket made of bamboo for storing grain", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "basket", + "pt": "cesto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "76cecf4d-a158-43f5-8249-9e7ed6fc4c9d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "aad8f67f-05af-46a3-bc2f-39ef6c8ee715", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f197161-9bef-4e94-8598-6b5f9ab9fee3", + "DeletedAt": null, + "LexemeForm": { + "seh": "xanu" + }, + "CitationForm": { + "seh": "cixanu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc95b51f-2e22-46fc-b264-95b7e1a465ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f197161-9bef-4e94-8598-6b5f9ab9fee3", + "Definition": {}, + "Gloss": { + "en": "Friday", + "pt": "sexta-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5f331cb6-7403-4574-8fcd-a9720a8aa9ea", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "dc95b51f-2e22-46fc-b264-95b7e1a465ea", + "DeletedAt": null + } + ] + }, + { + "Id": "260a0ff6-b53a-436c-a839-56f99b873cc5", + "Order": 2, + "DeletedAt": null, + "EntryId": "4f197161-9bef-4e94-8598-6b5f9ab9fee3", + "Definition": {}, + "Gloss": { + "en": "fifth", + "pt": "quinto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0c52ca1-7a0c-4296-9c8d-042269e30580", + "DeletedAt": null, + "LexemeForm": { + "seh": "zindikiro" + }, + "CitationForm": { + "seh": "cizindikiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0a2ec452-a7c2-4cac-b65d-19e501818220", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0c52ca1-7a0c-4296-9c8d-042269e30580", + "Definition": { + "en": { + "Spans": [ + { + "Text": "road sign", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sign", + "pt": "sinal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "767aa167-af3d-4e11-a68b-ec31f9d2ef1a", + "Name": { + "en": "Sign, symbol" + }, + "Code": "3.5.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "61ae4c5b-f3b3-4a8b-9931-b485defa7a59", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0a2ec452-a7c2-4cac-b65d-19e501818220", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c3038a8-8e19-4477-a826-2530b48c1199", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungu" + }, + "CitationForm": { + "seh": "cizungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2642c7aa-5686-452c-b7c6-aff3f21700da", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c3038a8-8e19-4477-a826-2530b48c1199", + "Definition": { + "en": { + "Spans": [ + { + "Text": "portuguese language", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "li\u0301ngua portuguesa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "portuguese", + "pt": "portugue\u0302s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9a8a53d4-5f01-4381-a0fd-975702f495e1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "2642c7aa-5686-452c-b7c6-aff3f21700da", + "DeletedAt": null + } + ] + }, + { + "Id": "6f50eb34-609e-49e1-b906-684bd2a6edd2", + "Order": 2, + "DeletedAt": null, + "EntryId": "3c3038a8-8e19-4477-a826-2530b48c1199", + "Definition": { + "en": { + "Spans": [ + { + "Text": "manners appropriate to whites", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "a costumes de brancos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "white\u0027s ways", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3fd0e8b6-3b53-4b7b-9ec3-66b08365f32d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ombo" + }, + "CitationForm": { + "seh": "combo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "256dc263-e16c-4140-90eb-5e8bba3369d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "3fd0e8b6-3b53-4b7b-9ec3-66b08365f32d", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "utensi\u0301lio para po\u0302r qualquer coisa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "container", + "pt": "contentor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bd6c7ee0-416e-44df-ba54-b40c4d15a324", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "256dc263-e16c-4140-90eb-5e8bba3369d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8098fc3c-2926-4e6f-aace-c46eaef9d4ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "onzi" + }, + "CitationForm": { + "seh": "conzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "068d955d-9dc7-486c-be44-152a2da1942a", + "Order": 1, + "DeletedAt": null, + "EntryId": "8098fc3c-2926-4e6f-aace-c46eaef9d4ae", + "Definition": { + "en": { + "Spans": [ + { + "Text": "storm with wind and perhaps rain", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "storm", + "pt": "tempestade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "93be7617-d4c5-42c5-b879-d6e73a8bd8e1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "068d955d-9dc7-486c-be44-152a2da1942a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0927a2b-2cb0-43aa-9572-04413b8b99bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "coto" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65f4757d-0125-4a84-9314-04c0e444634e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0927a2b-2cb0-43aa-9572-04413b8b99bc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area between the three fireplace stones", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "in the fire", + "pt": "no fogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47126a5f-8af3-40d7-a4a3-a28acd267fff", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunguz" + }, + "CitationForm": { + "seh": "cunguza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6be12455-6e00-4e76-8274-39af8a79bd8d", + "Order": 1, + "DeletedAt": null, + "EntryId": "47126a5f-8af3-40d7-a4a3-a28acd267fff", + "Definition": {}, + "Gloss": { + "en": "marry", + "pt": "casar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed9a2327-676f-4d06-b5b5-d1f1aa257959", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6be12455-6e00-4e76-8274-39af8a79bd8d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13afab39-8130-4e6e-8a3f-2ebd8416408d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunguzw" + }, + "CitationForm": { + "seh": "cunguzwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d6d7cf0-87fb-4eac-a2dd-5413f04a549c", + "Order": 1, + "DeletedAt": null, + "EntryId": "13afab39-8130-4e6e-8a3f-2ebd8416408d", + "Definition": {}, + "Gloss": { + "en": "be married", + "pt": "ser casado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ff50acc3-f7c4-410f-a4a8-018ace084863", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d6d7cf0-87fb-4eac-a2dd-5413f04a549c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "14a990a5-5603-4e39-84a4-42f43c2760f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "da" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "0915e6db-3ca0-4c60-b167-df78a7bf7b93", + "Order": 1, + "DeletedAt": null, + "EntryId": "14a990a5-5603-4e39-84a4-42f43c2760f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "noneventline past and past for negative and dependent verbs", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "era", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PST2", + "pt": "PST2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b5c7bf00-dfc3-4b9c-8d99-396afcbc75ba", + "DeletedAt": null, + "LexemeForm": { + "seh": "da" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1742599a-f75b-4128-ad40-c5b6b48f0622", + "Order": 1, + "DeletedAt": null, + "EntryId": "b5c7bf00-dfc3-4b9c-8d99-396afcbc75ba", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Pluperfect, completed past", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "PLPRF", + "pt": "PLPRF" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9390f831-1b3b-4fd7-9718-0b4e2a824d3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "dado" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d0e2735c-ac38-4a03-a923-d706d5127e1c", + "Order": 1, + "DeletedAt": null, + "EntryId": "9390f831-1b3b-4fd7-9718-0b4e2a824d3c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cooking tool", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "instrumento com que se po\u0303e farinha na panela", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "utensil", + "pt": "utensi\u0301lio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1edade2e-f047-4266-a14d-90d40613b2ff", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Alicete", + "Ws": "en" + } + ] + }, + "SenseId": "d0e2735c-ac38-4a03-a923-d706d5127e1c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0925ddab-f82a-46a2-81c4-d2f4af3d25ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "dafuntu" + }, + "CitationForm": { + "seh": "dafuntu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b4d055cf-e4e2-4d8f-b493-eccdb120b143", + "Order": 1, + "DeletedAt": null, + "EntryId": "0925ddab-f82a-46a2-81c4-d2f4af3d25ef", + "Definition": {}, + "Gloss": { + "en": "the dead one", + "pt": "o morto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1ba993b6-d531-4a38-a362-51df1c75589e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b4d055cf-e4e2-4d8f-b493-eccdb120b143", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "354cf62b-de70-49d2-811a-4ad1befdae04", + "DeletedAt": null, + "LexemeForm": { + "seh": "daw" + }, + "CitationForm": { + "seh": "dawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9efdf055-1117-41a7-a720-b7cd082d13b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "354cf62b-de70-49d2-811a-4ad1befdae04", + "Definition": {}, + "Gloss": { + "en": "sin", + "pt": "pecar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8329b937-7389-47f4-a6cb-7150a066e5b6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9efdf055-1117-41a7-a720-b7cd082d13b2", + "DeletedAt": null + } + ] + }, + { + "Id": "b4c13621-6170-4f5d-a97e-02fd015450a1", + "Order": 2, + "DeletedAt": null, + "EntryId": "354cf62b-de70-49d2-811a-4ad1befdae04", + "Definition": {}, + "Gloss": { + "en": "guilt", + "pt": "culpa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfcba2c3-dedc-4bae-b744-22522da4e66c", + "DeletedAt": null, + "LexemeForm": { + "seh": "daya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "001b2172-8005-4328-8673-d9118decfa35", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfcba2c3-dedc-4bae-b744-22522da4e66c", + "Definition": {}, + "Gloss": { + "en": "midwife", + "pt": "parteira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5611336f-b69d-487e-9a2b-eb6efe97dbe6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "001b2172-8005-4328-8673-d9118decfa35", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56d65e8a-08b1-42e1-aa9e-401c7a4aacf6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dembuk" + }, + "CitationForm": { + "seh": "dembuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "51c5d694-274b-4ce5-8a5a-650ca5057ded", + "Order": 1, + "DeletedAt": null, + "EntryId": "56d65e8a-08b1-42e1-aa9e-401c7a4aacf6", + "Definition": {}, + "Gloss": { + "en": "late", + "pt": "atrazar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6217ba14-73a9-4f0e-869a-e5b69362f99c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "51c5d694-274b-4ce5-8a5a-650ca5057ded", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1180ea03-2d0d-48a5-a936-041be9ac4005", + "DeletedAt": null, + "LexemeForm": { + "seh": "dhadho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b775015-98c2-4032-b74a-6e42fa1ab3d0", + "Order": 1, + "DeletedAt": null, + "EntryId": "1180ea03-2d0d-48a5-a936-041be9ac4005", + "Definition": {}, + "Gloss": { + "en": "lung", + "pt": "pulma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7a9d7481-f32f-434f-8526-2881c052f0f2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1,18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5b775015-98c2-4032-b74a-6e42fa1ab3d0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e23208b-a88b-4e40-8ba0-601599c23971", + "DeletedAt": null, + "LexemeForm": { + "seh": "dhuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0c2ac9ac-c39c-49c9-8fe0-8bba863230d5", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e23208b-a88b-4e40-8ba0-601599c23971", + "Definition": {}, + "Gloss": { + "en": "close to", + "pt": "perto de" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5b5b1924-dbd0-4345-bdaf-249ae0791537", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0c2ac9ac-c39c-49c9-8fe0-8bba863230d5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0bf398d9-acd4-4a86-bb21-0ac368cdcd78", + "DeletedAt": null, + "LexemeForm": { + "seh": "di" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Enclitic", + "Senses": [ + { + "Id": "0da360ba-60c7-4ed4-a2de-fa27c149bfd6", + "Order": 1, + "DeletedAt": null, + "EntryId": "0bf398d9-acd4-4a86-bb21-0ac368cdcd78", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Evidential, \u0022truly\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Evidential, \u0022mesmo\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "EVID", + "pt": "EVID" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "253695ca-1749-4dd5-948c-c62f9d1e1624", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "wawangadi mwanadi wadididi", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "0da360ba-60c7-4ed4-a2de-fa27c149bfd6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86ff8b04-b3ac-4eb1-b87e-5312290e0249", + "DeletedAt": null, + "LexemeForm": { + "seh": "dikhir" + }, + "CitationForm": { + "seh": "dikhira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c266ea9d-0c6f-40f9-ae67-122f730c76fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "86ff8b04-b3ac-4eb1-b87e-5312290e0249", + "Definition": {}, + "Gloss": { + "en": "wait", + "pt": "esperar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45b5b57b-dae0-4a2d-9105-ab2d10ad1f11", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c266ea9d-0c6f-40f9-ae67-122f730c76fe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "68233fd3-f0d8-4bf5-8e6d-2c8e5f46fd39", + "DeletedAt": null, + "LexemeForm": { + "seh": "dimba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1723b409-22e0-450d-b2f0-6bdd33b70700", + "Order": 1, + "DeletedAt": null, + "EntryId": "68233fd3-f0d8-4bf5-8e6d-2c8e5f46fd39", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small vegetable garden", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "machamba pequena", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "garden", + "pt": "machamba" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "436692f4-8d1c-4726-b7c1-252929f8e743", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyezeze", + "Ws": "en" + } + ] + }, + "SenseId": "1723b409-22e0-450d-b2f0-6bdd33b70700", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0ae6ab9a-3381-48db-b165-fcde928550ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "dimingu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c36e0db-92bc-47d4-8008-430138d950eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "0ae6ab9a-3381-48db-b165-fcde928550ff", + "Definition": {}, + "Gloss": { + "en": "Sunday", + "pt": "domingo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a4e3c3eb-61b9-40c7-aed9-312cd7413141", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0c36e0db-92bc-47d4-8008-430138d950eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93ea15e2-25b8-4de4-bccf-b0a8d1d864ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "dimonyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c015b4a-ea22-4b7b-8440-20c0bb423b90", + "Order": 1, + "DeletedAt": null, + "EntryId": "93ea15e2-25b8-4de4-bccf-b0a8d1d864ed", + "Definition": {}, + "Gloss": { + "en": "demon", + "pt": "demonio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c10ae59e-a413-461a-a772-a6f3cdd859f2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2c015b4a-ea22-4b7b-8440-20c0bb423b90", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b45b6ce3-daf1-4ff5-a107-a8a1963e1c9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ding" + }, + "CitationForm": { + "seh": "dinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9888c643-d030-47a9-ae26-23048c50606c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b45b6ce3-daf1-4ff5-a107-a8a1963e1c9d", + "Definition": {}, + "Gloss": { + "en": "observe", + "pt": "observar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56c24b2d-4bd4-439b-9fcf-6f10a66de172", + "DeletedAt": null, + "LexemeForm": { + "seh": "dingis" + }, + "CitationForm": { + "seh": "dingisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd4e70e7-f467-413f-84cd-56b25117171e", + "Order": 1, + "DeletedAt": null, + "EntryId": "56c24b2d-4bd4-439b-9fcf-6f10a66de172", + "Definition": {}, + "Gloss": { + "en": "verify", + "pt": "verificar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2ddc2027-aff8-46ef-9c59-2a55ba561b14", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "dd4e70e7-f467-413f-84cd-56b25117171e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab7f23ee-c059-4e1d-bd6d-f742d4556499", + "DeletedAt": null, + "LexemeForm": { + "seh": "dipa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1d23b8f-a05f-4b3e-a205-00622c51d630", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab7f23ee-c059-4e1d-bd6d-f742d4556499", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spear w/ flat iron head", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spear", + "pt": "lanc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a1ce19c4-d12c-46da-a718-6d03949b3db1", + "Name": { + "en": "Hunt" + }, + "Code": "6.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "51080be0-e8f0-41e9-bd91-1190a3ad9599", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c1d23b8f-a05f-4b3e-a205-00622c51d630", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "DeletedAt": null, + "LexemeForm": { + "seh": "so" + }, + "CitationForm": { + "seh": "diso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "091a6d4f-7854-4fde-8ece-f8375261b979", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "Definition": {}, + "Gloss": { + "en": "eye", + "pt": "olho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ed1ee23-e7fb-4960-a927-97c4ff96e848", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Zuze akali munthu wadidi kakamwe pamaso pa Mulungu", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira (pl:madiso):19; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "091a6d4f-7854-4fde-8ece-f8375261b979", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "c222ef71-2a59-4360-a62b-61a036491166", + "MaybeId": "c222ef71-2a59-4360-a62b-61a036491166", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "ComplexFormHeadword": "cimaso-maso", + "ComponentEntryId": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "ComponentSenseId": null, + "ComponentHeadword": "diso" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a0ed9637-9496-4dab-84f9-a669bc57867b", + "DeletedAt": null, + "LexemeForm": { + "seh": "djamuk" + }, + "CitationForm": { + "seh": "djamuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32b82aa0-753b-4ef7-a13a-45171eb0ad8a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a0ed9637-9496-4dab-84f9-a669bc57867b", + "Definition": {}, + "Gloss": { + "en": "sour", + "pt": "azedo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67c58150-0b69-4f2d-86b0-8402ac8fccc7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "32b82aa0-753b-4ef7-a13a-45171eb0ad8a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1b893f4e-b987-4d6b-bd35-bf232a84db71", + "DeletedAt": null, + "LexemeForm": { + "seh": "djanja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73f6e11c-62f5-48a3-bcc6-1a90c107b1a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "1b893f4e-b987-4d6b-bd35-bf232a84db71", + "Definition": {}, + "Gloss": { + "en": "hand full", + "pt": "medida de ma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "07c0968e-d5f5-46fd-93c1-5639d14821c0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndipase mazandja mawiri ampunga.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Da-me duas maos de arroz.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "73f6e11c-62f5-48a3-bcc6-1a90c107b1a7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c9d9175-0f14-4082-8bf2-9c3a82e5cb7d", + "DeletedAt": null, + "LexemeForm": { + "seh": "djanja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b479bcc-15e8-4ee2-9ea4-f3e97ab9583f", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c9d9175-0f14-4082-8bf2-9c3a82e5cb7d", + "Definition": {}, + "Gloss": { + "en": "hand", + "pt": "ma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a2192488-8fdb-4bae-b59a-3f1b7b632ffb", + "DeletedAt": null, + "LexemeForm": { + "seh": "djenje" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0a1e1f25-1d28-46ff-b10f-61efeeff642a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a2192488-8fdb-4bae-b59a-3f1b7b632ffb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hole, pit", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cova, buraco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hole", + "pt": "cova" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ab33969-051f-4618-bb80-93c4071cca32", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0a1e1f25-1d28-46ff-b10f-61efeeff642a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33487c65-1a7d-4159-b194-f7b6a5f013a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "djiwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1dc81749-6059-4eef-a64c-abd0bc23375e", + "Order": 1, + "DeletedAt": null, + "EntryId": "33487c65-1a7d-4159-b194-f7b6a5f013a2", + "Definition": {}, + "Gloss": { + "en": "dove", + "pt": "rola" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2b4b7067-0731-4d35-8aa1-89e1c598b946", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:18 (:28 spelled ndjiwa)", + "Ws": "en" + } + ] + }, + "SenseId": "1dc81749-6059-4eef-a64c-abd0bc23375e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5264f6d0-f6d2-4460-ae50-2f01f45d9832", + "DeletedAt": null, + "LexemeForm": { + "seh": "djodj" + }, + "CitationForm": { + "seh": "djodja" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "25b5e61d-26ec-40e9-83e6-ba02026295cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "5264f6d0-f6d2-4460-ae50-2f01f45d9832", + "Definition": { + "en": { + "Spans": [ + { + "Text": "drop through a hole", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "deixar cair num buraco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "drop", + "pt": "deixar cair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "35ecb431-6920-43c5-a3b1-bf3720759475", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "25b5e61d-26ec-40e9-83e6-ba02026295cb", + "DeletedAt": null + } + ] + }, + { + "Id": "e21ee24d-94d2-43ea-85fb-2661273563da", + "Order": 2, + "DeletedAt": null, + "EntryId": "5264f6d0-f6d2-4460-ae50-2f01f45d9832", + "Definition": {}, + "Gloss": { + "en": "drip", + "pt": "pingar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bbb3eba8-974f-47ff-b9ba-da317fa49ce8", + "DeletedAt": null, + "LexemeForm": { + "seh": "dobe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7cb4163f-0b09-4fa0-81d3-0c30d6e368d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "bbb3eba8-974f-47ff-b9ba-da317fa49ce8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "mix for making bricks", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "massa de tijola", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "clay mud", + "pt": "massa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cc391a56-7f3d-4f04-a7f1-d4f9522b98aa", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:18 (sun burned brick - sic); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7cb4163f-0b09-4fa0-81d3-0c30d6e368d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a22d7d98-c4d4-4df9-99e9-7bec175d983d", + "DeletedAt": null, + "LexemeForm": { + "seh": "dodom" + }, + "CitationForm": { + "seh": "dodoma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d7526a3-26d2-4ebf-b427-2213caf65140", + "Order": 1, + "DeletedAt": null, + "EntryId": "a22d7d98-c4d4-4df9-99e9-7bec175d983d", + "Definition": {}, + "Gloss": { + "en": "deceive", + "pt": "enganar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b3b48b1-1b8b-48e1-9444-44be578af893", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndadodoma kukucemerani", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "chamei-o por engano", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8d7526a3-26d2-4ebf-b427-2213caf65140", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f27d9d06-90ad-4f00-a8bb-e1e7d0000b30", + "DeletedAt": null, + "LexemeForm": { + "seh": "dodomek" + }, + "CitationForm": { + "seh": "dodomeka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "79e34609-699f-468b-9a02-c4dab39803de", + "Order": 1, + "DeletedAt": null, + "EntryId": "f27d9d06-90ad-4f00-a8bb-e1e7d0000b30", + "Definition": {}, + "Gloss": { + "en": "make error", + "pt": "enganar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2a121f9-1179-47fa-819b-22502d8ecd91", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndadodoma kukucemerani", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "chamei-o por engano", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "79e34609-699f-468b-9a02-c4dab39803de", + "DeletedAt": null + } + ] + }, + { + "Id": "64759618-9e6e-4d42-9839-5f582d66d270", + "Order": 2, + "DeletedAt": null, + "EntryId": "f27d9d06-90ad-4f00-a8bb-e1e7d0000b30", + "Definition": {}, + "Gloss": { + "en": "cause scandel", + "pt": "escandalizar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c5b75b77-2e95-460a-a12e-a0fa667d7ada", + "DeletedAt": null, + "LexemeForm": { + "seh": "dok" + }, + "CitationForm": { + "seh": "doka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58513bc2-508b-4185-8e3e-3c993e671006", + "Order": 1, + "DeletedAt": null, + "EntryId": "c5b75b77-2e95-460a-a12e-a0fa667d7ada", + "Definition": {}, + "Gloss": { + "en": "sun set", + "pt": "por do sol" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "06cb2024-5f7b-467c-b32c-ef4c56030ac0", + "Name": { + "en": "Telling time" + }, + "Code": "8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "Name": { + "en": "Sun" + }, + "Code": "1.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "594238e1-2abc-467f-bb25-369f76b2f7f6", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kudoka kwa dzuwa", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "por do sol", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "58513bc2-508b-4185-8e3e-3c993e671006", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "94c125e6-87cc-4eeb-b8b2-515b54907c08", + "DeletedAt": null, + "LexemeForm": { + "seh": "dona" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1553bb4c-f571-4084-98ea-ddcf0632c9ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "94c125e6-87cc-4eeb-b8b2-515b54907c08", + "Definition": {}, + "Gloss": { + "en": "lady", + "pt": "senhora branca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3878373b-4274-46f8-9158-92e2749017a6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:20", + "Ws": "en" + } + ] + }, + "SenseId": "1553bb4c-f571-4084-98ea-ddcf0632c9ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5f929b5-379d-4cf8-b67a-ee9f02d59951", + "DeletedAt": null, + "LexemeForm": { + "seh": "dondowe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fff0965a-ef07-4bfb-826c-ddffd0f6ecb3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5f929b5-379d-4cf8-b67a-ee9f02d59951", + "Definition": { + "en": { + "Spans": [ + { + "Text": "congradulations given when someone overcomes great suffering", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "congratulations", + "pt": "para bens" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6f4d6d9a-15ea-4f98-a52e-870856b33463", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "fff0965a-ef07-4bfb-826c-ddffd0f6ecb3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d1d3f09-ce9c-4f48-984a-1ac9de0748fe", + "DeletedAt": null, + "LexemeForm": { + "seh": "dongo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "946efc4c-dce4-49b1-a7ff-09ea2de426ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d1d3f09-ce9c-4f48-984a-1ac9de0748fe", + "Definition": {}, + "Gloss": { + "en": "clay", + "pt": "barro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "222cf546-5677-4b13-8c8f-e761b9104615", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "946efc4c-dce4-49b1-a7ff-09ea2de426ce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "660717d8-50c3-47cd-a03a-2279fd49ecf7", + "DeletedAt": null, + "LexemeForm": { + "seh": "dotha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "140ed3cc-46e0-46ff-8380-36d88fbb018c", + "Order": 1, + "DeletedAt": null, + "EntryId": "660717d8-50c3-47cd-a03a-2279fd49ecf7", + "Definition": {}, + "Gloss": { + "en": "ash", + "pt": "cinza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1bb2b102-115e-49bd-8b23-bb92a5998a70", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "140ed3cc-46e0-46ff-8380-36d88fbb018c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04a5d219-b71c-4c34-9445-4f8a923c67c4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dul" + }, + "CitationForm": { + "seh": "dula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bcc30797-cc4c-4e2e-990f-28425d5c87ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "04a5d219-b71c-4c34-9445-4f8a923c67c4", + "Definition": {}, + "Gloss": { + "en": "pull out", + "pt": "arrancar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7d2d88eb-8517-4d9c-ac5c-926df0da8056", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "bcc30797-cc4c-4e2e-990f-28425d5c87ce", + "DeletedAt": null + } + ] + }, + { + "Id": "12e66c70-299d-41eb-8d6a-44aacc3288d1", + "Order": 2, + "DeletedAt": null, + "EntryId": "04a5d219-b71c-4c34-9445-4f8a923c67c4", + "Definition": {}, + "Gloss": { + "en": "undress", + "pt": "despir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "772ce48a-ac9f-43bd-a1b9-54059106d2b6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dumbir" + }, + "CitationForm": { + "seh": "dumbira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f16867d4-c4f5-4aff-afe8-77532ee2969e", + "Order": 1, + "DeletedAt": null, + "EntryId": "772ce48a-ac9f-43bd-a1b9-54059106d2b6", + "Definition": {}, + "Gloss": { + "en": "swear", + "pt": "jurar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db86d189-90a5-4dc4-a5e8-05fe9d30b477", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f16867d4-c4f5-4aff-afe8-77532ee2969e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91c54ffc-559d-4a63-9af0-890f92c99f93", + "DeletedAt": null, + "LexemeForm": { + "seh": "dunguny" + }, + "CitationForm": { + "seh": "dungunya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f6f134c4-459f-4207-bdd3-857b909318d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "91c54ffc-559d-4a63-9af0-890f92c99f93", + "Definition": {}, + "Gloss": { + "en": "murmur against", + "pt": "murmurar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fd960907-b2b5-462b-bd01-17f38ce45042", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f6f134c4-459f-4207-bdd3-857b909318d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e474a43-482d-427f-90bf-6bfef3befef8", + "DeletedAt": null, + "LexemeForm": { + "seh": "durumuk" + }, + "CitationForm": { + "seh": "durumuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c367950c-490b-4237-aabf-acde1d506b3c", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e474a43-482d-427f-90bf-6bfef3befef8", + "Definition": {}, + "Gloss": { + "en": "wilt", + "pt": "murchar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0c32e88d-ce04-44fd-8dfa-cf5abb31bbe1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c367950c-490b-4237-aabf-acde1d506b3c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d6d0ad6-998b-4421-8706-a9902d9dbd96", + "DeletedAt": null, + "LexemeForm": { + "seh": "duwal" + }, + "CitationForm": { + "seh": "duwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ee86a66-6781-4a36-b47b-fa6ee731ff3f", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d6d0ad6-998b-4421-8706-a9902d9dbd96", + "Definition": {}, + "Gloss": { + "en": "forget", + "pt": "esquecer-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "240070d1-05e4-4dcc-ac77-8544ddf96e80", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7ee86a66-6781-4a36-b47b-fa6ee731ff3f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a376b38-7550-4437-8920-8da5a37c7ced", + "DeletedAt": null, + "LexemeForm": { + "seh": "dwal" + }, + "CitationForm": { + "seh": "dwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2ecf3be4-12b5-4622-8d44-15f8e81f60e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a376b38-7550-4437-8920-8da5a37c7ced", + "Definition": {}, + "Gloss": { + "en": "be sick", + "pt": "ser doente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "7c6cad26-79c3-403a-a3aa-59babdfcd46f", + "Name": { + "en": "Sick" + }, + "Code": "2.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "aca0d94b-fd06-48a7-939c-45c820e05e4d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "asadwala manungo onsene", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "doente corpo todo", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2ecf3be4-12b5-4622-8d44-15f8e81f60e6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db86c135-bc96-4db8-a082-6c887ff8d000", + "DeletedAt": null, + "LexemeForm": { + "seh": "dy" + }, + "CitationForm": { + "seh": "dya" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "956aeb5d-0baf-4009-b523-0147285efbd0", + "Order": 1, + "DeletedAt": null, + "EntryId": "db86c135-bc96-4db8-a082-6c887ff8d000", + "Definition": {}, + "Gloss": { + "en": "eat", + "pt": "comer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e2d5e095-596c-4214-83f8-619dac29c965", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "956aeb5d-0baf-4009-b523-0147285efbd0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "624d70f5-7407-4540-84b1-c0820e85cb9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "dyeker" + }, + "CitationForm": { + "seh": "dyekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f888120f-95ec-43b9-a70a-2018c3f7966c", + "Order": 1, + "DeletedAt": null, + "EntryId": "624d70f5-7407-4540-84b1-c0820e85cb9e", + "Definition": {}, + "Gloss": { + "en": "bribe", + "pt": "subornar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88153e65-7463-4c3e-ab6b-752efea6f676", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f888120f-95ec-43b9-a70a-2018c3f7966c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eeab1234-1174-41b4-aad3-f87121f3664f", + "DeletedAt": null, + "LexemeForm": { + "seh": "dyiw" + }, + "CitationForm": { + "seh": "dyiwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8010f318-454b-404d-aa7e-92b76ab1e274", + "Order": 1, + "DeletedAt": null, + "EntryId": "eeab1234-1174-41b4-aad3-f87121f3664f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "choke (plant)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "choke", + "pt": "sofocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4702762-ab2e-4b79-bd43-cc0631f30664", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mbeu isadyiwa na tsanga.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "The seed is choked by weeds", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Semente e\u0301 sofocado pelo campim.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "8010f318-454b-404d-aa7e-92b76ab1e274", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "241ca9b4-9077-4050-b8c9-6e1759a989d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "dza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "0156d415-bb52-4d42-8457-ddd27562d830", + "Order": 1, + "DeletedAt": null, + "EntryId": "241ca9b4-9077-4050-b8c9-6e1759a989d3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "culmination", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "CUL", + "pt": "CUL" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "DeletedAt": null, + "LexemeForm": { + "seh": "dza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "7aeea56a-5e2a-49b3-a7be-6841608f8364", + "Order": 1, + "DeletedAt": null, + "EntryId": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in order to, distal/purpose infinitive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "para", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c6af0fa0-431c-4b33-a1d9-39b590222ee2", + "Order": 2, + "DeletedAt": null, + "EntryId": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "Definition": {}, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "DeletedAt": null, + "LexemeForm": { + "seh": "dz" + }, + "CitationForm": { + "seh": "dza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "089f49ef-98ab-4903-8e66-1872c4fa94e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "Definition": {}, + "Gloss": { + "en": "come", + "pt": "vir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bfddcb41-e689-40d7-a66d-8b314a33c546", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "adza kationa", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "veio visitar-nos", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "089f49ef-98ab-4903-8e66-1872c4fa94e6", + "DeletedAt": null + } + ] + }, + { + "Id": "3033d933-d549-4f5e-b519-644f16d2bd2b", + "Order": 2, + "DeletedAt": null, + "EntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "Definition": {}, + "Gloss": { + "en": "come and fetch", + "pt": "vir buscar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "b843cb46-41f1-4434-bd96-13a5eebaa2dc", + "MaybeId": "b843cb46-41f1-4434-bd96-13a5eebaa2dc", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a4833ca4-bcc3-44db-a525-c88993150c07", + "ComplexFormHeadword": "kudza", + "ComponentEntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "ComponentSenseId": null, + "ComponentHeadword": "dza" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2cb6087a-4ffb-4544-9381-b49733d3bd64", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzadzamir" + }, + "CitationForm": { + "seh": "dzadzamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "90f0534c-8f34-4d2d-b5e7-3212a3cd309e", + "Order": 1, + "DeletedAt": null, + "EntryId": "2cb6087a-4ffb-4544-9381-b49733d3bd64", + "Definition": {}, + "Gloss": { + "en": "shake", + "pt": "tremer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96133d0a-8e03-4208-849e-0cce8bb233ee", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Atoma kudzadzamira na kugopa.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Ele comenc\u0327ou tremer com medo", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "90f0534c-8f34-4d2d-b5e7-3212a3cd309e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "146dfb17-70dc-402b-ad29-2158d84f25b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a460530d-d2c1-49a7-bf74-7a217a0ce135", + "Order": 1, + "DeletedAt": null, + "EntryId": "146dfb17-70dc-402b-ad29-2158d84f25b2", + "Definition": {}, + "Gloss": { + "en": "egg", + "pt": "ovo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e278ef39-8dbe-494d-aca4-6f55198fa443", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "a460530d-d2c1-49a7-bf74-7a217a0ce135", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "26ec5c17-8c7d-4b94-a6e4-d99f382a690f", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzana" + }, + "CitationForm": { + "seh": "dzana" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "738f6d6e-7089-4821-a542-84ab425ace05", + "Order": 1, + "DeletedAt": null, + "EntryId": "26ec5c17-8c7d-4b94-a6e4-d99f382a690f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "day before yesterday", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "two days ago", + "pt": "anteontem" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88051f2d-5215-4d7e-92ee-e18dcf4468dd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "738f6d6e-7089-4821-a542-84ab425ace05", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec6e873e-4da0-4aaf-b53d-8d6348c7efd4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1244b021-418c-418b-aa39-b6e6e195b845", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec6e873e-4da0-4aaf-b53d-8d6348c7efd4", + "Definition": {}, + "Gloss": { + "en": "a hundred", + "pt": "cem" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b07833a1-f762-4176-aed0-b8c6f35eb319", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9997f6d6-3ed5-4c52-b575-0bb3bfb52a4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b07833a1-f762-4176-aed0-b8c6f35eb319", + "Definition": { + "en": { + "Spans": [ + { + "Text": "amulet used to protect against spirit-caused sickness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "amulet", + "pt": "amuleto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0fe6d726-5e5a-463d-af2a-021b5f073f77", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9997f6d6-3ed5-4c52-b575-0bb3bfb52a4c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91156194-6a09-48dd-96e9-7cd94f117779", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzati" + }, + "CitationForm": { + "seh": "dzati" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "979edecf-f56b-4062-8743-60c9c5c6b7df", + "Order": 1, + "DeletedAt": null, + "EntryId": "91156194-6a09-48dd-96e9-7cd94f117779", + "Definition": {}, + "Gloss": { + "en": "not yet", + "pt": "ainda na\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "56ef5acc-e20e-421e-a510-33ed5c2cf619", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mbidzati ndidzati", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "sulo 026", + "Ws": "en" + } + ] + }, + "SenseId": "979edecf-f56b-4062-8743-60c9c5c6b7df", + "DeletedAt": null + }, + { + "Id": "c0b1f9d6-cfba-47b6-9428-d41c6ecab4d3", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "sidzati kudya", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Ainda na\u0303o comi", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "979edecf-f56b-4062-8743-60c9c5c6b7df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a5b06f38-b2c8-4139-84dc-a598aca20ce0", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzaz" + }, + "CitationForm": { + "seh": "dzaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5e158006-75c7-40e0-8a9f-79ea9d6a1d24", + "Order": 1, + "DeletedAt": null, + "EntryId": "a5b06f38-b2c8-4139-84dc-a598aca20ce0", + "Definition": {}, + "Gloss": { + "en": "fill", + "pt": "encher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6a441a87-36e6-4148-9aa2-86f41eada408", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5e158006-75c7-40e0-8a9f-79ea9d6a1d24", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ac479435-9369-4d2c-a585-9a3181ffccc9", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzedze" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b07605b1-1c48-4476-bf7f-f6a7b8064666", + "Order": 1, + "DeletedAt": null, + "EntryId": "ac479435-9369-4d2c-a585-9a3181ffccc9", + "Definition": {}, + "Gloss": { + "en": "bad luck", + "pt": "azar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f71a64f2-7a48-4cb8-b181-94022c7adf00", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b07605b1-1c48-4476-bf7f-f6a7b8064666", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42355445-fa54-4429-abc3-cc83fbcb6849", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzemwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "327fb629-2035-4497-a693-46b3c42b983c", + "Order": 1, + "DeletedAt": null, + "EntryId": "42355445-fa54-4429-abc3-cc83fbcb6849", + "Definition": {}, + "Gloss": { + "en": "crazy", + "pt": "maluco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "901d4597-5f16-4a7f-b0d2-3f35eaa2d23b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "327fb629-2035-4497-a693-46b3c42b983c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72769399-e4e9-4de2-bb3b-d3489f61bf5e", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzeser" + }, + "CitationForm": { + "seh": "dzesera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ddf2fda7-6c8c-41fa-ac13-a9d1a0fecf8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "72769399-e4e9-4de2-bb3b-d3489f61bf5e", + "Definition": {}, + "Gloss": { + "en": "bring", + "pt": "trazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "24b0494f-c257-4763-a159-0d9ac42914b9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ddf2fda7-6c8c-41fa-ac13-a9d1a0fecf8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65380366-10ea-439d-aa6e-559e3725ff13", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "ff2f7a8a-d457-4a7d-addc-e995b937968c", + "Order": 1, + "DeletedAt": null, + "EntryId": "65380366-10ea-439d-aa6e-559e3725ff13", + "Definition": {}, + "Gloss": { + "en": "5", + "pt": "5" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e38753b4-0226-45a7-bfbe-2f0a04714c41", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "967c962b-d951-4995-a53d-dcaeacd7cb35", + "Order": 1, + "DeletedAt": null, + "EntryId": "e38753b4-0226-45a7-bfbe-2f0a04714c41", + "Definition": { + "en": { + "Spans": [ + { + "Text": "respect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "respeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "5", + "pt": "5" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23786766-4ad5-44a1-bcf1-ff3b1b7ddb67", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "madzimai", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "women (vocative, respectiful)", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "senhoras", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "967c962b-d951-4995-a53d-dcaeacd7cb35", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ce34e57-36f0-4c4d-9c09-e3ddc01d5718", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzidzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "69f12f41-0c1d-417d-bd0c-2c6b6781d988", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ce34e57-36f0-4c4d-9c09-e3ddc01d5718", + "Definition": {}, + "Gloss": { + "en": "owl", + "pt": "mocho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "60ffa686-00da-427c-b3b9-eca66aeab5b8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Alves; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "69f12f41-0c1d-417d-bd0c-2c6b6781d988", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "92176fe5-7601-4aca-8d96-e324363b6d0e", + "DeletedAt": null, + "LexemeForm": { + "seh": "dziko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d2e5fd4-e831-4be7-8486-e2189b72a192", + "Order": 1, + "DeletedAt": null, + "EntryId": "92176fe5-7601-4aca-8d96-e324363b6d0e", + "Definition": {}, + "Gloss": { + "en": "country", + "pt": "pai\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5f681c62-cbfa-4505-94d3-e9094663dd42", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d2e5fd4-e831-4be7-8486-e2189b72a192", + "DeletedAt": null + } + ] + }, + { + "Id": "56e8f620-7f27-4342-93eb-2352a0896146", + "Order": 2, + "DeletedAt": null, + "EntryId": "92176fe5-7601-4aca-8d96-e324363b6d0e", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "terra, mundo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "world", + "pt": "terra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b47d2604-8b23-41e9-9158-01526dd83894", + "Name": { + "en": "World" + }, + "Code": "1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cce98603-ff8f-4213-945a-bd6746716139", + "Name": { + "en": "Land" + }, + "Code": "1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea9a3428-6f35-4e85-bc2e-f5e98f0df80a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzimba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "097bc15b-ca93-49ab-bb54-7ddc742be942", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea9a3428-6f35-4e85-bc2e-f5e98f0df80a", + "Definition": {}, + "Gloss": { + "en": "den", + "pt": "covil" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "364ba056-38e3-4ce5-b01f-c41df6d2008f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "097bc15b-ca93-49ab-bb54-7ddc742be942", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e189bc2f-eaea-43fc-bcb5-5ca7b272eee4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzimola" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5f043f8f-1df7-4c70-9139-ff69c4333bfd", + "Order": 1, + "DeletedAt": null, + "EntryId": "e189bc2f-eaea-43fc-bcb5-5ca7b272eee4", + "Definition": {}, + "Gloss": { + "en": "blind person", + "pt": "cego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05a445f8-d1eb-435c-83f5-138cf7313725", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5f043f8f-1df7-4c70-9139-ff69c4333bfd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fdbfc9e5-c0c7-474c-8491-5a3e00c75cf6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzina" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72b9fc9f-db83-4f38-a154-91aa1f6457fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "fdbfc9e5-c0c7-474c-8491-5a3e00c75cf6", + "Definition": {}, + "Gloss": { + "en": "name", + "pt": "nome" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45dae496-6f7a-4fb7-a094-65bb07a618ce", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "72b9fc9f-db83-4f38-a154-91aa1f6457fb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbaddf9b-dac2-47d9-ae75-2832049c302a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzindikir" + }, + "CitationForm": { + "seh": "dzindikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9cc5b875-1529-4343-8422-15e88e1e9ff9", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbaddf9b-dac2-47d9-ae75-2832049c302a", + "Definition": {}, + "Gloss": { + "en": "recognize", + "pt": "reconhecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "428f3524-a660-4a75-b6a3-7ac64aa8fae1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9cc5b875-1529-4343-8422-15e88e1e9ff9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33147636-999f-4a2d-8e8c-b9b270a0fbf6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzingul" + }, + "CitationForm": { + "seh": "dzingula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "212df5f7-c4a1-4be9-8c7d-26730391610c", + "Order": 1, + "DeletedAt": null, + "EntryId": "33147636-999f-4a2d-8e8c-b9b270a0fbf6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cut meat to make jerky", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cut meat", + "pt": "cortar carne" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dfb285fe-e0fd-4463-b6d5-34f2469007d8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "212df5f7-c4a1-4be9-8c7d-26730391610c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a14afc02-3a14-4667-992d-bdb5f59fc410", + "DeletedAt": null, + "LexemeForm": { + "seh": "no" + }, + "CitationForm": { + "seh": "dzino" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9903681c-20e6-4e41-b0fa-99c86c518943", + "Order": 1, + "DeletedAt": null, + "EntryId": "a14afc02-3a14-4667-992d-bdb5f59fc410", + "Definition": {}, + "Gloss": { + "en": "tooth", + "pt": "dente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f65de4c1-e802-4782-b636-29cd6af6d2a0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "9903681c-20e6-4e41-b0fa-99c86c518943", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzinza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "120863e9-9271-4d90-9f47-f1df0101b949", + "Order": 1, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "ethnic group", + "pt": "tribo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6cbdaf94-8e2c-4b26-936a-d2f86d158250", + "Name": { + "en": "Race" + }, + "Code": "4.1.9.9", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3d7c9ec6-baa5-4eb4-afba-98064e8ac41a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac; Moreira:29; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "120863e9-9271-4d90-9f47-f1df0101b949", + "DeletedAt": null + } + ] + }, + { + "Id": "eb416cb0-0626-4fd7-81fe-299fd955e507", + "Order": 2, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "family", + "pt": "fami\u0301lia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a781d57d-174d-47a6-b6a1-ae635a13df84", + "Name": { + "en": "Family, clan" + }, + "Code": "4.1.9.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "35d20aad-653a-4dee-9af3-9bc37f3221b0", + "Order": 3, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "sub clan", + "pt": "sub cla\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a0477f9f-4622-4ed6-8a4d-8a9672856428", + "Order": 4, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "descendance", + "pt": "descendencia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "529140d1-6e8e-44fe-99f0-95289e933607", + "Name": { + "en": "Related by birth" + }, + "Code": "4.1.9.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7c769029-18c6-4d44-b8fb-d858b427551b", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzip" + }, + "CitationForm": { + "seh": "dzipa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd58d55c-4ca6-4726-a9c2-10f45bc21515", + "Order": 1, + "DeletedAt": null, + "EntryId": "7c769029-18c6-4d44-b8fb-d858b427551b", + "Definition": {}, + "Gloss": { + "en": "taste good", + "pt": "ter gosto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4ac950c-1363-4bca-a218-ede32a2d4a33", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sadzipa maningi.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Tem muito bom sabor.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "dd58d55c-4ca6-4726-a9c2-10f45bc21515", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e833e9b-d413-46ce-9ad7-88bd66a309fc", + "DeletedAt": null, + "LexemeForm": { + "seh": "dziw" + }, + "CitationForm": { + "seh": "dziwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f820e3a7-256d-4bd4-bfb2-fb7fb4dd7dd6", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e833e9b-d413-46ce-9ad7-88bd66a309fc", + "Definition": {}, + "Gloss": { + "en": "know", + "pt": "saber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "19edf4c3-722d-44ee-8e98-a4630a261ec7", + "DeletedAt": null, + "LexemeForm": { + "seh": "dziwis" + }, + "CitationForm": { + "seh": "dziwisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbce6a29-7a85-4714-9c10-ef640500c220", + "Order": 1, + "DeletedAt": null, + "EntryId": "19edf4c3-722d-44ee-8e98-a4630a261ec7", + "Definition": {}, + "Gloss": { + "en": "inform", + "pt": "informar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d13395aa-e40d-4027-906c-94e5a4159da2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "cbce6a29-7a85-4714-9c10-ef640500c220", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f242ee99-11cf-41bc-9bba-76d849911c06", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzizimuk" + }, + "CitationForm": { + "seh": "dzizimuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b8d3c6f-10ec-4b79-a267-e7fb490d27b3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f242ee99-11cf-41bc-9bba-76d849911c06", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake from a dream", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "acordar de sonho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2720cac0-de07-4cad-8057-4817af85c46a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6b8d3c6f-10ec-4b79-a267-e7fb490d27b3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9021fb3-cd41-49da-82f7-843521d46b26", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzololo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1476f06f-5d14-4d5e-b6e8-ab23e0ce6218", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9021fb3-cd41-49da-82f7-843521d46b26", + "Definition": {}, + "Gloss": { + "en": "standing firm", + "pt": "firme" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a5053715-81a4-415e-a1d4-456b795d8c4d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1476f06f-5d14-4d5e-b6e8-ab23e0ce6218", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d5776d9-c5ae-487e-863a-660767d12d77", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzongololo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "661ca6fd-1e8b-412c-977f-8ce7bda3c73a", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d5776d9-c5ae-487e-863a-660767d12d77", + "Definition": {}, + "Gloss": { + "en": "millipede", + "pt": "mil pe\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "24cb9193-8011-428f-a305-d7dc4423200d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "661ca6fd-1e8b-412c-977f-8ce7bda3c73a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc970e94-fc80-4f40-b91f-ebe000aa0623", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzongwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "264e5106-44f9-4d15-b5b2-f0a4acc2237e", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc970e94-fc80-4f40-b91f-ebe000aa0623", + "Definition": {}, + "Gloss": { + "en": "rooster", + "pt": "galo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4a221232-3c46-4b11-9d6d-859ffac13de6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Alves; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "264e5106-44f9-4d15-b5b2-f0a4acc2237e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "285344b4-370c-479f-b6ae-3298d502832a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzonkhon" + }, + "CitationForm": { + "seh": "dzonkhona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "961b8f0e-88f5-43a7-8ef6-0273413b6ade", + "Order": 1, + "DeletedAt": null, + "EntryId": "285344b4-370c-479f-b6ae-3298d502832a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "eat by bird", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "comer por passaro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "eat", + "pt": "comer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2933b787-db50-4b1b-bf0b-68d1c681ca82", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "961b8f0e-88f5-43a7-8ef6-0273413b6ade", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31dbf4c0-8958-4826-ada6-30913d18adf3", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzoya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d633d91a-a2d9-4d0b-bd63-76cfcab618df", + "Order": 1, + "DeletedAt": null, + "EntryId": "31dbf4c0-8958-4826-ada6-30913d18adf3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "body hair (human)", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pe\u0302lor, cabelo do corpo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hair", + "pt": "cabelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b20db01-fdb6-4fae-8741-af3e2de1c316", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d633d91a-a2d9-4d0b-bd63-76cfcab618df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9468fe42-4ed1-45da-8709-42e4f964da03", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzudzumik" + }, + "CitationForm": { + "seh": "dzudzumika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04fd1383-f9ff-4bfc-8056-272d49529a21", + "Order": 1, + "DeletedAt": null, + "EntryId": "9468fe42-4ed1-45da-8709-42e4f964da03", + "Definition": {}, + "Gloss": { + "en": "worried", + "pt": "preoccupado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e80d557-96e6-4be8-bb77-b012e9b57605", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff02a48b-3cdb-45a0-8c0a-b16bb506aa9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e80d557-96e6-4be8-bb77-b012e9b57605", + "Definition": {}, + "Gloss": { + "en": "yesterday", + "pt": "ontem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "081ed5fa-2a2f-4790-80d5-0cb68590fa5e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "ff02a48b-3cdb-45a0-8c0a-b16bb506aa9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6221b166-e164-42f5-841d-a1e34cd08f5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzumatirw" + }, + "CitationForm": { + "seh": "dzumatirwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8b829fb0-227b-4ef9-8451-b04e7b3de29e", + "Order": 1, + "DeletedAt": null, + "EntryId": "6221b166-e164-42f5-841d-a1e34cd08f5d", + "Definition": {}, + "Gloss": { + "en": "be surprized", + "pt": "admirar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "06809308-89c5-4224-aa60-16a054de198e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8b829fb0-227b-4ef9-8451-b04e7b3de29e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec612c4b-883b-441e-98c5-17e211707dc9", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzungu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5407cf61-e396-4fbe-bb1c-78bd5926d237", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec612c4b-883b-441e-98c5-17e211707dc9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "chaff of mapira", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "poeira de mapira", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "chaff", + "pt": "poeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e814a3aa-b93e-4269-81dd-5f66f1c00555", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5407cf61-e396-4fbe-bb1c-78bd5926d237", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ccb3a59f-d180-4371-b14a-3585e6ab672c", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzuwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f3ca3e78-5b47-46f0-8964-7c7308675fbb", + "Order": 1, + "DeletedAt": null, + "EntryId": "ccb3a59f-d180-4371-b14a-3585e6ab672c", + "Definition": {}, + "Gloss": { + "en": "sun", + "pt": "sol" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "420985b5-81d9-419d-be94-1c18fbfbb3fa", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khundu ya kumabulukira dzuwa", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "lado de sair o sol (fig. este)", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,19 ;wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "f3ca3e78-5b47-46f0-8964-7c7308675fbb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4febd7ab-81f9-42a3-bcad-96809e046588", + "DeletedAt": null, + "LexemeForm": { + "seh": "e" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "0c26a49a-907c-4889-81c6-fc317afaca7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4febd7ab-81f9-42a3-bcad-96809e046588", + "Definition": { + "en": { + "Spans": [ + { + "Text": "subjunctive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "subjunctivo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "SBJV", + "pt": "SBJV" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c9049df2-fc01-4c22-a878-2c2d55fda732", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "aisakire, asake rabbit seek, ifikire meat arrive, ifunge lion close eye ikwanise lion should succeed, mundiwangise you could heal me", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "0c26a49a-907c-4889-81c6-fc317afaca7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "360dd981-7f18-405f-b5ab-c875aca9c5cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "edz" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "3c26e6d5-0706-43bb-a893-b02e8cab4977", + "Order": 1, + "DeletedAt": null, + "EntryId": "360dd981-7f18-405f-b5ab-c875aca9c5cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "agentive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "agentiva", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "AGN", + "pt": "AGN" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e142ae59-c23c-416b-bfa3-cb7304cd4725", + "DeletedAt": null, + "LexemeForm": { + "seh": "ek" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "4ab7f4b4-6ac8-4409-8ce4-ad1684644bc3", + "Order": 1, + "DeletedAt": null, + "EntryId": "e142ae59-c23c-416b-bfa3-cb7304cd4725", + "Definition": { + "en": { + "Spans": [ + { + "Text": "neuter-passive, like passive but without an agent", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "neutro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NEU", + "pt": "NEU" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2c8ca542-189b-4ae0-9de6-ee65c6efda13", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ikhalike \u0022he.9 should be staying\u0022", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "4ab7f4b4-6ac8-4409-8ce4-ad1684644bc3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "26b5d509-0add-4434-a012-e208612d1fc7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ekh" + }, + "CitationForm": { + "seh": "ekha" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "03e96b83-c7c5-49ce-85eb-9334869c954c", + "Order": 1, + "DeletedAt": null, + "EntryId": "26b5d509-0add-4434-a012-e208612d1fc7", + "Definition": {}, + "Gloss": { + "en": "alone", + "pt": "sozinho" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "42c2ab2e-c9f7-4bdf-8940-76744ec44a2f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iyo aenda okha.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "They went alone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Eles foram sozinhos", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "03e96b83-c7c5-49ce-85eb-9334869c954c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "DeletedAt": null, + "LexemeForm": { + "seh": "end" + }, + "CitationForm": { + "seh": "enda" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6f4a4cae-b335-4cf3-80e7-efad20ea0688", + "Order": 1, + "DeletedAt": null, + "EntryId": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "Definition": {}, + "Gloss": { + "en": "go", + "pt": "ir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "62b4b833-f5ae-4a6b-a19a-e4a00350908e", + "MaybeId": "62b4b833-f5ae-4a6b-a19a-e4a00350908e", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "ComponentSenseId": null, + "ComponentHeadword": "enda" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a1fa379-11d4-4ce6-a09e-fe4c16621ba7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c9759c21-69d4-49f2-abf1-1b5189a166c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a1fa379-11d4-4ce6-a09e-fe4c16621ba7", + "Definition": {}, + "Gloss": { + "en": "very", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "185ac884-3aaf-4db0-b436-46a2c6446595", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cinthu cene cadidi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "coisa mesmo boa", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Sulo2:41", + "Ws": "en" + } + ] + }, + "SenseId": "c9759c21-69d4-49f2-abf1-1b5189a166c9", + "DeletedAt": null + }, + { + "Id": "36ccf87b-0cfd-42e2-bcd9-75b00aabbc9c", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "munthu ene", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "pessoa mesmo (boa)", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "c9759c21-69d4-49f2-abf1-1b5189a166c9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1e60f3f-3606-4ac9-b05b-33a79d0d1478", + "DeletedAt": null, + "LexemeForm": { + "seh": "ene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Enclitic", + "Senses": [ + { + "Id": "14ff3655-598a-4ce5-8186-805c65398553", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1e60f3f-3606-4ac9-b05b-33a79d0d1478", + "Definition": {}, + "Gloss": { + "en": "very", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "Name": { + "en": "Nominalizer", + "pt": "Nominalizador" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "721bd91b-5f1d-4e9a-b65a-0211839b8c2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "eneyi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "26d8aa34-4d0f-40cf-af6a-2a01b1ddbcc8", + "Order": 1, + "DeletedAt": null, + "EntryId": "721bd91b-5f1d-4e9a-b65a-0211839b8c2d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "classes 4\u00265", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "this very one", + "pt": "este mesmo" + }, + "PartOfSpeech": { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d5fdb31-6c26-4f20-bab3-8d86a38eea78", + "DeletedAt": null, + "LexemeForm": { + "seh": "eoo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d1645b43-54ad-4ae3-86a8-2adc01b10b86", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d5fdb31-6c26-4f20-bab3-8d86a38eea78", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ai, o\u0301", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "oh", + "pt": "ai" + }, + "PartOfSpeech": { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3339c937-7f48-42b0-9cfa-e9619fa0c34e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d1645b43-54ad-4ae3-86a8-2adc01b10b86", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d78f80cf-0ebf-4591-9991-aca4b2e1f660", + "DeletedAt": null, + "LexemeForm": { + "seh": "er" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "8d6f187f-1d1e-47a7-ab99-d75b5c0fb7e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "d78f80cf-0ebf-4591-9991-aca4b2e1f660", + "Definition": { + "en": { + "Spans": [ + { + "Text": "applicative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "aplicativa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "APPLIC", + "pt": "APPLIC" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8d3435f5-a7c2-4628-86de-1b02fe3623f6", + "DeletedAt": null, + "LexemeForm": { + "seh": "es" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "e2c0d4bd-f0f9-43a8-8f4e-778deabb7a34", + "Order": 1, + "DeletedAt": null, + "EntryId": "8d3435f5-a7c2-4628-86de-1b02fe3623f6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "causative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causativa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "CAU", + "pt": "CAU" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", + "Order": 2, + "DeletedAt": null, + "EntryId": "8d3435f5-a7c2-4628-86de-1b02fe3623f6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "intensive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "intensiva", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "INTENSE", + "pt": "INTENSE" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9efa1098-b063-4cac-85ab-8ce2c3cb1be9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kutumisa", + "Ws": "en" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": " incomodar por mandar demais", + "Ws": "en" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b3eded59-fb12-417f-b2c6-7794fd3781a9", + "DeletedAt": null, + "LexemeForm": { + "seh": "f" + }, + "CitationForm": { + "seh": "fa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3336e632-6459-4a1c-a23d-905ffe86dd5a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b3eded59-fb12-417f-b2c6-7794fd3781a9", + "Definition": {}, + "Gloss": { + "en": "die", + "pt": "morrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b2934ef0-eaa1-49de-8619-7e01e463ba55", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1 (f a); Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "3336e632-6459-4a1c-a23d-905ffe86dd5a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5c503424-64f9-4610-836f-14c4da5f0f4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "fala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e60e481f-7833-4449-aa05-486579405700", + "Order": 1, + "DeletedAt": null, + "EntryId": "5c503424-64f9-4610-836f-14c4da5f0f4f", + "Definition": {}, + "Gloss": { + "en": "voice", + "pt": "voz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ba8bb68-b29b-4f77-940d-e1f96e41abaa", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e60e481f-7833-4449-aa05-486579405700", + "DeletedAt": null + } + ] + }, + { + "Id": "143dddd7-c67c-47a4-8520-d7c97bfea5fb", + "Order": 2, + "DeletedAt": null, + "EntryId": "5c503424-64f9-4610-836f-14c4da5f0f4f", + "Definition": {}, + "Gloss": { + "en": "word", + "pt": "palavra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0fcff43-04f0-447d-b434-d251fb31eeeb", + "DeletedAt": null, + "LexemeForm": { + "seh": "falinya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e4a2ddaf-3936-4686-b2c3-8a4207268d2f", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0fcff43-04f0-447d-b434-d251fb31eeeb", + "Definition": {}, + "Gloss": { + "en": "manioc", + "pt": "mandioca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b823539-b333-4e60-bf2d-1269f3791d5a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "e4a2ddaf-3936-4686-b2c3-8a4207268d2f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a74a73cf-2919-4b86-9774-bd8ab71ae3e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "famb" + }, + "CitationForm": { + "seh": "famba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bea34cfa-cfd1-4785-b126-cab5ac699c34", + "Order": 1, + "DeletedAt": null, + "EntryId": "a74a73cf-2919-4b86-9774-bd8ab71ae3e3", + "Definition": {}, + "Gloss": { + "en": "walk", + "pt": "andar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "643cc712-b3b3-42d0-971e-7a4c8a6cbf1e", + "Name": { + "en": "Walk" + }, + "Code": "7.2.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "973bbf78-246b-45e5-b865-43b0f5eb943a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bea34cfa-cfd1-4785-b126-cab5ac699c34", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1c931bb1-39aa-4fe0-aae4-bb8dbb48fb89", + "DeletedAt": null, + "LexemeForm": { + "seh": "fendezer" + }, + "CitationForm": { + "seh": "fendezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca6c691d-4d25-4930-9734-41c1fc6a80d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "1c931bb1-39aa-4fe0-aae4-bb8dbb48fb89", + "Definition": {}, + "Gloss": { + "en": "come close", + "pt": "aproximar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e7502a3-8524-4c50-be17-6fc4bdc9ccc7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine na iwe tafendezerana dhuzi.", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "ca6c691d-4d25-4930-9734-41c1fc6a80d3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "89ca306f-0355-4a40-a5bc-840995918a8a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ferus" + }, + "CitationForm": { + "seh": "ferusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8a628d12-fc65-4fca-a4cd-b72fcfb3f4e9", + "Order": 1, + "DeletedAt": null, + "EntryId": "89ca306f-0355-4a40-a5bc-840995918a8a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "put on the burner", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "po\u0302r a fervura", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "cook", + "pt": "po\u0302r a fervura" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "319561ec-df01-452a-9100-ac1412366c3f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8a628d12-fc65-4fca-a4cd-b72fcfb3f4e9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0cdffc4-1aa8-4531-9287-ad6a7ed16ad4", + "DeletedAt": null, + "LexemeForm": { + "seh": "fiari" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f472c27-cbde-4af6-882c-332e088042be", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0cdffc4-1aa8-4531-9287-ad6a7ed16ad4", + "Definition": {}, + "Gloss": { + "en": "owe", + "pt": "dever" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "917af0f0-0d4e-4f3e-a591-1782ca0df711", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2f472c27-cbde-4af6-882c-332e088042be", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04533333-ff71-4d1f-a0d4-352b7c3f553e", + "DeletedAt": null, + "LexemeForm": { + "seh": "fik" + }, + "CitationForm": { + "seh": "fika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "46adfeba-dc1c-4ab4-b459-17426311e7ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "04533333-ff71-4d1f-a0d4-352b7c3f553e", + "Definition": {}, + "Gloss": { + "en": "arrive", + "pt": "chegar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e96c24ef-938e-4309-bb19-37048212a25f", + "DeletedAt": null, + "LexemeForm": { + "seh": "fik" + }, + "CitationForm": { + "seh": "fika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ed25fd2d-3626-402b-a8b2-b87ff3fd006e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e96c24ef-938e-4309-bb19-37048212a25f", + "Definition": {}, + "Gloss": { + "en": "itch", + "pt": "sentir comicha\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1484d663-dc6c-4582-84ed-abecc9eb0ba8", + "DeletedAt": null, + "LexemeForm": { + "seh": "fikir" + }, + "CitationForm": { + "seh": "fikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aaa90268-96b6-4621-90c0-b15bdcae3797", + "Order": 1, + "DeletedAt": null, + "EntryId": "1484d663-dc6c-4582-84ed-abecc9eb0ba8", + "Definition": {}, + "Gloss": { + "en": "bury", + "pt": "enterrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de3b319b-4625-4f9e-aaa6-fe0313b1d9ee", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "aaa90268-96b6-4621-90c0-b15bdcae3797", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a46a1d26-e47d-41c5-87b7-01477d540e9b", + "DeletedAt": null, + "LexemeForm": { + "seh": "fikir" + }, + "CitationForm": { + "seh": "fikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "05def64a-9f1f-4ad9-9361-09b3892ebdff", + "Order": 1, + "DeletedAt": null, + "EntryId": "a46a1d26-e47d-41c5-87b7-01477d540e9b", + "Definition": {}, + "Gloss": { + "en": "be host", + "pt": "hospedar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8887f572-8cde-4c98-85f5-464708e35a48", + "DeletedAt": null, + "LexemeForm": { + "seh": "finikiz" + }, + "CitationForm": { + "seh": "finikiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32ab3b26-bde6-4c4e-b893-7bdebbba97f3", + "Order": 1, + "DeletedAt": null, + "EntryId": "8887f572-8cde-4c98-85f5-464708e35a48", + "Definition": {}, + "Gloss": { + "en": "cover", + "pt": "cobrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "66934fb0-b84c-4bb6-b203-e044682d2e23", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "32ab3b26-bde6-4c4e-b893-7bdebbba97f3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7c51e49a-836d-4f84-aee7-4a540a2b9a0a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fokotoz" + }, + "CitationForm": { + "seh": "fokotoza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1dfc498d-6fd3-4ab7-bf19-e132a6a65490", + "Order": 1, + "DeletedAt": null, + "EntryId": "7c51e49a-836d-4f84-aee7-4a540a2b9a0a", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "explicar para esclarecer", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "clarify", + "pt": "esclarecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "e080687b-0900-4dd0-9677-e3aaa3eae641", + "Name": { + "en": "Explain" + }, + "Code": "3.5.1.2.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "e2d3d0aa-c1b0-4c76-ac36-d45394dbe9ed", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "alonga na kufokotoza", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "falou com insiste\u0301ncia", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "1dfc498d-6fd3-4ab7-bf19-e132a6a65490", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e423ade-f5ae-4881-831e-7ae1eba78ea2", + "DeletedAt": null, + "LexemeForm": { + "seh": "fond" + }, + "CitationForm": { + "seh": "fonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "93fbb734-6c88-49d4-9b17-9eeb0c71173a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e423ade-f5ae-4881-831e-7ae1eba78ea2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the action of dipping bread or corn meal into a sauce", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dip food", + "pt": "molhar comida" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "12b6934d-3a4a-4623-995f-865f401349ab", + "Name": { + "en": "Manner of eating" + }, + "Code": "5.2.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "79d06fc2-3d64-4f71-b9ee-aa3d0f54c23c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "93fbb734-6c88-49d4-9b17-9eeb0c71173a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "64dc38ed-1567-41c8-8d40-a5fc042637a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "fotokodzer" + }, + "CitationForm": { + "seh": "fotokodzera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bb62ac16-3829-45be-baa9-737a7dfb8921", + "Order": 1, + "DeletedAt": null, + "EntryId": "64dc38ed-1567-41c8-8d40-a5fc042637a7", + "Definition": {}, + "Gloss": { + "en": "confirm", + "pt": "confirmar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9874d49c-d3ad-42c6-aec2-d42f0fcd7943", + "DeletedAt": null, + "LexemeForm": { + "seh": "foxolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "08da4e99-a9f0-4f90-a25a-3f7d56bff893", + "Order": 1, + "DeletedAt": null, + "EntryId": "9874d49c-d3ad-42c6-aec2-d42f0fcd7943", + "Definition": {}, + "Gloss": { + "en": "shovel", + "pt": "pa\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "73c37803-5f1f-43b0-b290-99175be8547b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "08da4e99-a9f0-4f90-a25a-3f7d56bff893", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1765f9de-cbee-4381-9d6c-6f810d63749f", + "DeletedAt": null, + "LexemeForm": { + "seh": "foya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3dcf0108-efef-48f1-932c-0c1f2b25a959", + "Order": 1, + "DeletedAt": null, + "EntryId": "1765f9de-cbee-4381-9d6c-6f810d63749f", + "Definition": {}, + "Gloss": { + "en": "capalana", + "pt": "capalana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5b1798a4-288f-4469-b6d2-ad002aa33df6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "3dcf0108-efef-48f1-932c-0c1f2b25a959", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3494f2bf-279f-4245-9d55-8e51403e571a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fudz" + }, + "CitationForm": { + "seh": "fudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42ee67c5-c6a9-4c1a-984a-30c5df50572f", + "Order": 1, + "DeletedAt": null, + "EntryId": "3494f2bf-279f-4245-9d55-8e51403e571a", + "Definition": {}, + "Gloss": { + "en": "destroy", + "pt": "destruir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "37c4a4d9-2631-427d-99d1-2c6d2fcad89c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "42ee67c5-c6a9-4c1a-984a-30c5df50572f", + "DeletedAt": null + } + ] + }, + { + "Id": "a024c2c5-3356-4b6d-95c0-f6b04c3eb1fb", + "Order": 2, + "DeletedAt": null, + "EntryId": "3494f2bf-279f-4245-9d55-8e51403e571a", + "Definition": {}, + "Gloss": { + "en": "unmake", + "pt": "disfazer" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6aecfbe8-5fa1-415f-bb03-aedba0b3309a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ful" + }, + "CitationForm": { + "seh": "fula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7e4ab6ec-915b-40b4-b04f-e6fae33c1958", + "Order": 1, + "DeletedAt": null, + "EntryId": "6aecfbe8-5fa1-415f-bb03-aedba0b3309a", + "Definition": {}, + "Gloss": { + "en": "wash clothes", + "pt": "lavar roupa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9cb0a5d-0379-450b-a1fc-f5224a36907b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "7e4ab6ec-915b-40b4-b04f-e6fae33c1958", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff8a7e15-6e8b-4879-b659-7cd3dd60ec30", + "DeletedAt": null, + "LexemeForm": { + "seh": "fulamir" + }, + "CitationForm": { + "seh": "fulamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "93ce8887-85b4-4cfb-9d41-d3a78a59a674", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff8a7e15-6e8b-4879-b659-7cd3dd60ec30", + "Definition": { + "en": { + "Spans": [ + { + "Text": "stick your butt out to someone as an insult", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "enclinar com rabo extendido para insultar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "insult", + "pt": "insultar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "22a505f0-0272-49ff-b9f9-1ca68ae5befe", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "93ce8887-85b4-4cfb-9d41-d3a78a59a674", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1cf298d6-1d76-4fa3-9cb8-9311eef020c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "fulatir" + }, + "CitationForm": { + "seh": "fulatira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c96968f6-3ba4-41dc-866f-46621635a4b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "1cf298d6-1d76-4fa3-9cb8-9311eef020c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bend over with buttocks extended in a curse", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "enclinar com rabo extendido para amaldicoar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "curse", + "pt": "amaldic\u0327oar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6814f2c6-622d-4bab-b6a0-d102e814be8e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth:fwatira", + "Ws": "en" + } + ] + }, + "SenseId": "c96968f6-3ba4-41dc-866f-46621635a4b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "DeletedAt": null, + "LexemeForm": { + "seh": "fun" + }, + "CitationForm": { + "seh": "funa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4f0592b-3caa-4494-8c29-da9d27fdbe74", + "Order": 1, + "DeletedAt": null, + "EntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "Definition": {}, + "Gloss": { + "en": "want", + "pt": "querer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "d030f0c7-31a3-47da-be35-46f1eba63ae9", + "Name": { + "en": "Like, love" + }, + "Code": "3.4.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "484817a2-3fd3-4c6f-87a1-d9aa6d6c7720", + "Order": 2, + "DeletedAt": null, + "EntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "love, like", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "amar, gostar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "love", + "pt": "amar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b68b4b80-2291-4ad4-8489-5908f4a3ce32", + "Order": 3, + "DeletedAt": null, + "EntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "Definition": {}, + "Gloss": { + "en": "be about to" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "a4ba24ee-ccac-46cf-bac9-8bf2e33c3cbf", + "MaybeId": "a4ba24ee-ccac-46cf-bac9-8bf2e33c3cbf", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "de894a93-add4-4b37-b79b-beed925550f9", + "ComplexFormHeadword": "funana", + "ComponentEntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "ComponentSenseId": null, + "ComponentHeadword": "funa" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "de894a93-add4-4b37-b79b-beed925550f9", + "DeletedAt": null, + "LexemeForm": { + "seh": "funan" + }, + "CitationForm": { + "seh": "funana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c7506d9e-5153-476e-a335-8809d256bb16", + "Order": 1, + "DeletedAt": null, + "EntryId": "de894a93-add4-4b37-b79b-beed925550f9", + "Definition": {}, + "Gloss": { + "en": "love", + "pt": "amar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "55b0b3aa-2b3c-4cc6-bb6b-fb02ac02ae05", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "c7506d9e-5153-476e-a335-8809d256bb16", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "a4ba24ee-ccac-46cf-bac9-8bf2e33c3cbf", + "MaybeId": "a4ba24ee-ccac-46cf-bac9-8bf2e33c3cbf", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "de894a93-add4-4b37-b79b-beed925550f9", + "ComplexFormHeadword": "funana", + "ComponentEntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "ComponentSenseId": null, + "ComponentHeadword": "funa" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a2b92f44-6f7b-4b8a-ba78-53be3ea38f70", + "DeletedAt": null, + "LexemeForm": { + "seh": "funguk" + }, + "CitationForm": { + "seh": "funguka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "30c7b3aa-10e4-4946-ac04-e6d7a6be141c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a2b92f44-6f7b-4b8a-ba78-53be3ea38f70", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "aberto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "243feb07-6b7c-4f98-aefe-afa7dae94662", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "30c7b3aa-10e4-4946-ac04-e6d7a6be141c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6bdf3cfd-4a4c-4a26-a127-9fefd16a510d", + "DeletedAt": null, + "LexemeForm": { + "seh": "fungul" + }, + "CitationForm": { + "seh": "fungula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4d763ac-cce7-4b81-85cf-55ef86f16cb2", + "Order": 1, + "DeletedAt": null, + "EntryId": "6bdf3cfd-4a4c-4a26-a127-9fefd16a510d", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "abrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4d12a829-a480-4217-90fb-b62ad06655ec", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a4d763ac-cce7-4b81-85cf-55ef86f16cb2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "474f2c0e-a09c-4c42-87c2-287b82a99ce3", + "DeletedAt": null, + "LexemeForm": { + "seh": "funik" + }, + "CitationForm": { + "seh": "funika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff9430bd-53e8-4142-9071-21a5cad5652a", + "Order": 1, + "DeletedAt": null, + "EntryId": "474f2c0e-a09c-4c42-87c2-287b82a99ce3", + "Definition": {}, + "Gloss": { + "en": "need", + "pt": "precisa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8408e00a-57eb-4a5f-81b0-7392f0679ce3", + "DeletedAt": null, + "LexemeForm": { + "seh": "futa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58c422e6-bf58-48f7-837b-0d694c46c178", + "Order": 1, + "DeletedAt": null, + "EntryId": "8408e00a-57eb-4a5f-81b0-7392f0679ce3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "any type of oil", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "oil", + "pt": "o\u0301leo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f99ff374-4851-4b27-bc38-334fec5d48cb", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mafuta a kudya", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "o\u0301leo de cosinha", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Wordlist, Quembo for plural", + "Ws": "en" + } + ] + }, + "SenseId": "58c422e6-bf58-48f7-837b-0d694c46c178", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33653114-062e-4c07-8a3f-835cf876c367", + "DeletedAt": null, + "LexemeForm": { + "seh": "futhuk" + }, + "CitationForm": { + "seh": "futhuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1740df40-5673-47aa-847e-65c437550442", + "Order": 1, + "DeletedAt": null, + "EntryId": "33653114-062e-4c07-8a3f-835cf876c367", + "Definition": {}, + "Gloss": { + "en": "extended", + "pt": "estendido" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1dc4e292-5802-4be5-9447-7d026d0ab825", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1740df40-5673-47aa-847e-65c437550442", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "791438d0-5c0e-4fe9-b1cf-01887a956807", + "DeletedAt": null, + "LexemeForm": { + "seh": "futhul" + }, + "CitationForm": { + "seh": "futhula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8637fd45-a2f1-4e08-95d3-8d79ca10a64f", + "Order": 1, + "DeletedAt": null, + "EntryId": "791438d0-5c0e-4fe9-b1cf-01887a956807", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "abrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e7eb6b6-4c78-4043-a007-2eba7bab5ec2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8637fd45-a2f1-4e08-95d3-8d79ca10a64f", + "DeletedAt": null + } + ] + }, + { + "Id": "47f507af-496d-4983-8c2f-74ddd6843b5f", + "Order": 2, + "DeletedAt": null, + "EntryId": "791438d0-5c0e-4fe9-b1cf-01887a956807", + "Definition": {}, + "Gloss": { + "en": "stretch", + "pt": "esticar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2a66c2d8-3c6c-44c6-9a0e-5be536c4ed9a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuy" + }, + "CitationForm": { + "seh": "fuya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "adf88e54-3b71-4d63-bcb0-ddce4ff78565", + "Order": 1, + "DeletedAt": null, + "EntryId": "2a66c2d8-3c6c-44c6-9a0e-5be536c4ed9a", + "Definition": {}, + "Gloss": { + "en": "raise child", + "pt": "criar crianc\u0327a" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "586a0cf0-3865-4065-aaab-f7195f0b049c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "adf88e54-3b71-4d63-bcb0-ddce4ff78565", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4975651a-b3dc-4ce7-bd8d-be3f5308de84", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuz" + }, + "CitationForm": { + "seh": "fuza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8077a104-cdc7-4366-8bf5-b73997d3abfa", + "Order": 1, + "DeletedAt": null, + "EntryId": "4975651a-b3dc-4ce7-bd8d-be3f5308de84", + "Definition": {}, + "Gloss": { + "en": "destroy", + "pt": "destruir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c1bd1b81-96b7-4efb-98c3-182a3dc31ce6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8077a104-cdc7-4366-8bf5-b73997d3abfa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1c504db-597f-4e62-bcf7-31f623c11bbd", + "DeletedAt": null, + "LexemeForm": { + "seh": "gak" + }, + "CitationForm": { + "seh": "gaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "728743a9-61b1-48e1-97ec-2d37d1dbed8f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1c504db-597f-4e62-bcf7-31f623c11bbd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the state of being lit", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "burning", + "pt": "esta\u0301 aceso" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f91ffea6-c39d-41e6-9c88-3bc826c78158", + "DeletedAt": null, + "LexemeForm": { + "seh": "gamph" + }, + "CitationForm": { + "seh": "gampha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14518a12-4f6b-457c-b059-31e8941432c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "f91ffea6-c39d-41e6-9c88-3bc826c78158", + "Definition": {}, + "Gloss": { + "en": "catch", + "pt": "encaixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3a8bb44-ce92-4e35-a713-d57c98366b66", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "iwe kudza kakugampha na manja", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "you will be caught in the hand", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "14518a12-4f6b-457c-b059-31e8941432c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "98ae0610-e818-4093-8762-6922d135be90", + "DeletedAt": null, + "LexemeForm": { + "seh": "gas" + }, + "CitationForm": { + "seh": "gasa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c67be91a-7537-47ac-b4ac-f16dddba5dea", + "Order": 1, + "DeletedAt": null, + "EntryId": "98ae0610-e818-4093-8762-6922d135be90", + "Definition": {}, + "Gloss": { + "en": "light flame", + "pt": "acender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ea161ff-d584-41f1-8242-31566d5f6042", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "c67be91a-7537-47ac-b4ac-f16dddba5dea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0f93031-e9fe-4b7d-b6eb-f1b4b944fee3", + "DeletedAt": null, + "LexemeForm": { + "seh": "gaw" + }, + "CitationForm": { + "seh": "gawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ecd2581-0ea3-4613-8ed5-2643085d6a61", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0f93031-e9fe-4b7d-b6eb-f1b4b944fee3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "organize distribution", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "dividir antes de distribuir", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "arrange", + "pt": "dividir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6233f99-8975-400c-a1cb-69ec5d7c9ab2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gawiz" + }, + "CitationForm": { + "seh": "gawiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1df766e6-a8e1-476b-9402-9f0aeadb5eb3", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6233f99-8975-400c-a1cb-69ec5d7c9ab2", + "Definition": {}, + "Gloss": { + "en": "distribute", + "pt": "distribuir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ea2ea2a2-daa4-4c5c-b880-bedc73e66594", + "Order": 2, + "DeletedAt": null, + "EntryId": "a6233f99-8975-400c-a1cb-69ec5d7c9ab2", + "Definition": {}, + "Gloss": { + "en": "divide", + "pt": "dividir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "34d9b8c5-9d97-489e-9cc2-dbce4193b503", + "DeletedAt": null, + "LexemeForm": { + "seh": "gay" + }, + "CitationForm": { + "seh": "gaya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5121e7bd-4eb3-4e74-9779-d833fcbd6c33", + "Order": 1, + "DeletedAt": null, + "EntryId": "34d9b8c5-9d97-489e-9cc2-dbce4193b503", + "Definition": {}, + "Gloss": { + "en": "vanity", + "pt": "vaidade" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "016ab5a9-4a88-4399-b185-a4b0797078ef", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze; George didn\u0027t know", + "Ws": "en" + } + ] + }, + "SenseId": "5121e7bd-4eb3-4e74-9779-d833fcbd6c33", + "DeletedAt": null + } + ] + }, + { + "Id": "209e52a4-dac0-4220-904d-bd2774dfb631", + "Order": 2, + "DeletedAt": null, + "EntryId": "34d9b8c5-9d97-489e-9cc2-dbce4193b503", + "Definition": {}, + "Gloss": { + "en": "be proud", + "pt": "ser vaidoso" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2bb1472-71b7-4fcb-8434-e68dd6d592c0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndisagaya na njinga yanga.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Eu orgulho-me com bicicleta minha.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Alves", + "Ws": "en" + } + ] + }, + "SenseId": "209e52a4-dac0-4220-904d-bd2774dfb631", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bc0b964c-3cc8-473c-b138-85659e0bbba3", + "DeletedAt": null, + "LexemeForm": { + "seh": "gerego" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0fd92c10-05b8-475a-8a64-7fd308bd6740", + "Order": 1, + "DeletedAt": null, + "EntryId": "bc0b964c-3cc8-473c-b138-85659e0bbba3", + "Definition": {}, + "Gloss": { + "en": "Greek", + "pt": "grego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0740c14-da52-47d4-8fae-0654717a89b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "goa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8b4ba5d6-8067-44f7-8484-35c96aa7d262", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0740c14-da52-47d4-8fae-0654717a89b1", + "Definition": {}, + "Gloss": { + "en": "valley", + "pt": "vale" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7222a8d-53f8-486d-93d5-a09fd3cfa514", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8b4ba5d6-8067-44f7-8484-35c96aa7d262", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8f29c302-5175-4ec7-9a8d-9a051f40f54c", + "DeletedAt": null, + "LexemeForm": { + "seh": "goce" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3b6bbb6-5c84-4ff0-a8e6-1e2899d12400", + "Order": 1, + "DeletedAt": null, + "EntryId": "8f29c302-5175-4ec7-9a8d-9a051f40f54c", + "Definition": {}, + "Gloss": { + "en": "chaff", + "pt": "farelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a051241d-37ff-454b-9cfe-b3a9c7f49556", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b3b6bbb6-5c84-4ff0-a8e6-1e2899d12400", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "68d57905-5566-4f7c-97ec-feb266154ccd", + "DeletedAt": null, + "LexemeForm": { + "seh": "godam" + }, + "CitationForm": { + "seh": "godama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8a8e149b-f056-4234-9810-4b90b3ffb19d", + "Order": 1, + "DeletedAt": null, + "EntryId": "68d57905-5566-4f7c-97ec-feb266154ccd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "kneel as an act of respect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "joelhar como acto de respeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "kneel", + "pt": "joelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c4b750a2-65a5-44da-b4df-035b59fc2179", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8a8e149b-f056-4234-9810-4b90b3ffb19d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a95d2f76-0b0d-4cfa-a009-c8757e792f8b", + "DeletedAt": null, + "LexemeForm": { + "seh": "godamir" + }, + "CitationForm": { + "seh": "godamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1743274c-54d5-4ff5-b444-3d4153c77cb5", + "Order": 1, + "DeletedAt": null, + "EntryId": "a95d2f76-0b0d-4cfa-a009-c8757e792f8b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "kneel for someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "joelhar a favor de alge\u0301m", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "kneel", + "pt": "joelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "360fdfb7-d3c8-4769-a159-0edb7555ee12", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1743274c-54d5-4ff5-b444-3d4153c77cb5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "060dcab9-201d-4c68-9991-414e43d520c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "gogodo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b35a109a-8344-44cc-bf8f-3c9c70d5a868", + "Order": 1, + "DeletedAt": null, + "EntryId": "060dcab9-201d-4c68-9991-414e43d520c7", + "Definition": {}, + "Gloss": { + "en": "bone", + "pt": "osso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7131c40-26b7-4ddc-99b6-11dffa7bc24b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b35a109a-8344-44cc-bf8f-3c9c70d5a868", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e30f9934-139d-4723-be5d-f02dc697ef97", + "DeletedAt": null, + "LexemeForm": { + "seh": "gogom" + }, + "CitationForm": { + "seh": "gogoma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3bd37e79-5717-47bb-8b27-c83819adec6e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e30f9934-139d-4723-be5d-f02dc697ef97", + "Definition": {}, + "Gloss": { + "en": "kneel", + "pt": "ajoelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "402fbb8e-7e4e-4c93-bb84-4b2808ba28a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cdc935e-49af-4457-a414-d38b10ec906b", + "Order": 1, + "DeletedAt": null, + "EntryId": "402fbb8e-7e4e-4c93-bb84-4b2808ba28a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the water next to the bank of a river or lake", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "river bank", + "pt": "margem de rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "928741b5-bff6-4dd1-be37-ec6e7a4eb6ca", + "Name": { + "en": "Island, shore" + }, + "Code": "1.3.1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c1cae661-4522-47c5-8c5e-d15babf756b7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8cdc935e-49af-4457-a414-d38b10ec906b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef7645bf-0e76-437f-a366-c7e615d32650", + "DeletedAt": null, + "LexemeForm": { + "seh": "gon" + }, + "CitationForm": { + "seh": "gona" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a97c0f4d-73e0-4b95-931f-31c8a515729e", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef7645bf-0e76-437f-a366-c7e615d32650", + "Definition": {}, + "Gloss": { + "en": "sleep", + "pt": "dormir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b111978d-560f-43a3-85e8-c60f1db7d61e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwagona piadidi?", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "dormiu bem?", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a97c0f4d-73e0-4b95-931f-31c8a515729e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cb59cbcd-fa82-45cf-8e12-3da5001325c5", + "DeletedAt": null, + "LexemeForm": { + "seh": "gop" + }, + "CitationForm": { + "seh": "gopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04f6c79e-348b-43f0-9cd4-0725a74814d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "cb59cbcd-fa82-45cf-8e12-3da5001325c5", + "Definition": {}, + "Gloss": { + "en": "be afraid", + "pt": "ter medo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e2a12308-0c80-412f-ac80-983f7d821975", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "04f6c79e-348b-43f0-9cd4-0725a74814d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0f0d55f6-6fa6-4e17-a518-029033bc4969", + "DeletedAt": null, + "LexemeForm": { + "seh": "gubudz" + }, + "CitationForm": { + "seh": "gubudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b4c2c6a-3c8e-45d0-927d-385f7cbb75bd", + "Order": 1, + "DeletedAt": null, + "EntryId": "0f0d55f6-6fa6-4e17-a518-029033bc4969", + "Definition": {}, + "Gloss": { + "en": "shake dust off", + "pt": "sacudir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac3922af-dae0-4eda-9404-914c8a181e9d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5b4c2c6a-3c8e-45d0-927d-385f7cbb75bd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65b7d786-31fc-470b-9bb2-e87ea2188436", + "DeletedAt": null, + "LexemeForm": { + "seh": "gul" + }, + "CitationForm": { + "seh": "gula" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "559be1cc-d82c-415d-b5b7-2043a9604511", + "Order": 1, + "DeletedAt": null, + "EntryId": "65b7d786-31fc-470b-9bb2-e87ea2188436", + "Definition": {}, + "Gloss": { + "en": "buy", + "pt": "comprar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0de692a3-fefa-46bb-8b9d-9ead9a0456b3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "559be1cc-d82c-415d-b5b7-2043a9604511", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ca4d7847-b8d1-49ef-b44a-ad227810b8b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gulis" + }, + "CitationForm": { + "seh": "gulisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07dc886f-0dba-4aa6-963a-3d891662d3bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "ca4d7847-b8d1-49ef-b44a-ad227810b8b2", + "Definition": {}, + "Gloss": { + "en": "sell", + "pt": "vender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "a758718d-6e90-471d-acde-a637ba9ff9eb", + "Name": { + "en": "Sell" + }, + "Code": "6.8.4.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "11412391-9ed0-4ab4-8cb7-9008950b38ac", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "07dc886f-0dba-4aa6-963a-3d891662d3bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33f6b0d5-78e9-4301-ad05-f691b0801faf", + "DeletedAt": null, + "LexemeForm": { + "seh": "guman" + }, + "CitationForm": { + "seh": "gumana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "25b238b4-a5d7-4131-a98d-62f2238a4555", + "Order": 1, + "DeletedAt": null, + "EntryId": "33f6b0d5-78e9-4301-ad05-f691b0801faf", + "Definition": {}, + "Gloss": { + "en": "find", + "pt": "encontrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c74009b6-0cff-45dc-9f0b-143981f0281c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "25b238b4-a5d7-4131-a98d-62f2238a4555", + "DeletedAt": null + } + ] + }, + { + "Id": "0d63ae85-adf8-4fb0-a52a-58a5c41bfb86", + "Order": 2, + "DeletedAt": null, + "EntryId": "33f6b0d5-78e9-4301-ad05-f691b0801faf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to consult a traditional doctor to find the cause of some calamity", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "consult", + "pt": "consultar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77b0ac3f-3f08-4788-a65c-e0160206ef9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "gumanik" + }, + "CitationForm": { + "seh": "gumanika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4168c68a-7b17-4f1a-97f7-37f5575e39e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "77b0ac3f-3f08-4788-a65c-e0160206ef9d", + "Definition": {}, + "Gloss": { + "en": "exist", + "pt": "existir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ed2300d-319a-4df0-b0c9-ea6b504873f8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "4168c68a-7b17-4f1a-97f7-37f5575e39e1", + "DeletedAt": null + } + ] + }, + { + "Id": "134179c7-370a-4bbb-8fe8-478cce52139d", + "Order": 2, + "DeletedAt": null, + "EntryId": "77b0ac3f-3f08-4788-a65c-e0160206ef9d", + "Definition": {}, + "Gloss": { + "en": "encounter", + "pt": "encontrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a212da8-c349-4436-970c-2495a7b9ecf0", + "DeletedAt": null, + "LexemeForm": { + "seh": "gumany" + }, + "CitationForm": { + "seh": "gumanya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c9f2594-1004-425c-866f-d88e69fe7472", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a212da8-c349-4436-970c-2495a7b9ecf0", + "Definition": {}, + "Gloss": { + "en": "gather", + "pt": "juntar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ef18e00-2ef8-4288-ac17-f3290fc31c43", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1c9f2594-1004-425c-866f-d88e69fe7472", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31364070-c0c9-455d-bd44-580607d2b0b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "guta" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7502b8d4-c1a1-46c6-a985-46966413ff32", + "Order": 1, + "DeletedAt": null, + "EntryId": "31364070-c0c9-455d-bd44-580607d2b0b3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wooden fortress", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "fortaleza de paus", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "fortress", + "pt": "fortaleza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "08d3c2ee-fa76-49cc-a55f-0e05db1b7ca2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7502b8d4-c1a1-46c6-a985-46966413ff32", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81465344-4602-40cb-b50c-540526f6335a", + "DeletedAt": null, + "LexemeForm": { + "seh": "guwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78a7affb-82be-4888-be1c-a5ece125682b", + "Order": 1, + "DeletedAt": null, + "EntryId": "81465344-4602-40cb-b50c-540526f6335a", + "Definition": {}, + "Gloss": { + "en": "threshing floor", + "pt": "eira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "da257faa-dbcb-4376-887b-e9242a548f8f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "78a7affb-82be-4888-be1c-a5ece125682b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b63fa2ec-5358-4813-ba55-933631219491", + "DeletedAt": null, + "LexemeForm": { + "seh": "guz" + }, + "CitationForm": { + "seh": "guza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2030a4db-c8e3-4492-8eee-ee03fa95cdae", + "Order": 1, + "DeletedAt": null, + "EntryId": "b63fa2ec-5358-4813-ba55-933631219491", + "Definition": {}, + "Gloss": { + "en": "expulse", + "pt": "expusar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1adb8cc4-7376-46db-a1c9-86ad606257e1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2030a4db-c8e3-4492-8eee-ee03fa95cdae", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03830f0e-f6ea-4022-9293-9b1700f8b954", + "DeletedAt": null, + "LexemeForm": { + "seh": "gw" + }, + "CitationForm": { + "seh": "gwa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "aa2f490f-656d-4fac-85ba-f27ffd198fc7", + "Order": 1, + "DeletedAt": null, + "EntryId": "03830f0e-f6ea-4022-9293-9b1700f8b954", + "Definition": {}, + "Gloss": { + "en": "play", + "pt": "jogar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fef0afcb-272a-41ce-a4c8-2cba61d2edd4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kugwa bola; kugwa makarta", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "jogar bola; jogar cartas", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "aa2f490f-656d-4fac-85ba-f27ffd198fc7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "07a07401-2f83-4892-8cc7-1527999bbfc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "gw" + }, + "CitationForm": { + "seh": "gwa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d3c7810d-8e90-466e-befb-dfc3f9424bfd", + "Order": 1, + "DeletedAt": null, + "EntryId": "07a07401-2f83-4892-8cc7-1527999bbfc1", + "Definition": {}, + "Gloss": { + "en": "fall", + "pt": "cair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6fdd753f-4ba7-4e70-962d-2894f0816817", + "DeletedAt": null, + "LexemeForm": { + "seh": "gwand" + }, + "CitationForm": { + "seh": "gwanda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d3eb5101-3c90-4cec-9ba8-abcca2cc7fd4", + "Order": 1, + "DeletedAt": null, + "EntryId": "6fdd753f-4ba7-4e70-962d-2894f0816817", + "Definition": {}, + "Gloss": { + "en": "cut", + "pt": "cortar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d59caf5d-4b8f-4f1a-9195-2fe788742352", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d3eb5101-3c90-4cec-9ba8-abcca2cc7fd4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d6dfe4bd-5387-4ae1-b4b9-08ff97f81ad8", + "DeletedAt": null, + "LexemeForm": { + "seh": "gwedz" + }, + "CitationForm": { + "seh": "gwedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6ccc4bda-d84e-44bc-b401-7a831fe7e78e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d6dfe4bd-5387-4ae1-b4b9-08ff97f81ad8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "physical contact w/ one\u0027s body", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "touch", + "pt": "tocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d68a700a-232c-4b9c-a44f-1ab925baabc9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "andigwedza na manja ace", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "ele tocou-me com a sua mao", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "6ccc4bda-d84e-44bc-b401-7a831fe7e78e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "39ab1370-4e8d-4064-8de8-18dbd31eebe2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gwes" + }, + "CitationForm": { + "seh": "gwesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8a75f1f8-dea3-4c3f-9e35-63b674b1d525", + "Order": 1, + "DeletedAt": null, + "EntryId": "39ab1370-4e8d-4064-8de8-18dbd31eebe2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cause another to drop", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causar outra deixar cair", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "to drop one", + "pt": "deixar cair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05c3984a-e546-4d7e-91a5-c3b7e19dc7fb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "8a75f1f8-dea3-4c3f-9e35-63b674b1d525", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "676eeb8e-02d6-44f1-8c4c-033dbfd95fa0", + "DeletedAt": null, + "LexemeForm": { + "seh": "ha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "371d8c7f-e0eb-41e2-a9b0-ae1e8cf6daa3", + "Order": 1, + "DeletedAt": null, + "EntryId": "676eeb8e-02d6-44f1-8c4c-033dbfd95fa0", + "Definition": {}, + "Gloss": { + "en": "what!", + "pt": "ae\u0301" + }, + "PartOfSpeech": { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cd530a5c-6ae1-4738-8c38-67d148f3c3be", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ha! Ndi tenepa?", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "A final! E\u0301 assim?", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "371d8c7f-e0eb-41e2-a9b0-ae1e8cf6daa3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c916c100-f949-474f-b38b-0eb5ae696e6d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "226d186c-11e5-4971-b2e2-5cff94e1a649", + "Order": 1, + "DeletedAt": null, + "EntryId": "c916c100-f949-474f-b38b-0eb5ae696e6d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "non-first person negative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "negativo na\u0303o primeiro pessoa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NEG", + "pt": "NEG" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "15dddc00-6015-4412-aa3b-644db854c89e", + "DeletedAt": null, + "LexemeForm": { + "seh": "i" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "62af26f3-cd22-4b25-82dc-3dc7cb6ba886", + "Order": 1, + "DeletedAt": null, + "EntryId": "15dddc00-6015-4412-aa3b-644db854c89e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "nominalizer", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "NZR", + "pt": "NZR" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e0de300-01df-4985-aa81-83ad5e128f7c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kutonga, utongi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "to judge, justice", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "julgar, justic\u0327a", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "62af26f3-cd22-4b25-82dc-3dc7cb6ba886", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41eaf8e3-fad8-4957-b901-21870f508091", + "DeletedAt": null, + "LexemeForm": { + "seh": "i" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9800597f-0dab-48f8-93cc-b1a2be904e29", + "Order": 1, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a9da180c-b617-4897-bbc3-9483e3ec9fae", + "Order": 2, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b7dd12e2-4eaa-40a1-a07e-8239b886f77f", + "Order": 3, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ad95bb10-5844-4233-9481-227dc410fc16", + "Order": 4, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86edf77a-16db-4ac5-9c24-a34bd334c712", + "DeletedAt": null, + "LexemeForm": { + "seh": "ici" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d57c0281-f302-402c-bf96-e6897451d953", + "Order": 1, + "DeletedAt": null, + "EntryId": "86edf77a-16db-4ac5-9c24-a34bd334c712", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71558ef9-9ec0-428b-9918-bd352f33e87b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ico" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c1d9fc69-c614-45bf-9812-fa8874b9de27", + "Order": 1, + "DeletedAt": null, + "EntryId": "71558ef9-9ec0-428b-9918-bd352f33e87b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "7", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18244a90-d9a5-406d-ac82-3680812dfa4e", + "DeletedAt": null, + "LexemeForm": { + "seh": "id" + }, + "CitationForm": { + "seh": "ida" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b179aa5a-18b1-43c4-8802-225af8d2473a", + "Order": 1, + "DeletedAt": null, + "EntryId": "18244a90-d9a5-406d-ac82-3680812dfa4e", + "Definition": {}, + "Gloss": { + "en": "hate", + "pt": "odiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "36d8da47-40ba-48d0-b841-e7869c2560a6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "b179aa5a-18b1-43c4-8802-225af8d2473a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba05abc0-9e22-48c4-860c-ae55ec35435d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ife" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0f47bdf1-121d-4e9c-b3ab-e1716b92b0bd", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba05abc0-9e22-48c4-860c-ae55ec35435d", + "Definition": {}, + "Gloss": { + "en": "we", + "pt": "nos" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d94e7e87-0b68-48e3-a7b4-e77691b69396", + "DeletedAt": null, + "LexemeForm": { + "seh": "ikh" + }, + "CitationForm": { + "seh": "ikha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f6c26a1b-587e-41d7-a688-8e9a4e679c31", + "Order": 1, + "DeletedAt": null, + "EntryId": "d94e7e87-0b68-48e3-a7b4-e77691b69396", + "Definition": {}, + "Gloss": { + "en": "put", + "pt": "po\u0302r" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f9386d77-735b-4fa6-adfd-61be4b09f4e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "iko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "073b3c7a-0c55-4573-9b95-c0b9162a564d", + "Order": 1, + "DeletedAt": null, + "EntryId": "f9386d77-735b-4fa6-adfd-61be4b09f4e8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "12, 15, 17", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "077ce6ae-c760-40ab-8ab2-577ffcfa7882", + "DeletedAt": null, + "LexemeForm": { + "seh": "N" + }, + "CitationForm": { + "seh": "im" + }, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "d7e20ee1-b678-4935-8929-483003583810", + "Order": 1, + "DeletedAt": null, + "EntryId": "077ce6ae-c760-40ab-8ab2-577ffcfa7882", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7de2bf36-4c0e-4b69-b523-60f182c15207", + "DeletedAt": null, + "LexemeForm": { + "seh": "N" + }, + "CitationForm": { + "seh": "im" + }, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "09d14f33-ec36-4b5e-aad4-59ab916ba38e", + "Order": 1, + "DeletedAt": null, + "EntryId": "7de2bf36-4c0e-4b69-b523-60f182c15207", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Class 9", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Classe 9", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "9", + "pt": "9" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62d6c043-cda5-45a1-8241-3195e520ac10", + "DeletedAt": null, + "LexemeForm": { + "seh": "imb" + }, + "CitationForm": { + "seh": "imba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbf8b07f-44e9-4847-beee-21ee79a0e073", + "Order": 1, + "DeletedAt": null, + "EntryId": "62d6c043-cda5-45a1-8241-3195e520ac10", + "Definition": {}, + "Gloss": { + "en": "sing", + "pt": "cantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86cd0533-e90b-4346-b4ec-92a60c97631a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cbf8b07f-44e9-4847-beee-21ee79a0e073", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b2e7094b-bb12-4b04-9af0-4b543a1914e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "imba ciruzwi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "e86f33e1-ff72-4335-a704-04954f4ebee1", + "Order": 1, + "DeletedAt": null, + "EntryId": "b2e7094b-bb12-4b04-9af0-4b543a1914e5", + "Definition": {}, + "Gloss": { + "en": "whistle", + "pt": "assobiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c982c11f-c2e8-4ca7-aff6-e76bed67e770", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "e86f33e1-ff72-4335-a704-04954f4ebee1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d9132390-95d3-4bf2-ac0f-81d6ff226c17", + "DeletedAt": null, + "LexemeForm": { + "seh": "bu" + }, + "CitationForm": { + "seh": "imbu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f24bb8e1-419f-4ff0-9020-ad57bec92129", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9132390-95d3-4bf2-ac0f-81d6ff226c17", + "Definition": {}, + "Gloss": { + "en": "mosquito", + "pt": "mosquito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "985b0443-5a12-4944-ae93-f23d9714d64c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "imbu maningi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "muito mosquitos", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f24bb8e1-419f-4ff0-9020-ad57bec92129", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c53c832-8e62-4820-a846-2012e934105d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvi" + }, + "CitationForm": { + "seh": "imbvi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41dc96b0-ec32-4968-adf5-420c21fa5a8b", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c53c832-8e62-4820-a846-2012e934105d", + "Definition": {}, + "Gloss": { + "en": "white hair", + "pt": "cabelo branco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e5658ce5-fe7d-41c9-860f-fe4dd6baa06f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:28; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "41dc96b0-ec32-4968-adf5-420c21fa5a8b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d4e97e2b-026e-41da-bde2-a17fe3c03b03", + "DeletedAt": null, + "LexemeForm": { + "seh": "imo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "92f35c61-b91a-4ca8-ae27-a1ad1b8c1f3d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d4e97e2b-026e-41da-bde2-a17fe3c03b03", + "Definition": { + "en": { + "Spans": [ + { + "Text": "18", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adcd5ecd-6b7d-4a84-aca9-4ca382f68263", + "DeletedAt": null, + "LexemeForm": { + "seh": "psa" + }, + "CitationForm": { + "seh": "impsa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef2dfd9b-673b-4948-8fea-0e44aa5e12a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "adcd5ecd-6b7d-4a84-aca9-4ca382f68263", + "Definition": { + "en": { + "Spans": [ + { + "Text": "species of winged termine", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "termite", + "pt": "termino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dce71075-0648-424b-a3bb-4f41988ae0a2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef2dfd9b-673b-4948-8fea-0e44aa5e12a7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6563329b-c76e-4515-ae43-92220ccea006", + "DeletedAt": null, + "LexemeForm": { + "seh": "imwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "26ff2aae-b682-4dce-8038-492132a320c6", + "Order": 1, + "DeletedAt": null, + "EntryId": "6563329b-c76e-4515-ae43-92220ccea006", + "Definition": {}, + "Gloss": { + "en": "you all", + "pt": "vo\u0301s" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6485b811-120d-486b-bb97-425faa9008d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "inde" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "27c2f84c-3ac2-4d20-ba0b-9779ea7c5252", + "Order": 1, + "DeletedAt": null, + "EntryId": "6485b811-120d-486b-bb97-425faa9008d9", + "Definition": {}, + "Gloss": { + "en": "yes", + "pt": "sim" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e303313-7074-4272-85ca-35c49a6a4ecb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ine" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e7eb3cab-f56e-44d6-ac11-919d0466f26b", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e303313-7074-4272-85ca-35c49a6a4ecb", + "Definition": {}, + "Gloss": { + "en": "I", + "pt": "eu" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7ecbb299-bf35-4795-a5cc-8d38ce8b891c", + "DeletedAt": null, + "LexemeForm": { + "seh": "infa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6895e856-d373-4190-b7ac-8d185a18e4ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "7ecbb299-bf35-4795-a5cc-8d38ce8b891c", + "Definition": {}, + "Gloss": { + "en": "death", + "pt": "morte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6cba72d0-e8f7-493c-950e-c17e52101a14", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "6895e856-d373-4190-b7ac-8d185a18e4ce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77b2397d-19c9-4321-b581-7a4ccfa9fc0e", + "DeletedAt": null, + "LexemeForm": { + "seh": "ip" + }, + "CitationForm": { + "seh": "ipa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "990acf6f-9eb5-4b84-b3c5-ac736813481b", + "Order": 1, + "DeletedAt": null, + "EntryId": "77b2397d-19c9-4321-b581-7a4ccfa9fc0e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bad, doesn\u0027t serve, evil, ugly", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sin", + "pt": "pecar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c6953557-830b-4489-ae72-ee4ce39bf2bf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iye ayipa maningi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Ele e\u0301 feio muito", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "990acf6f-9eb5-4b84-b3c5-ac736813481b", + "DeletedAt": null + } + ] + }, + { + "Id": "9e09f628-2cc0-47f1-a747-f199af978acf", + "Order": 2, + "DeletedAt": null, + "EntryId": "77b2397d-19c9-4321-b581-7a4ccfa9fc0e", + "Definition": {}, + "Gloss": { + "en": "bad thing", + "pt": "coisa mal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2ed4beb1-aaa6-4767-9abb-85003796e5b9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kuipa kwanga nkwanji?", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "mal meu qual", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "9e09f628-2cc0-47f1-a747-f199af978acf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35391ad9-1902-4f0a-8519-43f397ec6b60", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "032fb2d2-9fce-49c4-bd94-5b4b95848319", + "Order": 1, + "DeletedAt": null, + "EntryId": "35391ad9-1902-4f0a-8519-43f397ec6b60", + "Definition": {}, + "Gloss": { + "en": "which?", + "pt": "qual?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec4687ed-d2f5-484f-ad45-6f7c5d922331", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ad740522-fc25-4412-8d7e-5a5daf64d357", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec4687ed-d2f5-484f-ad45-6f7c5d922331", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "83813b13-5827-4990-b692-4c52b7310624", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipir" + }, + "CitationForm": { + "seh": "ipira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c38c6c69-6d59-41a5-b9d4-cc259b30b56a", + "Order": 1, + "DeletedAt": null, + "EntryId": "83813b13-5827-4990-b692-4c52b7310624", + "Definition": {}, + "Gloss": { + "en": "irritate", + "pt": "chatear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f6bbacf-5617-4836-81ac-218e70ae365d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "c38c6c69-6d59-41a5-b9d4-cc259b30b56a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e1b1ed03-96b2-4c1e-bc35-1e325461d139", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipirw" + }, + "CitationForm": { + "seh": "ipirwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3e72de5a-4584-4551-b5e1-b6d8fe9be15e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e1b1ed03-96b2-4c1e-bc35-1e325461d139", + "Definition": {}, + "Gloss": { + "en": "unhappy", + "pt": "infeliz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06c94f13-56b4-4b81-92cd-c1ca369815cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "81672136-0410-4aee-bbfb-1f15dc153591", + "Order": 1, + "DeletedAt": null, + "EntryId": "06c94f13-56b4-4b81-92cd-c1ca369815cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "16", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "44115d4e-5765-4d16-bd26-bda00e9c3eed", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "82abf458-b54c-4b29-b1d9-4a0d86aa898a", + "Order": 1, + "DeletedAt": null, + "EntryId": "44115d4e-5765-4d16-bd26-bda00e9c3eed", + "Definition": {}, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "02fdaa00-2856-4abc-85f8-7ceae651d8d4", + "Order": 2, + "DeletedAt": null, + "EntryId": "44115d4e-5765-4d16-bd26-bda00e9c3eed", + "Definition": {}, + "Gloss": { + "en": "this one", + "pt": "aquele" + }, + "PartOfSpeech": { + "Id": "730528ca-6a9b-4424-9839-a58bf66db779", + "Name": { + "en": "Demonstrative2", + "pt": "Demonstrativo2" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "730528ca-6a9b-4424-9839-a58bf66db779", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ba446f7-f15d-45f7-a351-43fff2b00163", + "DeletedAt": null, + "LexemeForm": { + "seh": "ire" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9c034b2e-b7e3-4804-b76f-bb11375ce405", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ba446f7-f15d-45f7-a351-43fff2b00163", + "Definition": {}, + "Gloss": { + "en": "that one", + "pt": "aquele" + }, + "PartOfSpeech": { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbdd566d-b9e3-43fe-b6ed-f93ff5ff3abf", + "DeletedAt": null, + "LexemeForm": { + "seh": "iw" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "7fdf6163-c035-44ec-a325-8ea9542edf19", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbdd566d-b9e3-43fe-b6ed-f93ff5ff3abf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "passive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "passiva", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PAS", + "pt": "PAS" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a78bb1d7-a86c-40c5-8ad1-8d75b71c4962", + "DeletedAt": null, + "LexemeForm": { + "seh": "iwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "30a1be5f-a148-4a11-8d46-9a580d3e37fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "a78bb1d7-a86c-40c5-8ad1-8d75b71c4962", + "Definition": {}, + "Gloss": { + "en": "you", + "pt": "tu" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "df34b961-5c26-4c3a-b56c-29050997e285", + "DeletedAt": null, + "LexemeForm": { + "seh": "iwo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "211c4895-c3b6-402c-ad0f-b65ab8060c0a", + "Order": 1, + "DeletedAt": null, + "EntryId": "df34b961-5c26-4c3a-b56c-29050997e285", + "Definition": { + "en": { + "Spans": [ + { + "Text": "they, 3P, 2, 3, 6, 14", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "eles", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e4ae08a-2672-4df2-9e2d-980be367e893", + "DeletedAt": null, + "LexemeForm": { + "seh": "iye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5f185bf1-c60e-48b2-96ce-ed04187d814b", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e4ae08a-2672-4df2-9e2d-980be367e893", + "Definition": { + "en": { + "Spans": [ + { + "Text": "he, it, him", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ele", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "he", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "efef73f3-4da2-4446-a807-6e18819f2fe6", + "DeletedAt": null, + "LexemeForm": { + "seh": "iyi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cedea80b-ea9d-446e-aa04-d0385c642139", + "Order": 1, + "DeletedAt": null, + "EntryId": "efef73f3-4da2-4446-a807-6e18819f2fe6", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "12713d09-49d7-4250-8efb-63dab36af447", + "DeletedAt": null, + "LexemeForm": { + "seh": "iyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cf6952f4-708f-44e4-a2f5-097633417224", + "Order": 1, + "DeletedAt": null, + "EntryId": "12713d09-49d7-4250-8efb-63dab36af447", + "Definition": { + "en": { + "Spans": [ + { + "Text": "4, 5, 9", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29618029-4618-4cdb-b22d-7dcfb757bc59", + "DeletedAt": null, + "LexemeForm": { + "seh": "izi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "36c915b8-6034-4585-bedb-d4f97a86d10e", + "Order": 1, + "DeletedAt": null, + "EntryId": "29618029-4618-4cdb-b22d-7dcfb757bc59", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a164c211-9e6d-4824-b5f1-76f0d0abd62d", + "DeletedAt": null, + "LexemeForm": { + "seh": "izo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d5737080-4c72-405a-be28-33ba90e4d8ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "a164c211-9e6d-4824-b5f1-76f0d0abd62d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "10", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3324b556-5483-4f44-8c64-1a11c575cdce", + "DeletedAt": null, + "LexemeForm": { + "seh": "Jorge" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f4c4f4d2-f942-4bf2-a71a-a7842e62662e", + "Order": 1, + "DeletedAt": null, + "EntryId": "3324b556-5483-4f44-8c64-1a11c575cdce", + "Definition": {}, + "Gloss": { + "en": "George", + "pt": "Jorge" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "Proper name added so the parse can handle it", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f8f88b9-5410-45c6-9e2c-f7144ee34041", + "DeletedAt": null, + "LexemeForm": { + "seh": "ka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "f112791e-e80f-4ddb-9874-cc80d19fddb2", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f8f88b9-5410-45c6-9e2c-f7144ee34041", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "abd8f356-c815-431a-ba70-217d61cda17a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1fc65011-9f5b-4aef-a34b-acd5799ee501", + "Order": 1, + "DeletedAt": null, + "EntryId": "abd8f356-c815-431a-ba70-217d61cda17a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "purpose inifintive, in.order.to", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "para", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "65b1dd23-3788-4968-860b-b29c8439c601", + "Order": 2, + "DeletedAt": null, + "EntryId": "abd8f356-c815-431a-ba70-217d61cda17a", + "Definition": {}, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "439845c9-6baf-47fd-9103-4765365279bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "908d1ba5-dd47-4009-854e-4cc834f59559", + "Order": 2, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f83e6701-d207-4261-a0ce-5de4c94449ee", + "Order": 3, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b2521441-a2c1-41ba-af12-5b5ce51208b7", + "Order": 4, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "8f9dbfe6-b955-4a56-9319-7315c1c03b14", + "Order": 5, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bd6fc43-b491-4fcf-9f4e-dd748187e17c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kabudula" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b844486-8001-4dec-bc3f-1836662621ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bd6fc43-b491-4fcf-9f4e-dd748187e17c", + "Definition": {}, + "Gloss": { + "en": "pants", + "pt": "calc\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "49c60aa9-b119-41ab-a7f6-07a8f70e2ae1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth, Nyazeze George", + "Ws": "en" + } + ] + }, + "SenseId": "0b844486-8001-4dec-bc3f-1836662621ea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "329d1eae-07f8-44bd-bb9e-3b4d231235bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaciti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09f516ad-9d5a-442e-92a3-c4095e3e343c", + "Order": 1, + "DeletedAt": null, + "EntryId": "329d1eae-07f8-44bd-bb9e-3b4d231235bb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "round seat w/ 3 legs of the herbal doctor which the spirit sits on (or the herbal doctor or sick one in its stead)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "seat", + "pt": "asento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "bc5b4896-b65c-489f-90f1-1cd020eb4d92", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "09f516ad-9d5a-442e-92a3-c4095e3e343c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d59272b3-45dc-40d6-990b-224ec777ac1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kadera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "319aff20-994b-4b4d-b28c-15238443f956", + "Order": 1, + "DeletedAt": null, + "EntryId": "d59272b3-45dc-40d6-990b-224ec777ac1e", + "Definition": {}, + "Gloss": { + "en": "chair", + "pt": "cadeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8f97661-5ea1-4c18-803f-10e9f38a6f64", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "319aff20-994b-4b4d-b28c-15238443f956", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2c214461-c5d7-482b-a6c7-d18e4e899dea", + "DeletedAt": null, + "LexemeForm": { + "seh": "kadzako" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "edc77eed-15d6-45df-90ce-4d484442249f", + "Order": 1, + "DeletedAt": null, + "EntryId": "2c214461-c5d7-482b-a6c7-d18e4e899dea", + "Definition": {}, + "Gloss": { + "en": "coat", + "pt": "casaco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "650abe83-c5c8-441c-9ef1-3837ed46f6d7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "edc77eed-15d6-45df-90ce-4d484442249f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1d18bbd-8d45-4db5-b57f-cb7165afd721", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaidi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3ec38f1b-6eef-427f-8ff3-b8c2954de6a6", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1d18bbd-8d45-4db5-b57f-cb7165afd721", + "Definition": {}, + "Gloss": { + "en": "prison", + "pt": "prisa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "54ba6106-eee3-463f-880d-8b8953a545cf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3ec38f1b-6eef-427f-8ff3-b8c2954de6a6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f1016cd-1727-4dca-b053-c02d3720cf58", + "DeletedAt": null, + "LexemeForm": { + "seh": "kak" + }, + "CitationForm": { + "seh": "kaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4ffd0f96-ebcb-41b4-b896-e97d3dceb36a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f1016cd-1727-4dca-b053-c02d3720cf58", + "Definition": { + "en": { + "Spans": [ + { + "Text": "put skin on a drum", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ponhar pele no batuk", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "drum skinning", + "pt": "ponhar pele" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96cfb952-99b5-4602-8c16-3f8b620c4ecf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4ffd0f96-ebcb-41b4-b896-e97d3dceb36a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "940ae3b9-85bb-4be0-8632-987dc467eb9f", + "DeletedAt": null, + "LexemeForm": { + "seh": "kakamir" + }, + "CitationForm": { + "seh": "kakamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2826ed49-b83a-4b50-9c8a-05197cc50420", + "Order": 1, + "DeletedAt": null, + "EntryId": "940ae3b9-85bb-4be0-8632-987dc467eb9f", + "Definition": {}, + "Gloss": { + "en": "insist", + "pt": "insistir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e18cd0a-bfd7-47d6-8162-c290c60035aa", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2826ed49-b83a-4b50-9c8a-05197cc50420", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7a918310-c086-441a-882f-04f9d8c77388", + "DeletedAt": null, + "LexemeForm": { + "seh": "kakamwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f9d28c7e-718b-4694-8d27-d1b8060ae4e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "7a918310-c086-441a-882f-04f9d8c77388", + "Definition": {}, + "Gloss": { + "en": "really", + "pt": "perfeitamente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6781f7d1-4438-4e66-8a78-66ba55713390", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f9d28c7e-718b-4694-8d27-d1b8060ae4e0", + "DeletedAt": null + } + ] + }, + { + "Id": "fb259a5a-3ee7-4a7c-b197-59c492d89384", + "Order": 2, + "DeletedAt": null, + "EntryId": "7a918310-c086-441a-882f-04f9d8c77388", + "Definition": {}, + "Gloss": { + "en": "perfect", + "pt": "mesmo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "429fb479-0fc8-4c03-a647-2116dd9b5d00", + "DeletedAt": null, + "LexemeForm": { + "seh": "kugawika" + }, + "CitationForm": { + "seh": "kakugawika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cd8ecd88-36e9-4e60-95ac-545ca3716063", + "Order": 1, + "DeletedAt": null, + "EntryId": "429fb479-0fc8-4c03-a647-2116dd9b5d00", + "Definition": { + "en": { + "Spans": [ + { + "Text": "very small part", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "particle", + "pt": "parti\u0301cula" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5058c6a7-5c99-4d60-824d-1598edc22bae", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cd8ecd88-36e9-4e60-95ac-545ca3716063", + "DeletedAt": null + } + ] + }, + { + "Id": "7fca8e82-3e78-4cb6-88fd-6f4e15177efb", + "Order": 2, + "DeletedAt": null, + "EntryId": "429fb479-0fc8-4c03-a647-2116dd9b5d00", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small divisions", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "coisa dividida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "division", + "pt": "divisa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c45f33ae-cd4e-4ea1-9aff-527f9e951d0e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kale" + }, + "CitationForm": { + "seh": "kale" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "90b31605-76db-4597-baa8-45ec4fda706d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c45f33ae-cd4e-4ea1-9aff-527f9e951d0e", + "Definition": {}, + "Gloss": { + "en": "long time", + "pt": "muito tempo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8aa65921-1cb6-4f21-bf10-66049c1e6a8e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndafika kale", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "I arrived long ago.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Chegei ha\u0301 muito tempo.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "90b31605-76db-4597-baa8-45ec4fda706d", + "DeletedAt": null + }, + { + "Id": "b33e242f-edc1-413f-b915-c89a3bd8f6de", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kale cino", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "long ago", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ha\u0301 muito tempo", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "90b31605-76db-4597-baa8-45ec4fda706d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c4c2dc23-9b9b-48da-b05a-ffaaa00c1206", + "DeletedAt": null, + "LexemeForm": { + "seh": "kale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d6e01571-4afc-4a63-93d6-d252408e2eeb", + "Order": 1, + "DeletedAt": null, + "EntryId": "c4c2dc23-9b9b-48da-b05a-ffaaa00c1206", + "Definition": {}, + "Gloss": { + "en": "old", + "pt": "antigo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62193672-2706-4fd0-b8d1-80be39541069", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d6e01571-4afc-4a63-93d6-d252408e2eeb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad493a2f-f091-41cf-8cfc-ef226e329d85", + "DeletedAt": null, + "LexemeForm": { + "seh": "kalene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4e52fc2c-f04f-4397-bf00-9145be555027", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad493a2f-f091-41cf-8cfc-ef226e329d85", + "Definition": {}, + "Gloss": { + "en": "long ago", + "pt": "muito tempo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1e00691b-0be1-454b-9c95-589bf6e5b1f6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "4e52fc2c-f04f-4397-bf00-9145be555027", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30ffd501-7b51-40c4-96ca-2d3bb2c4465a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "18350c76-4bb9-4557-94e5-001eeca8c77a", + "Order": 1, + "DeletedAt": null, + "EntryId": "30ffd501-7b51-40c4-96ca-2d3bb2c4465a", + "Definition": {}, + "Gloss": { + "en": "long ago", + "pt": "antigo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f97b5011-30b3-467c-b883-dea37bd61631", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "anthu a kali", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "people of long ago, ancestors", + "Ws": "seh" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pessoas atigas, antepassados", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "18350c76-4bb9-4557-94e5-001eeca8c77a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a082d087-1955-4ecd-b823-c0639cbd1b2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4a8349d7-374b-4a3f-a008-2a8d036a6c72", + "Order": 1, + "DeletedAt": null, + "EntryId": "a082d087-1955-4ecd-b823-c0639cbd1b2e", + "Definition": {}, + "Gloss": { + "en": "tortoise", + "pt": "ca\u0301gado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b2e8958-a477-475a-beb7-59f0c154952b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4a8349d7-374b-4a3f-a008-2a8d036a6c72", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f2f5115-5cb0-4112-9c58-dd4b5861b3e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "kambalame" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab06a13e-8c8a-4c08-ace1-1dbe151d6a1f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f2f5115-5cb0-4112-9c58-dd4b5861b3e5", + "Definition": {}, + "Gloss": { + "en": "small bird", + "pt": "passarinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "561e883d-9e89-4b36-a2c0-b0837e5f54c3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ab06a13e-8c8a-4c08-ace1-1dbe151d6a1f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "708ff551-9116-458a-b6a9-ea8eab0beff0", + "DeletedAt": null, + "LexemeForm": { + "seh": "kambaz" + }, + "CitationForm": { + "seh": "kambaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d5eaedae-e470-4785-9b74-f67507701cd0", + "Order": 1, + "DeletedAt": null, + "EntryId": "708ff551-9116-458a-b6a9-ea8eab0beff0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "crawl, for a person", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "gatinhar, pessoa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "crawl", + "pt": "gatinhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "a2bbf179-8d38-4d2e-84cd-0e00bb6c74f3", + "Name": { + "en": "Crawl" + }, + "Code": "7.2.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2393616-7b1b-4b5b-a9b3-e581c0c0aab0", + "DeletedAt": null, + "LexemeForm": { + "seh": "kambuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c5a05a9b-8a7b-4b30-90b3-a22a0ede868c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2393616-7b1b-4b5b-a9b3-e581c0c0aab0", + "Definition": {}, + "Gloss": { + "en": "small kid", + "pt": "cabritinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f60915b-e5ac-498c-bc2c-d7b46f680bd7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c5a05a9b-8a7b-4b30-90b3-a22a0ede868c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "acbf736f-ea4c-40f4-b174-b5efa5b022d8", + "DeletedAt": null, + "LexemeForm": { + "seh": "kameru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "80130c84-3eb0-4670-b896-4cf854eb6103", + "Order": 1, + "DeletedAt": null, + "EntryId": "acbf736f-ea4c-40f4-b174-b5efa5b022d8", + "Definition": {}, + "Gloss": { + "en": "camel", + "pt": "camelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "e545baab-581d-4af8-81f2-5a884e272349", + "Name": { + "en": "Beast of burden" + }, + "Code": "6.3.1.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "56ce2232-4d60-4688-9048-d95e13898b50", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "80130c84-3eb0-4670-b896-4cf854eb6103", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa1e31cf-97aa-4fb0-b2ef-b55fb783de92", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamidza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "318d5b28-51b2-4924-88a0-044bbbf75cf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa1e31cf-97aa-4fb0-b2ef-b55fb783de92", + "Definition": {}, + "Gloss": { + "en": "shirt", + "pt": "camisa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5fd5fcf4-d9ac-456e-9bda-be311249ceb9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "318d5b28-51b2-4924-88a0-044bbbf75cf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a1d6328-c250-436b-9fa0-ff3d8a4f85fc", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamul" + }, + "CitationForm": { + "seh": "kamula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24907a9a-fa88-435d-bdd1-2a61fc122e4a", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a1d6328-c250-436b-9fa0-ff3d8a4f85fc", + "Definition": {}, + "Gloss": { + "en": "squeeze", + "pt": "espremer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b0d33b6d-0a9e-4106-9259-d28014e5e098", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "24907a9a-fa88-435d-bdd1-2a61fc122e4a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "052cdbd0-ee5c-4750-8bda-ba86be19659b", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamunthu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b80af28-d70b-41fa-b3e4-5a0e1431a220", + "Order": 1, + "DeletedAt": null, + "EntryId": "052cdbd0-ee5c-4750-8bda-ba86be19659b", + "Definition": {}, + "Gloss": { + "en": "small man", + "pt": "homenzinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "91848310-c982-4e1b-9e4b-1cf03edc9c1d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5b80af28-d70b-41fa-b3e4-5a0e1431a220", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f17a39c-63af-4142-a668-b2b7f7b04be7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamuti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "604ebd63-fd39-460e-a0ca-93d6d9443e41", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f17a39c-63af-4142-a668-b2b7f7b04be7", + "Definition": {}, + "Gloss": { + "en": "small tree", + "pt": "a\u0301rvore pequena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f748289-34c9-4cfe-a2f8-87c853de6f4c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George", + "Ws": "en" + } + ] + }, + "SenseId": "604ebd63-fd39-460e-a0ca-93d6d9443e41", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7a4585b7-b6f9-4be1-9c25-c3ba8fd04f85", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamwana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "511eb02f-a823-4d38-aeb7-5a35da034431", + "Order": 1, + "DeletedAt": null, + "EntryId": "7a4585b7-b6f9-4be1-9c25-c3ba8fd04f85", + "Definition": {}, + "Gloss": { + "en": "small child", + "pt": "criancinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "53e99ecb-d4bd-493f-9250-4c935030bfa1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George", + "Ws": "en" + } + ] + }, + "SenseId": "511eb02f-a823-4d38-aeb7-5a35da034431", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08c1e501-49e8-4f00-9b2c-15dccf56d807", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamwanambwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7edf14c7-8c33-4222-8eea-e99b6e727de2", + "Order": 1, + "DeletedAt": null, + "EntryId": "08c1e501-49e8-4f00-9b2c-15dccf56d807", + "Definition": {}, + "Gloss": { + "en": "little dog", + "pt": "ca\u0303ozinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5fd7077-b10c-4ebe-8b75-2f31def21782", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "7edf14c7-8c33-4222-8eea-e99b6e727de2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "416cf9e4-98d6-4296-8c42-2e943ea01de7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kang\u0027ombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9134f0c8-c69f-49d4-af7d-86d170ffff68", + "Order": 1, + "DeletedAt": null, + "EntryId": "416cf9e4-98d6-4296-8c42-2e943ea01de7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small cow or bull", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "small cow", + "pt": "boizinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ea3cb7b6-d61e-4850-b96d-cb9f1222c250", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George", + "Ws": "en" + } + ] + }, + "SenseId": "9134f0c8-c69f-49d4-af7d-86d170ffff68", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "066cbf82-7cd9-4cf8-a4c7-c62a84da72ea", + "DeletedAt": null, + "LexemeForm": { + "seh": "kanwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", + "Order": 1, + "DeletedAt": null, + "EntryId": "066cbf82-7cd9-4cf8-a4c7-c62a84da72ea", + "Definition": {}, + "Gloss": { + "en": "mouth inside", + "pt": "boca interior" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a6aa1b86-bdda-408c-b658-632a40a283c8", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mpaka nyama ifikire pa n\u0027kanwa mwace (Sulo 023)", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "until meat arrives in mouth his", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ate\u0301 a carne chega na boca d\u0027ele", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", + "DeletedAt": null + }, + { + "Id": "fad40892-bf12-4a19-ac0e-d7414e306dfd", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khanwa mbee na kubira", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "always crying", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "lit.\u0022boca aberta por chorar\u0022 id.\u0022sempre chora\u0022", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "10863cb5-f113-4a37-beaa-a6bf5430f27b", + "DeletedAt": null, + "LexemeForm": { + "seh": "kanyumba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01efa877-a8ff-43d5-9912-51eb18a83af9", + "Order": 1, + "DeletedAt": null, + "EntryId": "10863cb5-f113-4a37-beaa-a6bf5430f27b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small house or room", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "casa ou quarto pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "small house", + "pt": "casa pequena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61ea84eb-3664-4921-822b-2da8cbf1905e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "01efa877-a8ff-43d5-9912-51eb18a83af9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "24d12f3f-4f16-40c4-b331-c2b59c68e9dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "karu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bd3e2a9-e928-42b1-843f-6cde97a3ffa8", + "Order": 1, + "DeletedAt": null, + "EntryId": "24d12f3f-4f16-40c4-b331-c2b59c68e9dd", + "Definition": {}, + "Gloss": { + "en": "car", + "pt": "carro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac0435bc-825b-48da-bdc6-a61f1bc27008", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4bd3e2a9-e928-42b1-843f-6cde97a3ffa8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1412748b-d8af-435a-a081-32089eb6d5d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "kati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6b4af1f4-5c2f-400e-bb9f-1c0ab4e75492", + "Order": 1, + "DeletedAt": null, + "EntryId": "1412748b-d8af-435a-a081-32089eb6d5d1", + "Definition": {}, + "Gloss": { + "en": "middle", + "pt": "meio" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cea7d804-408e-4089-b79b-67b342367076", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6b4af1f4-5c2f-400e-bb9f-1c0ab4e75492", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "5a2876f4-1da0-416d-87f7-b056005b7f9b", + "MaybeId": "5a2876f4-1da0-416d-87f7-b056005b7f9b", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "1412748b-d8af-435a-a081-32089eb6d5d1", + "ComponentSenseId": null, + "ComponentHeadword": "kati" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kati-na-kati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d958b91d-fdcf-40a9-960e-8d4374fbaabc", + "Order": 1, + "DeletedAt": null, + "EntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "Definition": {}, + "Gloss": { + "en": "very middle", + "pt": "mesmo meio" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "5a2876f4-1da0-416d-87f7-b056005b7f9b", + "MaybeId": "5a2876f4-1da0-416d-87f7-b056005b7f9b", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "1412748b-d8af-435a-a081-32089eb6d5d1", + "ComponentSenseId": null, + "ComponentHeadword": "kati" + }, + { + "Id": "74b0cee0-db54-4703-8a36-19fe3c041154", + "MaybeId": "74b0cee0-db54-4703-8a36-19fe3c041154", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c33a461f-8090-4473-a3cb-08bf012d9cd7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kauta" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b44df76-bd2d-44b9-b086-0f1426f1a38f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c33a461f-8090-4473-a3cb-08bf012d9cd7", + "Definition": {}, + "Gloss": { + "en": "little bow", + "pt": "arco pequeno" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a572e9fd-37be-4aad-b67e-bf944aaaa175", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "6b44df76-bd2d-44b9-b086-0f1426f1a38f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ada19ec5-676a-4af9-baab-a0db08efa479", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaxa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "80680b95-8ea8-4951-937e-0d3f5ef81de4", + "Order": 1, + "DeletedAt": null, + "EntryId": "ada19ec5-676a-4af9-baab-a0db08efa479", + "Definition": {}, + "Gloss": { + "en": "box", + "pt": "caixa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b16dcb42-d93b-413d-b595-59caafb220a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazari" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72a474a7-7a03-42a1-9a9c-9add30627592", + "Order": 1, + "DeletedAt": null, + "EntryId": "b16dcb42-d93b-413d-b595-59caafb220a5", + "Definition": {}, + "Gloss": { + "en": "marry", + "pt": "casar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1767583-d892-47c9-b3bf-6ca79d12296a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "72a474a7-7a03-42a1-9a9c-9add30627592", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21d201da-c91b-4b10-a004-85e69e6864ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "94f4937a-3404-4d37-8cd8-027547d1b381", + "Order": 1, + "DeletedAt": null, + "EntryId": "21d201da-c91b-4b10-a004-85e69e6864ab", + "Definition": {}, + "Gloss": { + "en": "feminine", + "pt": "feminina" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2ba16f4-50bd-4594-8c74-73ab0f07141a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "paka ikazi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "gato female", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "gato feminia", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "94f4937a-3404-4d37-8cd8-027547d1b381", + "DeletedAt": null + }, + { + "Id": "346dfe93-3433-43f5-af8e-db149eae8833", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mwana nkazi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "daughter", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "filha", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "94f4937a-3404-4d37-8cd8-027547d1b381", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7b5df550-a3ac-4719-bf89-c358a67a0bdf", + "DeletedAt": null, + "LexemeForm": { + "seh": "kha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "322825e9-dac9-46f5-afb5-f8b766b23c16", + "Order": 1, + "DeletedAt": null, + "EntryId": "7b5df550-a3ac-4719-bf89-c358a67a0bdf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "imperfect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "imperfeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "IMP", + "pt": "IMP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "70ee8eb4-fc68-4a09-8074-9b51c70d3c3c", + "Order": 2, + "DeletedAt": null, + "EntryId": "7b5df550-a3ac-4719-bf89-c358a67a0bdf", + "Definition": {}, + "Gloss": { + "en": "IMP", + "pt": "IMP" + }, + "PartOfSpeech": { + "Id": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "Name": { + "en": "Irregular Verb - li" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c2ecd396-b01a-4627-bf6a-fccddce51b20", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaindi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "31ffccc7-f41d-4d9c-b82c-dedb94113c20", + "Order": 1, + "DeletedAt": null, + "EntryId": "c2ecd396-b01a-4627-bf6a-fccddce51b20", + "Definition": {}, + "Gloss": { + "en": "type", + "pt": "tipo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ecbd775-4ccc-46a9-937a-5b83be150b93", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "31ffccc7-f41d-4d9c-b82c-dedb94113c20", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c078a8ef-ebe9-4ef8-8086-17daeb33539a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9ba6dc47-1937-4a0c-bbf4-43464a8ce714", + "Order": 1, + "DeletedAt": null, + "EntryId": "c078a8ef-ebe9-4ef8-8086-17daeb33539a", + "Definition": {}, + "Gloss": { + "en": "cucumber", + "pt": "pepino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e3d610d-628a-4912-a386-1401c7e67c85", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Orth; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "9ba6dc47-1937-4a0c-bbf4-43464a8ce714", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "DeletedAt": null, + "LexemeForm": { + "seh": "khal" + }, + "CitationForm": { + "seh": "khala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4d37c94f-4809-4c0f-8082-1af196273387", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ser, estar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "be", + "pt": "ser" + }, + "PartOfSpeech": { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc904ff9-38c5-4388-ab09-e8e872ae9637", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "4d37c94f-4809-4c0f-8082-1af196273387", + "DeletedAt": null + } + ] + }, + { + "Id": "43505c77-2177-4fd9-b646-01366fc6d214", + "Order": 2, + "DeletedAt": null, + "EntryId": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "Definition": {}, + "Gloss": { + "en": "to sit", + "pt": "sentar" + }, + "PartOfSpeech": { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "373e19da-a2fe-4b25-ac07-22dae481675a", + "Order": 3, + "DeletedAt": null, + "EntryId": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "Definition": {}, + "Gloss": { + "en": "to live", + "pt": "morar" + }, + "PartOfSpeech": { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fabd39a6-0394-4907-9aff-d0e070169dc3", + "DeletedAt": null, + "LexemeForm": { + "seh": "khalir" + }, + "CitationForm": { + "seh": "khalira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce47cec8-8bfd-45ae-9f97-20dcf5d03892", + "Order": 1, + "DeletedAt": null, + "EntryId": "fabd39a6-0394-4907-9aff-d0e070169dc3", + "Definition": {}, + "Gloss": { + "en": "wait for", + "pt": "esperar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "78e2d320-7761-4dfa-8d5d-2d86c313ac65", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "ce47cec8-8bfd-45ae-9f97-20dcf5d03892", + "DeletedAt": null + } + ] + }, + { + "Id": "eee643f8-98a4-499d-9d23-4cc23bab31ef", + "Order": 2, + "DeletedAt": null, + "EntryId": "fabd39a6-0394-4907-9aff-d0e070169dc3", + "Definition": {}, + "Gloss": { + "en": "sit on", + "pt": "sentar em cima" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32e3d336-606a-4c86-a365-7c80027416ca", + "DeletedAt": null, + "LexemeForm": { + "seh": "khanda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0d2f5079-6737-4fde-97cb-006da839a693", + "Order": 1, + "DeletedAt": null, + "EntryId": "32e3d336-606a-4c86-a365-7c80027416ca", + "Definition": { + "en": { + "Spans": [ + { + "Text": "skin (general)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "skin", + "pt": "pele" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "df2b9d7a-9b90-4704-8bc3-11dcffe985f4", + "Name": { + "en": "Skin" + }, + "Code": "2.1.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a7f8fd55-10bd-400b-afcc-ed0c6c12788e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Orth; Wordlist; George", + "Ws": "en" + } + ] + }, + "SenseId": "0d2f5079-6737-4fde-97cb-006da839a693", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03d441d7-e915-46d5-87f6-87f5567d41c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "khangala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c1ff827-abd7-4cb3-803d-3c11dba1ff5c", + "Order": 1, + "DeletedAt": null, + "EntryId": "03d441d7-e915-46d5-87f6-87f5567d41c2", + "Definition": {}, + "Gloss": { + "en": "stretcher", + "pt": "maca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e842bd31-e26e-4da3-bf31-0e337740c94f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0c1ff827-abd7-4cb3-803d-3c11dba1ff5c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "82958554-f665-4e0d-b47b-b977b41f9400", + "DeletedAt": null, + "LexemeForm": { + "seh": "kharakaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f7c942cb-bbf4-444c-a244-ce6ac9bd36fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "82958554-f665-4e0d-b47b-b977b41f9400", + "Definition": { + "en": { + "Spans": [ + { + "Text": "all of the Family Mustelidae except otter, genete and civet", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "polecat", + "pt": "doninha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "56ef3f06-7fb9-462e-a7d0-517f3ce1623f", + "Name": { + "en": "Carnivore" + }, + "Code": "1.6.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3e3cdd72-5fe3-40f6-ae85-3bb20529fe24", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f7c942cb-bbf4-444c-a244-ce6ac9bd36fa", + "DeletedAt": null + } + ] + }, + { + "Id": "827e2351-ff14-4430-89e4-8a02747e0f94", + "Order": 2, + "DeletedAt": null, + "EntryId": "82958554-f665-4e0d-b47b-b977b41f9400", + "Definition": {}, + "Gloss": { + "en": "mongoose", + "pt": "mangusto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "7b4ed3bb-aea1-4906-8bab-37c602f04a6a", + "Order": 3, + "DeletedAt": null, + "EntryId": "82958554-f665-4e0d-b47b-b977b41f9400", + "Definition": {}, + "Gloss": { + "en": "badger", + "pt": "texugo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "67bad6ec-3326-4bea-9f8e-1d27ae548949", + "DeletedAt": null, + "LexemeForm": { + "seh": "khazik" + }, + "CitationForm": { + "seh": "khazika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f363c0f1-ede7-44f0-bd1b-75ba816911aa", + "Order": 1, + "DeletedAt": null, + "EntryId": "67bad6ec-3326-4bea-9f8e-1d27ae548949", + "Definition": {}, + "Gloss": { + "en": "let sit", + "pt": "deixar sentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b026b31e-e15c-46c1-a64d-fa7b2ba3d4bf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f363c0f1-ede7-44f0-bd1b-75ba816911aa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5cb3ce5-cbf9-4c51-8d1f-5964ce10a703", + "DeletedAt": null, + "LexemeForm": { + "seh": "khobok" + }, + "CitationForm": { + "seh": "khoboka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5cb3ce5-cbf9-4c51-8d1f-5964ce10a703", + "Definition": { + "en": { + "Spans": [ + { + "Text": "break by hand", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "quebrar a ma\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "break", + "pt": "quebrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b5b2f49-3158-4a05-a2d0-2c8d33f49478", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", + "DeletedAt": null + }, + { + "Id": "139743f6-1f4b-4a9f-b268-caad4d133d1b", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "wa kukhoboka ntima", + "Ws": "en" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "tolerant", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tolerante", + "Ws": "en" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "43553bc2-73ef-426a-b149-4c1333bff68f", + "DeletedAt": null, + "LexemeForm": { + "seh": "khobwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6e63fbb8-5f43-44f0-b0b5-a27f49457178", + "Order": 1, + "DeletedAt": null, + "EntryId": "43553bc2-73ef-426a-b149-4c1333bff68f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large basket made of bamboo for carrying food", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "um cesto grande feito para transportar comida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "basket large", + "pt": "cesta grande" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b6cab3da-e2b1-4691-9758-72fdd6c10e55", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6e63fbb8-5f43-44f0-b0b5-a27f49457178", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "43034558-9135-4a67-a1c5-b02d1ea08e56", + "DeletedAt": null, + "LexemeForm": { + "seh": "khoko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6aa73def-278e-4751-b031-c9878ad3b838", + "Order": 1, + "DeletedAt": null, + "EntryId": "43034558-9135-4a67-a1c5-b02d1ea08e56", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tree bark", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "casca de a\u0301rvore", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bark", + "pt": "casca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "caba7528-3d3a-4f70-8f89-1f34c895afac", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6aa73def-278e-4751-b031-c9878ad3b838", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "958a4232-c675-4eee-bba4-4c23490e0858", + "DeletedAt": null, + "LexemeForm": { + "seh": "kole" + }, + "CitationForm": { + "seh": "khole" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35b11b7d-8b22-4ad9-945b-a537452d3a36", + "Order": 1, + "DeletedAt": null, + "EntryId": "958a4232-c675-4eee-bba4-4c23490e0858", + "Definition": {}, + "Gloss": { + "en": "cloud", + "pt": "nuvem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "10348a7d-b7a3-49f5-9985-c86a4a8e9366", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "35b11b7d-8b22-4ad9-945b-a537452d3a36", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a5f1aac-c356-46f5-a5dc-eb73b7ba43ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50240252-ca03-40bb-8d69-7d6762997929", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a5f1aac-c356-46f5-a5dc-eb73b7ba43ae", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large hen", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "galinha, grande feminina", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hen", + "pt": "galinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fc9dfdc9-dc5c-4361-9155-416edd2da846", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "50240252-ca03-40bb-8d69-7d6762997929", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9095fe93-2207-4433-92cc-0ae1c22b55d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f44c1e36-2638-443b-83b1-6eb767cc8f54", + "Order": 1, + "DeletedAt": null, + "EntryId": "9095fe93-2207-4433-92cc-0ae1c22b55d7", + "Definition": {}, + "Gloss": { + "en": "generation", + "pt": "gerac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "371cf322-2dad-4b29-b616-b63d0bd2e616", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholokolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "06e54dd2-932a-4bd0-a72f-f33bf6285750", + "Order": 1, + "DeletedAt": null, + "EntryId": "371cf322-2dad-4b29-b616-b63d0bd2e616", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lower back, especially of animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "costa, parte em baixo, especialmente de animal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "lower back", + "pt": "costa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "31060bb0-f765-4e93-b82b-39d3c4ab703b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "06e54dd2-932a-4bd0-a72f-f33bf6285750", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31accc5a-c802-4cd5-a97f-0d5dd5435a1d", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholongo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98dafe91-7baa-41bf-9cb3-cd20fff87679", + "Order": 1, + "DeletedAt": null, + "EntryId": "31accc5a-c802-4cd5-a97f-0d5dd5435a1d", + "Definition": {}, + "Gloss": { + "en": "throat", + "pt": "garganta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ae0280e-31e1-4444-910c-f42386248d64", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "98dafe91-7baa-41bf-9cb3-cd20fff87679", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5a930f1-211d-41fd-b65d-0f0b3405e1c5", + "DeletedAt": null, + "LexemeForm": { + "seh": "khomer" + }, + "CitationForm": { + "seh": "khomera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9dae3ae5-d349-4929-8fd0-d900777cdcde", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5a930f1-211d-41fd-b65d-0f0b3405e1c5", + "Definition": {}, + "Gloss": { + "en": "preach", + "pt": "pregar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2f7374c2-eaea-437b-8718-c24d95d83fa8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9dae3ae5-d349-4929-8fd0-d900777cdcde", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eaa9be44-bf1b-41f2-a407-6da70326a544", + "DeletedAt": null, + "LexemeForm": { + "seh": "khomole" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f7551d4a-a6a8-431b-82ae-cc87738cf29d", + "Order": 1, + "DeletedAt": null, + "EntryId": "eaa9be44-bf1b-41f2-a407-6da70326a544", + "Definition": {}, + "Gloss": { + "en": "cliff", + "pt": "precipi\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5de81c59-db4b-47af-917f-58436e859311", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f7551d4a-a6a8-431b-82ae-cc87738cf29d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "310718ab-8b11-40e0-b7bf-5e8548c03831", + "DeletedAt": null, + "LexemeForm": { + "seh": "khond" + }, + "CitationForm": { + "seh": "khonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "269f11ac-1cb3-4d45-885f-2b321b95e190", + "Order": 1, + "DeletedAt": null, + "EntryId": "310718ab-8b11-40e0-b7bf-5e8548c03831", + "Definition": {}, + "Gloss": { + "en": "refuse", + "pt": "recusar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b7739286-2199-4496-9f45-f0cf58260ab0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khonda nkazi", + "Ws": "en" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "divorce wife", + "Ws": "en" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "269f11ac-1cb3-4d45-885f-2b321b95e190", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "36c63646-7e40-4355-b322-6b450ce6607a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khoni" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f2cbdf3f-b54d-4bdb-9dc7-b5b9a5e55722", + "Order": 1, + "DeletedAt": null, + "EntryId": "36c63646-7e40-4355-b322-6b450ce6607a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "time between June and August", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "winter", + "pt": "inverno" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "527cafb9-837b-4f8b-91d5-72d369295f9f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f2cbdf3f-b54d-4bdb-9dc7-b5b9a5e55722", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "220d10d5-3dab-47fb-8623-4ca86601d9e6", + "DeletedAt": null, + "LexemeForm": { + "seh": "khono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bec2e73-a2fa-4be6-976f-ba6ff9f7acc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "220d10d5-3dab-47fb-8623-4ca86601d9e6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "from tip of outstreached arm to center of chest, about 1 meter", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "um metro, de dedo ate\u0301 meio de peito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "measure", + "pt": "um metro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a31d3bdf-a905-4551-89c2-2caa9180918d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4bec2e73-a2fa-4be6-976f-ba6ff9f7acc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f873c3eb-89a9-4bb6-84fc-cd56d6a75579", + "DeletedAt": null, + "LexemeForm": { + "seh": "khosi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97259073-9a23-4056-8f5d-6a500118ec61", + "Order": 1, + "DeletedAt": null, + "EntryId": "f873c3eb-89a9-4bb6-84fc-cd56d6a75579", + "Definition": {}, + "Gloss": { + "en": "neck", + "pt": "pescoc\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b1166bed-2f87-4981-acbc-122b29ac3466", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Alves; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "97259073-9a23-4056-8f5d-6a500118ec61", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8df2fe4c-81b5-48d4-a306-af165ad7840f", + "DeletedAt": null, + "LexemeForm": { + "seh": "khosol" + }, + "CitationForm": { + "seh": "khosola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "798afb72-f49f-478d-a1b9-1bb958494e15", + "Order": 1, + "DeletedAt": null, + "EntryId": "8df2fe4c-81b5-48d4-a306-af165ad7840f", + "Definition": {}, + "Gloss": { + "en": "cough", + "pt": "tossir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6b74debf-2dc1-4f3e-861f-000daf631977", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "798afb72-f49f-478d-a1b9-1bb958494e15", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c5daee51-337f-4705-bfa1-22a048ad4ec7", + "DeletedAt": null, + "LexemeForm": { + "seh": "khu" + }, + "CitationForm": { + "seh": "khua" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c37de104-6633-4a7f-8334-fba322f0c89b", + "Order": 1, + "DeletedAt": null, + "EntryId": "c5daee51-337f-4705-bfa1-22a048ad4ec7", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "clamar, gritar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "shout", + "pt": "clamar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c32e0e69-8f1a-42ca-8d95-c4a33c786203", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c37de104-6633-4a7f-8334-fba322f0c89b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "44af4d61-fa9c-4b62-8d30-1c70c2e9361b", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuch" + }, + "CitationForm": { + "seh": "khucha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cddee31a-556f-4a76-8e75-2be21302d85f", + "Order": 1, + "DeletedAt": null, + "EntryId": "44af4d61-fa9c-4b62-8d30-1c70c2e9361b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "pull out (nail, tooth, etc.)", + "Ws": "pt" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "arrancar (prego, dente etc)", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "pull out", + "pt": "arrancar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45ecf106-f2b1-486b-8ffc-b3a9d05e9dae", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "sulo037", + "Ws": "en" + } + ] + }, + "SenseId": "cddee31a-556f-4a76-8e75-2be21302d85f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bc35fbc-9a38-463f-89dd-6c83fe514c0b", + "DeletedAt": null, + "LexemeForm": { + "seh": "khulupir" + }, + "CitationForm": { + "seh": "khulupira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1331035e-4a2d-4ede-b72a-8db3d2893ea6", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bc35fbc-9a38-463f-89dd-6c83fe514c0b", + "Definition": {}, + "Gloss": { + "en": "trust", + "pt": "confiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c8c313f0-bbf5-47e6-9f23-3aeeeb44927b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Khulupirani Mulungu anakwangisani", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Confia em Deus para ti curar.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Meque, Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1331035e-4a2d-4ede-b72a-8db3d2893ea6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f48c2b04-b018-46da-8055-902de8688768", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbi" + }, + "CitationForm": { + "seh": "khumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a45d7be9-f4bc-4a75-a43e-4d6d8c281bc8", + "Order": 1, + "DeletedAt": null, + "EntryId": "f48c2b04-b018-46da-8055-902de8688768", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small temporary houses used by youth at harvest time, by extension, any small house", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "palhota, casota", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "small house", + "pt": "palhota" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc0f2c66-0df3-419d-b4b1-fa44c17dfacf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a45d7be9-f4bc-4a75-a43e-4d6d8c281bc8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "66797917-55bf-465a-a33d-f7a139c8f102", + "DeletedAt": null, + "LexemeForm": { + "seh": "khumi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d64ed827-1d47-45ee-b253-1cc55d13b5d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "66797917-55bf-465a-a33d-f7a139c8f102", + "Definition": {}, + "Gloss": { + "en": "ten", + "pt": "dez" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "50abc623-4d41-4ff5-8e32-c423bda442dc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "d64ed827-1d47-45ee-b253-1cc55d13b5d3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f06003df-dc08-456b-bcab-0efcad5a2d59", + "DeletedAt": null, + "LexemeForm": { + "seh": "makhundu" + }, + "CitationForm": { + "seh": "khundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e1687c0-3394-4bc4-8bed-26c96d07c0de", + "Order": 1, + "DeletedAt": null, + "EntryId": "f06003df-dc08-456b-bcab-0efcad5a2d59", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bank of a river, edge of a road,", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "margem de rio ou rua", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bank ", + "pt": "margem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14acb080-e726-4f2b-b06e-7f955ac451cd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1e1687c0-3394-4bc4-8bed-26c96d07c0de", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc51e684-384f-4275-91da-bd0052c6fc94", + "DeletedAt": null, + "LexemeForm": { + "seh": "khundu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc9f82a8-e346-4734-a417-bfaee9c1b4c7", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc51e684-384f-4275-91da-bd0052c6fc94", + "Definition": {}, + "Gloss": { + "en": "side", + "pt": "lado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f60bbcb-4a42-40b4-a83d-940fc6c7271e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khundu yadidi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "right side of body", + "Ws": "en" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "dc9f82a8-e346-4734-a417-bfaee9c1b4c7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e35c4ef3-df39-4b0a-862e-d86734268567", + "DeletedAt": null, + "LexemeForm": { + "seh": "khurudzik" + }, + "CitationForm": { + "seh": "khurudzika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ea927e6-ee78-4f63-8ef9-bf46ff0b33f0", + "Order": 1, + "DeletedAt": null, + "EntryId": "e35c4ef3-df39-4b0a-862e-d86734268567", + "Definition": {}, + "Gloss": { + "en": "quiet oneself", + "pt": "sossegar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00c966d7-58e9-4203-9c02-c49a893c9bba", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5ea927e6-ee78-4f63-8ef9-bf46ff0b33f0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "577a001e-b29b-479b-b4d8-053d8b103508", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuruzik" + }, + "CitationForm": { + "seh": "khuruzika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "067e18f7-8adc-447e-a072-a68ca8ff978b", + "Order": 1, + "DeletedAt": null, + "EntryId": "577a001e-b29b-479b-b4d8-053d8b103508", + "Definition": {}, + "Gloss": { + "en": "quiet", + "pt": "quietar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "539975fb-2dd9-4612-9c91-e8a18df9ce55", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "067e18f7-8adc-447e-a072-a68ca8ff978b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "58df76e3-256f-42cf-a57b-22de6846ee04", + "DeletedAt": null, + "LexemeForm": { + "seh": "khut" + }, + "CitationForm": { + "seh": "khuta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f2c0668-a52f-4ce7-83e7-a492905e4f82", + "Order": 1, + "DeletedAt": null, + "EntryId": "58df76e3-256f-42cf-a57b-22de6846ee04", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be full or content", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "be satisfied", + "pt": "ficar farto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5ca17d1c-d40e-4ac6-8142-ff18d68fc846", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndakuta", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Obrigado", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "0f2c0668-a52f-4ce7-83e7-a492905e4f82", + "DeletedAt": null + } + ] + }, + { + "Id": "6ee1d961-3dae-4b46-9579-e7e8e34163a6", + "Order": 2, + "DeletedAt": null, + "EntryId": "58df76e3-256f-42cf-a57b-22de6846ee04", + "Definition": {}, + "Gloss": { + "en": "thank you", + "pt": "obrigado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4c02bcc5-8a2f-43fe-a369-c0363ec19c84", + "DeletedAt": null, + "LexemeForm": { + "seh": "kutu" + }, + "CitationForm": { + "seh": "khutu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "17b61c66-081e-4e77-bd7e-dbd2aead3932", + "Order": 1, + "DeletedAt": null, + "EntryId": "4c02bcc5-8a2f-43fe-a369-c0363ec19c84", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ear, outer and inner", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "ear", + "pt": "orelha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f86b05ba-7ff3-48af-91fa-cfb0c406dd1d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist;Moreira:5, 19; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "17b61c66-081e-4e77-bd7e-dbd2aead3932", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8c78953-e837-4474-8240-981b2d0325c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuy" + }, + "CitationForm": { + "seh": "khuya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e1d99b98-3faa-4fdf-a883-46c21364b777", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8c78953-e837-4474-8240-981b2d0325c3", + "Definition": {}, + "Gloss": { + "en": "touch", + "pt": "tocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "09773319-dad3-4051-a2c1-24a438bec3a7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e1d99b98-3faa-4fdf-a883-46c21364b777", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81289505-9e49-4391-ba0e-5f8747a7e798", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwaz" + }, + "CitationForm": { + "seh": "khwaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fd5ae1c9-56af-4bf4-85ce-e9e984550c42", + "Order": 1, + "DeletedAt": null, + "EntryId": "81289505-9e49-4391-ba0e-5f8747a7e798", + "Definition": {}, + "Gloss": { + "en": "paint", + "pt": "pintar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4e50f47-8bdd-491c-be9c-9f72eb22cae8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "fd5ae1c9-56af-4bf4-85ce-e9e984550c42", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "942fb913-e648-473c-a6ee-a592dd8996db", + "DeletedAt": null, + "LexemeForm": { + "seh": "-ko" + }, + "CitationForm": { + "seh": "ko" + }, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", + "Order": 1, + "DeletedAt": null, + "EntryId": "942fb913-e648-473c-a6ee-a592dd8996db", + "Definition": {}, + "Gloss": { + "en": "LOC there", + "pt": "ali" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "403597a6-4605-423d-a9da-2c079427acfd", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kauka-ko eko noko kubazari-ko", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef57f28b-7741-4249-9572-63de6aa524d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eb8e1f58-2a22-4738-8250-ddba406418df", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef57f28b-7741-4249-9572-63de6aa524d7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "your", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "teu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2S", + "pt": "2S" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa12a4b4-201a-43c6-bcd1-8007cabebe1a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kobiri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "471f30f4-6ef1-4306-b7be-bc5292a92b29", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa12a4b4-201a-43c6-bcd1-8007cabebe1a", + "Definition": {}, + "Gloss": { + "en": "money", + "pt": "dinheiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1083c1ab-2f24-4010-b6bf-a0c2ea38f61d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "471f30f4-6ef1-4306-b7be-bc5292a92b29", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7a36d3f-29be-4508-bb2c-3e28f65e2c25", + "DeletedAt": null, + "LexemeForm": { + "seh": "kodi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "587d38d2-4461-4d26-bbb6-9ecf46861a1b", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7a36d3f-29be-4508-bb2c-3e28f65e2c25", + "Definition": {}, + "Gloss": { + "en": "and so", + "pt": "enta\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ef3cc4c-ef2b-4344-95b8-faa0e4dcb248", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "587d38d2-4461-4d26-bbb6-9ecf46861a1b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ce24f8f-28a2-43f4-8f05-df24e6966f17", + "DeletedAt": null, + "LexemeForm": { + "seh": "kokota" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6d090ec4-8a2f-4648-996d-426753654a77", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ce24f8f-28a2-43f4-8f05-df24e6966f17", + "Definition": {}, + "Gloss": { + "en": "net", + "pt": "rede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7afe24ea-dc5e-4328-a37c-4a33d1e0cb63", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6d090ec4-8a2f-4648-996d-426753654a77", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebcf2139-6c6b-4c96-9588-817d10cb18cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "kokot" + }, + "CitationForm": { + "seh": "kokota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c2a3421e-e0f7-4591-bf62-3380df4bf413", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebcf2139-6c6b-4c96-9588-817d10cb18cc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "eat the last bit, \u0022lick the bowl\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "comer ao u\u0301ltima", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "finish", + "pt": "acabar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5e859f07-e671-4130-8537-17505e4096fb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c2a3421e-e0f7-4591-bf62-3380df4bf413", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6bbc75f-6863-4d8c-9a1a-c6c724a0712e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kokot" + }, + "CitationForm": { + "seh": "kokota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "738ab3d0-596e-4145-99cd-03dadec168f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6bbc75f-6863-4d8c-9a1a-c6c724a0712e", + "Definition": {}, + "Gloss": { + "en": "pull a net", + "pt": "puxar uma rede" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "573bf23a-3fde-4552-9263-62b7c71cad02", + "Name": { + "en": "Fish with net" + }, + "Code": "6.4.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e928d96-8913-41b4-aff6-927e9508d7d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "kolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "339f2931-7da0-4c4f-b4ca-7d4b3317f496", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e928d96-8913-41b4-aff6-927e9508d7d9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Vervet monkey", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "monkey", + "pt": "macaco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c676ebe3-5792-4b40-a937-626c83cf20f7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "339f2931-7da0-4c4f-b4ca-7d4b3317f496", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "543f5ea8-0d41-4458-a6d5-78ebcc290418", + "DeletedAt": null, + "LexemeForm": { + "seh": "kom" + }, + "CitationForm": { + "seh": "koma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a0f2cb7-2604-4be8-adc6-455e93e9c30e", + "Order": 1, + "DeletedAt": null, + "EntryId": "543f5ea8-0d41-4458-a6d5-78ebcc290418", + "Definition": {}, + "Gloss": { + "en": "it\u0027s good", + "pt": "e\u0301 util" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e94538a-c6db-4836-853d-31d8f25b76f1", + "DeletedAt": null, + "LexemeForm": { + "seh": "komerw" + }, + "CitationForm": { + "seh": "komerwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e233ed05-a5c5-4db6-a8a7-549a611a0ae5", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e94538a-c6db-4836-853d-31d8f25b76f1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "happy, content", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "happy", + "pt": "contente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "49656d86-f829-4e9f-a9c2-2a38adb5e6f8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "e233ed05-a5c5-4db6-a8a7-549a611a0ae5", + "DeletedAt": null + } + ] + }, + { + "Id": "78f9be23-f46e-40f8-b9ae-feeb0fe345e1", + "Order": 2, + "DeletedAt": null, + "EntryId": "1e94538a-c6db-4836-853d-31d8f25b76f1", + "Definition": {}, + "Gloss": { + "en": "well fed", + "pt": "bem comida" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0a06a99-bff0-433c-8266-9addb522284c", + "DeletedAt": null, + "LexemeForm": { + "seh": "komos" + }, + "CitationForm": { + "seh": "komosa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f1ecb5b4-ec5f-4b06-9b7c-fd48f0a0fc08", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0a06a99-bff0-433c-8266-9addb522284c", + "Definition": {}, + "Gloss": { + "en": "faint", + "pt": "desmair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2f8218f6-1590-4a2c-a29f-047862e9b386", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f1ecb5b4-ec5f-4b06-9b7c-fd48f0a0fc08", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f836f49-463d-46fb-a1c4-74cf0c1de50a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kones" + }, + "CitationForm": { + "seh": "konesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "acbba421-d6ef-4abb-b1b8-65c6402e4a49", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f836f49-463d-46fb-a1c4-74cf0c1de50a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "found guilty", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "achado culpado, perder raza\u0303o no acusac\u0327a\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "guilty", + "pt": "culpado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "0ede51d2-69bd-411e-97f9-da0d5118bbff", + "Name": { + "en": "Condemn, find guilty" + }, + "Code": "4.7.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b9820fe4-a44e-4384-b10b-e75d5dedba56", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "acbba421-d6ef-4abb-b1b8-65c6402e4a49", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49e7fddf-f91d-4132-8ea9-a08a783ad8ad", + "DeletedAt": null, + "LexemeForm": { + "seh": "kontho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2b9a6917-5d94-4491-a253-e34b36bde45e", + "Order": 1, + "DeletedAt": null, + "EntryId": "49e7fddf-f91d-4132-8ea9-a08a783ad8ad", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the same place", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ao mesmo lugar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "the same place", + "pt": "ao mesmo lugar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "859cc13f-c7da-4330-96cd-a0af01b00385", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bale wako azati bwera kudaenda iye? Ande, ali kontho.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "Your brother has not yet returned from where he went? Yes, he is in the same place.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Teu irmao ainde nao voltou para onde foi? Sim, esta\u0301 ainde.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "2b9a6917-5d94-4491-a253-e34b36bde45e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cb13003f-6131-4582-925c-f4965ea21dd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "konz" + }, + "CitationForm": { + "seh": "konza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e8c7028d-3a47-4b64-b2be-7b1819997a5f", + "Order": 1, + "DeletedAt": null, + "EntryId": "cb13003f-6131-4582-925c-f4965ea21dd8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "heal often by traditional means", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "heal", + "pt": "curar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bef2ee2d-280d-4f59-b28c-2c1cd9c26bfe", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e8c7028d-3a47-4b64-b2be-7b1819997a5f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6c3d945-1d09-4681-ab57-2d827e958a0c", + "DeletedAt": null, + "LexemeForm": { + "seh": "konziw" + }, + "CitationForm": { + "seh": "konziwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fbdc0232-f0da-4dad-87fc-7717e704bca4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6c3d945-1d09-4681-ab57-2d827e958a0c", + "Definition": {}, + "Gloss": { + "en": "be healed", + "pt": "ser curado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b9bbf12-cc4e-4d4b-97b5-5a37d566b5a9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "fbdc0232-f0da-4dad-87fc-7717e704bca4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7503fadb-efdf-4f65-b741-e05a7328cda3", + "DeletedAt": null, + "LexemeForm": { + "seh": "kotam" + }, + "CitationForm": { + "seh": "kotama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "184375ba-86e9-464f-9bdd-2993cd0263a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "7503fadb-efdf-4f65-b741-e05a7328cda3", + "Definition": {}, + "Gloss": { + "en": "bend over", + "pt": "enclinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c35c2655-a04d-446a-8851-940d68e9790f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "184375ba-86e9-464f-9bdd-2993cd0263a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b33f4cf5-04f5-46c6-9559-666c3c8b7ecd", + "DeletedAt": null, + "LexemeForm": { + "seh": "koy" + }, + "CitationForm": { + "seh": "koya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b76f140c-bc70-46f5-8da6-3aad4c1b293a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b33f4cf5-04f5-46c6-9559-666c3c8b7ecd", + "Definition": {}, + "Gloss": { + "en": "keep", + "pt": "guardar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a3d2ccd6-f0aa-4601-b266-a2b7e17f8e13", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "b76f140c-bc70-46f5-8da6-3aad4c1b293a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "d97a535e-3bf7-4e43-a361-ecdbb0e2609d", + "Order": 1, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "026ea7ef-fa84-4805-a9ee-6ade8a5afea8", + "Order": 2, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "33f29f92-bace-47d8-8596-91ba39570791", + "Order": 3, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "59922af6-e73d-4d5f-afb3-4f3e0ff0d7fc", + "Order": 4, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e455d9f3-c537-4fcc-b401-ab5f0d6e7a4e", + "Order": 5, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "26b947ee-d663-4de2-bd2c-b5ad32c17ba3", + "Order": 1, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "9b7682f7-c63b-4a46-982d-b9d011a84753", + "Order": 2, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "4cef05db-5023-4826-a037-69997622e7d0", + "Order": 3, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e8f56462-bd82-46dd-b660-56268c759606", + "Order": 4, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42af60da-df70-4c24-a52f-237d7efbf898", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "e784f30d-32a6-4959-bd12-0eec6804bfa7", + "Order": 1, + "DeletedAt": null, + "EntryId": "42af60da-df70-4c24-a52f-237d7efbf898", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Infinitive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Infinitivo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "INF", + "pt": "INF" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e9d2b24-6890-423d-aa8e-b2da2eba5669", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kuuponya throw rock, kundya eat rabbit, kumponyera rabbit throw meat kumpita kupibva hear something", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "e784f30d-32a6-4959-bd12-0eec6804bfa7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "514fa3c2-7d42-427d-8eec-06b31153217a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "dbddb07d-5e8b-4208-a7ee-109d0637028d", + "Order": 1, + "DeletedAt": null, + "EntryId": "514fa3c2-7d42-427d-8eec-06b31153217a", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "76be65ab-4221-41d9-a68f-db80ef100c96", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", + "Order": 1, + "DeletedAt": null, + "EntryId": "76be65ab-4221-41d9-a68f-db80ef100c96", + "Definition": {}, + "Gloss": { + "en": "to", + "pt": "a\u0301" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7336f02a-0896-4169-9174-e2f11fb4f00d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7af9da8b-bf27-4006-bd4c-0bbc5205633f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "a1764bdf-5618-4a7b-9c9a-abb40494bd15", + "Order": 1, + "DeletedAt": null, + "EntryId": "7af9da8b-bf27-4006-bd4c-0bbc5205633f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "you", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2S", + "pt": "2S" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1c47b06-dc41-4c2f-809f-a5d5425a99f0", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "a848db7e-ebea-40ac-843d-381843f2523f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1c47b06-dc41-4c2f-809f-a5d5425a99f0", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "DeletedAt": null, + "LexemeForm": { + "seh": "kubulukira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8c958583-0e11-4b66-b2c9-c3e570712355", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "Definition": {}, + "Gloss": { + "en": "since", + "pt": "desde" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90201f41-e4f6-4ca5-81b3-b5a6149245b7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kubulukira penepo", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "a partir de ali", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Sulo2:44", + "Ws": "en" + } + ] + }, + "SenseId": "8c958583-0e11-4b66-b2c9-c3e570712355", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "e5460a70-3a92-47f7-8d4f-8d882728e0d7", + "MaybeId": "e5460a70-3a92-47f7-8d4f-8d882728e0d7", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "ComplexFormHeadword": "kubulukira", + "ComponentEntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "ComponentSenseId": null, + "ComponentHeadword": "bulukira" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "kubverana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7435327a-54ab-489b-912c-6cd4fcd4c701", + "Order": 1, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be in peaceful coexistance together, be at peace with", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "deep trusting", + "pt": "de confianc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28594255-2472-4ae9-ab4f-46ed5813b273", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "sulo2:2", + "Ws": "en" + } + ] + }, + "SenseId": "7435327a-54ab-489b-912c-6cd4fcd4c701", + "DeletedAt": null + } + ] + }, + { + "Id": "56a695df-24fd-48b7-8fe5-e174a6a5ad31", + "Order": 2, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be at peace with", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ter comunhao, ter paz com alguem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "unity", + "pt": "unidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "151fa841-74d5-4fd3-9159-00b98f673b22", + "Order": 3, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": {}, + "Gloss": { + "en": "plan", + "pt": "combinar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a1db0f0d-f8e1-4edd-b6f6-14ae2441c385", + "Order": 4, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": {}, + "Gloss": { + "en": "reconcile", + "pt": "reconcilhar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "bb65f916-e679-4e05-a575-aaa75e5f01ec", + "MaybeId": "bb65f916-e679-4e05-a575-aaa75e5f01ec", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "ComplexFormHeadword": "kubverana", + "ComponentEntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "ComponentSenseId": null, + "ComponentHeadword": "bva" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "6fcdabd6-a74f-47b1-b36d-bd40eaebed36", + "Name": { + "en": "Benefactive", + "pt": "Aplicativa" + }, + "DeletedAt": null + }, + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0cbc3af-f925-43ef-a4d5-8a814b553aa9", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50029fb1-1687-4e3c-bb18-f56a4fff5ef0", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0cbc3af-f925-43ef-a4d5-8a814b553aa9", + "Definition": {}, + "Gloss": { + "en": "sun rise", + "pt": "amanhacer" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5db59acb-31c9-4b79-8eca-c7d1a3a93590", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "50029fb1-1687-4e3c-bb18-f56a4fff5ef0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "98fff588-02ef-4849-8b11-26d2a9834a12", + "DeletedAt": null, + "LexemeForm": { + "seh": "dambo" + }, + "CitationForm": { + "seh": "kudambo" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3f89b93b-bb37-4daa-acec-36437ce585cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "98fff588-02ef-4849-8b11-26d2a9834a12", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area near the house, the yard", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "quintal de casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "yard", + "pt": "quintal" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e093cf8e-208a-4db6-9c48-986fb8c8392a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "3f89b93b-bb37-4daa-acec-36437ce585cb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a4833ca4-bcc3-44db-a525-c88993150c07", + "DeletedAt": null, + "LexemeForm": { + "seh": "kudza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "358a74e2-dbb0-4b7c-bec0-4466179f1ea8", + "Order": 1, + "DeletedAt": null, + "EntryId": "a4833ca4-bcc3-44db-a525-c88993150c07", + "Definition": {}, + "Gloss": { + "en": "coming", + "pt": "vindo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "b843cb46-41f1-4434-bd96-13a5eebaa2dc", + "MaybeId": "b843cb46-41f1-4434-bd96-13a5eebaa2dc", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a4833ca4-bcc3-44db-a525-c88993150c07", + "ComplexFormHeadword": "kudza", + "ComponentEntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "ComponentSenseId": null, + "ComponentHeadword": "dza" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4a8bd5e-9f68-43d8-9963-2857d5ca81de", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu" + }, + "CitationForm": { + "seh": "kudzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7a66e6c9-beae-4e1c-942f-967c1366c772", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4a8bd5e-9f68-43d8-9963-2857d5ca81de", + "Definition": {}, + "Gloss": { + "en": "heaven", + "pt": "ce\u0301u" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "d7eddc38-92ea-4a69-90f3-f9d98070cfc4", + "Order": 2, + "DeletedAt": null, + "EntryId": "e4a8bd5e-9f68-43d8-9963-2857d5ca81de", + "Definition": {}, + "Gloss": { + "en": "above", + "pt": "em cima" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuenda-na-kuenda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "99c14abc-9fbf-48a4-931a-f30d37463fd8", + "Order": 1, + "DeletedAt": null, + "EntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "Definition": {}, + "Gloss": { + "en": "forever", + "pt": "para sempre" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a0b6924d-e8f4-4f3d-a04f-2f005e866dcc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "99c14abc-9fbf-48a4-931a-f30d37463fd8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "62b4b833-f5ae-4a6b-a19a-e4a00350908e", + "MaybeId": "62b4b833-f5ae-4a6b-a19a-e4a00350908e", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "ComponentSenseId": null, + "ComponentHeadword": "enda" + }, + { + "Id": "5b23b091-a0bd-4eb1-83b5-6848e0d98b4c", + "MaybeId": "5b23b091-a0bd-4eb1-83b5-6848e0d98b4c", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab13df98-2d45-45f0-b7b1-9d7a17814663", + "DeletedAt": null, + "LexemeForm": { + "seh": "kukakamiz" + }, + "CitationForm": { + "seh": "kukakamiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b27d368e-9629-4c1d-b713-fa4a5e7296be", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab13df98-2d45-45f0-b7b1-9d7a17814663", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "obrigar com insistencia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "force", + "pt": "obrigar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff5aa203-d543-4147-b502-fe4c93be6701", + "DeletedAt": null, + "LexemeForm": { + "seh": "kul" + }, + "CitationForm": { + "seh": "kula" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c8e91867-97f2-4c5a-ab05-da7e9d8530a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff5aa203-d543-4147-b502-fe4c93be6701", + "Definition": {}, + "Gloss": { + "en": "grow", + "pt": "crecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3330cdf6-76d7-485f-b146-c8a0c640f40e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c65d2e3c-2af7-4397-9fc7-9513aec457bf", + "Order": 1, + "DeletedAt": null, + "EntryId": "3330cdf6-76d7-485f-b146-c8a0c640f40e", + "Definition": {}, + "Gloss": { + "en": "to", + "pt": "a\u0301" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3978b157-dddf-4969-a8e2-c602542a124c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kuli anthu onsene", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "em todas as pessoas", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "c65d2e3c-2af7-4397-9fc7-9513aec457bf", + "DeletedAt": null + } + ] + }, + { + "Id": "7bb75da8-2d6d-4c36-a2ae-fdca2e05fccf", + "Order": 2, + "DeletedAt": null, + "EntryId": "3330cdf6-76d7-485f-b146-c8a0c640f40e", + "Definition": {}, + "Gloss": { + "en": "for", + "pt": "para" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78e44c04-e513-4248-868c-4d9da03d7add", + "DeletedAt": null, + "LexemeForm": { + "seh": "kulu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "66caea57-5e26-41fb-9075-e204d5d3c6a4", + "Order": 1, + "DeletedAt": null, + "EntryId": "78e44c04-e513-4248-868c-4d9da03d7add", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large size", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "grande tomanho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "large ", + "pt": "grande" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f356b33-3167-411a-b56d-a2bf65c091af", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nyama ikulu", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "a large piece of meat or animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "carne ou animal grande", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "66caea57-5e26-41fb-9075-e204d5d3c6a4", + "DeletedAt": null + } + ] + }, + { + "Id": "19f70685-7f84-4c67-97bd-39c148b32a3d", + "Order": 2, + "DeletedAt": null, + "EntryId": "78e44c04-e513-4248-868c-4d9da03d7add", + "Definition": { + "en": { + "Spans": [ + { + "Text": "great in fame or significance", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "grande, nota\u0301vel, importante", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "great", + "pt": "grande" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9d0809a0-356b-4a23-9ac6-8bd77d9ed837", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumb" + }, + "CitationForm": { + "seh": "kumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "03ae5c91-0727-41a3-9667-dbd3115bf69e", + "Order": 1, + "DeletedAt": null, + "EntryId": "9d0809a0-356b-4a23-9ac6-8bd77d9ed837", + "Definition": {}, + "Gloss": { + "en": "dig", + "pt": "cavar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1c5a002-65dd-4052-80d5-099147c288c6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "03ae5c91-0727-41a3-9667-dbd3115bf69e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a3dd1e7-e921-4147-8eae-5a9737474fa2", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbidz" + }, + "CitationForm": { + "seh": "kumbidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4da51546-5eef-463c-b1be-526c4b34bc36", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a3dd1e7-e921-4147-8eae-5a9737474fa2", + "Definition": {}, + "Gloss": { + "en": "to shepherd", + "pt": "pastorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe22c733-954c-4ca7-9c5b-afc4e2977741", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4da51546-5eef-463c-b1be-526c4b34bc36", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33a8cf3a-7aa3-4935-bcf3-e4b7fe590c54", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbuk" + }, + "CitationForm": { + "seh": "kumbuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0515b9b2-9f91-415e-9081-1ffa59094bac", + "Order": 1, + "DeletedAt": null, + "EntryId": "33a8cf3a-7aa3-4935-bcf3-e4b7fe590c54", + "Definition": {}, + "Gloss": { + "en": "remember", + "pt": "lembrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8bafbcc4-3129-492b-bd4e-0eb92205120d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0515b9b2-9f91-415e-9081-1ffa59094bac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "98b8977c-431f-405b-8e58-c78dc519784c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuna" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "42c8d478-acca-448c-a512-3dbcd2d3f34c", + "Order": 1, + "DeletedAt": null, + "EntryId": "98b8977c-431f-405b-8e58-c78dc519784c", + "Definition": {}, + "Gloss": { + "en": "with", + "pt": "com" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fec8f5fd-6c9a-4447-993d-0d8a53e83782", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "42c8d478-acca-448c-a512-3dbcd2d3f34c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e5f75fed-a67c-4248-8993-41f13be9b855", + "DeletedAt": null, + "LexemeForm": { + "seh": "kund" + }, + "CitationForm": { + "seh": "kunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98996975-bc63-4c87-a7b7-79813e098bdc", + "Order": 1, + "DeletedAt": null, + "EntryId": "e5f75fed-a67c-4248-8993-41f13be9b855", + "Definition": {}, + "Gloss": { + "en": "win", + "pt": "vencer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df67c45a-f0df-4f8e-89d4-286ea293de94", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "98996975-bc63-4c87-a7b7-79813e098bdc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2cdbc249-472c-4fb5-816c-ba825f967ff7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kunduli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa95d4f9-9ac2-432e-90e6-23b14f857d49", + "Order": 1, + "DeletedAt": null, + "EntryId": "2cdbc249-472c-4fb5-816c-ba825f967ff7", + "Definition": {}, + "Gloss": { + "en": "back", + "pt": "costas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed4ea1ca-bbae-4d00-9e24-bf6cd0e9bdd8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "aa95d4f9-9ac2-432e-90e6-23b14f857d49", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "374bcb04-b224-48e2-b5b4-153bb427a66b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nja" + }, + "CitationForm": { + "seh": "kunja" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "91688c53-43b6-4ecc-9194-bb960b61155b", + "Order": 1, + "DeletedAt": null, + "EntryId": "374bcb04-b224-48e2-b5b4-153bb427a66b", + "Definition": {}, + "Gloss": { + "en": "just outside", + "pt": "fora" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d867f469-1387-436f-ab72-4e6340d9d7ff", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndapira kunja kwakaru", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Subiu atras de carro (aberto)", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Moreira:24", + "Ws": "en" + } + ] + }, + "SenseId": "91688c53-43b6-4ecc-9194-bb960b61155b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "441c4f41-1d0e-48bf-a432-ce82338367f1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsi" + }, + "CitationForm": { + "seh": "kuntsi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "16a4d77d-f9ea-489b-ac07-bead9ecd8304", + "Order": 1, + "DeletedAt": null, + "EntryId": "441c4f41-1d0e-48bf-a432-ce82338367f1", + "Definition": {}, + "Gloss": { + "en": "behind", + "pt": "atra\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "558eaf38-68d6-44bf-9ad9-f164ba360cd9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Baba ali kunsi kwanyumba.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Pai esta\u0301 atra\u0301s de casa.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24 also says em_baixo; no cha\u0303o", + "Ws": "en" + } + ] + }, + "SenseId": "16a4d77d-f9ea-489b-ac07-bead9ecd8304", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "736f6304-3b11-4c6e-a21e-ea62455f697c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bb5431f8-9a7d-400b-90e3-176019ee4836", + "Order": 1, + "DeletedAt": null, + "EntryId": "736f6304-3b11-4c6e-a21e-ea62455f697c", + "Definition": {}, + "Gloss": { + "en": "where?", + "pt": "onde?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bf4b3113-1f6c-4481-b841-cb22b8a5af5e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bb5431f8-9a7d-400b-90e3-176019ee4836", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77344997-5891-4494-8483-59bf8db48f6e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sere" + }, + "CitationForm": { + "seh": "kusere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f9dbe01-d3b5-4945-849e-797f9bc54d7f", + "Order": 1, + "DeletedAt": null, + "EntryId": "77344997-5891-4494-8483-59bf8db48f6e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "behind the house", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "behind the house", + "pt": "atra\u0301s de casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "47795727-8c7c-4ae1-9e7b-a94aae0b61f2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p25; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2f9dbe01-d3b5-4945-849e-797f9bc54d7f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd8be48e-384a-4be6-88dc-61e1dd15e478", + "DeletedAt": null, + "LexemeForm": { + "seh": "kusiana-sian" + }, + "CitationForm": { + "seh": "kusiana-siana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb2f2bf4-bc58-4a1e-a4bc-fddad7670996", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd8be48e-384a-4be6-88dc-61e1dd15e478", + "Definition": {}, + "Gloss": { + "en": "various", + "pt": "va\u0301rios" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a8ed5ad-6b1a-4c7a-acb9-2b53a5ad89fd", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nthenda za kusiana-siana", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "doenc\u0327as va\u0301rias", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "fb2f2bf4-bc58-4a1e-a4bc-fddad7670996", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "55ffaf73-c7dd-4dc5-a13c-547853535cb4", + "DeletedAt": null, + "LexemeForm": { + "seh": "kutali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8637487d-15dc-4ea3-8a29-b69137af0d60", + "Order": 1, + "DeletedAt": null, + "EntryId": "55ffaf73-c7dd-4dc5-a13c-547853535cb4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a long distance off", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "far", + "pt": "longe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "200d93da-549e-46aa-95a3-cf1d8cec48e0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "8637487d-15dc-4ea3-8a29-b69137af0d60", + "DeletedAt": null + } + ] + }, + { + "Id": "4c2747b8-cffb-4030-8a96-bab2a7d514bc", + "Order": 2, + "DeletedAt": null, + "EntryId": "55ffaf73-c7dd-4dc5-a13c-547853535cb4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "long ago", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "long ago", + "pt": "ha\u0301 muito tempo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7d6b9945-f6e3-4b31-b4ff-b8c50ff18732", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": { + "seh": "kuti" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "13db6af2-dd49-4d2a-b27f-4da4c5884ebb", + "Order": 1, + "DeletedAt": null, + "EntryId": "7d6b9945-f6e3-4b31-b4ff-b8c50ff18732", + "Definition": {}, + "Gloss": { + "en": "that", + "pt": "que" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "14713929-5278-41e9-82d2-7832394146c8", + "Order": 2, + "DeletedAt": null, + "EntryId": "7d6b9945-f6e3-4b31-b4ff-b8c50ff18732", + "Definition": {}, + "Gloss": { + "en": "so that" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff7f992f-5df9-4b0c-aa46-847e32384280", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsogolo" + }, + "CitationForm": { + "seh": "kutsogolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6ef2f45c-a585-482a-b99f-32aaa9f0b91e", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff7f992f-5df9-4b0c-aa46-847e32384280", + "Definition": {}, + "Gloss": { + "en": "to the front", + "pt": "adiante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0c4075e3-20fc-40e5-931a-ab27ac1bd397", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6ef2f45c-a585-482a-b99f-32aaa9f0b91e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16704d25-1f22-4966-985a-9d543c5e8ff9", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwan" + }, + "CitationForm": { + "seh": "kwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "92947ad8-fa32-4f8a-8bb7-5328ea99a859", + "Order": 1, + "DeletedAt": null, + "EntryId": "16704d25-1f22-4966-985a-9d543c5e8ff9", + "Definition": {}, + "Gloss": { + "en": "be satisfied", + "pt": "estar satisfeito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e16c7b09-b7d6-43e2-899f-db41ee68ac87", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "92947ad8-fa32-4f8a-8bb7-5328ea99a859", + "DeletedAt": null + } + ] + }, + { + "Id": "3ce820a3-cad2-4877-a735-e0ef244edba4", + "Order": 2, + "DeletedAt": null, + "EntryId": "16704d25-1f22-4966-985a-9d543c5e8ff9", + "Definition": {}, + "Gloss": { + "en": "succeed", + "pt": "conseguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3bc101d1-1ac9-442d-aa67-d548d60ba5dd", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "This is a test", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "um teste", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "3ce820a3-cad2-4877-a735-e0ef244edba4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "880780db-a760-47cf-9ca5-7a8d6d837559", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwanis" + }, + "CitationForm": { + "seh": "kwanisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d3b00031-dcd0-45f4-ae35-ae7fa76830dd", + "Order": 1, + "DeletedAt": null, + "EntryId": "880780db-a760-47cf-9ca5-7a8d6d837559", + "Definition": {}, + "Gloss": { + "en": "be able", + "pt": "conseguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb7a11a4-47a0-4d02-9182-934fdefb83a4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac; Mauricio", + "Ws": "en" + } + ] + }, + "SenseId": "d3b00031-dcd0-45f4-ae35-ae7fa76830dd", + "DeletedAt": null + } + ] + }, + { + "Id": "8e87bcf4-8ce8-4cb5-9de7-543122c7fda2", + "Order": 2, + "DeletedAt": null, + "EntryId": "880780db-a760-47cf-9ca5-7a8d6d837559", + "Definition": {}, + "Gloss": { + "en": "win", + "pt": "vencer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e73f3d3-fe5e-4650-b703-55bfdef05d0c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwapul" + }, + "CitationForm": { + "seh": "kwapula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f3d8d3ed-b947-4fc4-baaf-90824ff64ae3", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e73f3d3-fe5e-4650-b703-55bfdef05d0c", + "Definition": {}, + "Gloss": { + "en": "whip", + "pt": "ac\u0327oitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "6bf7569e-dc79-49da-9ce1-e2e03303828a", + "Name": { + "en": "Punish" + }, + "Code": "4.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "15b522c5-78b3-40da-8dcd-27428a4ea63d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f3d8d3ed-b947-4fc4-baaf-90824ff64ae3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb5de16b-1e86-4e00-9b11-38fbbd9879fa", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwat" + }, + "CitationForm": { + "seh": "kwata" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad99f7bd-09ab-4b5d-8043-6c59d31f62c7", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb5de16b-1e86-4e00-9b11-38fbbd9879fa", + "Definition": {}, + "Gloss": { + "en": "take", + "pt": "levar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "166a1016-8662-44e3-8d58-c95ac1338b6c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "sulo024; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ad99f7bd-09ab-4b5d-8043-6c59d31f62c7", + "DeletedAt": null + } + ] + }, + { + "Id": "01dafaba-c6cc-4d16-92a1-cded047655cf", + "Order": 2, + "DeletedAt": null, + "EntryId": "bb5de16b-1e86-4e00-9b11-38fbbd9879fa", + "Definition": {}, + "Gloss": { + "en": "get", + "pt": "buscar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86f6316c-9db1-499e-86d1-df494148cb29", + "DeletedAt": null, + "LexemeForm": { + "seh": "kweca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "2912198b-fb50-4312-8458-7ea24b423fc9", + "Order": 1, + "DeletedAt": null, + "EntryId": "86f6316c-9db1-499e-86d1-df494148cb29", + "Definition": {}, + "Gloss": { + "en": "publically", + "pt": "publicamente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bdc6da08-999c-488d-a5b8-3ba1574b1d1f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Alonga pakweca", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Falou publicamente", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "2912198b-fb50-4312-8458-7ea24b423fc9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "250d5e07-5084-457f-8ec0-b53faeb45993", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwew" + }, + "CitationForm": { + "seh": "kwewa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "da536137-5182-4e26-94bc-6830787b1a7a", + "Order": 1, + "DeletedAt": null, + "EntryId": "250d5e07-5084-457f-8ec0-b53faeb45993", + "Definition": {}, + "Gloss": { + "en": "pull", + "pt": "puxar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "614d37aa-a139-4004-b140-20136dc03e26", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "da536137-5182-4e26-94bc-6830787b1a7a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "27614845-25ec-4fe8-90f0-bb4a9bc7616f", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwir" + }, + "CitationForm": { + "seh": "kwira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cd54851f-e56c-42cf-b34e-32c7cfd30702", + "Order": 1, + "DeletedAt": null, + "EntryId": "27614845-25ec-4fe8-90f0-bb4a9bc7616f", + "Definition": {}, + "Gloss": { + "en": "go up", + "pt": "subir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "36b80037-c89e-4662-b18c-58445ea18d96", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cd54851f-e56c-42cf-b34e-32c7cfd30702", + "DeletedAt": null + } + ] + }, + { + "Id": "6c626dd8-43ba-47a7-a415-35c43f322f31", + "Order": 2, + "DeletedAt": null, + "EntryId": "27614845-25ec-4fe8-90f0-bb4a9bc7616f", + "Definition": {}, + "Gloss": { + "en": "go upstream", + "pt": "ir contracorrente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd4dcec1-65b3-46bb-98f9-bf3874e91bcb", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwis" + }, + "CitationForm": { + "seh": "kwisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dea34b42-5731-4d82-82b0-d6748f0234b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd4dcec1-65b3-46bb-98f9-bf3874e91bcb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "go against the current", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ir contracorrente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "go upstream", + "pt": "ir contracorrente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1386dc2b-811c-4707-b247-dd361ef3eff9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "dea34b42-5731-4d82-82b0-d6748f0234b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a4761ffa-f8ce-4a24-b4d7-903dbd082c66", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwiz" + }, + "CitationForm": { + "seh": "kwiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e417aa16-cff4-4288-835d-2da5443630eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "a4761ffa-f8ce-4a24-b4d7-903dbd082c66", + "Definition": {}, + "Gloss": { + "en": "put on top", + "pt": "por em cima" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8877874c-f379-4e71-8de2-a673ac9769d5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e417aa16-cff4-4288-835d-2da5443630eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "95068ea4-6add-4976-8c94-f0bfac71787e", + "DeletedAt": null, + "LexemeForm": { + "seh": "lalam" + }, + "CitationForm": { + "seh": "lalama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b9767f89-5b00-4986-8c3a-018ea8d05d85", + "Order": 1, + "DeletedAt": null, + "EntryId": "95068ea4-6add-4976-8c94-f0bfac71787e", + "Definition": {}, + "Gloss": { + "en": "live", + "pt": "viver" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28c6effd-2ca5-4d10-8d12-6e29a2f49755", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b9767f89-5b00-4986-8c3a-018ea8d05d85", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3cd81442-cc2e-40d6-b193-d39ca5e795c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "lalanja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a47bb6bc-4c1a-4c1c-90fc-1c8a660e09f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "3cd81442-cc2e-40d6-b193-d39ca5e795c6", + "Definition": {}, + "Gloss": { + "en": "orange tree", + "pt": "laranjeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl: milaranja sg: ??", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aa2fe4e7-b0d4-4aae-a5b7-df83b204feea", + "DeletedAt": null, + "LexemeForm": { + "seh": "lambe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1674d7bb-216f-4b4e-b61b-15cc84c420e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "aa2fe4e7-b0d4-4aae-a5b7-df83b204feea", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "fruto de mbondiera", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "baobab fruit", + "pt": "fruto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "9cae4ee3-03cf-46f7-9475-21d66c93ae04", + "Name": { + "en": "Food from fruit" + }, + "Code": "5.2.3.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "5e1ebdb7-3ccb-4964-9678-5f605a152130", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1674d7bb-216f-4b4e-b61b-15cc84c420e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a5708f5-490c-4b59-9df3-400d3724ee8c", + "DeletedAt": null, + "LexemeForm": { + "seh": "lambir" + }, + "CitationForm": { + "seh": "lambira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc5dde39-7eb8-41f1-a833-564569ccd28b", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a5708f5-490c-4b59-9df3-400d3724ee8c", + "Definition": {}, + "Gloss": { + "en": "worship", + "pt": "adorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc25a7ed-52ee-47c4-b9ce-daa5822505b9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "cc5dde39-7eb8-41f1-a833-564569ccd28b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3551a649-032a-49be-8576-900eec508339", + "DeletedAt": null, + "LexemeForm": { + "seh": "lamuk" + }, + "CitationForm": { + "seh": "lamuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "20cf4edd-301c-4989-86b7-de760562ba4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "3551a649-032a-49be-8576-900eec508339", + "Definition": {}, + "Gloss": { + "en": "wake up", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3af6ce2e-7fdb-4b14-8787-4aadf38d3ed8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "20cf4edd-301c-4989-86b7-de760562ba4e", + "DeletedAt": null + } + ] + }, + { + "Id": "0b996a63-cfca-49ce-9717-5b7b12d34c58", + "Order": 2, + "DeletedAt": null, + "EntryId": "3551a649-032a-49be-8576-900eec508339", + "Definition": {}, + "Gloss": { + "en": "stand up", + "pt": "levantar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f894432-e1cc-40bd-b29f-0e2b28fd30d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "lamus" + }, + "CitationForm": { + "seh": "lamusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e8764c07-d5ea-42d5-b86c-d8e9979ab798", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f894432-e1cc-40bd-b29f-0e2b28fd30d2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake up someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causar acordar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00c51ae8-400e-40e3-807f-cee9665f0b26", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e8764c07-d5ea-42d5-b86c-d8e9979ab798", + "DeletedAt": null + } + ] + }, + { + "Id": "de112476-c4a7-4606-ac3c-5e0e44d9aa39", + "Order": 2, + "DeletedAt": null, + "EntryId": "4f894432-e1cc-40bd-b29f-0e2b28fd30d2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "get someone up", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causar levantar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "get up", + "pt": "levantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f3bebae-4eaa-487c-91ac-b591653dcabf", + "DeletedAt": null, + "LexemeForm": { + "seh": "landan" + }, + "CitationForm": { + "seh": "landana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07b38b92-3a89-421b-befa-15fad6569e32", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f3bebae-4eaa-487c-91ac-b591653dcabf", + "Definition": {}, + "Gloss": { + "en": "is like", + "pt": "e\u0301 simulante" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb9a2c0c-63d5-4b78-8079-5034f3473a21", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "07b38b92-3a89-421b-befa-15fad6569e32", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06976211-d271-4135-8452-e2aa57d51b46", + "DeletedAt": null, + "LexemeForm": { + "seh": "lang\u0027an" + }, + "CitationForm": { + "seh": "lang\u0027ana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6aa3269d-8c92-4daf-b74e-5c8adc0a4fc1", + "Order": 1, + "DeletedAt": null, + "EntryId": "06976211-d271-4135-8452-e2aa57d51b46", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "olhar, reparar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "look", + "pt": "olhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "946d57b4-05c8-4258-bd0c-2bc683132944", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6aa3269d-8c92-4daf-b74e-5c8adc0a4fc1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fda07a70-f8b4-4c66-a55c-d8e45c28b172", + "DeletedAt": null, + "LexemeForm": { + "seh": "lang\u0027anis" + }, + "CitationForm": { + "seh": "lang\u0027anisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "983b1d9f-0995-402b-bdf1-9925d8044db7", + "Order": 1, + "DeletedAt": null, + "EntryId": "fda07a70-f8b4-4c66-a55c-d8e45c28b172", + "Definition": {}, + "Gloss": { + "en": "observe", + "pt": "observar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9263e9c0-81bf-43ff-b07e-2f51ac95ae81", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "983b1d9f-0995-402b-bdf1-9925d8044db7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d087c114-30bc-45c9-927c-414b505fe1c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ledzer" + }, + "CitationForm": { + "seh": "ledzera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad4b7a60-ba81-464e-becf-6226fbf153bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d087c114-30bc-45c9-927c-414b505fe1c7", + "Definition": {}, + "Gloss": { + "en": "get drunk", + "pt": "embebedar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "333ef741-6753-4864-9eec-273a00ff5184", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ad4b7a60-ba81-464e-becf-6226fbf153bc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8da08768-9b89-4d6a-ab4e-deb87d8e40fe", + "DeletedAt": null, + "LexemeForm": { + "seh": "lek" + }, + "CitationForm": { + "seh": "leka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b525967-2c84-492b-b802-08372872cdf5", + "Order": 1, + "DeletedAt": null, + "EntryId": "8da08768-9b89-4d6a-ab4e-deb87d8e40fe", + "Definition": {}, + "Gloss": { + "en": "quit", + "pt": "desistir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ca22caa5-4f85-42a1-929c-89592a5fc3e0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "6b525967-2c84-492b-b802-08372872cdf5", + "DeletedAt": null + } + ] + }, + { + "Id": "d33f8677-dabf-458f-80a8-e606bdb4cb0c", + "Order": 2, + "DeletedAt": null, + "EntryId": "8da08768-9b89-4d6a-ab4e-deb87d8e40fe", + "Definition": {}, + "Gloss": { + "en": "put", + "pt": "deixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03db04bc-1143-4170-ab2d-ef3176203966", + "DeletedAt": null, + "LexemeForm": { + "seh": "lekerer" + }, + "CitationForm": { + "seh": "lekerera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1229547d-d9de-4523-ba1e-891053df36a8", + "Order": 1, + "DeletedAt": null, + "EntryId": "03db04bc-1143-4170-ab2d-ef3176203966", + "Definition": {}, + "Gloss": { + "en": "forgive", + "pt": "perdoar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "08f7c015-e173-4059-9307-133dd5b8cc44", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1229547d-d9de-4523-ba1e-891053df36a8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4656786d-1a59-4576-92c9-9a8145677230", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemb" + }, + "CitationForm": { + "seh": "lemba" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3a89870c-b27f-490e-bed9-6f03a8074d9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4656786d-1a59-4576-92c9-9a8145677230", + "Definition": {}, + "Gloss": { + "en": "write", + "pt": "escrever" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "af700054-258a-458a-9e38-e90397833e51", + "Name": { + "en": "Write" + }, + "Code": "3.5.7.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a296f4d8-cef5-4385-989d-c4b0009061ad", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3a89870c-b27f-490e-bed9-6f03a8074d9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a960cfde-c0e9-469b-8b51-726d687ef6a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "lembw" + }, + "CitationForm": { + "seh": "lembwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "703d0fd4-773c-4915-99f6-0f9a461290f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "a960cfde-c0e9-469b-8b51-726d687ef6a2", + "Definition": {}, + "Gloss": { + "en": "written", + "pt": "ser escrito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "8db7c016-bdc9-410b-9523-3197602358f4", + "Name": { + "en": "Written material" + }, + "Code": "3.5.7.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4caf83ac-6a67-49c6-8108-cd95283c5f08", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "703d0fd4-773c-4915-99f6-0f9a461290f8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f0d25f9-51f2-49f0-9aab-25e7ff3b6f14", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemedz" + }, + "CitationForm": { + "seh": "lemedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98b0f1d8-b3f8-4876-9ec5-17e28a80a8b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f0d25f9-51f2-49f0-9aab-25e7ff3b6f14", + "Definition": {}, + "Gloss": { + "en": "respect", + "pt": "respeitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9", + "Name": { + "en": "Honor" + }, + "Code": "4.5.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "9148e55b-acb5-439c-85c7-1b1ffb7ffb1a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "98b0f1d8-b3f8-4876-9ec5-17e28a80a8b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d01b93b-9cb0-4620-8ea2-e07ec147d467", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemer" + }, + "CitationForm": { + "seh": "lemera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0a80dcf6-b583-4c1f-9e80-b636400cdfcb", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d01b93b-9cb0-4620-8ea2-e07ec147d467", + "Definition": {}, + "Gloss": { + "en": "over weighed", + "pt": "cargado demais" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28228fd2-9575-42d5-b01e-6fd139750d8a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0a80dcf6-b583-4c1f-9e80-b636400cdfcb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd3d7ca9-5192-4427-ad66-d189dd835ea2", + "DeletedAt": null, + "LexemeForm": { + "seh": "leng" + }, + "CitationForm": { + "seh": "lenga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f19f938-d264-4e3a-aa26-502445dd8266", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd3d7ca9-5192-4427-ad66-d189dd835ea2", + "Definition": {}, + "Gloss": { + "en": "create", + "pt": "criar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "305dd894-82b2-492d-8280-de50a130d24b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8f19f938-d264-4e3a-aa26-502445dd8266", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0b6d441-05dc-4d1d-b30b-50b5b471cc53", + "DeletedAt": null, + "LexemeForm": { + "seh": "lenges" + }, + "CitationForm": { + "seh": "lengesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "940376b0-d627-4d5c-82c7-bc77aa4a772b", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0b6d441-05dc-4d1d-b30b-50b5b471cc53", + "Definition": { + "en": { + "Spans": [ + { + "Text": "count numbers", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "contar nu\u0301meros", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "count", + "pt": "contar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cab3aa47-e4c1-4a02-abfc-f7eaf3aba50e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "940376b0-d627-4d5c-82c7-bc77aa4a772b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09226098-f664-425f-81fd-18c0a8c7afbf", + "DeletedAt": null, + "LexemeForm": { + "seh": "lero" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "df45b4f2-25bd-4f90-b89c-3cec51877f7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "09226098-f664-425f-81fd-18c0a8c7afbf", + "Definition": {}, + "Gloss": { + "en": "today", + "pt": "ho\u0301je" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "42dff89b-f826-4687-a75a-b07801ba42d4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "df45b4f2-25bd-4f90-b89c-3cec51877f7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8f7c22b-7757-48a6-88d5-3f312f18e4de", + "DeletedAt": null, + "LexemeForm": { + "seh": "leser" + }, + "CitationForm": { + "seh": "lesera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e89b6243-a7c0-48c2-b34c-1bf1fc057d85", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8f7c22b-7757-48a6-88d5-3f312f18e4de", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tempt, experiment/try, to fool", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "tempt", + "pt": "tentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb", + "Name": { + "en": "Deceive" + }, + "Code": "4.3.5.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "509924a9-5bd2-4c3a-99b9-be71d26d5987", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e89b6243-a7c0-48c2-b34c-1bf1fc057d85", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "85aa5ed0-186b-4cc4-bb3d-e2ea9a75ddf0", + "DeletedAt": null, + "LexemeForm": { + "seh": "lezi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2d93aa5f-85c0-4262-a073-4c52725df0ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "85aa5ed0-186b-4cc4-bb3d-e2ea9a75ddf0", + "Definition": {}, + "Gloss": { + "en": "vulture", + "pt": "abutre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4a798c9-79d8-43a8-8a96-b234608e1f5e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2d93aa5f-85c0-4262-a073-4c52725df0ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e44e4446-bbb2-488d-b2fc-a374add17b0f", + "DeletedAt": null, + "LexemeForm": { + "seh": "li" + }, + "CitationForm": { + "seh": "li" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "14656f11-c542-4d0d-a8d8-1bf4404d8a50", + "Order": 1, + "DeletedAt": null, + "EntryId": "e44e4446-bbb2-488d-b2fc-a374add17b0f", + "Definition": {}, + "Gloss": { + "en": "be", + "pt": "ser" + }, + "PartOfSpeech": { + "Id": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "Name": { + "en": "Irregular Verb - li" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2785155-c34c-438a-8406-38ad14a9bd31", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ali kunyumba", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "S/he is in the house.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Esta\u0301 em casa.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "14656f11-c542-4d0d-a8d8-1bf4404d8a50", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eee1f47d-dca3-4c92-8960-b7669879c60c", + "DeletedAt": null, + "LexemeForm": { + "seh": "likombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b0b51446-4aca-4563-afde-fece60b50110", + "Order": 1, + "DeletedAt": null, + "EntryId": "eee1f47d-dca3-4c92-8960-b7669879c60c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spoon made of wood or shell, by extension metal", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spoon", + "pt": "colher" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b4e6c077-4f5e-44f3-8868-1f7ae3486585", + "Name": { + "en": "Eating utensil" + }, + "Code": "5.2.2.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "d6656000-4bfa-4cf1-a051-f5c2bc02cced", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "b0b51446-4aca-4563-afde-fece60b50110", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a76a32b-988e-40da-9574-b73a2a61a7f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "lim" + }, + "CitationForm": { + "seh": "lima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e9e0b4cd-f43e-4782-99e4-ebdbb9beface", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a76a32b-988e-40da-9574-b73a2a61a7f5", + "Definition": {}, + "Gloss": { + "en": "cultivate", + "pt": "cultivar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "5bb29704-fe0f-4594-9622-ce0aa42b93c8", + "Name": { + "en": "Agriculture" + }, + "Code": "6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "32a89fe3-586f-46d2-8f9f-db42c0178de2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e9e0b4cd-f43e-4782-99e4-ebdbb9beface", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d810efd-113c-43df-accb-cd2111c4ef5b", + "DeletedAt": null, + "LexemeForm": { + "seh": "limir" + }, + "CitationForm": { + "seh": "limira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f252789-f43e-4ab9-861b-24a34a80be54", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d810efd-113c-43df-accb-cd2111c4ef5b", + "Definition": {}, + "Gloss": { + "en": "standing", + "pt": "estar de pe\u0301" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b255f337-9e7b-4ac6-803b-15c5ef2cf93a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "6f252789-f43e-4ab9-861b-24a34a80be54", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "28b3b978-50c9-4bce-95db-e61bc98a3f59", + "DeletedAt": null, + "LexemeForm": { + "seh": "lini" + }, + "CitationForm": { + "seh": "lini?" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "98a00a46-22ea-43b9-9c91-30592f12e9b8", + "Order": 1, + "DeletedAt": null, + "EntryId": "28b3b978-50c9-4bce-95db-e61bc98a3f59", + "Definition": {}, + "Gloss": { + "en": "when?", + "pt": "quando?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a6b95bd3-1097-4023-ac6d-1670bc323b69", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "98a00a46-22ea-43b9-9c91-30592f12e9b8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "deaf7897-9532-4ba3-afc2-3d25300db453", + "DeletedAt": null, + "LexemeForm": { + "seh": "lip" + }, + "CitationForm": { + "seh": "lipa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09e43ed4-56f0-486c-9716-df293f95bbc2", + "Order": 1, + "DeletedAt": null, + "EntryId": "deaf7897-9532-4ba3-afc2-3d25300db453", + "Definition": {}, + "Gloss": { + "en": "pay", + "pt": "pagar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0126917-61cc-4acf-b66d-4667d1a66155", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "09e43ed4-56f0-486c-9716-df293f95bbc2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b53184d2-c0c0-4edf-a0e4-74c88d9296b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "lipo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21d335a6-7d87-4e70-ac02-23010d17dcf2", + "Order": 1, + "DeletedAt": null, + "EntryId": "b53184d2-c0c0-4edf-a0e4-74c88d9296b1", + "Definition": {}, + "Gloss": { + "en": "there was", + "pt": "era ali" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "264f31d2-0988-429a-9026-6024b3cd18cf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akhalipo \u0022there was\u0022 alipo \u0022there is\u0022", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "21d335a6-7d87-4e70-ac02-23010d17dcf2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3679eb18-b521-49d0-9430-93a309567c54", + "DeletedAt": null, + "LexemeForm": { + "seh": "lir" + }, + "CitationForm": { + "seh": "lira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "954570dd-87fd-4d6e-add9-7d819381c22c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3679eb18-b521-49d0-9430-93a309567c54", + "Definition": {}, + "Gloss": { + "en": "cry", + "pt": "chorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "b4fe4698-54a2-4bcd-9490-e07ee1ee97af", + "Name": { + "en": "Cry, tear" + }, + "Code": "3.5.6.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb2c05fd-4063-4299-a21f-49fb586023fd", + "DeletedAt": null, + "LexemeForm": { + "seh": "lirimi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad5209b6-e450-44ea-9e26-7843d1400eef", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb2c05fd-4063-4299-a21f-49fb586023fd", + "Definition": {}, + "Gloss": { + "en": "tongue", + "pt": "li\u0301ngua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28709ae5-978b-4fc6-9815-8b203f5a4f73", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "ad5209b6-e450-44ea-9e26-7843d1400eef", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e504f90-f7df-46a0-8fbb-080f16fc33b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "liwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1a2af823-093d-4226-b1af-71906c968a91", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e504f90-f7df-46a0-8fbb-080f16fc33b1", + "Definition": {}, + "Gloss": { + "en": "snare", + "pt": "armadilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "29f4e655-80af-4c02-be8c-63c5473e32ce", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "1a2af823-093d-4226-b1af-71906c968a91", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "acd26daa-9774-4a34-997d-8d3d7660a54b", + "DeletedAt": null, + "LexemeForm": { + "seh": "liz" + }, + "CitationForm": { + "seh": "liza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fbdc42ce-d4b0-45b8-8385-d9096064ba6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "acd26daa-9774-4a34-997d-8d3d7660a54b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "play instrument", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tocar instrumente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "play", + "pt": "tocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b47081f-512b-41a9-940c-a6c7987aa056", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "fbdc42ce-d4b0-45b8-8385-d9096064ba6f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c007e718-9eb0-442a-8c3b-42b8e2e32453", + "DeletedAt": null, + "LexemeForm": { + "seh": "lobzek" + }, + "CitationForm": { + "seh": "lobzeka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "45ef7e48-d380-41f2-9ec2-7ce2f5616944", + "Order": 1, + "DeletedAt": null, + "EntryId": "c007e718-9eb0-442a-8c3b-42b8e2e32453", + "Definition": {}, + "Gloss": { + "en": "shipwreck", + "pt": "naufragar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e30652da-be16-4e3b-bd94-1457f71f5fb9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Alobzweka mwadia", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Naufragou com canoa", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth = sink", + "Ws": "en" + } + ] + }, + "SenseId": "45ef7e48-d380-41f2-9ec2-7ce2f5616944", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f2983d64-34f8-473a-9575-3bfb1ef54d2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "lokot" + }, + "CitationForm": { + "seh": "lokota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5cf564d-fa0d-4818-94dd-e542b59f80a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "f2983d64-34f8-473a-9575-3bfb1ef54d2e", + "Definition": {}, + "Gloss": { + "en": "find", + "pt": "achar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fa071f13-666b-4834-a265-6b894ab69054", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a5cf564d-fa0d-4818-94dd-e542b59f80a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "46f0b1a4-d1a2-4e13-8424-20776002c03f", + "DeletedAt": null, + "LexemeForm": { + "seh": "lokoter" + }, + "CitationForm": { + "seh": "lokotera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f6191876-68d6-4e06-877f-24ef94aa31d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "46f0b1a4-d1a2-4e13-8424-20776002c03f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "pick up left overs", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "pick up scraps", + "pt": "apanhar migalhas" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c837823-367a-4f9a-8906-ba688ef20fd1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f6191876-68d6-4e06-877f-24ef94aa31d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "931ae19c-9a0d-494e-8fcf-0ee54c67fa9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "lond" + }, + "CitationForm": { + "seh": "londa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "27e52026-b6f1-47b3-a588-e7891b63d80f", + "Order": 1, + "DeletedAt": null, + "EntryId": "931ae19c-9a0d-494e-8fcf-0ee54c67fa9e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to follow or track", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "seguir por onde outra passo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "follow", + "pt": "seguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "19d54c2f-ae03-4cbc-9b7e-57292f92fbc1", + "Name": { + "en": "Pursue" + }, + "Code": "7.2.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a84211ca-c71a-4ddc-88f4-76245b304e7a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwanabwa ali kulonda cinyama", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Ca\u0303o esta\u0301 a perseguir o animal.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "27e52026-b6f1-47b3-a588-e7891b63d80f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "069db5da-52da-42b1-a39f-c8e4554f6362", + "DeletedAt": null, + "LexemeForm": { + "seh": "long" + }, + "CitationForm": { + "seh": "longa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7639dce1-8ea5-40de-b8e9-681656497f59", + "Order": 1, + "DeletedAt": null, + "EntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "Definition": {}, + "Gloss": { + "en": "talk", + "pt": "falar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c834dec1-0ff1-4da7-b273-654c70b5bbfe", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "7639dce1-8ea5-40de-b8e9-681656497f59", + "DeletedAt": null + } + ] + }, + { + "Id": "94a44008-2b57-45cf-abf8-56a29b881810", + "Order": 2, + "DeletedAt": null, + "EntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "Definition": {}, + "Gloss": { + "en": "say", + "pt": "dizer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "3aca361b-c1c2-4f76-9f17-c07d5caf3033", + "MaybeId": "3aca361b-c1c2-4f76-9f17-c07d5caf3033", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "ComplexFormHeadword": "longana", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + }, + { + "Id": "bcfccc21-fb44-4916-bc17-7e2ddb79321e", + "MaybeId": "bcfccc21-fb44-4916-bc17-7e2ddb79321e", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "ComplexFormHeadword": "malongero", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "DeletedAt": null, + "LexemeForm": { + "seh": "longan" + }, + "CitationForm": { + "seh": "longana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f1d582f4-f8a1-4e6c-99f3-039650900166", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "Definition": {}, + "Gloss": { + "en": "dispute", + "pt": "disputar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f11af878-af28-454f-8ae2-862cbaffe855", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f1d582f4-f8a1-4e6c-99f3-039650900166", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "3aca361b-c1c2-4f76-9f17-c07d5caf3033", + "MaybeId": "3aca361b-c1c2-4f76-9f17-c07d5caf3033", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "ComplexFormHeadword": "longana", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5e597800-64a1-4748-bd2e-4ee399aab0e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "lot" + }, + "CitationForm": { + "seh": "lota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbe5cf38-4025-4302-a67f-f288ae0d0b1f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5e597800-64a1-4748-bd2e-4ee399aab0e8", + "Definition": {}, + "Gloss": { + "en": "dream", + "pt": "sonhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d34f6947-a053-48c2-b1d7-2f311eed6a48", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cbe5cf38-4025-4302-a67f-f288ae0d0b1f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "741413db-214c-44f0-9646-a3dc4fa3f382", + "DeletedAt": null, + "LexemeForm": { + "seh": "low" + }, + "CitationForm": { + "seh": "lowa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a87fe186-90f5-4664-b096-faa0c8d73c83", + "Order": 1, + "DeletedAt": null, + "EntryId": "741413db-214c-44f0-9646-a3dc4fa3f382", + "Definition": {}, + "Gloss": { + "en": "sink", + "pt": "naufragar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4de33742-5a70-4593-8386-6426bbc5a99c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a87fe186-90f5-4664-b096-faa0c8d73c83", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4507a379-ef26-4e14-9e20-064dfc89951d", + "DeletedAt": null, + "LexemeForm": { + "seh": "lukul" + }, + "CitationForm": { + "seh": "lukula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a48b6a25-3b5b-4749-b75c-5b54f2465c2f", + "Order": 1, + "DeletedAt": null, + "EntryId": "4507a379-ef26-4e14-9e20-064dfc89951d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "when a ruminante animal brings up food", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "ruminate", + "pt": "ruminar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b6c1cc10-351f-4db2-9ef8-407027bc3549", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a48b6a25-3b5b-4749-b75c-5b54f2465c2f", + "DeletedAt": null + } + ] + }, + { + "Id": "ec56155f-e5b8-435d-a475-7a774c86a3d3", + "Order": 2, + "DeletedAt": null, + "EntryId": "4507a379-ef26-4e14-9e20-064dfc89951d", + "Definition": {}, + "Gloss": { + "en": "vomit", + "pt": "vomitar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fad0b873-83d0-4e97-9aeb-6fe7c6768ec9", + "DeletedAt": null, + "LexemeForm": { + "seh": "lukwali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3ffb5f73-0470-40c2-b53d-79dcdd45d2a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "fad0b873-83d0-4e97-9aeb-6fe7c6768ec9", + "Definition": {}, + "Gloss": { + "en": "prostitution", + "pt": "prostituic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b2e9e5e9-c305-4740-a3d4-e83334d07c39", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3ffb5f73-0470-40c2-b53d-79dcdd45d2a7", + "DeletedAt": null + } + ] + }, + { + "Id": "4c579b8c-15d9-4217-91d2-a801e123a806", + "Order": 2, + "DeletedAt": null, + "EntryId": "fad0b873-83d0-4e97-9aeb-6fe7c6768ec9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sexual immorality", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "imoralidade sexual", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "immorality", + "pt": "imoralidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5de74fc5-b4fe-481b-9411-16e5f8c295fa", + "DeletedAt": null, + "LexemeForm": { + "seh": "lul" + }, + "CitationForm": { + "seh": "lula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "54ed62eb-8bcb-47ef-a452-8ea424fe3d01", + "Order": 1, + "DeletedAt": null, + "EntryId": "5de74fc5-b4fe-481b-9411-16e5f8c295fa", + "Definition": { + "en": { + "Spans": [ + { + "Text": "rotting of food because of no refrigeration", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "podrecer comida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rot", + "pt": "podrecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d2d8b05-f018-4ad4-b0a2-273973933f2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "lulup" + }, + "CitationForm": { + "seh": "lulupa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b2804ad1-af28-4a1a-9e64-4219db3dfd42", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d2d8b05-f018-4ad4-b0a2-273973933f2b", + "Definition": {}, + "Gloss": { + "en": "light weight", + "pt": "leve" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4330a027-99e8-481b-8009-d6a5750a00e9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b2804ad1-af28-4a1a-9e64-4219db3dfd42", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2f52d128-5fd5-404f-8e4b-e2b39c157392", + "DeletedAt": null, + "LexemeForm": { + "seh": "lum" + }, + "CitationForm": { + "seh": "luma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea0b55a0-af6b-4491-af06-4fa4ca2f95c7", + "Order": 1, + "DeletedAt": null, + "EntryId": "2f52d128-5fd5-404f-8e4b-e2b39c157392", + "Definition": {}, + "Gloss": { + "en": "bite", + "pt": "morder" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "70a05b51-2334-4adc-a876-ada0eb6c6995", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ea0b55a0-af6b-4491-af06-4fa4ca2f95c7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08f79028-69d4-46ed-bd92-a6370a1f7c6b", + "DeletedAt": null, + "LexemeForm": { + "seh": "lumbza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "48671a5c-801b-4f46-b57a-33a713431e3e", + "Order": 1, + "DeletedAt": null, + "EntryId": "08f79028-69d4-46ed-bd92-a6370a1f7c6b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Livingstone antilope", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "antilope", + "pt": "antelope" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2423dbb1-cb03-40a3-ac64-26eb40a6640b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "48671a5c-801b-4f46-b57a-33a713431e3e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ade2df45-cb8b-4718-a1e3-1b4113047737", + "DeletedAt": null, + "LexemeForm": { + "seh": "lumo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "611bc6d1-791c-4d82-a45f-7721e8b7b7cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "ade2df45-cb8b-4718-a1e3-1b4113047737", + "Definition": {}, + "Gloss": { + "en": "blade", + "pt": "la\u0301mina" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26a00be4-5b87-47de-9850-d7d3c0e8f9a7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "611bc6d1-791c-4d82-a45f-7721e8b7b7cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab02d289-84c7-4f71-a1f9-151708cd27f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "lungam" + }, + "CitationForm": { + "seh": "lungama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "122c9804-0c81-46bf-a059-eff5a71114d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab02d289-84c7-4f71-a1f9-151708cd27f5", + "Definition": {}, + "Gloss": { + "en": "justice", + "pt": "justica" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c09f749c-8d81-4a70-97ba-e0079779773e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "122c9804-0c81-46bf-a059-eff5a71114d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0bb89c2-38b0-4d91-bb8e-09f9529d6c69", + "DeletedAt": null, + "LexemeForm": { + "seh": "lungul" + }, + "CitationForm": { + "seh": "lungula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "45cfd084-6fcc-4918-8aa8-1f448a585505", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0bb89c2-38b0-4d91-bb8e-09f9529d6c69", + "Definition": {}, + "Gloss": { + "en": "salty taste", + "pt": "sabor de sal" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71d0edb7-f3b1-49dc-941a-bf77de1d1c54", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "45cfd084-6fcc-4918-8aa8-1f448a585505", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa3adea2-17d4-48cf-b1f7-a8dbbad88a5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "luphato" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "48326394-3e3c-4ced-a93e-aad376af4be3", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa3adea2-17d4-48cf-b1f7-a8dbbad88a5d", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "lobolo, premeiro promesa, prendas ou dinheiro dado para iniciar uma promessa de casamento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bride price", + "pt": "lobolo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d679307-91c5-43cf-b259-aca5d5a90c2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "lupya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a0e195ba-db0d-4e06-8512-0d683e9d9cb5", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d679307-91c5-43cf-b259-aca5d5a90c2c", + "Definition": {}, + "Gloss": { + "en": "burnt", + "pt": "queimada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28fe0e82-c3da-4557-a2e5-b3e342428a2d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nzizi uno ntsanga musaoneka lupya dza okhaokha.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Este tempo o mato se ve queimado so\u0301mente aquele tipo.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a0e195ba-db0d-4e06-8512-0d683e9d9cb5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5cad3d08-3860-4af6-8d26-b250ee09ea42", + "DeletedAt": null, + "LexemeForm": { + "seh": "luwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88f99db9-c0c5-44b5-a9af-b2c4f61fe87f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5cad3d08-3860-4af6-8d26-b250ee09ea42", + "Definition": {}, + "Gloss": { + "en": "flower", + "pt": "flo\u0301r" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c345f278-91ff-463d-b9a6-8abac8a267eb", + "Name": { + "en": "Grass, herb, vine" + }, + "Code": "1.5.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b27f9aed-bb46-4277-a161-ab49f0aa6412", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "88f99db9-c0c5-44b5-a9af-b2c4f61fe87f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04c59753-bc07-4b42-a0d6-471f9b4db0d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "luz" + }, + "CitationForm": { + "seh": "luza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7bbab562-1e09-4b3c-84ce-f59fbfe201ae", + "Order": 1, + "DeletedAt": null, + "EntryId": "04c59753-bc07-4b42-a0d6-471f9b4db0d7", + "Definition": {}, + "Gloss": { + "en": "lose", + "pt": "perder" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "abbf1b68-f3cd-474c-b7d6-a3f4d9245ae4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "7bbab562-1e09-4b3c-84ce-f59fbfe201ae", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "bale" + }, + "CitationForm": { + "seh": "m\u0027bale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a625dc05-4f89-44fb-a88a-3e2f564442dd", + "Order": 1, + "DeletedAt": null, + "EntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "brother, sister", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "brother", + "pt": "irma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3423c016-0d7d-42e5-be79-f333eafacd8d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,33; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a625dc05-4f89-44fb-a88a-3e2f564442dd", + "DeletedAt": null + } + ] + }, + { + "Id": "2ed3a10f-6c6d-40b2-b807-38bbe00a07a0", + "Order": 2, + "DeletedAt": null, + "EntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the plural it can mean family", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sister", + "pt": "irma\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "6c8e6a75-ead2-4cfb-bdfa-56d4bd7bc413", + "MaybeId": "6c8e6a75-ead2-4cfb-bdfa-56d4bd7bc413", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "790f529d-28ed-4a50-af49-27de75aecc4f", + "ComplexFormHeadword": "ubale", + "ComponentEntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "ComponentSenseId": null, + "ComponentHeadword": "m\u0027bale" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f04d1336-46bf-4e67-a0ae-8b2520eb0cc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027bambakuca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "649cbb4c-aeac-49d3-9939-2a485927f7d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "f04d1336-46bf-4e67-a0ae-8b2520eb0cc1", + "Definition": {}, + "Gloss": { + "en": "early morning", + "pt": "madurgada" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea32a665-7d74-47bd-a1a2-cc8f1b3a846e", + "DeletedAt": null, + "LexemeForm": { + "seh": "binzi" + }, + "CitationForm": { + "seh": "m\u0027binzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "461c78a8-d2b1-4d57-9c9a-bc14e85364d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea32a665-7d74-47bd-a1a2-cc8f1b3a846e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Jackel, Wild dog or Aardwolf(no distiction made)", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Chacal ou ca\u0303o selvagem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "jackal", + "pt": "chacal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7284946-7853-4504-b8b7-ad5673658e0d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque, Moreira:15", + "Ws": "en" + } + ] + }, + "SenseId": "461c78a8-d2b1-4d57-9c9a-bc14e85364d1", + "DeletedAt": null + } + ] + }, + { + "Id": "9b148078-a552-4b81-91fa-c5313a4badc9", + "Order": 2, + "DeletedAt": null, + "EntryId": "ea32a665-7d74-47bd-a1a2-cc8f1b3a846e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild dog, does not include domestic dog", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "wild dog", + "pt": "ca\u0303o selvagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6e3f095-e1e8-43f9-88a7-0c07de62785b", + "DeletedAt": null, + "LexemeForm": { + "seh": "bobo" + }, + "CitationForm": { + "seh": "m\u0027bobo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef7144af-9ed2-45d2-8ae0-5e8f11d5cce5", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6e3f095-e1e8-43f9-88a7-0c07de62785b", + "Definition": {}, + "Gloss": { + "en": "snake type", + "pt": "cobra tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9734a448-1a40-4b69-b761-0fb698008c99", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef7144af-9ed2-45d2-8ae0-5e8f11d5cce5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "76507046-08dd-42da-8179-7290e797c7e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027boliboli" + }, + "CitationForm": { + "seh": "m\u0027boliboli" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f80ea820-9403-463b-aaf5-e0e7747d95d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "76507046-08dd-42da-8179-7290e797c7e4", + "Definition": {}, + "Gloss": { + "en": "blind person", + "pt": "cego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5cda2cbe-24b5-47e3-ba09-1280c6ed8d2c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f80ea820-9403-463b-aaf5-e0e7747d95d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8b999bd-aae7-4303-b4ae-a156b281ea30", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027dzukwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d2999056-d762-47c7-966a-8f2fc20d1272", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8b999bd-aae7-4303-b4ae-a156b281ea30", + "Definition": {}, + "Gloss": { + "en": "ghost", + "pt": "fantasma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd48ee8f-48bd-4ab9-a964-d369d3dd8921", + "DeletedAt": null, + "LexemeForm": { + "seh": "phale" + }, + "CitationForm": { + "seh": "m\u0027phale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c63aca2-095f-4b6c-a2ad-f0b45abc4345", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd48ee8f-48bd-4ab9-a964-d369d3dd8921", + "Definition": {}, + "Gloss": { + "en": "boy", + "pt": "rapaz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8453ff91-003f-470a-84c2-9e5edac856a3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "2c63aca2-095f-4b6c-a2ad-f0b45abc4345", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b69e7877-6b8b-4b35-af0c-42dc6f4f6a6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "phembero" + }, + "CitationForm": { + "seh": "m\u0027phembero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4b55442-7b5f-4da4-8df5-f41a07a7a07a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b69e7877-6b8b-4b35-af0c-42dc6f4f6a6a", + "Definition": {}, + "Gloss": { + "en": "prayer", + "pt": "orac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "029dfc24-e810-436c-8e41-0b9594e2aa97", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a4b55442-7b5f-4da4-8df5-f41a07a7a07a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "444d0b18-88cc-4d40-bee3-44eb2fcdc937", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027phole-m\u0027phole" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8d2938b5-66df-4628-a5d2-331356818b90", + "Order": 1, + "DeletedAt": null, + "EntryId": "444d0b18-88cc-4d40-bee3-44eb2fcdc937", + "Definition": {}, + "Gloss": { + "en": "slowly", + "pt": "devegar" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f49cf039-9a78-4275-812f-e82a0c6070eb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d2938b5-66df-4628-a5d2-331356818b90", + "DeletedAt": null + } + ] + }, + { + "Id": "e4f8f769-2814-4cf2-b98d-b03db5840f52", + "Order": 2, + "DeletedAt": null, + "EntryId": "444d0b18-88cc-4d40-bee3-44eb2fcdc937", + "Definition": {}, + "Gloss": { + "en": "with care", + "pt": "cautela" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "932a69bd-4e22-40a2-9a88-6d27e1feb482", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027phy" + }, + "CitationForm": { + "seh": "m\u0027phya" + }, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "8af45d7c-067b-4bac-9eb4-0c0e6bd35c9c", + "Order": 1, + "DeletedAt": null, + "EntryId": "932a69bd-4e22-40a2-9a88-6d27e1feb482", + "Definition": {}, + "Gloss": { + "en": "is of", + "pt": "e\u0301 de" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8be4b8a-546b-4fb9-8d82-62c03124f41c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8af45d7c-067b-4bac-9eb4-0c0e6bd35c9c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4242ac27-b0bf-4d39-86ce-0efb655ead4a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ma" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "e9fc5fdd-7261-4dd9-81ee-dad6106b5bcc", + "Order": 1, + "DeletedAt": null, + "EntryId": "4242ac27-b0bf-4d39-86ce-0efb655ead4a", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bea76ea6-9cd6-491a-9158-47a29ba95ffe", + "DeletedAt": null, + "LexemeForm": { + "seh": "ma" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1871ee3d-67a2-4ccc-adbd-413b2535f0fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "bea76ea6-9cd6-491a-9158-47a29ba95ffe", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c76ff5f1-2b47-4670-9c26-f986bf6a5dc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "amacadu" + }, + "CitationForm": { + "seh": "macadu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "89e08ce0-76fe-4600-909c-a6ef6ddc369f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c76ff5f1-2b47-4670-9c26-f986bf6a5dc1", + "Definition": {}, + "Gloss": { + "en": "axe", + "pt": "machado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ddbb6bd6-4269-438f-8e81-7c0f1322e3b3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "89e08ce0-76fe-4600-909c-a6ef6ddc369f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "013dd3e2-358f-4c3d-9274-330b93626e7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "cibese" + }, + "CitationForm": { + "seh": "macibese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7be81c0e-c674-4ffc-8c2e-e74e5f87a429", + "Order": 1, + "DeletedAt": null, + "EntryId": "013dd3e2-358f-4c3d-9274-330b93626e7f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "starting at around 4am until masikati", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "morning", + "pt": "manha\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4889a68-6b75-418f-a903-c5c580f5ddc7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:13,19", + "Ws": "en" + } + ] + }, + "SenseId": "7be81c0e-c674-4ffc-8c2e-e74e5f87a429", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3dc760ba-5910-4979-9b9b-32e6a3245831", + "DeletedAt": null, + "LexemeForm": { + "seh": "citiro" + }, + "CitationForm": { + "seh": "macitiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f2bfb53-00f2-4797-9b6b-e516e0ce179f", + "Order": 1, + "DeletedAt": null, + "EntryId": "3dc760ba-5910-4979-9b9b-32e6a3245831", + "Definition": { + "en": { + "Spans": [ + { + "Text": "habits, manner of acting", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "maneira de actos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "habits", + "pt": "ha\u0301bitos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b55dffb-d386-437b-8fa3-9f3b1b4281d4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1f2bfb53-00f2-4797-9b6b-e516e0ce179f", + "DeletedAt": null + } + ] + }, + { + "Id": "52d378cc-8bee-46e9-be52-68d791d04080", + "Order": 2, + "DeletedAt": null, + "EntryId": "3dc760ba-5910-4979-9b9b-32e6a3245831", + "Definition": {}, + "Gloss": { + "en": "what you do" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ec4d122-342c-4eec-bc85-52e0133b3e2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunguzo" + }, + "CitationForm": { + "seh": "macunguzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3fbf73de-bc50-4b0e-a81d-4d4a7274fe31", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ec4d122-342c-4eec-bc85-52e0133b3e2d", + "Definition": {}, + "Gloss": { + "en": "marriage", + "pt": "casamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45999096-e8b6-4dfc-8914-0f58b3fb7942", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3fbf73de-bc50-4b0e-a81d-4d4a7274fe31", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "64b8230d-3a23-424f-8e4d-dcd8e21644e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "dyaundu" + }, + "CitationForm": { + "seh": "madyaundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5e8265a3-3165-4af9-a937-69e5f2a6139a", + "Order": 1, + "DeletedAt": null, + "EntryId": "64b8230d-3a23-424f-8e4d-dcd8e21644e2", + "Definition": {}, + "Gloss": { + "en": "gourd plant", + "pt": "cabac\u0327eira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "89512d58-0851-4c01-a0c7-7718fb1da3a8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Carlotta", + "Ws": "en" + } + ] + }, + "SenseId": "5e8265a3-3165-4af9-a937-69e5f2a6139a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c4f4316e-eef4-438a-8e26-4a5e88c21043", + "DeletedAt": null, + "LexemeForm": { + "seh": "madyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "efc09d29-c9cd-465c-90dd-e7b1573aa8c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "c4f4316e-eef4-438a-8e26-4a5e88c21043", + "Definition": {}, + "Gloss": { + "en": "right side", + "pt": "direito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "908fc4c2-ca59-4c2b-bdc6-68e61ecf9058", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "efc09d29-c9cd-465c-90dd-e7b1573aa8c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "966fb39e-6c2b-434e-b156-ea2797510c13", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": { + "seh": "madzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e15307e9-af9b-4c96-b500-7da6cae75fc3", + "Order": 1, + "DeletedAt": null, + "EntryId": "966fb39e-6c2b-434e-b156-ea2797510c13", + "Definition": {}, + "Gloss": { + "en": "water", + "pt": "a\u0301gua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "60364974-a005-4567-82e9-7aaeff894ab0", + "Name": { + "en": "Water" + }, + "Code": "1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7b23e2b5-0913-4110-987f-f49a6acd672d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:13; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e15307e9-af9b-4c96-b500-7da6cae75fc3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fd18421-b43a-4f15-b59e-258e4aded3e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "mai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c6142fea-e652-40b7-b102-80fa25f41171", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fd18421-b43a-4f15-b59e-258e4aded3e5", + "Definition": {}, + "Gloss": { + "en": "mother", + "pt": "ma\u0303e" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efbb0fd2-f6be-4d34-acd4-a5deb7edc2b4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook", + "Ws": "en" + } + ] + }, + "SenseId": "c6142fea-e652-40b7-b102-80fa25f41171", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c264498-be24-45ff-8e89-74bee6d331a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "makamaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "db1b84b1-735e-4654-b942-bf0785e5c957", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c264498-be24-45ff-8e89-74bee6d331a7", + "Definition": {}, + "Gloss": { + "en": "more than that", + "pt": "sobretudo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23171277-7731-4c1a-85aa-dd1e18151779", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisakufunani bwenye makamaka babano", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Gosto (com respeito) sobretudo seu pai.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "db1b84b1-735e-4654-b942-bf0785e5c957", + "DeletedAt": null + }, + { + "Id": "959aff94-7218-483a-8d80-62cf3359852b", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisamwa kafe bwenye makamaka kokakola.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Bebo mais Coca Cola do que cafe.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "db1b84b1-735e-4654-b942-bf0785e5c957", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c92125f-2581-40b7-a285-f631c69067ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaliro" + }, + "CitationForm": { + "seh": "makhaliro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb463714-a764-41a6-930d-72042a2d09ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": { + "en": { + "Spans": [ + { + "Text": "behaviour", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "comportamento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "behaviour", + "pt": "comportamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "425b3984-e46d-4ec4-855a-ce912dfc47d7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ana acincino makhaliro awo mbanawa", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Crianc\u0327as de agora (hoje\u0301) comportamento deles e\u0301 este.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "fb463714-a764-41a6-930d-72042a2d09ec", + "DeletedAt": null + } + ] + }, + { + "Id": "75e9c0e7-e53d-45b6-84cc-09eb21401f99", + "Order": 2, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": {}, + "Gloss": { + "en": "culture", + "pt": "cultura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b37cebbd-6125-438b-aebd-e65174d9f464", + "Order": 3, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": {}, + "Gloss": { + "en": "entity", + "pt": "entidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e3873582-d497-4056-8de1-fc93329a7edf", + "Order": 4, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": {}, + "Gloss": { + "en": "essense", + "pt": "essencia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09765816-82fe-4e50-b90a-8fc0608806c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "konzero" + }, + "CitationForm": { + "seh": "makonzero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ec144453-8e8a-45cc-b506-495ca91ba00f", + "Order": 1, + "DeletedAt": null, + "EntryId": "09765816-82fe-4e50-b90a-8fc0608806c6", + "Definition": {}, + "Gloss": { + "en": "way of curing", + "pt": "maneira de curar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a60dd263-3e07-4470-b48a-e9c47ef0dc40", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Makonzero ace mbakuipa.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "A maneira que ele esta\u0301 a curar (tratar doentes) e\u0301 mal.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "ec144453-8e8a-45cc-b506-495ca91ba00f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d2d8a29-b6f3-4c51-bead-b6f657b8894e", + "DeletedAt": null, + "LexemeForm": { + "seh": "makote" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4e518d15-c861-4f3b-bd03-c757d9598bf8", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d2d8a29-b6f3-4c51-bead-b6f657b8894e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "communal.harvesting work", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "trabalho.colectivo de colheita", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "harvest", + "pt": "colheita" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0e9f77a9-ae38-43ab-986c-b72debddc315", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4e518d15-c861-4f3b-bd03-c757d9598bf8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "634c2bfe-ad43-4215-a521-cc41414055d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuliro" + }, + "CitationForm": { + "seh": "makuliro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8910df53-b949-4206-9f66-bf799a42c9cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "634c2bfe-ad43-4215-a521-cc41414055d2", + "Definition": {}, + "Gloss": { + "en": "growing", + "pt": "crecimento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1b2f7c4-8bca-4982-a2a9-326b15ee4f50", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8910df53-b949-4206-9f66-bf799a42c9cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e4bae19-8715-4eb9-9e34-2d5e84e88987", + "DeletedAt": null, + "LexemeForm": { + "seh": "makumanai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "11782e46-c080-4795-843b-96fb819cba28", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e4bae19-8715-4eb9-9e34-2d5e84e88987", + "Definition": {}, + "Gloss": { + "en": "forty", + "pt": "quarenta" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "97c6d521-4b8d-4509-8cb6-d68504b637ea", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "11782e46-c080-4795-843b-96fb819cba28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "010b10bf-b36b-472c-8048-0bb3349e7b5c", + "DeletedAt": null, + "LexemeForm": { + "seh": "makuantanthatu" + }, + "CitationForm": { + "seh": "makumatanthatu" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "601deede-c9d4-4d77-aa8e-a2e9ac75d53f", + "Order": 1, + "DeletedAt": null, + "EntryId": "010b10bf-b36b-472c-8048-0bb3349e7b5c", + "Definition": {}, + "Gloss": { + "en": "sixty", + "pt": "sessenta" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4eb00bbe-4479-481b-8c91-00430f32e780", + "DeletedAt": null, + "LexemeForm": { + "seh": "makumatatu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "edbb9351-ca4a-4b12-a70b-50de1c298db4", + "Order": 1, + "DeletedAt": null, + "EntryId": "4eb00bbe-4479-481b-8c91-00430f32e780", + "Definition": {}, + "Gloss": { + "en": "thirty", + "pt": "trinte" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a7e47662-39d5-4558-868f-ac871b1f1ff9", + "DeletedAt": null, + "LexemeForm": { + "seh": "makumawiri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "319b5368-715d-4ff1-a6f5-01de219b6be7", + "Order": 1, + "DeletedAt": null, + "EntryId": "a7e47662-39d5-4558-868f-ac871b1f1ff9", + "Definition": {}, + "Gloss": { + "en": "twenty", + "pt": "vinte" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aa6e0ba9-2956-42db-bf37-5c06fa2ceff1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "319b5368-715d-4ff1-a6f5-01de219b6be7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4772d058-ec6e-45fe-bc61-33e6761aa7bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "mal" + }, + "CitationForm": { + "seh": "mala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38b1819b-80b8-4894-992e-80f3da0b48a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "4772d058-ec6e-45fe-bc61-33e6761aa7bc", + "Definition": {}, + "Gloss": { + "en": "finish", + "pt": "acabar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "83a5643e-2e8f-414f-9f77-8f4cd68d132b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndamala kudya.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Acabei comer.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "38b1819b-80b8-4894-992e-80f3da0b48a9", + "DeletedAt": null + }, + { + "Id": "b2d48890-aac6-4c42-911f-626981e117a3", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndingamala kusamba ndinadya.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Quando acabar banhar vou comer.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "38b1819b-80b8-4894-992e-80f3da0b48a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e11ff2a9-ff7c-496d-b848-aabd77d9bca9", + "DeletedAt": null, + "LexemeForm": { + "seh": "landalupya" + }, + "CitationForm": { + "seh": "malandalupya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0388212f-ad6d-42ce-a72f-4441945f5547", + "Order": 1, + "DeletedAt": null, + "EntryId": "e11ff2a9-ff7c-496d-b848-aabd77d9bca9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "summer, time to burn", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "summer", + "pt": "vera\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "72799068-7cc5-45f9-87c0-c67e839a08e8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0388212f-ad6d-42ce-a72f-4441945f5547", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6900dedb-2f3c-41f3-9c67-9f92b6ac8b18", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemba" + }, + "CitationForm": { + "seh": "malemba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d53a476-c543-4f58-bc95-92ac73bcee5a", + "Order": 1, + "DeletedAt": null, + "EntryId": "6900dedb-2f3c-41f3-9c67-9f92b6ac8b18", + "Definition": {}, + "Gloss": { + "en": "writings", + "pt": "escritura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5ea40a0-c4ff-417d-9f51-230283583916", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1d53a476-c543-4f58-bc95-92ac73bcee5a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bb8b588-0d50-4c6e-854f-9c894597aed1", + "DeletedAt": null, + "LexemeForm": { + "seh": "malikofa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d7ff011f-0022-4533-902b-56e93efdab6a", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bb8b588-0d50-4c6e-854f-9c894597aed1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "basket for traveling", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cesta de viagem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "basket", + "pt": "cesta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "459ec1c8-c9b5-4a8e-824a-77d95e659cd8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d7ff011f-0022-4533-902b-56e93efdab6a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad10ba32-bcc7-43cd-a41a-1d41b2c67251", + "DeletedAt": null, + "LexemeForm": { + "seh": "malis" + }, + "CitationForm": { + "seh": "malisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad10ba32-bcc7-43cd-a41a-1d41b2c67251", + "Definition": {}, + "Gloss": { + "en": "cause to finish", + "pt": "causar acabar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61738de2-6553-4a34-9adf-1cfb3144e83a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndiri kumalisa", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "faulta pouco para acabar", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", + "DeletedAt": null + }, + { + "Id": "601f347c-3396-475d-93f8-092d71f1c603", + "Order": 2, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9ed4cbe-d4b6-42cb-891b-0f4ae76dda09", + "DeletedAt": null, + "LexemeForm": { + "seh": "londa" + }, + "CitationForm": { + "seh": "malonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e67054cc-f854-4ea7-b572-aade7b6ad1cf", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9ed4cbe-d4b6-42cb-891b-0f4ae76dda09", + "Definition": {}, + "Gloss": { + "en": "trade", + "pt": "nego\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e4c53c2-cffc-4a2b-8348-9c9638bac0e7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e67054cc-f854-4ea7-b572-aade7b6ad1cf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "DeletedAt": null, + "LexemeForm": { + "seh": "longero" + }, + "CitationForm": { + "seh": "malongero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "10f0881e-85ec-4486-ac2f-e6ea88516505", + "Order": 1, + "DeletedAt": null, + "EntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the customary way that a certain person talks", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "way of speaking", + "pt": "forma de falar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "399572af-4914-4f6b-b91c-203776a04319", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Malongero a Antonio nkhabe kubveka.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "O forma de falar de Antonio na\u0303o se entende.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "10f0881e-85ec-4486-ac2f-e6ea88516505", + "DeletedAt": null + } + ] + }, + { + "Id": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", + "Order": 2, + "DeletedAt": null, + "EntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "Definition": {}, + "Gloss": { + "en": "a language", + "pt": "uma li\u0301nuga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "577e88b2-19d0-49c3-a753-99fb0be9b576", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "malongero a cigerego", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "language of Greek", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "li\u0301nuga de grego", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "bcfccc21-fb44-4916-bc17-7e2ddb79321e", + "MaybeId": "bcfccc21-fb44-4916-bc17-7e2ddb79321e", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "ComplexFormHeadword": "malongero", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfcc9c5b-2dda-4ab6-8eea-36c9c3f2031b", + "DeletedAt": null, + "LexemeForm": { + "seh": "mama" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b6779c26-0a60-4de2-b6f2-110d923d6882", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfcc9c5b-2dda-4ab6-8eea-36c9c3f2031b", + "Definition": {}, + "Gloss": { + "en": "mother", + "pt": "ma\u0303e" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "56c12184-6508-4ef1-9435-9b20d41a0d04", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1,33", + "Ws": "en" + } + ] + }, + "SenseId": "b6779c26-0a60-4de2-b6f2-110d923d6882", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "212bba96-db9e-4b3a-9158-81376ca0fcba", + "DeletedAt": null, + "LexemeForm": { + "seh": "mazimambo" + }, + "CitationForm": { + "seh": "mambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a6beb173-ee69-45f7-ad58-2834e81cc4f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "212bba96-db9e-4b3a-9158-81376ca0fcba", + "Definition": {}, + "Gloss": { + "en": "king", + "pt": "rei" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "35632d6f-f6a8-4bae-82cf-a6f065a0baba", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19 diz pr= \u0022dias\u0022 gr= 6", + "Ws": "en" + } + ] + }, + "SenseId": "a6beb173-ee69-45f7-ad58-2834e81cc4f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbwera" + }, + "CitationForm": { + "seh": "mambwera-mbwera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e3433c1a-13bb-4aa1-ade7-cc7f2ac780c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "Definition": {}, + "Gloss": { + "en": "left-overs", + "pt": "migalhes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b98f75a3-8ee9-4b38-ba71-0b5ab312e3eb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e3433c1a-13bb-4aa1-ade7-cc7f2ac780c2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "6ec14ead-90b4-4018-8641-d792e42235c4", + "MaybeId": "6ec14ead-90b4-4018-8641-d792e42235c4", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "ComplexFormHeadword": "mambwera-mbwera", + "ComponentEntryId": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "ComponentSenseId": null, + "ComponentHeadword": "bwera" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "70627ebf-b344-4412-be65-c36fdb8190cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "mamphasa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4f53bb12-ebc7-4893-af3f-efc435cb6333", + "Order": 1, + "DeletedAt": null, + "EntryId": "70627ebf-b344-4412-be65-c36fdb8190cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "multiple birth, twins or triplets or more", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "twins", + "pt": "ge\u0302meos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9b6be8d-dceb-44d9-a231-29a85e6d049e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4f53bb12-ebc7-4893-af3f-efc435cb6333", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "54f91027-d1bf-4a84-b47f-ecbe1e1096d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": { + "seh": "mamuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84a2be95-35ad-49a6-8366-4f77b22b7737", + "Order": 1, + "DeletedAt": null, + "EntryId": "54f91027-d1bf-4a84-b47f-ecbe1e1096d3", + "Definition": {}, + "Gloss": { + "en": "male", + "pt": "masculino" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ee7fb5d-1703-4a4a-b236-c2e2df102106", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ngombe imuna", + "Ws": "en" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "male ox", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "boi masculino", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "84a2be95-35ad-49a6-8366-4f77b22b7737", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c86b8756-aae2-452a-a4e3-677aae25f4ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": { + "seh": "mamuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f772d5cf-e5e9-4a1b-a3a1-ddbe27ae2f14", + "Order": 1, + "DeletedAt": null, + "EntryId": "c86b8756-aae2-452a-a4e3-677aae25f4ac", + "Definition": {}, + "Gloss": { + "en": "man", + "pt": "homen" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0698e2b7-9769-4956-95f0-c8f46479d632", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira 26", + "Ws": "en" + } + ] + }, + "SenseId": "f772d5cf-e5e9-4a1b-a3a1-ddbe27ae2f14", + "DeletedAt": null + } + ] + }, + { + "Id": "60b0f55b-d605-4ca1-a1cd-c8e82a49707e", + "Order": 2, + "DeletedAt": null, + "EntryId": "c86b8756-aae2-452a-a4e3-677aae25f4ac", + "Definition": {}, + "Gloss": { + "en": "husband", + "pt": "marido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "565d4dc8-d32e-4753-b21c-069e1f5fc77c", + "DeletedAt": null, + "LexemeForm": { + "seh": "man" + }, + "CitationForm": { + "seh": "mana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "89ce983e-4216-43b0-8096-a826d80c20e7", + "Order": 1, + "DeletedAt": null, + "EntryId": "565d4dc8-d32e-4753-b21c-069e1f5fc77c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "refuse to share for love of food", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "glutonous", + "pt": "golozise" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2d189163-1b80-4d46-a7d6-e4e18f77fca5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "89ce983e-4216-43b0-8096-a826d80c20e7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "435ef209-5021-4ded-8bae-731d9e9899a6", + "DeletedAt": null, + "LexemeForm": { + "seh": "mang" + }, + "CitationForm": { + "seh": "manga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f32c1cb-884c-49ef-b610-9179b3454c30", + "Order": 1, + "DeletedAt": null, + "EntryId": "435ef209-5021-4ded-8bae-731d9e9899a6", + "Definition": {}, + "Gloss": { + "en": "tie up", + "pt": "amarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9ba9f0a1-205a-4dda-ba1f-a3f25618e2b9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akhazimanga", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "amarrava-a", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Meque-Mark1", + "Ws": "en" + } + ] + }, + "SenseId": "1f32c1cb-884c-49ef-b610-9179b3454c30", + "DeletedAt": null + }, + { + "Id": "94f9c2dd-00ed-44f1-a26f-8b448d1db2e9", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "tamanga nyumba", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "1f32c1cb-884c-49ef-b610-9179b3454c30", + "DeletedAt": null + } + ] + }, + { + "Id": "ee07fe98-80ff-4cc7-a2ec-e27deeb7df23", + "Order": 2, + "DeletedAt": null, + "EntryId": "435ef209-5021-4ded-8bae-731d9e9899a6", + "Definition": {}, + "Gloss": { + "en": "construct", + "pt": "construir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "574fbf69-453e-4b6f-97fa-3ee71cc2c84e", + "DeletedAt": null, + "LexemeForm": { + "seh": "manga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5547e1b1-0d57-43db-be6f-bc636f8ffa7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "574fbf69-453e-4b6f-97fa-3ee71cc2c84e", + "Definition": {}, + "Gloss": { + "en": "mango tree", + "pt": "mangeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl: mimanga sg: ??", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93a33c0a-5d65-44d6-8bb3-48fee1d1403a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mangawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1eecd5c-342e-4d45-9ae0-f7351d18ed55", + "Order": 1, + "DeletedAt": null, + "EntryId": "93a33c0a-5d65-44d6-8bb3-48fee1d1403a", + "Definition": {}, + "Gloss": { + "en": "debt", + "pt": "di\u0301vida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "53edf717-6c24-439f-8e74-7096e49adda3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c1eecd5c-342e-4d45-9ae0-f7351d18ed55", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49660c60-d3ed-4355-af61-68a46c12e8a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "mangwana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fcd8d925-5562-419a-a0f7-729609a2a7fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "49660c60-d3ed-4355-af61-68a46c12e8a8", + "Definition": {}, + "Gloss": { + "en": "tomorrow", + "pt": "amanha\u0303" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "698c2eb4-0e99-4618-9cbf-db6be6f4e880", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "fcd8d925-5562-419a-a0f7-729609a2a7fe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7c14bb4-0027-4609-a1c9-e3d83fb3e95e", + "DeletedAt": null, + "LexemeForm": { + "seh": "maningi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b20a8b8c-6dbe-404b-9e5f-5a1803329125", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7c14bb4-0027-4609-a1c9-e3d83fb3e95e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "much, many", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "much", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b6ee938-5d76-4a54-9840-49e9d135194e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "b20a8b8c-6dbe-404b-9e5f-5a1803329125", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1e5c886-ad06-444e-89dc-a4ead0a8fc5c", + "DeletedAt": null, + "LexemeForm": { + "seh": "mankhadzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5d316f71-9f38-4273-9963-c04cc1446167", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1e5c886-ad06-444e-89dc-a4ead0a8fc5c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "boy friend, lover, fiance\u0301", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "fiance\u0301", + "pt": "noivo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "89a23ecf-a007-47a8-a396-a740294db0af", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5d316f71-9f38-4273-9963-c04cc1446167", + "DeletedAt": null + }, + { + "Id": "af0f7294-27b0-48be-a269-0e2e5f0bdca6", + "Order": 2, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5d316f71-9f38-4273-9963-c04cc1446167", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa08457d-e296-4aab-a6e1-71e00fd6bce5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nungo" + }, + "CitationForm": { + "seh": "manungo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1063b7d7-a239-46cc-b345-96631b31fede", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa08457d-e296-4aab-a6e1-71e00fd6bce5", + "Definition": {}, + "Gloss": { + "en": "body", + "pt": "corpo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "137a6133-05bc-423f-b02e-cc3c78efdae6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "1063b7d7-a239-46cc-b345-96631b31fede", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f16c050e-dd7e-48e5-a7be-95d4ad1efd2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "manyazo" + }, + "CitationForm": { + "seh": "manyadzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "34976250-13b2-4ddf-b6da-d9737e7365ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "f16c050e-dd7e-48e5-a7be-95d4ad1efd2b", + "Definition": {}, + "Gloss": { + "en": "shame", + "pt": "vergonha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26652b7e-6659-4510-9b10-b2bcebc19dc4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "34976250-13b2-4ddf-b6da-d9737e7365ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7c8a122-c047-493f-825e-a711aef36899", + "DeletedAt": null, + "LexemeForm": { + "seh": "manyedzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "43c943ac-02b2-438d-9c5c-0c8dc5f5495d", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7c8a122-c047-493f-825e-a711aef36899", + "Definition": {}, + "Gloss": { + "en": "table scraps", + "pt": "migalha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f97439fc-d851-46fc-a760-699d81a2c2cb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "43c943ac-02b2-438d-9c5c-0c8dc5f5495d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32f6ecd0-d22b-45cc-bbec-5ce9c1ce9fb1", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyengerero" + }, + "CitationForm": { + "seh": "manyengerero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "85e6f588-f11b-4c33-a357-397479f3d9ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "32f6ecd0-d22b-45cc-bbec-5ce9c1ce9fb1", + "Definition": {}, + "Gloss": { + "en": "temptations", + "pt": "tetac\u0327o\u0303es" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88d941f8-0938-4205-8f85-6e22f00b8087", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "85e6f588-f11b-4c33-a357-397479f3d9ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1d88a23a-d209-42d8-be45-1d59d1b00f88", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyerezero" + }, + "CitationForm": { + "seh": "manyerezero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f2cdf68d-32bc-4d0d-9adf-050026c3c84b", + "Order": 1, + "DeletedAt": null, + "EntryId": "1d88a23a-d209-42d8-be45-1d59d1b00f88", + "Definition": {}, + "Gloss": { + "en": "thoughts", + "pt": "pensamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "63a6f605-644d-40aa-878f-02f5c361f8ab", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f2cdf68d-32bc-4d0d-9adf-050026c3c84b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e1b75d0-95ae-4116-bb6c-08f0be2d9ae6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyezo" + }, + "CitationForm": { + "seh": "manyezo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bf91ed99-0560-4fb0-b3ef-4b6bc1888b80", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e1b75d0-95ae-4116-bb6c-08f0be2d9ae6", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "migalhas pequenos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "crumbs", + "pt": "migalhas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ad85665-de48-4c30-a9c1-bb931d2ebe3e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "bf91ed99-0560-4fb0-b3ef-4b6bc1888b80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "DeletedAt": null, + "LexemeForm": { + "seh": "pika" + }, + "CitationForm": { + "seh": "mapika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c04a03f5-5139-4ee7-b9c7-c49ae92c8e2f", + "Order": 1, + "DeletedAt": null, + "EntryId": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "Definition": {}, + "Gloss": { + "en": "race", + "pt": "corrida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eab2939b-1861-492e-ba14-7ce36361b256", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2:16", + "Ws": "en" + } + ] + }, + "SenseId": "c04a03f5-5139-4ee7-b9c7-c49ae92c8e2f", + "DeletedAt": null + } + ] + }, + { + "Id": "0822131f-95c9-4c5b-b28a-f7203db30f55", + "Order": 2, + "DeletedAt": null, + "EntryId": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "Definition": {}, + "Gloss": { + "en": "bet", + "pt": "aposta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e9000da3-e344-44b0-824d-b9977e535d49", + "Order": 3, + "DeletedAt": null, + "EntryId": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "Definition": {}, + "Gloss": { + "en": "challenge", + "pt": "disafio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d9f4ade-c774-456a-8500-2532ae6f8c7a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mapita" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f531ecf-0f20-44fa-a102-1d2f124709e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d9f4ade-c774-456a-8500-2532ae6f8c7a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "competition in general", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "competition", + "pt": "competic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a6344df-c062-457b-95e5-9b5d97bb44d4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0f531ecf-0f20-44fa-a102-1d2f124709e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3e8d5d25-2d5d-40a8-9f38-603a4cc55b77", + "DeletedAt": null, + "LexemeForm": { + "seh": "marambe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "06bc691e-5a54-4a35-ab95-849b45b7721a", + "Order": 1, + "DeletedAt": null, + "EntryId": "3e8d5d25-2d5d-40a8-9f38-603a4cc55b77", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild cat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "wild cat", + "pt": "gato bravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2c895875-6eaa-47bd-a5cb-4b2df046b2c7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "06bc691e-5a54-4a35-ab95-849b45b7721a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "365a86f9-cdbf-4229-9bd4-43edd2c960ad", + "DeletedAt": null, + "LexemeForm": { + "seh": "sali" + }, + "CitationForm": { + "seh": "masali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "48999a41-330e-4325-8fc2-fc6f660b057e", + "Order": 1, + "DeletedAt": null, + "EntryId": "365a86f9-cdbf-4229-9bd4-43edd2c960ad", + "Definition": { + "en": { + "Spans": [ + { + "Text": "place of a new.house", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "lugar novo de residencia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "new house", + "pt": "casa nova" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4299e25-c472-4e22-a93a-f1d8c05a197d", + "DeletedAt": null, + "LexemeForm": { + "seh": "masedze" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0daee1c3-bf0a-4a64-8d6a-705ab4ab5c14", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4299e25-c472-4e22-a93a-f1d8c05a197d", + "Definition": {}, + "Gloss": { + "en": "even though", + "pt": "embora" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23b7a7a7-4595-4adb-ad08-82a69b208eba", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0daee1c3-bf0a-4a64-8d6a-705ab4ab5c14", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ff0c084-5f25-4630-8fe2-549171d77c70", + "DeletedAt": null, + "LexemeForm": { + "seh": "masese" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d70e028c-2bf8-4dcc-aa25-54f372ec9dd4", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ff0c084-5f25-4630-8fe2-549171d77c70", + "Definition": {}, + "Gloss": { + "en": "even though", + "pt": "embora" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "19739104-8bf8-4c51-b572-e16512650784", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d70e028c-2bf8-4dcc-aa25-54f372ec9dd4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba8417fa-101a-4ec9-99a3-cf2b4fd8ff63", + "DeletedAt": null, + "LexemeForm": { + "seh": "sikati" + }, + "CitationForm": { + "seh": "masikati" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f96c1723-a60f-42db-83da-de68fff7b641", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba8417fa-101a-4ec9-99a3-cf2b4fd8ff63", + "Definition": { + "en": { + "Spans": [ + { + "Text": "heat of the day, 11 to 15 hours", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "parte de dia colorosa, de 11 a 15 horas", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "afternoon", + "pt": "tarde" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "313df45a-140b-4d31-b01d-f5b590f64e4d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "f96c1723-a60f-42db-83da-de68fff7b641", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "897a6c8c-a72e-4155-b8c2-baa516a20971", + "DeletedAt": null, + "LexemeForm": { + "seh": "siku" + }, + "CitationForm": { + "seh": "masiku" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "11d1070b-3b98-4b55-9242-02b6674d2a78", + "Order": 1, + "DeletedAt": null, + "EntryId": "897a6c8c-a72e-4155-b8c2-baa516a20971", + "Definition": { + "en": { + "Spans": [ + { + "Text": "when the sunlight is completely gone until macibesi", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "evening", + "pt": "noite" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "823f3a8f-8205-43b7-9776-dc8f4d3c8904", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "11d1070b-3b98-4b55-9242-02b6674d2a78", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0a53f674-07dd-410d-b3f2-e98bf7dd34eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "masiye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a46c1374-9f24-47bb-8a61-db6f0e7fc85e", + "Order": 1, + "DeletedAt": null, + "EntryId": "0a53f674-07dd-410d-b3f2-e98bf7dd34eb", + "Definition": {}, + "Gloss": { + "en": "cemetery", + "pt": "cemite\u0301rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7703d1c3-a882-4ac4-8987-c3725b7aeb96", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a46c1374-9f24-47bb-8a61-db6f0e7fc85e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad5ea011-1c39-4b15-94c8-327d17851753", + "DeletedAt": null, + "LexemeForm": { + "seh": "mata" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae58f54b-7f05-4d1d-a022-02ebc5405989", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad5ea011-1c39-4b15-94c8-327d17851753", + "Definition": {}, + "Gloss": { + "en": "saliva", + "pt": "saliva" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "75825d72-695b-4e92-9f33-0f3ab4d7dd11", + "Name": { + "en": "Spit, saliva" + }, + "Code": "2.2.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f32a3656-c7a6-48c8-b224-1ad307408ae5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ae58f54b-7f05-4d1d-a022-02ebc5405989", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3fbb96dc-3ca5-4450-b343-ae5dbaef8056", + "DeletedAt": null, + "LexemeForm": { + "seh": "taka" + }, + "CitationForm": { + "seh": "mataka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "486fcf0c-de3f-4a30-bf62-dd75b7e096d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "3fbb96dc-3ca5-4450-b343-ae5dbaef8056", + "Definition": {}, + "Gloss": { + "en": "dirt", + "pt": "solo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e27c6260-4150-43d4-97c3-ca25b596401d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:13; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "486fcf0c-de3f-4a30-bf62-dd75b7e096d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ff6ecc5-7b66-48a7-abe1-4d4f9cc9d552", + "DeletedAt": null, + "LexemeForm": { + "seh": "matal" + }, + "CitationForm": { + "seh": "matala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c9990577-4e77-4b4f-aed5-3ecbbf15a1f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ff6ecc5-7b66-48a7-abe1-4d4f9cc9d552", + "Definition": {}, + "Gloss": { + "en": "be silent", + "pt": "ficar silencioso" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6130a4a3-5f31-49db-83e2-63547364fbc5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "c9990577-4e77-4b4f-aed5-3ecbbf15a1f6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a6a4c40-3dae-41a3-b5bc-e427865854e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "matam" + }, + "CitationForm": { + "seh": "matama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97315f66-6358-4771-96f7-4ee76436ff8f", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a6a4c40-3dae-41a3-b5bc-e427865854e2", + "Definition": {}, + "Gloss": { + "en": "be quiet", + "pt": "calar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9c9b762d-56e4-42b0-8728-e38e962c2dcb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "97315f66-6358-4771-96f7-4ee76436ff8f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5212fc0d-9cdc-4f9d-9425-b27213f369a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "matamis" + }, + "CitationForm": { + "seh": "matamisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a8fd0ff5-f64b-4419-9154-1be2e583c29c", + "Order": 1, + "DeletedAt": null, + "EntryId": "5212fc0d-9cdc-4f9d-9425-b27213f369a5", + "Definition": {}, + "Gloss": { + "en": "quiet", + "pt": "fazer calar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "02d37a73-f8d0-4e61-8dd8-fd10537020a8", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Tendeni kamatamisa mamferwa.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Vamos conselhar (familia em) lutado.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "a8fd0ff5-f64b-4419-9154-1be2e583c29c", + "DeletedAt": null + } + ] + }, + { + "Id": "322b1569-3d3c-486d-91ad-615a6a43cd52", + "Order": 2, + "DeletedAt": null, + "EntryId": "5212fc0d-9cdc-4f9d-9425-b27213f369a5", + "Definition": {}, + "Gloss": { + "en": "console", + "pt": "consolar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fccfb5e7-3c78-460c-9915-b71322b48203", + "DeletedAt": null, + "LexemeForm": { + "seh": "matongero" + }, + "CitationForm": { + "seh": "matongero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35278c37-466e-4194-9da0-faae2cd7908d", + "Order": 1, + "DeletedAt": null, + "EntryId": "fccfb5e7-3c78-460c-9915-b71322b48203", + "Definition": { + "en": { + "Spans": [ + { + "Text": "law, ten commandments", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "law mandamentos de Deus", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "law", + "pt": "law" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "da777558-6be4-46b0-a174-0c09b842c524", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "35278c37-466e-4194-9da0-faae2cd7908d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1b62650a-3b7e-427f-a66c-869186cfa288", + "DeletedAt": null, + "LexemeForm": { + "seh": "tope" + }, + "CitationForm": { + "seh": "matope" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ec8fb8f1-c0bd-4c7b-a67c-2e48a1bb044b", + "Order": 1, + "DeletedAt": null, + "EntryId": "1b62650a-3b7e-427f-a66c-869186cfa288", + "Definition": {}, + "Gloss": { + "en": "river mud", + "pt": "lodo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "180a2220-942c-4e17-96ee-cd4f63a4c715", + "Name": { + "en": "Soil, dirt" + }, + "Code": "1.2.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fa1c51b8-4171-414a-b37a-d1a062055604", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "ec8fb8f1-c0bd-4c7b-a67c-2e48a1bb044b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d26e8d4d-cce6-4635-a35e-2be0db65c729", + "DeletedAt": null, + "LexemeForm": { + "seh": "ulo" + }, + "CitationForm": { + "seh": "maulo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd98267d-b7b7-465c-a61d-128f0ec3dd27", + "Order": 1, + "DeletedAt": null, + "EntryId": "d26e8d4d-cce6-4635-a35e-2be0db65c729", + "Definition": { + "en": { + "Spans": [ + { + "Text": "afternoon and evening; when the day starts to cool, starts around 15 hours", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tarde e noite cedo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "afternoon", + "pt": "tarde" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "204bdc22-f689-4e29-bb28-c257905a80c5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "dd98267d-b7b7-465c-a61d-128f0ec3dd27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "89b79930-93cb-4af5-be86-bea62f1de26a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5adef85a-9ff2-477b-a967-a5d519664767", + "Order": 1, + "DeletedAt": null, + "EntryId": "89b79930-93cb-4af5-be86-bea62f1de26a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "thematic continuity, -ing", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "continuidade de tema, -ando", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "COHES", + "pt": "COHES" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b50ce1f3-96db-4ed7-bfce-211f882a6c1b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mbauponyera throwing stone, mbumala they ended friendship mbamphata grabing the rabbit,", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "5adef85a-9ff2-477b-a967-a5d519664767", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cb2d50c-7571-4757-80f9-6bb29d9047cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "baala" + }, + "CitationForm": { + "seh": "mbaala" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f38c8ff5-8399-46d0-a608-16aa91fa27af", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cb2d50c-7571-4757-80f9-6bb29d9047cd", + "Definition": {}, + "Gloss": { + "en": "gazell", + "pt": "gazela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3367d955-653e-4e08-b408-7b12c93f9bda", + "DeletedAt": null, + "LexemeForm": { + "seh": "babvu" + }, + "CitationForm": { + "seh": "mbabvu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "889a81df-a63f-4e76-93b9-7873aab77714", + "Order": 1, + "DeletedAt": null, + "EntryId": "3367d955-653e-4e08-b408-7b12c93f9bda", + "Definition": {}, + "Gloss": { + "en": "rib", + "pt": "costela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee33e5b2-72c7-49b2-b0e4-c73febfce1a8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "889a81df-a63f-4e76-93b9-7873aab77714", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ebb2033-aeae-4c84-b34a-7ddfb38f2ef2", + "DeletedAt": null, + "LexemeForm": { + "seh": "badza" + }, + "CitationForm": { + "seh": "mbadza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aebb266e-130f-433e-adce-2399c4f7ffdd", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ebb2033-aeae-4c84-b34a-7ddfb38f2ef2", + "Definition": {}, + "Gloss": { + "en": "snake type", + "pt": "cobra tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0f3f15d0-c1f8-4ccd-a3ec-0d7edd3369cf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "aebb266e-130f-433e-adce-2399c4f7ffdd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6be1c388-3564-4e71-8158-6ff938c4e853", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbadzati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7f26c9ab-e41e-437a-82af-6962ab7a59fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "6be1c388-3564-4e71-8158-6ff938c4e853", + "Definition": {}, + "Gloss": { + "en": "before", + "pt": "antes" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d80b6cec-4339-4ea0-bb68-941feb538f11", + "DeletedAt": null, + "LexemeForm": { + "seh": "badzo" + }, + "CitationForm": { + "seh": "mbadzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "70a1de9b-c5eb-4ca7-a214-1b33f85127f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "d80b6cec-4339-4ea0-bb68-941feb538f11", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hatchet to cut firewood and small trees used by men", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hatchet", + "pt": "machadinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71f6d357-b03a-4a10-a7f9-520577a5ba9e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "70a1de9b-c5eb-4ca7-a214-1b33f85127f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "753bd785-b855-4232-9594-8be21ff30ef4", + "DeletedAt": null, + "LexemeForm": { + "seh": "balame" + }, + "CitationForm": { + "seh": "mbalame" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b48232bf-44e2-48f4-9c2a-6a0136d092df", + "Order": 1, + "DeletedAt": null, + "EntryId": "753bd785-b855-4232-9594-8be21ff30ef4", + "Definition": {}, + "Gloss": { + "en": "bird", + "pt": "passaro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "0724682c-71bc-4d53-b323-602d9fbbde47", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b48232bf-44e2-48f4-9c2a-6a0136d092df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "12504ce0-0d4e-499e-8d1a-a796f4da05b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "824ec104-b330-42f6-b353-123cb03998b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "12504ce0-0d4e-499e-8d1a-a796f4da05b7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wood plate", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "prato de pau", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "plate", + "pt": "prato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5902969d-0d6f-4724-8dc5-a3cfa5b8d636", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "824ec104-b330-42f6-b353-123cb03998b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c713678-7a2e-40fc-9fce-d3e8d7011d36", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbani" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4cb5708d-0ba7-46f7-afbe-13d9d987ad91", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c713678-7a2e-40fc-9fce-d3e8d7011d36", + "Definition": {}, + "Gloss": { + "en": "who?", + "pt": "quem?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ea7421cc-2a6c-41de-9611-ef4942470f61", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4cb5708d-0ba7-46f7-afbe-13d9d987ad91", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "052cd426-ab5e-4a74-843f-ae6dce5aa6c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbava" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "55345d98-6fd0-484b-950d-e2fa12b6aec4", + "Order": 1, + "DeletedAt": null, + "EntryId": "052cd426-ab5e-4a74-843f-ae6dce5aa6c0", + "Definition": {}, + "Gloss": { + "en": "thief", + "pt": "ladra\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de17de32-b537-4298-a26d-d2239eaf9f62", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "55345d98-6fd0-484b-950d-e2fa12b6aec4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d341650e-a816-4bb7-9757-7d7952b2cf24", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "305ecbd1-ba98-4ff9-8bad-985b4e1f48ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "d341650e-a816-4bb7-9757-7d7952b2cf24", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sardine, species of small fresh water fish", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "sardinha, um tipo de peixinho de a\u0301gua doce.", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "sardine ", + "pt": "sardinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "207e0d03-66f9-484a-9aae-9a2c9e759ff8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "305ecbd1-ba98-4ff9-8bad-985b4e1f48ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "15b453c1-e980-4d00-849c-3b4f96c8f1be", + "DeletedAt": null, + "LexemeForm": { + "seh": "beu" + }, + "CitationForm": { + "seh": "mbeu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b096a890-d21c-4734-b0ef-2c8ef0de6ea5", + "Order": 1, + "DeletedAt": null, + "EntryId": "15b453c1-e980-4d00-849c-3b4f96c8f1be", + "Definition": {}, + "Gloss": { + "en": "seed", + "pt": "semente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e33932fc-a153-4098-a07a-7556c8251639", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b096a890-d21c-4734-b0ef-2c8ef0de6ea5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ba5fc13-73cc-4aaf-9346-5b407754fcf9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbewa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "605f204e-b617-44b4-9732-995b23d1a14f", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ba5fc13-73cc-4aaf-9346-5b407754fcf9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "any rat or mouse that lives outside", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rat or mouse", + "pt": "rato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4a0b27d-fa44-4c0b-881d-a70ef99b7340", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "605f204e-b617-44b4-9732-995b23d1a14f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05a45110-1b3e-4a61-8af3-15464a3edc46", + "DeletedAt": null, + "LexemeForm": { + "seh": "bidzi" + }, + "CitationForm": { + "seh": "mbidzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87b14641-5673-443e-938a-2700deea5b0a", + "Order": 1, + "DeletedAt": null, + "EntryId": "05a45110-1b3e-4a61-8af3-15464a3edc46", + "Definition": { + "en": { + "Spans": [ + { + "Text": "zebra - Equus burchellii but they recognize all zebra as mbidzi", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "zebra", + "pt": "zebra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "bbd3c3f1-7387-4ec6-a75d-66c1355a94ef", + "Name": { + "en": "Hoofed animals" + }, + "Code": "1.6.1.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "06fb5db3-1693-470f-9e5e-c6f12a014bff", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "87b14641-5673-443e-938a-2700deea5b0a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab235a62-1e60-4a68-83a4-838075de7d43", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14af0b49-0487-46f8-ad04-1fc2a860f289", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab235a62-1e60-4a68-83a4-838075de7d43", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hydrax of the Family Procavidae", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "porquito de familia Procavidae", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hydrax", + "pt": "porquito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "66470288-2b6e-461f-a57d-7b32ee502b68", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze (gave pr)", + "Ws": "en" + } + ] + }, + "SenseId": "14af0b49-0487-46f8-ad04-1fc2a860f289", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc4c80d8-6f01-44e8-93df-992b43bc3924", + "DeletedAt": null, + "LexemeForm": { + "seh": "biti" + }, + "CitationForm": { + "seh": "mbiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41724d8b-53b5-4d0e-af28-3c864b0e39b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc4c80d8-6f01-44e8-93df-992b43bc3924", + "Definition": {}, + "Gloss": { + "en": "otter", + "pt": "lontra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d0887f1b-da20-44de-a687-6c388b8fc6b4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "41724d8b-53b5-4d0e-af28-3c864b0e39b1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Enclitic", + "Senses": [ + { + "Id": "752f6980-2888-411b-bd45-a37bad94f428", + "Order": 1, + "DeletedAt": null, + "EntryId": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "additive, \u0022also\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "additivo, \u0022tambe\u0301m\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "ADD", + "pt": "ADD" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d13979f4-0ec4-45a6-b2b2-7a948930b47f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "iwombo", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "752f6980-2888-411b-bd45-a37bad94f428", + "DeletedAt": null + } + ] + }, + { + "Id": "1132c791-3980-4fe1-af2e-99e766f8ac01", + "Order": 2, + "DeletedAt": null, + "EntryId": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "Definition": {}, + "Gloss": { + "en": "INTENS", + "pt": "INTENS" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "6ad40996-9427-4951-8596-61a482180cf5", + "Order": 3, + "DeletedAt": null, + "EntryId": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "Definition": {}, + "Gloss": { + "en": "please", + "pt": "por favor" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "38639731-5769-4618-b5c4-837c4f59119f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndiwangisenimbo \u0022cure-me por favor (lit tambe\u0301m)\u0022", + "Ws": "en" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "6ad40996-9427-4951-8596-61a482180cf5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "052042f8-9181-451d-92f7-599974fd0fec", + "DeletedAt": null, + "LexemeForm": { + "seh": "bondo" + }, + "CitationForm": { + "seh": "mbondo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57945f8a-40d5-4ca4-9c89-f8cecc68f8b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "052042f8-9181-451d-92f7-599974fd0fec", + "Definition": {}, + "Gloss": { + "en": "knee", + "pt": "joelho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1d8633e0-4279-4ddc-826e-16aa08a977e5", + "Name": { + "en": "Bone, joint" + }, + "Code": "2.1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "1bcdca5a-454a-46aa-8906-1dd8df34bb39", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "57945f8a-40d5-4ca4-9c89-f8cecc68f8b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65a4e65e-13da-4fa5-8ec5-a7248750371d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bua" + }, + "CitationForm": { + "seh": "mbua" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdb7385d-b828-4b3a-95c3-6392cf178925", + "Order": 1, + "DeletedAt": null, + "EntryId": "65a4e65e-13da-4fa5-8ec5-a7248750371d", + "Definition": {}, + "Gloss": { + "en": "threshing floor", + "pt": "eira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b36c4bca-817c-4843-b458-cfe57e7abdc4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bdb7385d-b828-4b3a-95c3-6392cf178925", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08006bb2-9f97-4754-a1d0-6e0a31bd3b69", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbudzati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6114e22f-0bf4-4987-97f0-e4f9e4fc09aa", + "Order": 1, + "DeletedAt": null, + "EntryId": "08006bb2-9f97-4754-a1d0-6e0a31bd3b69", + "Definition": {}, + "Gloss": { + "en": "before", + "pt": "antes" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "37a6f4ed-d949-4038-a075-9d6f2b46fc9e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6114e22f-0bf4-4987-97f0-e4f9e4fc09aa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "475473f7-16bf-4aae-adb3-07e95f60d7e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "bumba" + }, + "CitationForm": { + "seh": "mbumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2083395f-5ad8-47e1-84da-9570b2571584", + "Order": 1, + "DeletedAt": null, + "EntryId": "475473f7-16bf-4aae-adb3-07e95f60d7e9", + "Definition": {}, + "Gloss": { + "en": "people", + "pt": "povo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6da32e8-4730-47c1-bcd6-aa5dc961fb46", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2083395f-5ad8-47e1-84da-9570b2571584", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9cce8577-9c0f-4406-ab4a-699a428930d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mburuk" + }, + "CitationForm": { + "seh": "mburuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eb4e8cdf-de54-4ee4-89d4-5fab25b9c7c3", + "Order": 1, + "DeletedAt": null, + "EntryId": "9cce8577-9c0f-4406-ab4a-699a428930d7", + "Definition": {}, + "Gloss": { + "en": "fly", + "pt": "voar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "5cc64831-c14a-4dbe-beba-214e725ad041", + "Name": { + "en": "Manner of movement" + }, + "Code": "7.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2589b6ce-ccf2-4db6-817c-49f857e47fbf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "eb4e8cdf-de54-4ee4-89d4-5fab25b9c7c3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b9e0579-0c85-48c8-8f77-5963d07088b0", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbus" + }, + "CitationForm": { + "seh": "mbusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f250ea0-f41e-40e9-9ab4-c5c26b1e52e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b9e0579-0c85-48c8-8f77-5963d07088b0", + "Definition": {}, + "Gloss": { + "en": "collect fees", + "pt": "cobrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0e19cf83-9133-4d8a-a367-82993d8abf81", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6f250ea0-f41e-40e9-9ab4-c5c26b1e52e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "28b19ef7-e9fb-44b1-afd8-23743e39c4ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "buto" + }, + "CitationForm": { + "seh": "mbuto" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c8cae0e-aa0b-486b-a195-55538dbe67df", + "Order": 1, + "DeletedAt": null, + "EntryId": "28b19ef7-e9fb-44b1-afd8-23743e39c4ac", + "Definition": {}, + "Gloss": { + "en": "place", + "pt": "lugar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ae0041d-133b-4de6-ba94-688938df52d9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1c8cae0e-aa0b-486b-a195-55538dbe67df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56f6c163-c208-4c56-978e-81c7944a4d64", + "DeletedAt": null, + "LexemeForm": { + "seh": "buwa" + }, + "CitationForm": { + "seh": "mbuwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cf09ea68-25fe-423a-b238-edd3ca05e9b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "56f6c163-c208-4c56-978e-81c7944a4d64", + "Definition": {}, + "Gloss": { + "en": "fisherman", + "pt": "pescador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ece0c43-9ca5-471f-ad6c-f5c83a836742", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "cf09ea68-25fe-423a-b238-edd3ca05e9b6", + "DeletedAt": null + } + ] + }, + { + "Id": "60561d0d-5be7-43af-b3f7-619b74510ef0", + "Order": 2, + "DeletedAt": null, + "EntryId": "56f6c163-c208-4c56-978e-81c7944a4d64", + "Definition": {}, + "Gloss": { + "en": "threshing floor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "322fce11-2210-408a-a432-cd73bca12783", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbuya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "888c502e-7006-4841-9087-e8500209b257", + "Order": 1, + "DeletedAt": null, + "EntryId": "322fce11-2210-408a-a432-cd73bca12783", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lord of a slave", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "lord", + "pt": "senhor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "982593c3-8984-4d12-bd5d-a74d213e633c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "888c502e-7006-4841-9087-e8500209b257", + "DeletedAt": null + } + ] + }, + { + "Id": "8c04a4dd-084f-4496-bb4b-76429767a4d7", + "Order": 2, + "DeletedAt": null, + "EntryId": "322fce11-2210-408a-a432-cd73bca12783", + "Definition": { + "en": { + "Spans": [ + { + "Text": "grandfather on mother\u0027s side", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "grandfather", + "pt": "avo\u0302" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d1e58469-52e3-4b50-b0de-00bf9f09f8d4", + "Name": { + "en": "Grandfather, grandmother" + }, + "Code": "4.1.9.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c402cdb2-9284-4b03-9756-b2c29eb63535", + "DeletedAt": null, + "LexemeForm": { + "seh": "buyantumbzi" + }, + "CitationForm": { + "seh": "mbuyantumbzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6c44f63d-f5ce-491d-a0a6-0263fd10f95d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c402cdb2-9284-4b03-9756-b2c29eb63535", + "Definition": {}, + "Gloss": { + "en": "in-laws", + "pt": "consogros" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4374989d-1479-44c0-a603-540502aa9280", + "DeletedAt": null, + "LexemeForm": { + "seh": "buzi" + }, + "CitationForm": { + "seh": "mbuzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7b087c80-53a1-41e8-ad08-7e5aea18410c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4374989d-1479-44c0-a603-540502aa9280", + "Definition": {}, + "Gloss": { + "en": "goat", + "pt": "cabrito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4eea233-a735-4a5d-9507-f75b5dbfe8ec", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16,27; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "7b087c80-53a1-41e8-ad08-7e5aea18410c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "85d6924e-20fa-4fee-9094-3753094700c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbvimbvinidz" + }, + "CitationForm": { + "seh": "mbvimbvinidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bae12644-8d47-42e6-8fce-28076b38da88", + "Order": 1, + "DeletedAt": null, + "EntryId": "85d6924e-20fa-4fee-9094-3753094700c6", + "Definition": {}, + "Gloss": { + "en": "get lost", + "pt": "extraviar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f03a9415-d09f-47b4-a88b-07d9108103da", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "bae12644-8d47-42e6-8fce-28076b38da88", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e9f39346-ab14-437e-9ecc-df5180846b09", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvini" + }, + "CitationForm": { + "seh": "mbvini" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d2673bb4-023b-4497-838c-3be9db01dfc6", + "Order": 1, + "DeletedAt": null, + "EntryId": "e9f39346-ab14-437e-9ecc-df5180846b09", + "Definition": {}, + "Gloss": { + "en": "dancer", + "pt": "danc\u0327arino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9b70dcac-6a87-4b9a-b4a7-7c0cb30f853c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d2673bb4-023b-4497-838c-3be9db01dfc6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "facd1fda-36fe-4254-b02e-159f94c7d784", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvuni" + }, + "CitationForm": { + "seh": "mbvuni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4c668f4-1dad-4606-a6d0-14b5ed1684e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "facd1fda-36fe-4254-b02e-159f94c7d784", + "Definition": {}, + "Gloss": { + "en": "peacemaker", + "pt": "pacificador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "256e6f6b-d355-4e43-9b3a-620858d26b7d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c4c668f4-1dad-4606-a6d0-14b5ed1684e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49eb324b-13e4-4d4d-95ab-9a0a5b3048be", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvuu" + }, + "CitationForm": { + "seh": "mbvuu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "462d9ee6-1d42-409f-824e-5a25e6ac1a48", + "Order": 1, + "DeletedAt": null, + "EntryId": "49eb324b-13e4-4d4d-95ab-9a0a5b3048be", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Hippopotamus amphibius", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hippopotomus", + "pt": "hipopotomo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0141b6aa-7312-44f6-ba85-4fa91012f72c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "462d9ee6-1d42-409f-824e-5a25e6ac1a48", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a0e7e7c-a701-4fd2-9234-7f89a546258a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbwenye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "95882d6f-1b5f-4211-8ae6-092819469162", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a0e7e7c-a701-4fd2-9234-7f89a546258a", + "Definition": {}, + "Gloss": { + "en": "but", + "pt": "mas" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "057cc851-6f94-4a65-afcf-331477e75fa5", + "DeletedAt": null, + "LexemeForm": { + "seh": "cherengi" + }, + "CitationForm": { + "seh": "mcherengi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e59940fe-9ebc-4531-8f0f-606d65db189c", + "Order": 1, + "DeletedAt": null, + "EntryId": "057cc851-6f94-4a65-afcf-331477e75fa5", + "Definition": {}, + "Gloss": { + "en": "poor person", + "pt": "pobre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b94239dc-5c67-42c7-827c-530741070d0f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e59940fe-9ebc-4531-8f0f-606d65db189c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fac1d361-b9ee-4da0-9c02-32bab3ccb41d", + "DeletedAt": null, + "LexemeForm": { + "seh": "mebzala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1882c819-4011-4b47-ba67-4af189d622da", + "Order": 1, + "DeletedAt": null, + "EntryId": "fac1d361-b9ee-4da0-9c02-32bab3ccb41d", + "Definition": {}, + "Gloss": { + "en": "mother-in-law", + "pt": "sogra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1e9ed078-6919-4c10-8c6e-573830146fb4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1882c819-4011-4b47-ba67-4af189d622da", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b974fa51-77c1-46ee-9972-10b6fb3b6ea8", + "DeletedAt": null, + "LexemeForm": { + "seh": "meny" + }, + "CitationForm": { + "seh": "menya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1cb19796-f0b4-459b-80ed-4ed620027d8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b974fa51-77c1-46ee-9972-10b6fb3b6ea8", + "Definition": {}, + "Gloss": { + "en": "hit", + "pt": "bater" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6c60e6cd-ccda-469e-95b4-895f69c0eab6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "1cb19796-f0b4-459b-80ed-4ed620027d8e", + "DeletedAt": null + } + ] + }, + { + "Id": "ad086c20-5484-4369-a988-86d1bee667a9", + "Order": 2, + "DeletedAt": null, + "EntryId": "b974fa51-77c1-46ee-9972-10b6fb3b6ea8", + "Definition": {}, + "Gloss": { + "en": "break bread", + "pt": "partir pa\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7292cacd-2831-4b11-b6eb-3dbb02c7fe93", + "DeletedAt": null, + "LexemeForm": { + "seh": "menya-meny" + }, + "CitationForm": { + "seh": "menya-menya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0de5de90-4272-4d51-878c-12b83a619769", + "Order": 1, + "DeletedAt": null, + "EntryId": "7292cacd-2831-4b11-b6eb-3dbb02c7fe93", + "Definition": { + "en": { + "Spans": [ + { + "Text": "break bread repetively", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "partir pa\u0303o repetivament", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "break bread", + "pt": "partir pa\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "026431d5-fe59-436a-b0dc-551a75d86916", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0de5de90-4272-4d51-878c-12b83a619769", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dcaa76dc-7458-4338-a1eb-12fceb56ca3d", + "DeletedAt": null, + "LexemeForm": { + "seh": "menyan" + }, + "CitationForm": { + "seh": "menyana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "11b748dc-ab4a-4525-9cbb-a6de4b85caf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "dcaa76dc-7458-4338-a1eb-12fceb56ca3d", + "Definition": {}, + "Gloss": { + "en": "fight", + "pt": "lutar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62b5407b-a152-4748-a8c7-b1acca9916c5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "11b748dc-ab4a-4525-9cbb-a6de4b85caf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af7275f4-b375-4997-a00d-5af1899d13d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mer" + }, + "CitationForm": { + "seh": "mera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3c4ba6f1-e3b9-41f4-8331-47704488975f", + "Order": 1, + "DeletedAt": null, + "EntryId": "af7275f4-b375-4997-a00d-5af1899d13d9", + "Definition": {}, + "Gloss": { + "en": "germinate", + "pt": "germinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ae335f5-ab6a-4c8a-ba3c-54af440b75c9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3c4ba6f1-e3b9-41f4-8331-47704488975f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "11abf5ec-8b88-46d7-9b1c-b0ddae7ac894", + "DeletedAt": null, + "LexemeForm": { + "seh": "mez" + }, + "CitationForm": { + "seh": "meza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5da5191e-c7c9-4c91-b4eb-16e52fd275ae", + "Order": 1, + "DeletedAt": null, + "EntryId": "11abf5ec-8b88-46d7-9b1c-b0ddae7ac894", + "Definition": {}, + "Gloss": { + "en": "to fish", + "pt": "pescar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f4e6abac-692b-48d0-af56-abcff67ec8a8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5da5191e-c7c9-4c91-b4eb-16e52fd275ae", + "DeletedAt": null + } + ] + }, + { + "Id": "2392de10-0208-4840-9154-35f146b14662", + "Order": 2, + "DeletedAt": null, + "EntryId": "11abf5ec-8b88-46d7-9b1c-b0ddae7ac894", + "Definition": {}, + "Gloss": { + "en": "swallow", + "pt": "engolir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47f45f37-0706-4a70-861e-06d8d489028b", + "DeletedAt": null, + "LexemeForm": { + "seh": "meza" + }, + "CitationForm": { + "seh": "meza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2b1557be-9bd5-42d7-87da-7e53334a49f1", + "Order": 1, + "DeletedAt": null, + "EntryId": "47f45f37-0706-4a70-861e-06d8d489028b", + "Definition": {}, + "Gloss": { + "en": "table", + "pt": "mesa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "f732bdb5-9a04-468a-b50b-510f94d20fb4", + "Name": { + "en": "Table" + }, + "Code": "5.1.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7a46f279-dd9c-473f-a3b3-69ba0a52236a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:23; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2b1557be-9bd5-42d7-87da-7e53334a49f1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "90cbdc5c-5a93-45b3-ac80-5e16fe523852", + "DeletedAt": null, + "LexemeForm": { + "seh": "mi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "0e78b61e-306a-4e3c-94a2-84a6b6a044f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "90cbdc5c-5a93-45b3-ac80-5e16fe523852", + "Definition": {}, + "Gloss": { + "en": "4", + "pt": "4" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "efaa842b-b2aa-4332-925f-931700412d6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "michamu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "43584f6e-c0da-49e1-b3ae-2f3c5dfa0618", + "Order": 1, + "DeletedAt": null, + "EntryId": "efaa842b-b2aa-4332-925f-931700412d6a", + "Definition": {}, + "Gloss": { + "en": "lashes", + "pt": "ac\u0327oites" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16727713-f06f-4470-9eea-8602dbd44762", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "43584f6e-c0da-49e1-b3ae-2f3c5dfa0618", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0ac275c1-cbea-4fff-b78c-44647e4c87da", + "DeletedAt": null, + "LexemeForm": { + "seh": "mimba" + }, + "CitationForm": { + "seh": "mimba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "66347a27-02b1-4634-9e15-6e558eea1975", + "Order": 1, + "DeletedAt": null, + "EntryId": "0ac275c1-cbea-4fff-b78c-44647e4c87da", + "Definition": {}, + "Gloss": { + "en": "belly", + "pt": "barriga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db24b91c-f580-414c-a771-acd44fed2f1e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "66347a27-02b1-4634-9e15-6e558eea1975", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75c1100c-e1f4-4b34-97c3-e64a8b2eb291", + "DeletedAt": null, + "LexemeForm": { + "seh": "minyoka" + }, + "CitationForm": { + "seh": "minyoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9854719e-fc52-413f-bd46-923c7ed16dc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "75c1100c-e1f4-4b34-97c3-e64a8b2eb291", + "Definition": {}, + "Gloss": { + "en": "worm", + "pt": "minhoca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed5d5789-54ef-424e-88e6-204ef0e3b072", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "9854719e-fc52-413f-bd46-923c7ed16dc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "17284bb5-377c-4a19-ad5c-ca02b52fc11b", + "DeletedAt": null, + "LexemeForm": { + "seh": "sozi" + }, + "CitationForm": { + "seh": "misozi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ebd98cc-38b8-4548-8f65-85df6f081421", + "Order": 1, + "DeletedAt": null, + "EntryId": "17284bb5-377c-4a19-ad5c-ca02b52fc11b", + "Definition": {}, + "Gloss": { + "en": "tears", + "pt": "lagrimas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d38ab932-26cc-4a96-987e-278e2827a45c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0ebd98cc-38b8-4548-8f65-85df6f081421", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61a0c41b-8612-4304-a9e5-cb7726197456", + "DeletedAt": null, + "LexemeForm": { + "seh": "tindo" + }, + "CitationForm": { + "seh": "mitindo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "70922f18-954d-4d45-838b-9e8add104260", + "Order": 1, + "DeletedAt": null, + "EntryId": "61a0c41b-8612-4304-a9e5-cb7726197456", + "Definition": {}, + "Gloss": { + "en": "urine", + "pt": "urina" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b361f9c7-b5d2-4ebb-958b-b07f146a2224", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "70922f18-954d-4d45-838b-9e8add104260", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1241a470-7fe5-40e2-a734-81425dbf4cc7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mudzi" + }, + "CitationForm": { + "seh": "mmudzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "615cba3f-626c-411f-a90c-bb76ca15d1f5", + "Order": 1, + "DeletedAt": null, + "EntryId": "1241a470-7fe5-40e2-a734-81425dbf4cc7", + "Definition": {}, + "Gloss": { + "en": "host", + "pt": "afitria\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3d948c63-961c-46c3-a89f-4109646372e1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "615cba3f-626c-411f-a90c-bb76ca15d1f5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "632f5e17-13ed-4d51-8998-6c17184c8347", + "DeletedAt": null, + "LexemeForm": { + "seh": "omba" + }, + "CitationForm": { + "seh": "momba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "309c1c0c-cb5e-466b-a081-427e61ca781b", + "Order": 1, + "DeletedAt": null, + "EntryId": "632f5e17-13ed-4d51-8998-6c17184c8347", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spear with a sharp round pointed iron head", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spear", + "pt": "zagaia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d19b2c0c-3337-4808-9624-6ad1f0e6dba5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "309c1c0c-cb5e-466b-a081-427e61ca781b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a032b7d8-da95-4168-a943-6e99d32dd37c", + "DeletedAt": null, + "LexemeForm": { + "seh": "oto" + }, + "CitationForm": { + "seh": "moto" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "75eada5f-2469-4558-ab57-256655ef86d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "a032b7d8-da95-4168-a943-6e99d32dd37c", + "Definition": {}, + "Gloss": { + "en": "fire", + "pt": "fogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fbd753a4-bf58-4603-9e1b-e39bab51249a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "75eada5f-2469-4558-ab57-256655ef86d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e63992d2-2f7b-4653-adfe-fcdb19aecde5", + "DeletedAt": null, + "LexemeForm": { + "seh": "moyok" + }, + "CitationForm": { + "seh": "moyoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9acfd40f-6073-4cb3-b6e4-38be96b09fb8", + "Order": 1, + "DeletedAt": null, + "EntryId": "e63992d2-2f7b-4653-adfe-fcdb19aecde5", + "Definition": {}, + "Gloss": { + "en": "greet", + "pt": "comprimentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "94607f44-9a9c-4de1-a528-d60a10423c17", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9acfd40f-6073-4cb3-b6e4-38be96b09fb8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab672944-a2c4-4741-969f-01700b334572", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "50e674a7-0b8a-4233-875b-e2cab0cf2c77", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab672944-a2c4-4741-969f-01700b334572", + "Definition": {}, + "Gloss": { + "en": "until", + "pt": "ate\u0301" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d04f5c9d-7b68-4e99-98db-0bc72341554e", + "DeletedAt": null, + "LexemeForm": { + "seh": "pando" + }, + "CitationForm": { + "seh": "mpando" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0aed8037-a007-49e4-9953-3aab76aa6f21", + "Order": 1, + "DeletedAt": null, + "EntryId": "d04f5c9d-7b68-4e99-98db-0bc72341554e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one or two place bench without a back", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "banco de um ou dois lugares sem costa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stool", + "pt": "banco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7e183f98-01ed-45f1-ba53-7d4967ec7fb8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0aed8037-a007-49e4-9953-3aab76aa6f21", + "DeletedAt": null + } + ] + }, + { + "Id": "fe140ec7-3093-4e13-99b5-9d34e707c2c8", + "Order": 2, + "DeletedAt": null, + "EntryId": "d04f5c9d-7b68-4e99-98db-0bc72341554e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "at times by extention \u0022chair\u0022", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "chair", + "pt": "cadera" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29b900c6-b2c5-4d76-85c2-c76c03ce60cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "pani" + }, + "CitationForm": { + "seh": "mpani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "214820fd-bc1f-4271-9191-2be4725a8e78", + "Order": 1, + "DeletedAt": null, + "EntryId": "29b900c6-b2c5-4d76-85c2-c76c03ce60cc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "stick with meat or fish on it for roasting, fish on a stick", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "espeto com carne para assar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stick", + "pt": "espeto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c56eb008-41b8-4d8a-ad0c-7f8dfdc36ec5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "214820fd-bc1f-4271-9191-2be4725a8e78", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93951d41-1c68-4ecd-ad29-13b77d469a8d", + "DeletedAt": null, + "LexemeForm": { + "seh": "peni" + }, + "CitationForm": { + "seh": "mpeni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "165d58e1-9723-4410-9075-7f30d84d20ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "93951d41-1c68-4ecd-ad29-13b77d469a8d", + "Definition": {}, + "Gloss": { + "en": "knife", + "pt": "faca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2bfedc86-1e0d-4c8a-b479-7472d052d830", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "165d58e1-9723-4410-9075-7f30d84d20ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5c88aa1-f634-4cd0-bef8-b0ed976ff39c", + "DeletedAt": null, + "LexemeForm": { + "seh": "falinya" + }, + "CitationForm": { + "seh": "mpfalinya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "772629ab-f835-4320-9b39-0e243b405e41", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5c88aa1-f634-4cd0-bef8-b0ed976ff39c", + "Definition": {}, + "Gloss": { + "en": "manioc plant", + "pt": "mandioqueira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a19e182b-ebfe-47d3-a54c-6c4ecac12162", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "772629ab-f835-4320-9b39-0e243b405e41", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a28ac300-426f-4e88-bd44-cce6de8fec31", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfemba" + }, + "CitationForm": { + "seh": "mpfemba" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b8e47d4a-1a2e-4ebe-9de1-5dfc1ea46e89", + "Order": 1, + "DeletedAt": null, + "EntryId": "a28ac300-426f-4e88-bd44-cce6de8fec31", + "Definition": {}, + "Gloss": { + "en": "nine", + "pt": "nove" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f0c0b52-86c8-45a7-a5de-8feae122dcbd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b8e47d4a-1a2e-4ebe-9de1-5dfc1ea46e89", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7ee490e9-d639-4a8e-a307-5d7f35075d54", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfendu" + }, + "CitationForm": { + "seh": "mpfendu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", + "Order": 1, + "DeletedAt": null, + "EntryId": "7ee490e9-d639-4a8e-a307-5d7f35075d54", + "Definition": {}, + "Gloss": { + "en": "occasion", + "pt": "vez" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ef964514-0831-4da9-825d-f6c27db2192b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndinenda mpfendu inango", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Eu vou outra vez", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", + "DeletedAt": null + }, + { + "Id": "4d75075d-afc9-430e-a806-c62f28e9556f", + "Order": 2, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", + "DeletedAt": null + } + ] + }, + { + "Id": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", + "Order": 2, + "DeletedAt": null, + "EntryId": "7ee490e9-d639-4a8e-a307-5d7f35075d54", + "Definition": {}, + "Gloss": { + "en": "generation", + "pt": "gerac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d67c37c1-594b-4658-9d97-431b0eadaac4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mpfendu yathu tikhakhondeswa kumwa nipa mbatiri ana.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "Our generation was forbidden to drink liquor as children.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Gerac\u0327a\u0303o nossa era nos proibido beber aguardente idade crianc\u0327a.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d352b613-93ae-4f6b-9bd9-be5f21b94fb1", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfigu" + }, + "CitationForm": { + "seh": "mpfigu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21b1db45-dee8-44d8-a566-eee8e8705670", + "Order": 1, + "DeletedAt": null, + "EntryId": "d352b613-93ae-4f6b-9bd9-be5f21b94fb1", + "Definition": {}, + "Gloss": { + "en": "banana tree", + "pt": "bananeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b0aedff6-d5da-4595-9b28-6abd1310f4cb", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mpfigu ukulu", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "21b1db45-dee8-44d8-a566-eee8e8705670", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a7324004-98a9-40c3-bd3d-0b5bc1918e61", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfinyinji" + }, + "CitationForm": { + "seh": "mpfinyinji" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5c7c257e-0536-4cc9-bcd7-1e00db08655b", + "Order": 1, + "DeletedAt": null, + "EntryId": "a7324004-98a9-40c3-bd3d-0b5bc1918e61", + "Definition": {}, + "Gloss": { + "en": "spleen?", + "pt": "moela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96e7323c-532a-41c2-9342-b1b8be3719e7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5c7c257e-0536-4cc9-bcd7-1e00db08655b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "748e5797-944d-4c02-80e4-d560461f358f", + "DeletedAt": null, + "LexemeForm": { + "seh": "fiti" + }, + "CitationForm": { + "seh": "mpfiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "861141fa-1b5e-4a3d-9f45-7f0d0ea8af4a", + "Order": 1, + "DeletedAt": null, + "EntryId": "748e5797-944d-4c02-80e4-d560461f358f", + "Definition": {}, + "Gloss": { + "en": "witch", + "pt": "feiticeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c8731ae-7d1e-4ad4-83a7-a756a0fd0d7d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "861141fa-1b5e-4a3d-9f45-7f0d0ea8af4a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbad6402-5b20-4ba9-a3b1-49dd9ab55a79", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfukwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdfdd59e-ed0a-4ae0-9c8e-9e6f7a334597", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbad6402-5b20-4ba9-a3b1-49dd9ab55a79", + "Definition": {}, + "Gloss": { + "en": "lair", + "pt": "covil" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "971da8f6-f34c-40e6-8508-20f35eebad7b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4 (m\u0027pfukue)", + "Ws": "en" + } + ] + }, + "SenseId": "bdfdd59e-ed0a-4ae0-9c8e-9e6f7a334597", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "66a247d9-29c6-4d6f-b3b1-199a55dd7f8a", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfuma" + }, + "CitationForm": { + "seh": "mpfuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3beed235-e349-4ba0-8237-b3908315723a", + "Order": 1, + "DeletedAt": null, + "EntryId": "66a247d9-29c6-4d6f-b3b1-199a55dd7f8a", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riquesas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c7d4f50f-9f1d-454c-9fec-e87bc47489ca", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfuma" + }, + "CitationForm": { + "seh": "mpfuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98e18f17-178e-41c1-bc63-3816771bb6d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "c7d4f50f-9f1d-454c-9fec-e87bc47489ca", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riqueza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee767254-ddaa-4879-adb7-02d65ae8d265", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "98e18f17-178e-41c1-bc63-3816771bb6d1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f159952-dae0-456a-9260-f9ae4079848c", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfumi" + }, + "CitationForm": { + "seh": "mpfumi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "63f05f21-fbeb-434d-8077-9437deda278a", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f159952-dae0-456a-9260-f9ae4079848c", + "Definition": {}, + "Gloss": { + "en": "rich person", + "pt": "pessoa rica" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b5dafde1-9aef-4eb5-80e0-9b163b4a80b9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "63f05f21-fbeb-434d-8077-9437deda278a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9791c3a6-c2d2-4282-aff3-645a7171f5a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfumu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "22b81191-b1d1-4237-8dcd-3f702b915b39", + "Order": 1, + "DeletedAt": null, + "EntryId": "9791c3a6-c2d2-4282-aff3-645a7171f5a8", + "Definition": {}, + "Gloss": { + "en": "chief", + "pt": "chefe" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "bbf5f321-2855-49c9-8278-839fc022e829", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ababa apfumu", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "pais chefes", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "22b81191-b1d1-4237-8dcd-3f702b915b39", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e83317e0-567a-4f50-8148-ef4abfa2656c", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfumu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "12a6c537-68f2-4e8e-bdba-9020132a271c", + "Order": 1, + "DeletedAt": null, + "EntryId": "e83317e0-567a-4f50-8148-ef4abfa2656c", + "Definition": {}, + "Gloss": { + "en": "chief", + "pt": "chefe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ecb636e-e671-4f19-849f-ce63fb29e117", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunye" + }, + "CitationForm": { + "seh": "mpfunye" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dcfe92de-cfe6-42ed-8b46-531865b930e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ecb636e-e671-4f19-849f-ce63fb29e117", + "Definition": {}, + "Gloss": { + "en": "worm", + "pt": "verme" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dd20cd3-4548-415a-b036-bd075d687529", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "dcfe92de-cfe6-42ed-8b46-531865b930e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea944392-6150-497c-83fb-d64f2e45fba7", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunzisi" + }, + "CitationForm": { + "seh": "mpfunzisi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc7bf292-711c-4bf3-8525-beee57ca6e80", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea944392-6150-497c-83fb-d64f2e45fba7", + "Definition": {}, + "Gloss": { + "en": "teacher", + "pt": "professor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "928224fe-084d-43b5-83a2-535e3a6dc86b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "bc7bf292-711c-4bf3-8525-beee57ca6e80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0710257d-ea52-4f90-ab1f-bf2812da2ca4", + "DeletedAt": null, + "LexemeForm": { + "seh": "futi" + }, + "CitationForm": { + "seh": "mpfuti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bcc80d0b-d814-4902-8d8a-87ffec430eaa", + "Order": 1, + "DeletedAt": null, + "EntryId": "0710257d-ea52-4f90-ab1f-bf2812da2ca4", + "Definition": {}, + "Gloss": { + "en": "gun", + "pt": "espingarda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9dbb78bc-62c7-4d3d-91af-33973649b48f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bcc80d0b-d814-4902-8d8a-87ffec430eaa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6cc49b2c-5504-4639-8855-97a2af33d405", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphabano" + }, + "CitationForm": { + "seh": "mphambano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87920a43-1881-459f-8c78-1cffc1b0bdf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "6cc49b2c-5504-4639-8855-97a2af33d405", + "Definition": {}, + "Gloss": { + "en": "cross-road", + "pt": "cruzamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67206a2a-bd36-48d8-a75f-687f4aed4194", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "87920a43-1881-459f-8c78-1cffc1b0bdf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65a96505-c3c6-4af3-ad50-7a70a843c079", + "DeletedAt": null, + "LexemeForm": { + "seh": "phambvu" + }, + "CitationForm": { + "seh": "mphambvu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "040f83f5-5fe3-41ee-a842-4b68fff56408", + "Order": 1, + "DeletedAt": null, + "EntryId": "65a96505-c3c6-4af3-ad50-7a70a843c079", + "Definition": {}, + "Gloss": { + "en": "strength", + "pt": "forc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "316def81-2d31-472a-a7cb-4b25fc0e9e93", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "040f83f5-5fe3-41ee-a842-4b68fff56408", + "DeletedAt": null + } + ] + }, + { + "Id": "852eeee5-cde7-4ed8-8dde-6b44e024bbf0", + "Order": 2, + "DeletedAt": null, + "EntryId": "65a96505-c3c6-4af3-ad50-7a70a843c079", + "Definition": {}, + "Gloss": { + "en": "power", + "pt": "poder" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5bb597f-c78d-4d9d-9fc9-65e4c7730f20", + "DeletedAt": null, + "LexemeForm": { + "seh": "pandu" + }, + "CitationForm": { + "seh": "mphandu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "70a4dfae-de3d-4145-981c-36f0b64f6ff3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5bb597f-c78d-4d9d-9fc9-65e4c7730f20", + "Definition": {}, + "Gloss": { + "en": "criminal", + "pt": "criminoso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ec90a8f7-5c46-4bef-9d70-c0b924b2fa3d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "70a4dfae-de3d-4145-981c-36f0b64f6ff3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd837d20-5037-4ecd-a43f-cd82653a853f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phangwa" + }, + "CitationForm": { + "seh": "mphangwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "92397de3-9477-4955-8c94-c40a0bf6fe2d", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd837d20-5037-4ecd-a43f-cd82653a853f", + "Definition": {}, + "Gloss": { + "en": "news", + "pt": "novas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7abaf182-5bd9-4388-82e6-8638f51c5b9b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "92397de3-9477-4955-8c94-c40a0bf6fe2d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ae99eb30-9de6-4d21-be20-b073ea8ee60d", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphapo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "468a08fd-147d-413b-9293-0c15ad234fdb", + "Order": 1, + "DeletedAt": null, + "EntryId": "ae99eb30-9de6-4d21-be20-b073ea8ee60d", + "Definition": {}, + "Gloss": { + "en": "therefore", + "pt": "pore\u0301m" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "374e094d-f72c-4198-a2d0-5691802c7419", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musafunanji mphapo na ine.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Pore\u0301m o que quer comigo.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "468a08fd-147d-413b-9293-0c15ad234fdb", + "DeletedAt": null + }, + { + "Id": "9d6c0a09-2153-4e95-a9b0-46e90bbcaa40", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndakucemera mphapo iwe watani kukhonda kubwera?", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "468a08fd-147d-413b-9293-0c15ad234fdb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bf070c0f-f83b-4765-ad59-d96208b63bb3", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphawi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d947c334-dc46-4a84-a6ad-7ac54d5b0cca", + "Order": 1, + "DeletedAt": null, + "EntryId": "bf070c0f-f83b-4765-ad59-d96208b63bb3", + "Definition": {}, + "Gloss": { + "en": "orphan", + "pt": "orfa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "57237095-23cf-43ba-aa6c-89cecdd35ff8", + "Name": { + "en": "Orphan" + }, + "Code": "4.1.9.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "463e043f-f1cd-4f2c-9dcb-7acabde34bda", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; George", + "Ws": "en" + } + ] + }, + "SenseId": "d947c334-dc46-4a84-a6ad-7ac54d5b0cca", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45b4b809-3a90-47c9-a8df-8c62cf251280", + "DeletedAt": null, + "LexemeForm": { + "seh": "phepo" + }, + "CitationForm": { + "seh": "mphepo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bb8e6660-085a-49ea-9abe-d83b4a21ec9b", + "Order": 1, + "DeletedAt": null, + "EntryId": "45b4b809-3a90-47c9-a8df-8c62cf251280", + "Definition": {}, + "Gloss": { + "en": "wind", + "pt": "vento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "abe2a570-ddfd-4566-81a6-44d39680e9b1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bb8e6660-085a-49ea-9abe-d83b4a21ec9b", + "DeletedAt": null + } + ] + }, + { + "Id": "1e0b35df-2ff6-4377-93af-b1a9d46e828d", + "Order": 2, + "DeletedAt": null, + "EntryId": "45b4b809-3a90-47c9-a8df-8c62cf251280", + "Definition": {}, + "Gloss": { + "en": "cold", + "pt": "frio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32492499-1d07-4612-b0d2-c39778f3f871", + "DeletedAt": null, + "LexemeForm": { + "seh": "phere" + }, + "CitationForm": { + "seh": "mphere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "feb3247b-c2bc-4efa-a83e-148624d67b3f", + "Order": 1, + "DeletedAt": null, + "EntryId": "32492499-1d07-4612-b0d2-c39778f3f871", + "Definition": {}, + "Gloss": { + "en": "chicken pox", + "pt": "sarna" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c649d2fd-85ce-4902-ba45-6d0bc3a072f2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26 (says itch);", + "Ws": "en" + } + ] + }, + "SenseId": "feb3247b-c2bc-4efa-a83e-148624d67b3f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cfb58d8f-2696-4f7f-b315-38f916c2b3d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "phete" + }, + "CitationForm": { + "seh": "mphete" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ba5ea089-ff71-4a77-918b-8d4e53457026", + "Order": 1, + "DeletedAt": null, + "EntryId": "cfb58d8f-2696-4f7f-b315-38f916c2b3d1", + "Definition": {}, + "Gloss": { + "en": "ring", + "pt": "anel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b3f51e0-1a3b-4220-8b63-2a4073d06636", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ba5ea089-ff71-4a77-918b-8d4e53457026", + "DeletedAt": null + } + ] + }, + { + "Id": "aaef54b6-11fd-4168-98ba-34a318302138", + "Order": 2, + "DeletedAt": null, + "EntryId": "cfb58d8f-2696-4f7f-b315-38f916c2b3d1", + "Definition": {}, + "Gloss": { + "en": "ear ring", + "pt": "brinco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e735a6d-c786-4605-b923-da2404b65d45", + "DeletedAt": null, + "LexemeForm": { + "seh": "phiriphiri" + }, + "CitationForm": { + "seh": "mphiriphiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef3e6d0f-d7b6-4da6-bae0-b550acc9c2a3", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e735a6d-c786-4605-b923-da2404b65d45", + "Definition": {}, + "Gloss": { + "en": "hot sauce", + "pt": "piripiri" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f8082469-08aa-4d26-a855-50de12e2b5eb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef3e6d0f-d7b6-4da6-bae0-b550acc9c2a3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f129711c-1884-4bbb-b800-797b67b68c01", + "DeletedAt": null, + "LexemeForm": { + "seh": "phosa" + }, + "CitationForm": { + "seh": "mphosa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "417f91fc-c905-46ae-a30d-a9c7dcbea044", + "Order": 1, + "DeletedAt": null, + "EntryId": "f129711c-1884-4bbb-b800-797b67b68c01", + "Definition": {}, + "Gloss": { + "en": "guilt", + "pt": "culpa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2c98d7e-fb0c-4ac8-9f65-2b77a9b3a768", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "417f91fc-c905-46ae-a30d-a9c7dcbea044", + "DeletedAt": null + } + ] + }, + { + "Id": "a6723888-7ae9-4164-b4ca-eb34c31d1227", + "Order": 2, + "DeletedAt": null, + "EntryId": "f129711c-1884-4bbb-b800-797b67b68c01", + "Definition": {}, + "Gloss": { + "en": "motive", + "pt": "motivo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1914c74e-59b5-458d-9e70-4301d36aece7", + "DeletedAt": null, + "LexemeForm": { + "seh": "phuli" + }, + "CitationForm": { + "seh": "mphuli" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c7f7bef-ff98-4eae-a377-d1249ab9a97f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1914c74e-59b5-458d-9e70-4301d36aece7", + "Definition": {}, + "Gloss": { + "en": "steer", + "pt": "boi" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "80ba7914-086b-4f4f-8270-3d34f40da475", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16 (mphulu); Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "1c7f7bef-ff98-4eae-a377-d1249ab9a97f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "422fb408-c22d-426f-924d-190c81a4da34", + "DeletedAt": null, + "LexemeForm": { + "seh": "phuno" + }, + "CitationForm": { + "seh": "mphuno" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "efa90080-56eb-4e15-a23b-b4eb8b46e3c6", + "Order": 1, + "DeletedAt": null, + "EntryId": "422fb408-c22d-426f-924d-190c81a4da34", + "Definition": {}, + "Gloss": { + "en": "nose", + "pt": "nariz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c9c24b52-6633-461c-9bc6-1192f63ea9e6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "efa90080-56eb-4e15-a23b-b4eb8b46e3c6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "897f092e-1a81-4048-9dd2-fd5be8a95d2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "pini" + }, + "CitationForm": { + "seh": "mpini" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea684ee3-06d3-4063-afbb-43f292bab934", + "Order": 1, + "DeletedAt": null, + "EntryId": "897f092e-1a81-4048-9dd2-fd5be8a95d2d", + "Definition": {}, + "Gloss": { + "en": "hoe-handle", + "pt": "cabo de enxada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "347f797e-758e-489b-89c0-3e1710d373bf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ea684ee3-06d3-4063-afbb-43f292bab934", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7482b8bd-5e7d-4636-9de0-d4dba36cee58", + "DeletedAt": null, + "LexemeForm": { + "seh": "pira" + }, + "CitationForm": { + "seh": "mpira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5303273f-e59f-4559-a7b9-3ed8c67e51b9", + "Order": 1, + "DeletedAt": null, + "EntryId": "7482b8bd-5e7d-4636-9de0-d4dba36cee58", + "Definition": {}, + "Gloss": { + "en": "rubber", + "pt": "borracha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "58c344ec-39ae-4c51-8f19-91071a5ba1fe", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5303273f-e59f-4559-a7b9-3ed8c67e51b9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "34597aa1-d9f2-4c79-8021-fe885867f21c", + "DeletedAt": null, + "LexemeForm": { + "seh": "pitamiti" + }, + "CitationForm": { + "seh": "mpitamiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3b1b4dd2-b71d-475c-b4ed-9029d40d6706", + "Order": 1, + "DeletedAt": null, + "EntryId": "34597aa1-d9f2-4c79-8021-fe885867f21c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Giraffa camelopardalis", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "giraffe", + "pt": "girafe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0c09597d-76ef-496a-9c00-1c26e3f2e27a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "3b1b4dd2-b71d-475c-b4ed-9029d40d6706", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "559c30da-70fb-483b-8657-86911dc2e070", + "DeletedAt": null, + "LexemeForm": { + "seh": "porofeta" + }, + "CitationForm": { + "seh": "mporofeta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8de9acbd-0b74-4049-953c-071c405075b0", + "Order": 1, + "DeletedAt": null, + "EntryId": "559c30da-70fb-483b-8657-86911dc2e070", + "Definition": {}, + "Gloss": { + "en": "prophet", + "pt": "profeta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2b001a62-2118-4ac7-b4c3-4933b0ab26a4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8de9acbd-0b74-4049-953c-071c405075b0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a676fa4b-dabc-42f4-a9da-4e5213d06b8b", + "DeletedAt": null, + "LexemeForm": { + "seh": "psimbo" + }, + "CitationForm": { + "seh": "mpsimbo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "12ce5655-1077-43f3-a428-865c2382c5e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "a676fa4b-dabc-42f4-a9da-4e5213d06b8b", + "Definition": {}, + "Gloss": { + "en": "walking stick", + "pt": "bengala" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b4ea365f-be38-480b-9dbd-b2f08b66a35e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "12ce5655-1077-43f3-a428-865c2382c5e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2704aee-d5d9-4fbc-a1d7-3d02f07e080e", + "DeletedAt": null, + "LexemeForm": { + "seh": "psompson" + }, + "CitationForm": { + "seh": "mpsompsona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bd155a2e-4da5-4494-b51f-f7bc9c45af90", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2704aee-d5d9-4fbc-a1d7-3d02f07e080e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "suck mucus from a baby\u0027s nose", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "suck", + "pt": "chupar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "bbb897b5-f09b-4263-9f81-826ca61084f1", + "Name": { + "en": "Cleaning" + }, + "Code": "5.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "33eca2c1-3c51-428e-9ee3-c9e69b97ed4a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bd155a2e-4da5-4494-b51f-f7bc9c45af90", + "DeletedAt": null + } + ] + }, + { + "Id": "8b7f1749-dcc7-449d-8cf4-0f6e4388567d", + "Order": 2, + "DeletedAt": null, + "EntryId": "e2704aee-d5d9-4fbc-a1d7-3d02f07e080e", + "Definition": {}, + "Gloss": { + "en": "kiss", + "pt": "beijar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "419935a4-5514-4faa-afe8-434bb2af7276", + "DeletedAt": null, + "LexemeForm": { + "seh": "pulumusi" + }, + "CitationForm": { + "seh": "mpulumusi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c5b6e48-e724-4096-8551-38adf6522032", + "Order": 1, + "DeletedAt": null, + "EntryId": "419935a4-5514-4faa-afe8-434bb2af7276", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one who rescures, savior", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rescuer", + "pt": "salvador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "badb5e1d-ccf8-4822-8b59-3035b61fab41", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0c5b6e48-e724-4096-8551-38adf6522032", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f402761-f890-4caf-9000-f68c76072d02", + "DeletedAt": null, + "LexemeForm": { + "seh": "punga" + }, + "CitationForm": { + "seh": "mpunga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "357da00b-4a0a-416b-b7d5-6715c0bcab9f", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f402761-f890-4caf-9000-f68c76072d02", + "Definition": {}, + "Gloss": { + "en": "rice", + "pt": "arroz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f7a29316-4728-4c41-973a-dcc0b27759dc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "357da00b-4a0a-416b-b7d5-6715c0bcab9f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ae78a1a-655b-4f25-b861-5599bc0fd5e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpupwira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "988e3974-d24e-4b28-a11d-874f58604081", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ae78a1a-655b-4f25-b861-5599bc0fd5e9", + "Definition": {}, + "Gloss": { + "en": "chicken", + "pt": "galinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ee0554b1-28d1-40d7-a316-3be41f6bd336", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26;", + "Ws": "en" + } + ] + }, + "SenseId": "988e3974-d24e-4b28-a11d-874f58604081", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30caab0e-4a54-44ba-8eeb-35a1b69ac231", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "ee2d9aed-4390-4e1e-a980-35dfa240389b", + "Order": 1, + "DeletedAt": null, + "EntryId": "30caab0e-4a54-44ba-8eeb-35a1b69ac231", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "2daa296d-5b51-4db0-a4b4-8449bcf151d7", + "Order": 2, + "DeletedAt": null, + "EntryId": "30caab0e-4a54-44ba-8eeb-35a1b69ac231", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "474bf116-731a-4e42-ab6a-f96c1624467d", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9f3296d7-a26e-4eb7-afd1-8dbfea7f1b35", + "Order": 1, + "DeletedAt": null, + "EntryId": "474bf116-731a-4e42-ab6a-f96c1624467d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "em", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "476a998a-4b01-4382-9268-9eac26f2cc6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "dce82f6a-5be2-48e5-ab33-6a7a8ade9dc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "476a998a-4b01-4382-9268-9eac26f2cc6a", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "364ab0ef-fa39-447f-9c41-d78e853f381f", + "Order": 2, + "DeletedAt": null, + "EntryId": "476a998a-4b01-4382-9268-9eac26f2cc6a", + "Definition": {}, + "Gloss": { + "en": "3S\u002B1", + "pt": "3S\u002B1" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d273928-6319-43ab-8055-3fd58be1d0cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1411b5e7-b815-4269-8d39-6d3bac6ae96d", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d273928-6319-43ab-8055-3fd58be1d0cf", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6283da64-0a0e-4aad-adca-cb7aff6a4e13", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "b452249d-5017-4d97-9f0d-447aed630bf3", + "Order": 1, + "DeletedAt": null, + "EntryId": "6283da64-0a0e-4aad-adca-cb7aff6a4e13", + "Definition": { + "en": { + "Spans": [ + { + "Text": "second person plural, \u0022you\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "segunda pessoa plural, \u0022voce\u0302s\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2P", + "pt": "2P" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5f2e94c8-6d26-4457-930d-92a6b42d2bb1", + "Order": 1, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3772337f-c06f-4b59-952f-dbef86b873c2", + "Order": 2, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "4537b0a3-9b5b-4e72-b418-0552ef04aa72", + "Order": 3, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "0b76d8e9-2402-4147-ab7d-b2aebab1da19", + "Order": 4, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "01a8a3b9-3c28-409b-ae74-34b50a0ccca8", + "Order": 5, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2a90aca-1c65-4a90-955a-4ffe3ec34185", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "712de4ef-13ce-4516-a450-4f4e3aa1c027", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2a90aca-1c65-4a90-955a-4ffe3ec34185", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in, into", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "em", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "in", + "pt": "em" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f4864315-6769-4836-bb01-ee069d68dab4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "712de4ef-13ce-4516-a450-4f4e3aa1c027", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1beac40-b5b6-4cc6-99cc-85c399fdc9d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "mubvi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "13c46c1a-2ac2-45df-92be-c20dc7e0d86c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1beac40-b5b6-4cc6-99cc-85c399fdc9d1", + "Definition": {}, + "Gloss": { + "en": "hearer", + "pt": "ouvinte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "75fafeed-f5d1-4783-aa95-df13c58c37c2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "13c46c1a-2ac2-45df-92be-c20dc7e0d86c", + "DeletedAt": null + } + ] + }, + { + "Id": "57294a93-e733-48c9-b02a-56cad22c300b", + "Order": 2, + "DeletedAt": null, + "EntryId": "b1beac40-b5b6-4cc6-99cc-85c399fdc9d1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "person who obeys", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pessoa obediente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "obedient", + "pt": "obediente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": { + "seh": "mudzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f665aec3-2f08-4a10-b642-2f66e15e2bff", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "familia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "family", + "pt": "familia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2de4c40b-611d-40f0-802b-dab4bf184cc2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f665aec3-2f08-4a10-b642-2f66e15e2bff", + "DeletedAt": null + } + ] + }, + { + "Id": "70bb1144-bbca-4db0-97ad-a74eb8f8b25b", + "Order": 2, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "lar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "home", + "pt": "lar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "9643cb57-d654-47bd-90d3-a518f9a215c8", + "Order": 3, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "em plural significa aldeia ou povoac\u0327a\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "house", + "pt": "casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "06101c3f-a84c-4e12-a07c-dced6a45c73e", + "Order": 4, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": {}, + "Gloss": { + "en": "home land", + "pt": "terra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef7a5211-d4c0-49df-8fbf-e1ba7adab0a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "muikh" + }, + "CitationForm": { + "seh": "muikha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e00f99ea-0c54-4d3d-8f24-3f8dc374945c", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef7a5211-d4c0-49df-8fbf-e1ba7adab0a4", + "Definition": {}, + "Gloss": { + "en": "put", + "pt": "por" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0379b533-ff8c-4f6a-ab16-b93be1a4018d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bwerani mumuikhe manja anu.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Vem por as suas ma\u0303os.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "e00f99ea-0c54-4d3d-8f24-3f8dc374945c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dab39c65-22a7-4e91-81fd-82cfa178a506", + "DeletedAt": null, + "LexemeForm": { + "seh": "ukho" + }, + "CitationForm": { + "seh": "mukho" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f168eebc-3acb-494f-a2da-d9609f6649b4", + "Order": 1, + "DeletedAt": null, + "EntryId": "dab39c65-22a7-4e91-81fd-82cfa178a506", + "Definition": { + "en": { + "Spans": [ + { + "Text": "taboo, things forbiden after a birth or death", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "taboo", + "pt": "taboo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "24361be2-49be-4860-bb56-4e46dd1e8b0c", + "Name": { + "en": "Taboo" + }, + "Code": "4.9.5.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3b37edd0-96dd-4018-ac45-395432fa4f3b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f168eebc-3acb-494f-a2da-d9609f6649b4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb743dad-7e3b-4d37-aafe-e7a24939ea58", + "DeletedAt": null, + "LexemeForm": { + "seh": "lambe" + }, + "CitationForm": { + "seh": "mulambe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae8a5db3-1ba4-4825-8ee9-29f59d4c08b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb743dad-7e3b-4d37-aafe-e7a24939ea58", + "Definition": {}, + "Gloss": { + "en": "Boabab tree", + "pt": "embondeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3f3f178-2bb6-42ee-9bdd-5461214d71ee", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ae8a5db3-1ba4-4825-8ee9-29f59d4c08b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fe3514ca-e963-4c15-9d26-badc670770f3", + "DeletedAt": null, + "LexemeForm": { + "seh": "lamu" + }, + "CitationForm": { + "seh": "mulamu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f38e8bd0-8595-4387-bbf7-853da1166ab1", + "Order": 1, + "DeletedAt": null, + "EntryId": "fe3514ca-e963-4c15-9d26-badc670770f3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "brother-in-law", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "bro-in-law", + "pt": "cunhado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "89ad4e41-bf08-4d93-a4f3-f72e8cc62bed", + "Name": { + "en": "In-law" + }, + "Code": "4.1.9.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "90cde2ca-0580-42fa-8c32-205edfc7ee7f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook", + "Ws": "en" + } + ] + }, + "SenseId": "f38e8bd0-8595-4387-bbf7-853da1166ab1", + "DeletedAt": null + } + ] + }, + { + "Id": "404d6557-8056-4240-bc97-83bfa1d1f1b5", + "Order": 2, + "DeletedAt": null, + "EntryId": "fe3514ca-e963-4c15-9d26-badc670770f3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sister-in-law", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sis-in-law", + "pt": "cunhada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbd5b29a-96fd-4ae6-9b39-05431ccf9fbf", + "DeletedAt": null, + "LexemeForm": { + "seh": "landu" + }, + "CitationForm": { + "seh": "mulandu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d90b15f9-cd4f-457f-bf85-1482092df52f", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbd5b29a-96fd-4ae6-9b39-05431ccf9fbf", + "Definition": {}, + "Gloss": { + "en": "legal problem", + "pt": "questa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "85214614-ab45-4805-9014-092750d47511", + "Name": { + "en": "Trial" + }, + "Code": "4.7.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ccaf39c2-b1f7-4294-87c2-c7f8bc0a1b53", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "d90b15f9-cd4f-457f-bf85-1482092df52f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1b0490b4-8857-4f7c-a945-44969d464992", + "DeletedAt": null, + "LexemeForm": { + "seh": "lendo" + }, + "CitationForm": { + "seh": "mulendo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ecc01f99-48a1-461d-b8b2-46b4c5a30477", + "Order": 1, + "DeletedAt": null, + "EntryId": "1b0490b4-8857-4f7c-a945-44969d464992", + "Definition": {}, + "Gloss": { + "en": "guest", + "pt": "ho\u0301spede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b56837f-a5b3-4cc5-a40e-d9d5387e9b7f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ecc01f99-48a1-461d-b8b2-46b4c5a30477", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5c4a4b2b-3219-416e-a016-1f37f59583b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "lengi" + }, + "CitationForm": { + "seh": "mulengi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3b494e2-9733-4146-a050-7d78eb3a38ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "5c4a4b2b-3219-416e-a016-1f37f59583b3", + "Definition": {}, + "Gloss": { + "en": "creator", + "pt": "criador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d9a151fc-254a-45e4-b484-8f472bd6df1f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "aponta.doc", + "Ws": "en" + } + ] + }, + "SenseId": "b3b494e2-9733-4146-a050-7d78eb3a38ce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3292a600-f89c-4a74-9f52-b2b405aafab0", + "DeletedAt": null, + "LexemeForm": { + "seh": "limba" + }, + "CitationForm": { + "seh": "mulimba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32e7178d-8d3c-464c-9a73-999018fc8600", + "Order": 1, + "DeletedAt": null, + "EntryId": "3292a600-f89c-4a74-9f52-b2b405aafab0", + "Definition": {}, + "Gloss": { + "en": "fox", + "pt": "raposa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "afe997eb-d751-4732-b3ed-773745479006", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "32e7178d-8d3c-464c-9a73-999018fc8600", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0b20a35d-5c7a-4f77-bf84-4b76714b67ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "limi" + }, + "CitationForm": { + "seh": "mulimi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "641c6360-fd59-4722-bd66-0172e3106381", + "Order": 1, + "DeletedAt": null, + "EntryId": "0b20a35d-5c7a-4f77-bf84-4b76714b67ae", + "Definition": {}, + "Gloss": { + "en": "farmer", + "pt": "lavrador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b6f0521f-56d0-428e-a154-550f5ada8889", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "641c6360-fd59-4722-bd66-0172e3106381", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "53f208d7-acb6-46a0-b8f6-28262838a5b5", + "DeletedAt": null, + "LexemeForm": { + "seh": "linga" + }, + "CitationForm": { + "seh": "mulinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ec79a63-c04d-4cad-89a8-8202b248e9d6", + "Order": 1, + "DeletedAt": null, + "EntryId": "53f208d7-acb6-46a0-b8f6-28262838a5b5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small clay container for water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "jar", + "pt": "bilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7184a1b4-1595-4ae5-8385-504d94dc450d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "0ec79a63-c04d-4cad-89a8-8202b248e9d6", + "DeletedAt": null + } + ] + }, + { + "Id": "2335ea36-7ae3-4407-96c0-6c56ab0ab85f", + "Order": 2, + "DeletedAt": null, + "EntryId": "53f208d7-acb6-46a0-b8f6-28262838a5b5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "banana stem", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cacho de banana", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stem", + "pt": "cacho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "11473a37-f10a-4201-b569-afd4b994373c", + "DeletedAt": null, + "LexemeForm": { + "seh": "lomo" + }, + "CitationForm": { + "seh": "mulomo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b00452e-9f58-40ee-b5bc-144ca16cfa99", + "Order": 1, + "DeletedAt": null, + "EntryId": "11473a37-f10a-4201-b569-afd4b994373c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "exterior of the mouth; lips", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "parte fora de boca; labios", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "mouth", + "pt": "boca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3035854-1d0a-4748-8f23-d48822e1529d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo; Orth; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4b00452e-9f58-40ee-b5bc-144ca16cfa99", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ee03e16-8f98-4ce4-803d-2ffe7c1be853", + "DeletedAt": null, + "LexemeForm": { + "seh": "lopa" + }, + "CitationForm": { + "seh": "mulopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7b534357-4f34-4296-83f7-d34117562e34", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ee03e16-8f98-4ce4-803d-2ffe7c1be853", + "Definition": { + "en": { + "Spans": [ + { + "Text": "blood of a slain animal that is eaten", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "sangue de animal que e\u0301 comdida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "animal", + "pt": "sangue" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dd6f506a-ac4b-47a6-950d-736ef40d7883", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7b534357-4f34-4296-83f7-d34117562e34", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "056df796-f9bb-4b07-a2de-6db782006f6d", + "DeletedAt": null, + "LexemeForm": { + "seh": "lungu" + }, + "CitationForm": { + "seh": "Mulungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4548c5d-eb50-42fc-aa93-d77c26546fad", + "Order": 1, + "DeletedAt": null, + "EntryId": "056df796-f9bb-4b07-a2de-6db782006f6d", + "Definition": {}, + "Gloss": { + "en": "God", + "pt": "Deus" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b60bf544-7774-4623-8c67-19b32b53dea2", + "Name": { + "en": "God" + }, + "Code": "4.9.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4585f851-94bf-4e6e-95f0-5996704ff55e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "c4548c5d-eb50-42fc-aa93-d77c26546fad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8aa9129e-e49c-459c-a5dc-f9f032f8f239", + "DeletedAt": null, + "LexemeForm": { + "seh": "mulungu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "908ddf2c-332a-4e9f-8de1-27614a904271", + "Order": 1, + "DeletedAt": null, + "EntryId": "8aa9129e-e49c-459c-a5dc-f9f032f8f239", + "Definition": {}, + "Gloss": { + "en": "rain", + "pt": "chuva" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7db96fd4-8dbb-489f-b26b-8cb566035f4f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu abvumba pikulu.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Chuva choveu muito.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "908ddf2c-332a-4e9f-8de1-27614a904271", + "DeletedAt": null + } + ] + }, + { + "Id": "0331c633-2be2-47d7-8ff0-1274ed7032b3", + "Order": 2, + "DeletedAt": null, + "EntryId": "8aa9129e-e49c-459c-a5dc-f9f032f8f239", + "Definition": {}, + "Gloss": { + "en": "God" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0e015bc-7813-4b88-b177-7ade17468421", + "DeletedAt": null, + "LexemeForm": { + "seh": "mumphu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f03e03a1-ebda-4820-b607-fdf73a942456", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0e015bc-7813-4b88-b177-7ade17468421", + "Definition": {}, + "Gloss": { + "en": "entire", + "pt": "inteiro" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ec3b1a01-5359-4c61-9768-e8ce336e7ccf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ntsiku ya mumphu, anthu a mumphu, nyama za mumphu", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "f03e03a1-ebda-4820-b607-fdf73a942456", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "89434fa7-3da1-4080-806d-b9b1a73b8b45", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "924d0672-d2ff-4b6d-81fc-d4799ab39877", + "Order": 1, + "DeletedAt": null, + "EntryId": "89434fa7-3da1-4080-806d-b9b1a73b8b45", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the midst of", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "no meio de", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "in", + "pt": "em" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "2c21fc5d-994d-43b6-b2c3-bf6328e19ca3", + "Order": 2, + "DeletedAt": null, + "EntryId": "89434fa7-3da1-4080-806d-b9b1a73b8b45", + "Definition": {}, + "Gloss": { + "en": "concerning", + "pt": "acerca de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4462b84-a7ca-4837-80f2-990dbe91f335", + "DeletedAt": null, + "LexemeForm": { + "seh": "nda" + }, + "CitationForm": { + "seh": "munda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bd970f05-4571-49f5-8d72-9edcb5a29ad9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4462b84-a7ca-4837-80f2-990dbe91f335", + "Definition": {}, + "Gloss": { + "en": "field", + "pt": "machamba" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f128896-bfaa-4fff-8806-39973434d2ca", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:28", + "Ws": "en" + } + ] + }, + "SenseId": "bd970f05-4571-49f5-8d72-9edcb5a29ad9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05a63125-e37b-42f2-bd63-9243563e2973", + "DeletedAt": null, + "LexemeForm": { + "seh": "munga" + }, + "CitationForm": { + "seh": "munga" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8b42f1fc-1bc7-45b9-9184-2322751e795b", + "Order": 1, + "DeletedAt": null, + "EntryId": "05a63125-e37b-42f2-bd63-9243563e2973", + "Definition": {}, + "Gloss": { + "en": "when", + "pt": "quando" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fa641d9b-4930-495c-9c5b-ab31d9401661", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8b42f1fc-1bc7-45b9-9184-2322751e795b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "080950b1-9b36-472b-bd4e-9b58025e538e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nga" + }, + "CitationForm": { + "seh": "munga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "33678318-e191-47d2-a4a9-dc78b956e157", + "Order": 1, + "DeletedAt": null, + "EntryId": "080950b1-9b36-472b-bd4e-9b58025e538e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "thorn of plant or fish", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "thorn", + "pt": "espinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe647905-7435-44c8-9dff-ec34d11c9185", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:15; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "33678318-e191-47d2-a4a9-dc78b956e157", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b4eecca2-5efc-49e1-84e4-927595843b76", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthu" + }, + "CitationForm": { + "seh": "munthu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f9ea974-8b29-46fd-b490-063e7f63a89e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b4eecca2-5efc-49e1-84e4-927595843b76", + "Definition": {}, + "Gloss": { + "en": "person", + "pt": "pessoa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68f165e5-5d77-4639-bc89-624e95487fdf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,14; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0f9ea974-8b29-46fd-b490-063e7f63a89e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "606684b4-a469-4147-9413-b9f420559677", + "DeletedAt": null, + "LexemeForm": { + "seh": "munyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32460030-3965-4ee7-a77b-17f8090d2d13", + "Order": 1, + "DeletedAt": null, + "EntryId": "606684b4-a469-4147-9413-b9f420559677", + "Definition": {}, + "Gloss": { + "en": "salt", + "pt": "sal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "7beca90c-3671-4b3c-bf9a-fb8f08ff914b", + "Name": { + "en": "Salt" + }, + "Code": "5.2.3.3.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "74d1cb63-55c5-4798-9913-38353826dc49", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:13; wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "32460030-3965-4ee7-a77b-17f8090d2d13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78c71cd8-08e7-4a62-a287-fa7f7d7ea9b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "oneri" + }, + "CitationForm": { + "seh": "muoneri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "341b8689-f950-49c5-9640-16886ac1afbd", + "Order": 1, + "DeletedAt": null, + "EntryId": "78c71cd8-08e7-4a62-a287-fa7f7d7ea9b7", + "Definition": {}, + "Gloss": { + "en": "guard", + "pt": "guarda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f65716b3-e7c4-4240-b01b-3d771894cc70", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "341b8689-f950-49c5-9640-16886ac1afbd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5557b63-6ba0-4d3b-81df-bdb2aa5c2193", + "DeletedAt": null, + "LexemeForm": { + "seh": "oni" + }, + "CitationForm": { + "seh": "muoni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42c30da5-0ade-4f3e-a11d-8d7c275ab9ed", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5557b63-6ba0-4d3b-81df-bdb2aa5c2193", + "Definition": {}, + "Gloss": { + "en": "reward", + "pt": "galada\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "31834ac9-b990-4b44-abbe-4ec84259a48e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "42c30da5-0ade-4f3e-a11d-8d7c275ab9ed", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "94200ce4-e4ce-43f0-9fda-0d6101ee7c49", + "DeletedAt": null, + "LexemeForm": { + "seh": "rope" + }, + "CitationForm": { + "seh": "murope" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a5dace3-e179-4e9c-9cd8-49f8b26a382d", + "Order": 1, + "DeletedAt": null, + "EntryId": "94200ce4-e4ce-43f0-9fda-0d6101ee7c49", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "segundo sementeira do ano, april-maio, depois de premeira cheia do rios", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "autumn", + "pt": "octono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c546f566-1262-421c-ae93-4538bff64e75", + "DeletedAt": null, + "LexemeForm": { + "seh": "mus" + }, + "CitationForm": { + "seh": "musa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31fd829f-9a38-48f3-be66-5673df90f25d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c546f566-1262-421c-ae93-4538bff64e75", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ask for a girl\u0027s hand in marriage, give condolences,", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "propose", + "pt": "propor casamento" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ceecc71d-2295-4591-bb0b-55ffcf4bd61d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "31fd829f-9a38-48f3-be66-5673df90f25d", + "DeletedAt": null + } + ] + }, + { + "Id": "62b1a7ca-26cd-4c6a-94ce-3db720f3a146", + "Order": 2, + "DeletedAt": null, + "EntryId": "c546f566-1262-421c-ae93-4538bff64e75", + "Definition": { + "en": { + "Spans": [ + { + "Text": "requirement to have relations with brother of one\u0027s dead husband with option to remain married", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "marry in-law", + "pt": "casar cunhado" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06e398d6-a16f-42c5-855d-790622cb6ec1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": { + "seh": "muti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "388e6630-6231-4ea8-86a6-1a98d2d01126", + "Order": 1, + "DeletedAt": null, + "EntryId": "06e398d6-a16f-42c5-855d-790622cb6ec1", + "Definition": {}, + "Gloss": { + "en": "tree", + "pt": "arvora" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "0ee5b933-f1ab-485f-894a-51fe239cb726", + "Name": { + "en": "Tree" + }, + "Code": "1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "531af868-b5fb-41c2-ba50-764458f9102f", + "Name": { + "en": "Bush, shrub" + }, + "Code": "1.5.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3079e659-8dc4-4280-b44c-024b91868ca2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:15; Wordlist; Orth; Nya; Sapa\u0303o", + "Ws": "en" + } + ] + }, + "SenseId": "388e6630-6231-4ea8-86a6-1a98d2d01126", + "DeletedAt": null + } + ] + }, + { + "Id": "c4d3b653-3207-4b86-942e-080107bd75c3", + "Order": 2, + "DeletedAt": null, + "EntryId": "06e398d6-a16f-42c5-855d-790622cb6ec1", + "Definition": {}, + "Gloss": { + "en": "plant", + "pt": "planta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "661721b0-a4cd-4a11-b949-02e59bc569bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "muts" + }, + "CitationForm": { + "seh": "mutsa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d404c710-b362-43d5-b616-7b1e72686914", + "Order": 1, + "DeletedAt": null, + "EntryId": "661721b0-a4cd-4a11-b949-02e59bc569bc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to ask a visitor to report how things are going", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pedir relato\u0301rio", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "request news", + "pt": "pedir relato\u0301rio" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0cec00c3-d005-4645-84df-79184ae4d768", + "DeletedAt": null, + "LexemeForm": { + "seh": "yy" + }, + "CitationForm": { + "seh": "muya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "99e2fd45-de4f-443f-83d9-cd97bdf26699", + "Order": 1, + "DeletedAt": null, + "EntryId": "0cec00c3-d005-4645-84df-79184ae4d768", + "Definition": {}, + "Gloss": { + "en": "wind", + "pt": "vento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4", + "Name": { + "en": "Wind" + }, + "Code": "1.1.3.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "05e05a33-3018-47aa-8e7a-d263b93bd01c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Muya wa Mulengi wampita nkati mwa ntima mwace.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "O espi\u0301rito de Deus entrou dentro do corac\u0327a\u0303o dele.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "99e2fd45-de4f-443f-83d9-cd97bdf26699", + "DeletedAt": null + } + ] + }, + { + "Id": "a8047ab7-12d6-478e-9278-7743d479ec39", + "Order": 2, + "DeletedAt": null, + "EntryId": "0cec00c3-d005-4645-84df-79184ae4d768", + "Definition": {}, + "Gloss": { + "en": "air", + "pt": "ar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "935c0a9c-8294-4ed7-8dac-6c9b6addd09e", + "DeletedAt": null, + "LexemeForm": { + "seh": "mw" + }, + "CitationForm": { + "seh": "mwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "076b345f-c4d7-4b07-885a-532a69eb125d", + "Order": 1, + "DeletedAt": null, + "EntryId": "935c0a9c-8294-4ed7-8dac-6c9b6addd09e", + "Definition": {}, + "Gloss": { + "en": "drink", + "pt": "beber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "6de42a33-35b2-49c6-b2c4-fa9c0c5094f0", + "Name": { + "en": "Drink" + }, + "Code": "5.2.2.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "58a95cff-ad56-422b-9e4c-af7f09e59415", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "076b345f-c4d7-4b07-885a-532a69eb125d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49860b06-c3d1-447b-aec1-ceebd38bde45", + "DeletedAt": null, + "LexemeForm": { + "seh": "adia" + }, + "CitationForm": { + "seh": "mwadia" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ba8a7d2-70af-4f14-a5ad-278d876ca7d6", + "Order": 1, + "DeletedAt": null, + "EntryId": "49860b06-c3d1-447b-aec1-ceebd38bde45", + "Definition": {}, + "Gloss": { + "en": "dugout canoe", + "pt": "canoa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e9aa27c2-75f4-4973-a2be-78b92dcc7b87", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5ba8a7d2-70af-4f14-a5ad-278d876ca7d6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06180070-be38-46d4-9efe-f00644614b6f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ala" + }, + "CitationForm": { + "seh": "mwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cfc7cb6e-8204-4830-89ef-aa7830363a26", + "Order": 1, + "DeletedAt": null, + "EntryId": "06180070-be38-46d4-9efe-f00644614b6f", + "Definition": {}, + "Gloss": { + "en": "stone", + "pt": "pedra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "0f07adb7-4387-4723-9800-8362e825ad45", + "Name": { + "en": "Rock" + }, + "Code": "1.2.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fe807ca3-5cb9-43ba-93ec-c2def7b023d6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "cfc7cb6e-8204-4830-89ef-aa7830363a26", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c3cc6b53-9a30-458e-a0df-4a2c14c33dc3", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwal" + }, + "CitationForm": { + "seh": "mwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9fce6360-d80f-49b6-a498-d3d726f75294", + "Order": 1, + "DeletedAt": null, + "EntryId": "c3cc6b53-9a30-458e-a0df-4a2c14c33dc3", + "Definition": {}, + "Gloss": { + "en": "divorce", + "pt": "divorciar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5fca6ff9-85cd-4fe5-9a1a-509f372fc580", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9fce6360-d80f-49b6-a498-d3d726f75294", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c5359cee-a11e-49a3-9cbf-719b6079c4f7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwalan" + }, + "CitationForm": { + "seh": "mwalana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3ff43d51-b217-43f3-ab1c-0cb615a286e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c5359cee-a11e-49a3-9cbf-719b6079c4f7", + "Definition": {}, + "Gloss": { + "en": "divorce", + "pt": "divorciar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efdd4f64-e2f2-4358-bc72-8ad120fde978", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3ff43d51-b217-43f3-ab1c-0cb615a286e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77a4dd31-8594-4797-aa7d-82cb30ae6e9b", + "DeletedAt": null, + "LexemeForm": { + "seh": "amyali" + }, + "CitationForm": { + "seh": "mwali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa7a8c63-d69a-4759-87d8-34238f762bfd", + "Order": 1, + "DeletedAt": null, + "EntryId": "77a4dd31-8594-4797-aa7d-82cb30ae6e9b", + "Definition": {}, + "Gloss": { + "en": "girl", + "pt": "rapariga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "262c6b1b-90f6-442e-a3c3-1e16c396a4aa", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:26", + "Ws": "en" + } + ] + }, + "SenseId": "aa7a8c63-d69a-4759-87d8-34238f762bfd", + "DeletedAt": null + } + ] + }, + { + "Id": "e9979cef-9619-4a0f-a40e-0f5fee9c7abc", + "Order": 2, + "DeletedAt": null, + "EntryId": "77a4dd31-8594-4797-aa7d-82cb30ae6e9b", + "Definition": {}, + "Gloss": { + "en": "virgin", + "pt": "donzela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "be5f54c0-b77f-4b8c-995a-a2d4bb57fce3", + "DeletedAt": null, + "LexemeForm": { + "seh": "ambo" + }, + "CitationForm": { + "seh": "mwambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cee4d065-378c-4326-aced-688a7ff09338", + "Order": 1, + "DeletedAt": null, + "EntryId": "be5f54c0-b77f-4b8c-995a-a2d4bb57fce3", + "Definition": {}, + "Gloss": { + "en": "law", + "pt": "lei" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "DeletedAt": null, + "LexemeForm": { + "seh": "ana" + }, + "CitationForm": { + "seh": "mwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "53786682-eef8-4218-90af-5487843ce2b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "Definition": {}, + "Gloss": { + "en": "child", + "pt": "crianc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3996b5d-e6b2-4498-b717-0ac11fa0d787", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Yana ana ana.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "Yana has children.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Yana tem crianc\u0327as.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "53786682-eef8-4218-90af-5487843ce2b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "0a23a42b-20f0-4b5c-9950-19c84787010a", + "MaybeId": "0a23a42b-20f0-4b5c-9950-19c84787010a", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "ComponentSenseId": null, + "ComponentHeadword": "mwana" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91bdbf5e-249c-40e1-a7b5-f1b342601a14", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwana wa mamuna" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "4f26b963-72b1-4641-982e-ed005da28c13", + "Order": 1, + "DeletedAt": null, + "EntryId": "91bdbf5e-249c-40e1-a7b5-f1b342601a14", + "Definition": {}, + "Gloss": { + "en": "son", + "pt": "filho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "48e561e2-fe23-499a-8000-da2f081b6532", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4f26b963-72b1-4641-982e-ed005da28c13", + "DeletedAt": null + } + ] + }, + { + "Id": "86d323e5-7bc2-49b4-8fdd-6f71388040e6", + "Order": 2, + "DeletedAt": null, + "EntryId": "91bdbf5e-249c-40e1-a7b5-f1b342601a14", + "Definition": {}, + "Gloss": { + "en": "husband\u0027s son", + "pt": "filho de marido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ana-cinthu" + }, + "CitationForm": { + "seh": "mwana-cinthu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "89941ef6-3dc0-4209-8c58-663a48ff909f", + "Order": 1, + "DeletedAt": null, + "EntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "Definition": {}, + "Gloss": { + "en": "owner", + "pt": "dono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "489e9793-4a92-4562-9bcb-a1f297eec6b7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mwana-cinthu nyumba", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "dono de casa", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "89941ef6-3dc0-4209-8c58-663a48ff909f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "0a23a42b-20f0-4b5c-9950-19c84787010a", + "MaybeId": "0a23a42b-20f0-4b5c-9950-19c84787010a", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "ComponentSenseId": null, + "ComponentHeadword": "mwana" + }, + { + "Id": "bc019346-e8d9-49ad-839d-b7fa2b28f0e4", + "MaybeId": "bc019346-e8d9-49ad-839d-b7fa2b28f0e4", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "ComponentSenseId": null, + "ComponentHeadword": "cinthu" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "25fc79e8-41f2-450f-8970-d8f79d028816", + "DeletedAt": null, + "LexemeForm": { + "seh": "ana-mobvi" + }, + "CitationForm": { + "seh": "mwana-mobvi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ab0f6a4-dddc-453f-b697-9b81d146dd74", + "Order": 1, + "DeletedAt": null, + "EntryId": "25fc79e8-41f2-450f-8970-d8f79d028816", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a person who always accompanies another, side kick", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "adjunct", + "pt": "adjunto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96320fc1-0114-456d-a552-533c53f64b68", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0ab0f6a4-dddc-453f-b697-9b81d146dd74", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9ec35eb-e24f-437e-833e-0f35fc3d8684", + "DeletedAt": null, + "LexemeForm": { + "seh": "anambwa" + }, + "CitationForm": { + "seh": "mwanambwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6824a970-23bb-4beb-b27f-9eac8bffec68", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9ec35eb-e24f-437e-833e-0f35fc3d8684", + "Definition": {}, + "Gloss": { + "en": "dog", + "pt": "ca\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26fa18cb-f9e6-409f-8498-8158e014530e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "6824a970-23bb-4beb-b27f-9eac8bffec68", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a36c167-d91b-41a3-9052-001d4e25de67", + "DeletedAt": null, + "LexemeForm": { + "seh": "anakati" + }, + "CitationForm": { + "seh": "mwanankati" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "415d29e4-86f1-4212-95db-6a46fe5f3113", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a36c167-d91b-41a3-9052-001d4e25de67", + "Definition": {}, + "Gloss": { + "en": "messenger", + "pt": "mensageiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f1da3cfc-e43c-4a11-8d4f-7ccc1d5ffb51", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "415d29e4-86f1-4212-95db-6a46fe5f3113", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3e3514a5-0934-4aeb-b116-9f835fa1f485", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwanyik" + }, + "CitationForm": { + "seh": "mwanyika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "995cf936-0b6c-4adf-944b-e4df71b077c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "3e3514a5-0934-4aeb-b116-9f835fa1f485", + "Definition": {}, + "Gloss": { + "en": "greet", + "pt": "cumprimentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ccd1516b-d20e-4ad4-be22-444f0bae05ac", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "995cf936-0b6c-4adf-944b-e4df71b077c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5325b505-35a9-42dd-9f05-c0768594d6b4", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwaz" + }, + "CitationForm": { + "seh": "mwaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "66eb9ca3-95dd-4fe1-9094-63afa7c3e680", + "Order": 1, + "DeletedAt": null, + "EntryId": "5325b505-35a9-42dd-9f05-c0768594d6b4", + "Definition": {}, + "Gloss": { + "en": "spread", + "pt": "esprelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "714f2180-3214-49bf-a801-fcb69f75d129", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "66eb9ca3-95dd-4fe1-9094-63afa7c3e680", + "DeletedAt": null + } + ] + }, + { + "Id": "18d57b4e-3f2e-4610-97f7-aba495ff2487", + "Order": 2, + "DeletedAt": null, + "EntryId": "5325b505-35a9-42dd-9f05-c0768594d6b4", + "Definition": {}, + "Gloss": { + "en": "broadcast news", + "pt": "divulgar noticias" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75f22a1d-3ed3-4173-9db1-53d413f9c301", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwazik" + }, + "CitationForm": { + "seh": "mwazika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "852e2a11-565d-4805-968f-190fd8762284", + "Order": 1, + "DeletedAt": null, + "EntryId": "75f22a1d-3ed3-4173-9db1-53d413f9c301", + "Definition": {}, + "Gloss": { + "en": "spread", + "pt": "esprelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bb8923d6-98ee-4e86-8360-2f2927df0d3e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "852e2a11-565d-4805-968f-190fd8762284", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "144ea68c-0d63-43fe-9b16-aadb666c6ba7", + "DeletedAt": null, + "LexemeForm": { + "seh": "endamberi" + }, + "CitationForm": { + "seh": "mwendamberi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "34c3242c-a674-4917-8e84-9e6a2accb8c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "144ea68c-0d63-43fe-9b16-aadb666c6ba7", + "Definition": {}, + "Gloss": { + "en": "whirlpool", + "pt": "redemoinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "be5af033-4860-46e3-8c8c-598746ccbe21", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "34c3242c-a674-4917-8e84-9e6a2accb8c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c0731683-a8fc-4433-b8c0-cba14ad4ea29", + "DeletedAt": null, + "LexemeForm": { + "seh": "endo" + }, + "CitationForm": { + "seh": "mwendo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88565280-c9db-42a1-8127-41bff919d2c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c0731683-a8fc-4433-b8c0-cba14ad4ea29", + "Definition": {}, + "Gloss": { + "en": "leg", + "pt": "perna" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16914b17-4b50-4163-97af-45ef1eb095c3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "88565280-c9db-42a1-8127-41bff919d2c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a8e2566-6b79-4f4a-be7e-4fbc94a76464", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwenemo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cb3d7dff-ae38-4b65-a5ac-008a70a561ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a8e2566-6b79-4f4a-be7e-4fbc94a76464", + "Definition": {}, + "Gloss": { + "en": "this very one", + "pt": "aquele mesmo" + }, + "PartOfSpeech": { + "Id": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "Name": { + "en": "Demonstrative6", + "pt": "Demonstrativo6" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "01f5804e-4fdc-473b-99c7-310a0be8b454", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwenikir" + }, + "CitationForm": { + "seh": "mwenikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "60410caf-4e30-421d-8379-d51dd28fba3e", + "Order": 1, + "DeletedAt": null, + "EntryId": "01f5804e-4fdc-473b-99c7-310a0be8b454", + "Definition": {}, + "Gloss": { + "en": "iluminate", + "pt": "illuminar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3101b654-cb18-42ff-90df-122863370043", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "60410caf-4e30-421d-8379-d51dd28fba3e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56627373-12c9-47ff-a42f-60efeaf94525", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwenye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc62d271-7625-47f5-8066-fc4fde24cf79", + "Order": 1, + "DeletedAt": null, + "EntryId": "56627373-12c9-47ff-a42f-60efeaf94525", + "Definition": {}, + "Gloss": { + "en": "muslim", + "pt": "muc\u0327ulmano" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ab8f5391-ad8b-42dc-a43c-22590a09ce77", + "Name": { + "en": "Islam" + }, + "Code": "4.9.7.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b3bc1f11-3a21-480e-ab43-11408ac28f1b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bc62d271-7625-47f5-8066-fc4fde24cf79", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad4706fa-233c-4931-9f84-a350317c6c22", + "DeletedAt": null, + "LexemeForm": { + "seh": "ezi" + }, + "CitationForm": { + "seh": "mwezi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b91c9f15-752a-43da-91b7-c3cc29b2633c", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad4706fa-233c-4931-9f84-a350317c6c22", + "Definition": {}, + "Gloss": { + "en": "moon", + "pt": "lua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "af70f8c3-357c-425c-82d2-698004ca687a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b91c9f15-752a-43da-91b7-c3cc29b2633c", + "DeletedAt": null + } + ] + }, + { + "Id": "0092d1f9-866f-4644-a648-bdc723461976", + "Order": 2, + "DeletedAt": null, + "EntryId": "ad4706fa-233c-4931-9f84-a350317c6c22", + "Definition": {}, + "Gloss": { + "en": "month", + "pt": "me\u0302s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e62ac7c-176f-480d-be1f-e6cc11fef4ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "imbi" + }, + "CitationForm": { + "seh": "mwimbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6ebf8305-6707-4317-ac40-0f30a3f592fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e62ac7c-176f-480d-be1f-e6cc11fef4ab", + "Definition": {}, + "Gloss": { + "en": "singer", + "pt": "cantor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e427aabb-ab53-4e46-b422-9e642dc76b7a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Barb; Moreira:14", + "Ws": "en" + } + ] + }, + "SenseId": "6ebf8305-6707-4317-ac40-0f30a3f592fc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0106b97-e8e0-493e-b9a1-21291e44fb56", + "DeletedAt": null, + "LexemeForm": { + "seh": "inji" + }, + "CitationForm": { + "seh": "mwinji" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b424532-f191-4a43-ab9b-9750458c38f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0106b97-e8e0-493e-b9a1-21291e44fb56", + "Definition": {}, + "Gloss": { + "en": "crowd", + "pt": "multida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9f0c511f-b3b5-4831-b9e2-d7316e0c9d91", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5b424532-f191-4a43-ab9b-9750458c38f8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd10091a-0474-449b-80de-25ff205a9444", + "DeletedAt": null, + "LexemeForm": { + "seh": "dikhwa" + }, + "CitationForm": { + "seh": "n\u0027dikhwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a780e1c6-949e-467a-bd6a-17181cdec72c", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd10091a-0474-449b-80de-25ff205a9444", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild coconut tree", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "coqueiro bravo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "coconut tree", + "pt": "coqueiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90a0f3af-b788-4b24-b91f-7e3a1df82c5c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:15; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a780e1c6-949e-467a-bd6a-17181cdec72c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f876006-1922-49b7-83f7-4f954b77f1bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "kanwa" + }, + "CitationForm": { + "seh": "n\u0027kanwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e82993d5-549f-41b6-8844-105962d58f45", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f876006-1922-49b7-83f7-4f954b77f1bd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "mouth, refers to the interior part of the mouth", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "mouth inside", + "pt": "boca detro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "47fe87de-1a03-4613-9491-53b5209f2ee7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "e82993d5-549f-41b6-8844-105962d58f45", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35dcf61a-a85e-4a21-8852-43dd8cf37b74", + "DeletedAt": null, + "LexemeForm": { + "seh": "khole" + }, + "CitationForm": { + "seh": "n\u0027khole" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fde0980-a087-4c10-9cc6-d3672722d1cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "35dcf61a-a85e-4a21-8852-43dd8cf37b74", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small.cloth used for clothing before pants became popular", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pano.pequeno que vestiu homens", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "loin cloth", + "pt": "tanga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7c7f5444-3578-4be1-bc4a-62afab1af391", + "DeletedAt": null, + "LexemeForm": { + "seh": "khondo" + }, + "CitationForm": { + "seh": "n\u0027khondo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2493ddcf-62d9-425a-8879-e3817c075560", + "Order": 1, + "DeletedAt": null, + "EntryId": "7c7f5444-3578-4be1-bc4a-62afab1af391", + "Definition": { + "en": { + "Spans": [ + { + "Text": "animal trail", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "caminho de animal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trail", + "pt": "caminho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fd1e60a3-01a0-44bf-966d-cc4728353ebc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2493ddcf-62d9-425a-8879-e3817c075560", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f406f180-d12b-49ba-ab78-b296638b19eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "khundu" + }, + "CitationForm": { + "seh": "n\u0027khundu-n\u0027khundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "75f63458-61f3-435a-9a56-b4dcc4e4c57e", + "Order": 1, + "DeletedAt": null, + "EntryId": "f406f180-d12b-49ba-ab78-b296638b19eb", + "Definition": {}, + "Gloss": { + "en": "side by side", + "pt": "lado a lado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "146ced19-5712-4550-b442-89ce02a200b7", + "Order": 2, + "DeletedAt": null, + "EntryId": "f406f180-d12b-49ba-ab78-b296638b19eb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the immediate shore of the river", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "river bank", + "pt": "margem de rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "928741b5-bff6-4dd1-be37-ec6e7a4eb6ca", + "Name": { + "en": "Island, shore" + }, + "Code": "1.3.1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75975d1d-61e4-4342-8ab6-17817c07b523", + "DeletedAt": null, + "LexemeForm": { + "seh": "thambo" + }, + "CitationForm": { + "seh": "n\u0027thambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "306efdb8-0e89-4f71-9456-4980caf881ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "75975d1d-61e4-4342-8ab6-17817c07b523", + "Definition": {}, + "Gloss": { + "en": "necklace", + "pt": "corda\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "410a3d81-290f-416b-8012-3aa16eaa9e55", + "Name": { + "en": "Women\u0027s clothing" + }, + "Code": "5.3.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c7cfa06d-6564-4228-9648-0165b3540c54", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya \u0026 Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "306efdb8-0e89-4f71-9456-4980caf881ea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13ee2e0e-64bc-48cd-beb1-24ad04d67fcb", + "DeletedAt": null, + "LexemeForm": { + "seh": "thiko" + }, + "CitationForm": { + "seh": "n\u0027thiko" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc8c21cf-b752-4ba0-abed-a80e4bd1759c", + "Order": 1, + "DeletedAt": null, + "EntryId": "13ee2e0e-64bc-48cd-beb1-24ad04d67fcb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large wooden spoon used to prepare corn porridge", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "meixedoura usado na preparac\u0327a\u0303o de massa de milho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "spoon", + "pt": "meixedoura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e159802b-c7af-477b-b572-569f92018cb0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "dc8c21cf-b752-4ba0-abed-a80e4bd1759c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "479c5226-cf86-4769-b41f-fd4e633eac27", + "DeletedAt": null, + "LexemeForm": { + "seh": "thunzi" + }, + "CitationForm": { + "seh": "n\u0027thunzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "30970938-00cf-4d44-b45f-b92256f4d132", + "Order": 1, + "DeletedAt": null, + "EntryId": "479c5226-cf86-4769-b41f-fd4e633eac27", + "Definition": {}, + "Gloss": { + "en": "shadow", + "pt": "sombra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "31a1f81e-793e-46a9-aeea-f3b45bf5feb6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "30970938-00cf-4d44-b45f-b92256f4d132", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d7de38a8-10a7-458f-802b-6eec1ef2378f", + "DeletedAt": null, + "LexemeForm": { + "seh": "n\u0027tsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a7dfa8c-5794-43fa-90a2-1efdbaee7873", + "Order": 1, + "DeletedAt": null, + "EntryId": "d7de38a8-10a7-458f-802b-6eec1ef2378f", + "Definition": {}, + "Gloss": { + "en": "in the bush", + "pt": "no mato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "681dcfd8-824e-49f3-a0ed-ca68f31ee706", + "DeletedAt": null, + "LexemeForm": { + "seh": "na" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "81181c3d-cf69-40a1-89d4-d3ab0077528a", + "Order": 1, + "DeletedAt": null, + "EntryId": "681dcfd8-824e-49f3-a0ed-ca68f31ee706", + "Definition": { + "en": { + "Spans": [ + { + "Text": "nonpast", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "na\u0303o passado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NONPST", + "pt": "NONPST" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9f64c8e1-7682-44eb-967a-5dc788f9d680", + "DeletedAt": null, + "LexemeForm": { + "seh": "n" + }, + "CitationForm": { + "seh": "na" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6fc6c873-5cc0-47ee-a8c4-f82e24e7e666", + "Order": 1, + "DeletedAt": null, + "EntryId": "9f64c8e1-7682-44eb-967a-5dc788f9d680", + "Definition": {}, + "Gloss": { + "en": "have", + "pt": "ter" + }, + "PartOfSpeech": { + "Id": "dbf8cf00-ef63-466a-bfb1-472e1fdae57d", + "Name": { + "en": "Irregular Verb - na" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "dbf8cf00-ef63-466a-bfb1-472e1fdae57d", + "SemanticDomains": [ + { + "Id": "24398eec-edd1-449a-ad36-d609be24a79e", + "Name": { + "en": "Have, be with" + }, + "Code": "7.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "DeletedAt": null, + "LexemeForm": { + "seh": "na" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84e5150e-3043-4652-9f64-849cf192fee4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "and", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "e", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "with", + "pt": "com" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [ + { + "Id": "24398eec-edd1-449a-ad36-d609be24a79e", + "Name": { + "en": "Have, be with" + }, + "Code": "7.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "393c2fff-0f76-4684-86cc-c7f196472086", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cifupi na phiri", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "close to the mountain", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "perto de montanha", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "sulo2 007", + "Ws": "en" + } + ] + }, + "SenseId": "84e5150e-3043-4652-9f64-849cf192fee4", + "DeletedAt": null + }, + { + "Id": "6a62c4af-4322-4852-ba3d-b8db35fd2dea", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nyakatendewa na kubva cipwazo.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "The cameleon, at hearing the insult...", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Camalea\u0303o ao ouvir desprezo...", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "84e5150e-3043-4652-9f64-849cf192fee4", + "DeletedAt": null + } + ] + }, + { + "Id": "68e58260-9383-41f8-bb1a-7aa551e89fac", + "Order": 2, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "\u0022and\u0022 as a connector between verb pharses or clauses and cancels out sequentiality between events", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "e", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "and", + "pt": "e" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "91120e17-4e49-43c0-b416-00176448fdd2", + "Order": 3, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": {}, + "Gloss": { + "en": "of", + "pt": "de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "fee1a6ff-3d64-44fa-9515-b51e7068b1d6", + "Order": 4, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "em", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "in", + "pt": "em" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d1e7a1fe-5475-4eae-99eb-d56f7248f6c4", + "Order": 5, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "\u0022by\u0022 only with passive verbs", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "por", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "by", + "pt": "por" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "cbad219c-e1bc-479c-877c-c0017a425ac1", + "Order": 6, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "to", + "pt": "a" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "74b0cee0-db54-4703-8a36-19fe3c041154", + "MaybeId": "74b0cee0-db54-4703-8a36-19fe3c041154", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + }, + { + "Id": "5b23b091-a0bd-4eb1-83b5-6848e0d98b4c", + "MaybeId": "5b23b091-a0bd-4eb1-83b5-6848e0d98b4c", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "02f5101e-b6e2-47e5-b033-dd7197b5734b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7ff262e6-44c0-407c-bf42-49805e8b6848", + "Order": 1, + "DeletedAt": null, + "EntryId": "02f5101e-b6e2-47e5-b033-dd7197b5734b", + "Definition": {}, + "Gloss": { + "en": "four", + "pt": "quarto" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eedc3037-42a6-4bf3-bb84-856adfacd6c1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:33", + "Ws": "en" + } + ] + }, + "SenseId": "7ff262e6-44c0-407c-bf42-49805e8b6848", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "82b1d4df-c01f-48e0-a911-9f3bbbec4f2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nakati-nakati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", + "Order": 1, + "DeletedAt": null, + "EntryId": "82b1d4df-c01f-48e0-a911-9f3bbbec4f2b", + "Definition": {}, + "Gloss": { + "en": "very middle", + "pt": "meio mesmo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4a6de20-efe5-4c36-b043-b5d773a605bf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", + "DeletedAt": null + }, + { + "Id": "fe797f6b-731e-410d-9c8d-1b3ab550b08f", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndiri nakati-nakati wa nseu.", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a2d97060-90c9-4311-939c-c0322dbb9c14", + "DeletedAt": null, + "LexemeForm": { + "seh": "nana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbcb955f-a907-4e80-89ea-ef01f43eabfa", + "Order": 1, + "DeletedAt": null, + "EntryId": "a2d97060-90c9-4311-939c-c0322dbb9c14", + "Definition": { + "en": { + "Spans": [ + { + "Text": "older brother", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "irma\u0303o mais velho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "brother", + "pt": "irma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f45620d8-8728-4ec8-8b14-f1d315ce3656", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cbcb955f-a907-4e80-89ea-ef01f43eabfa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4ae7b57-44e0-4e9f-a3c2-bde040c1bf24", + "DeletedAt": null, + "LexemeForm": { + "seh": "nango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e306b70f-d7bb-402a-b7bb-ffcd6628c784", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4ae7b57-44e0-4e9f-a3c2-bde040c1bf24", + "Definition": {}, + "Gloss": { + "en": "other", + "pt": "outra" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ef2a930-59ee-493a-8db0-1bf59f345be8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e306b70f-d7bb-402a-b7bb-ffcd6628c784", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "84601dac-41aa-443a-8a1e-6f5abecba31d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cera" + }, + "CitationForm": { + "seh": "ncera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "caca5235-796e-488e-b651-93816bb5e38e", + "Order": 1, + "DeletedAt": null, + "EntryId": "84601dac-41aa-443a-8a1e-6f5abecba31d", + "Definition": {}, + "Gloss": { + "en": "a well", + "pt": "poc\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "bf6e1719-11ee-4ace-9c84-72019c01aabc", + "Name": { + "en": "Spring, well" + }, + "Code": "1.3.1.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "70c97527-7025-4c00-a1d6-4bacc964113c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:3", + "Ws": "en" + } + ] + }, + "SenseId": "caca5235-796e-488e-b651-93816bb5e38e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a2fae07-7b80-4236-8976-3890beca3866", + "DeletedAt": null, + "LexemeForm": { + "seh": "chanje" + }, + "CitationForm": { + "seh": "nchanje" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01c0dd6b-8bb7-4a5d-98e7-3f2fc550bd0e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a2fae07-7b80-4236-8976-3890beca3866", + "Definition": {}, + "Gloss": { + "en": "jealousy", + "pt": "ciu\u0301me" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6388f5a2-b775-4d5c-9367-f05cd09869cb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze (ntsanje); Alicete", + "Ws": "en" + } + ] + }, + "SenseId": "01c0dd6b-8bb7-4a5d-98e7-3f2fc550bd0e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2046477c-75f9-4e2f-8785-d05d542e3db4", + "DeletedAt": null, + "LexemeForm": { + "seh": "chichi" + }, + "CitationForm": { + "seh": "nchichi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e9831e86-8361-44fa-a4df-08394a608984", + "Order": 1, + "DeletedAt": null, + "EntryId": "2046477c-75f9-4e2f-8785-d05d542e3db4", + "Definition": {}, + "Gloss": { + "en": "root", + "pt": "raiz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fff9596b-0f84-4715-8ffb-bfc3e26741eb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e9831e86-8361-44fa-a4df-08394a608984", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "39dc0d40-bee5-4d29-9767-69adab9470ca", + "DeletedAt": null, + "LexemeForm": { + "seh": "cindu" + }, + "CitationForm": { + "seh": "ncindu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aabd42d8-a97a-4377-a2fa-6240fcb9c6b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "39dc0d40-bee5-4d29-9767-69adab9470ca", + "Definition": {}, + "Gloss": { + "en": "palm tree", + "pt": "palmeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5b90873-e85e-4e41-a80d-ef8140244d8d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "aabd42d8-a97a-4377-a2fa-6240fcb9c6b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2c88689c-920e-4ef7-85a2-783413fdb514", + "DeletedAt": null, + "LexemeForm": { + "seh": "cira" + }, + "CitationForm": { + "seh": "ncira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4a4e6088-2f32-4bb8-a4cc-c5a0b66d9778", + "Order": 1, + "DeletedAt": null, + "EntryId": "2c88689c-920e-4ef7-85a2-783413fdb514", + "Definition": {}, + "Gloss": { + "en": "tail", + "pt": "cauda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ff67fb1f-c994-477c-b7f4-d452fbde2890", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4a4e6088-2f32-4bb8-a4cc-c5a0b66d9778", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0b972822-7375-4b44-8e59-4575b82317c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "citi" + }, + "CitationForm": { + "seh": "nciti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b52cc4bc-7dd7-4336-893f-071ed4fabd7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0b972822-7375-4b44-8e59-4575b82317c7", + "Definition": {}, + "Gloss": { + "en": "creator", + "pt": "criador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "136f608a-4d70-4e3f-bc46-87d55ffbd966", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "b52cc4bc-7dd7-4336-893f-071ed4fabd7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7e5fb6f3-74ff-4ac6-b806-a39fe2392ec3", + "DeletedAt": null, + "LexemeForm": { + "seh": "citwi" + }, + "CitationForm": { + "seh": "ncitwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "867f42cd-6511-458c-8659-c84de78e21f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "7e5fb6f3-74ff-4ac6-b806-a39fe2392ec3", + "Definition": {}, + "Gloss": { + "en": "creature", + "pt": "criatura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3017365-bb6d-4ed0-b5e7-14463031ca1a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32 (says rational creature)", + "Ws": "en" + } + ] + }, + "SenseId": "867f42cd-6511-458c-8659-c84de78e21f9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7c0502b-0783-4b13-a8b7-511dd3442fef", + "DeletedAt": null, + "LexemeForm": { + "seh": "combo" + }, + "CitationForm": { + "seh": "ncombo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9998867c-65bf-4126-aecb-73c98e6864a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7c0502b-0783-4b13-a8b7-511dd3442fef", + "Definition": {}, + "Gloss": { + "en": "navel", + "pt": "umbigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1594e83e-7938-4f24-a48b-e609f228d179", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "9998867c-65bf-4126-aecb-73c98e6864a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "df122a69-ceb1-4dd8-89a7-7f5a00ee5799", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunu" + }, + "CitationForm": { + "seh": "ncunu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "33fa5883-44e0-4bf6-9181-5ae1dbbbdd17", + "Order": 1, + "DeletedAt": null, + "EntryId": "df122a69-ceb1-4dd8-89a7-7f5a00ee5799", + "Definition": {}, + "Gloss": { + "en": "waist", + "pt": "cintura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bd3971f0-a441-43af-a3ed-49b0a26b3053", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "33fa5883-44e0-4bf6-9181-5ae1dbbbdd17", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c28306ee-a238-472f-8f7d-22c413ca438f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndalama" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cb806a3e-0460-41d5-87e0-519fb87d80cd", + "Order": 1, + "DeletedAt": null, + "EntryId": "c28306ee-a238-472f-8f7d-22c413ca438f", + "Definition": {}, + "Gloss": { + "en": "money", + "pt": "dineiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bb41b153-8231-4111-a216-542e1ea8351e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "cb806a3e-0460-41d5-87e0-519fb87d80cd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c6ce14d-a0da-4d03-84b9-0c6ebcb8d405", + "DeletedAt": null, + "LexemeForm": { + "seh": "dani" + }, + "CitationForm": { + "seh": "ndani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5c6f03eb-38ca-403c-abce-77d6572100b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c6ce14d-a0da-4d03-84b9-0c6ebcb8d405", + "Definition": {}, + "Gloss": { + "en": "enemy", + "pt": "inimigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e864226-1a8e-421c-9a5e-aa6fe58ac6bf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5c6f03eb-38ca-403c-abce-77d6572100b1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6fb58a21-1e45-45b6-a325-8d35afbd4d8a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dawa" + }, + "CitationForm": { + "seh": "ndawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea84d2b7-4063-4074-a75c-c8d9e267d3e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "6fb58a21-1e45-45b6-a325-8d35afbd4d8a", + "Definition": {}, + "Gloss": { + "en": "court case", + "pt": "milando" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "07a296dc-118d-47c0-a85f-a6176026a1a2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ea84d2b7-4063-4074-a75c-c8d9e267d3e6", + "DeletedAt": null + } + ] + }, + { + "Id": "7178a762-8c87-45db-b944-e7edd9e93ddb", + "Order": 2, + "DeletedAt": null, + "EntryId": "6fb58a21-1e45-45b6-a325-8d35afbd4d8a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sin, cause of guilt", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sin", + "pt": "pecado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b38b335c-3ac4-4c41-931e-cf7e9dfa8b4d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndekha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cd9690f9-7c5e-48a5-b8fb-1c5b1a47e90c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b38b335c-3ac4-4c41-931e-cf7e9dfa8b4d", + "Definition": {}, + "Gloss": { + "en": "alone", + "pt": "sozinho" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cc83747c-ec97-41e3-ba92-2dc7e717664c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "cd9690f9-7c5e-48a5-b8fb-1c5b1a47e90c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f2655a45-88f7-4403-915e-f18bbf7b99e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndendemez" + }, + "CitationForm": { + "seh": "ndendemeza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24539709-eea2-44ec-9baa-f90a11eb703b", + "Order": 1, + "DeletedAt": null, + "EntryId": "f2655a45-88f7-4403-915e-f18bbf7b99e4", + "Definition": {}, + "Gloss": { + "en": "straighten", + "pt": "endireitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "647cce06-5531-4fa3-94b8-bcd53ede85b6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "24539709-eea2-44ec-9baa-f90a11eb703b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cbd57fd-e988-4cc6-a710-64f485453351", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndi" + }, + "CitationForm": { + "seh": "ndi" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a7282af1-7f78-4f10-ba25-238fedd5fb74", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cbd57fd-e988-4cc6-a710-64f485453351", + "Definition": {}, + "Gloss": { + "en": "it is", + "pt": "e\u0301" + }, + "PartOfSpeech": { + "Id": "748af620-8cd0-4364-a951-c234306f5b9f", + "Name": { + "en": "Copula Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d5d21dd-3c8c-4bf1-bc44-514edb792ff0", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "2e3443cd-d974-4c03-b809-9aef9f1919ed", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d5d21dd-3c8c-4bf1-bc44-514edb792ff0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "I", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "eu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1S", + "pt": "1S" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0e74b4cc-9f2b-4d56-bf46-76a022bb6782", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndiko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc447c6a-13f0-48ef-a0c3-9ad940af245c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0e74b4cc-9f2b-4d56-bf46-76a022bb6782", + "Definition": {}, + "Gloss": { + "en": "calice", + "pt": "ca\u0301lice" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bc29cedb-ee67-4713-b33d-9cbc40e13f9f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "dc447c6a-13f0-48ef-a0c3-9ad940af245c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aaed74ac-a322-484e-ab89-19f36cf44bdb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndimo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0cba0865-daa8-453e-9d82-08da268cea8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "aaed74ac-a322-484e-ab89-19f36cf44bdb", + "Definition": {}, + "Gloss": { + "en": "it is true", + "pt": "e\u0301 verdade" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ce4ee16-957b-45c9-9747-68f8aa316bb5", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndimo mwene", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "0cba0865-daa8-453e-9d82-08da268cea8e", + "DeletedAt": null + }, + { + "Id": "e1ed7d45-066a-4037-9f91-a44cdd59c72d", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "e\u0301 verdade", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "0cba0865-daa8-453e-9d82-08da268cea8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a52acf59-1273-4e0d-a0ff-ed2837200c36", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndimu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6008c4e3-3fc0-496c-be1b-22cc04fcc6ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "a52acf59-1273-4e0d-a0ff-ed2837200c36", + "Definition": {}, + "Gloss": { + "en": "lemon tree", + "pt": "limoneira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl mindimu", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d73ebfcc-b2b5-44e6-9e11-4fe4c37d0ed4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndimu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ba2a787f-ed2a-40f6-a418-225c50d3fc52", + "Order": 1, + "DeletedAt": null, + "EntryId": "d73ebfcc-b2b5-44e6-9e11-4fe4c37d0ed4", + "Definition": {}, + "Gloss": { + "en": "lemon", + "pt": "lima\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "85531f36-c472-4f09-8d69-93a0d2b133af", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ba2a787f-ed2a-40f6-a418-225c50d3fc52", + "DeletedAt": null + } + ] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl mandimu", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0c54cd8d-cae0-4fc7-a945-19fecb4df8c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndoko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "30851df2-373e-469a-886a-83495b238da9", + "Order": 1, + "DeletedAt": null, + "EntryId": "0c54cd8d-cae0-4fc7-a945-19fecb4df8c3", + "Definition": {}, + "Gloss": { + "en": "go!", + "pt": "va!" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2a9a9a7-899b-4875-a5e6-337c8ac249a9", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndoto" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ac662c72-e719-47cf-b6a3-a20bfce8186a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2a9a9a7-899b-4875-a5e6-337c8ac249a9", + "Definition": {}, + "Gloss": { + "en": "dream", + "pt": "sonho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "276baad4-8611-44e6-823f-9d1f8e65c787", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ac662c72-e719-47cf-b6a3-a20bfce8186a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebd49c9d-1458-4039-9db5-b2ab7cdbe92b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndui" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86b544d8-af64-4fdd-8677-5c137f6bdd25", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebd49c9d-1458-4039-9db5-b2ab7cdbe92b", + "Definition": {}, + "Gloss": { + "en": "ground nut", + "pt": "amendoim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c8f94049-e3e6-4a8a-b2b6-004035f5d9ba", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "86b544d8-af64-4fdd-8677-5c137f6bdd25", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06e9dfad-56a3-4bc1-b8f1-b6a75cf84202", + "DeletedAt": null, + "LexemeForm": { + "seh": "nduli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", + "Order": 1, + "DeletedAt": null, + "EntryId": "06e9dfad-56a3-4bc1-b8f1-b6a75cf84202", + "Definition": {}, + "Gloss": { + "en": "after", + "pt": "depois" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16461b12-2b9b-4b52-953f-ed8ecfb5f342", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ali kupi mwana? Ali nduli mwako", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Onde esta\u0301 a crianc\u0327a? Est atra\u0301s de ti.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", + "DeletedAt": null + }, + { + "Id": "92cec1e9-0287-42e6-b5ef-88a55f54fa56", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sogulani ndinabwera nduli mwanu", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Adiate, hei de vir depois de si.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", + "DeletedAt": null + } + ] + }, + { + "Id": "0e99aea0-3a09-40af-ba14-2fe5d0f42961", + "Order": 2, + "DeletedAt": null, + "EntryId": "06e9dfad-56a3-4bc1-b8f1-b6a75cf84202", + "Definition": {}, + "Gloss": { + "en": "behind", + "pt": "atra\u0301s" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "20b519ac-b133-4ff6-8449-bb635ffd1291", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzakazi" + }, + "CitationForm": { + "seh": "ndzakazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dbc383e0-acd4-458e-86b1-db9668dac4eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "20b519ac-b133-4ff6-8449-bb635ffd1291", + "Definition": {}, + "Gloss": { + "en": "slave", + "pt": "escravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "97353a06-97a7-448c-98de-cc514b51d87b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dbc383e0-acd4-458e-86b1-db9668dac4eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f22d51a4-26ae-4fe5-986a-0f5e2c909cba", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzeru" + }, + "CitationForm": { + "seh": "ndzeru" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2e84850b-05d1-4de0-8db5-4bfeef18f8f3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f22d51a4-26ae-4fe5-986a-0f5e2c909cba", + "Definition": { + "en": { + "Spans": [ + { + "Text": "judgement, intelligence", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "juizo, intelige\u0302ncia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "judgement", + "pt": "juizo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "36d62308-9d1a-451c-948a-0bf12f82dabc", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ana ndzeru zikulu.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Ele tem grande inteligencia.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Sulo2 011", + "Ws": "en" + } + ] + }, + "SenseId": "2e84850b-05d1-4de0-8db5-4bfeef18f8f3", + "DeletedAt": null + } + ] + }, + { + "Id": "a639ec9c-35db-45f5-b3f5-85293483b4cd", + "Order": 2, + "DeletedAt": null, + "EntryId": "f22d51a4-26ae-4fe5-986a-0f5e2c909cba", + "Definition": {}, + "Gloss": { + "en": "idea", + "pt": "ideia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8372a911-eb4a-4f96-b2dc-96cde5602f50", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzice" + }, + "CitationForm": { + "seh": "ndzice" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50757f29-2ed9-4987-ad65-7822e66355ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "8372a911-eb4a-4f96-b2dc-96cde5602f50", + "Definition": { + "en": { + "Spans": [ + { + "Text": "unmarried person, spinster, batchelor, widow, widower", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pessoa na\u0303o casada, solteirona, solteiro, viuva, viuvo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "unmarried", + "pt": "na\u0303o casada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00497afe-61bf-455a-8fe8-16aed326dec6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:14 also says bride; bridegroom", + "Ws": "en" + } + ] + }, + "SenseId": "50757f29-2ed9-4987-ad65-7822e66355ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5f59c83f-81a6-4b6b-8094-b9cc20fd10ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzidzi" + }, + "CitationForm": { + "seh": "ndzidzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce84b386-6ca6-461e-99b0-8df1e879e369", + "Order": 1, + "DeletedAt": null, + "EntryId": "5f59c83f-81a6-4b6b-8094-b9cc20fd10ef", + "Definition": {}, + "Gloss": { + "en": "time", + "pt": "altura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "afc34986-449b-41ac-9b58-2719f3cebc9e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo006; Sulo2:22; Moreira:24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ce84b386-6ca6-461e-99b0-8df1e879e369", + "DeletedAt": null + } + ] + }, + { + "Id": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", + "Order": 2, + "DeletedAt": null, + "EntryId": "5f59c83f-81a6-4b6b-8094-b9cc20fd10ef", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "tempo, hora", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "time", + "pt": "tempo" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ec8dbf93-3d6f-40bf-b500-f230f82f1e2c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndzidzi wanji uno?", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Que hora sa\u0303o?", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c825f160-d38b-4842-8954-c0b969cde116", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzinda" + }, + "CitationForm": { + "seh": "ndzinda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ee429f51-e92f-4d59-9a87-05531b6c7aab", + "Order": 1, + "DeletedAt": null, + "EntryId": "c825f160-d38b-4842-8954-c0b969cde116", + "Definition": {}, + "Gloss": { + "en": "city", + "pt": "cidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b536622c-80a3-4b31-9d22-4ed2fb76324d", + "Name": { + "en": "City" + }, + "Code": "4.6.7.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "8472a200-756b-417f-85a8-43d0dbba1399", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndzinda ukulu", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "ee429f51-e92f-4d59-9a87-05531b6c7aab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71a34111-6b38-423f-9bc5-0f2422dfdbea", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzukulu" + }, + "CitationForm": { + "seh": "ndzukulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3394d689-385c-40b1-ad04-0256836a3a66", + "Order": 1, + "DeletedAt": null, + "EntryId": "71a34111-6b38-423f-9bc5-0f2422dfdbea", + "Definition": {}, + "Gloss": { + "en": "grandson", + "pt": "neto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a57ba619-6329-46d4-92a3-667095a6a75a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "3394d689-385c-40b1-ad04-0256836a3a66", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e31dcd2-dc2e-4b2f-9d57-b0e9cf994a02", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu" + }, + "CitationForm": { + "seh": "ndzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cae34553-1777-4d11-860a-c4a6b3ca12a4", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e31dcd2-dc2e-4b2f-9d57-b0e9cf994a02", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the air, at the top of (eg tree)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "in the sky", + "pt": "no ce\u0301u" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1c3f8996-362e-4ee0-af02-0dd02887f6aa", + "Name": { + "en": "Heaven, hell" + }, + "Code": "4.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aec3cdc3-221b-4cfc-b287-93d91436b926", + "DeletedAt": null, + "LexemeForm": { + "seh": "ne" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4704fd8b-646b-407d-b02e-0ad5a6c5a503", + "Order": 1, + "DeletedAt": null, + "EntryId": "aec3cdc3-221b-4cfc-b287-93d91436b926", + "Definition": {}, + "Gloss": { + "en": "not", + "pt": "na\u0308o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4e4b416-5a15-41e3-9039-c3cca7093153", + "DeletedAt": null, + "LexemeForm": { + "seh": "nee" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8947916b-0e22-4365-8336-680e98ba84fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4e4b416-5a15-41e3-9039-c3cca7093153", + "Definition": {}, + "Gloss": { + "en": "not", + "pt": "na\u0303o" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eacda214-08a3-4fed-984f-c32e99c62be6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nens" + }, + "CitationForm": { + "seh": "nensa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f0b5bd45-51b9-4280-a34a-aa993749ccad", + "Order": 1, + "DeletedAt": null, + "EntryId": "eacda214-08a3-4fed-984f-c32e99c62be6", + "Definition": {}, + "Gloss": { + "en": "be dificult", + "pt": "ser dificil" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "def76143-6036-4539-bd6f-3b5575d9a8b2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Basa ya nkumbizi isanensa", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Trabalho de pastorar e\u0301 dificil.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f0b5bd45-51b9-4280-a34a-aa993749ccad", + "DeletedAt": null + } + ] + }, + { + "Id": "b718b6fb-d131-474c-9799-1a805b94c89f", + "Order": 2, + "DeletedAt": null, + "EntryId": "eacda214-08a3-4fed-984f-c32e99c62be6", + "Definition": {}, + "Gloss": { + "en": "costs dearly", + "pt": "custar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "46f77ef5-4543-4b8a-a32f-5b6448bae960", + "DeletedAt": null, + "LexemeForm": { + "seh": "net" + }, + "CitationForm": { + "seh": "neta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "169eade3-a10b-4554-9230-5516077a8f53", + "Order": 1, + "DeletedAt": null, + "EntryId": "46f77ef5-4543-4b8a-a32f-5b6448bae960", + "Definition": {}, + "Gloss": { + "en": "tire", + "pt": "cansar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2dc39f33-d145-4a66-a846-c4e68e3837e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nfangu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b4a02fc9-2ae5-4c96-ae87-ceec6845871e", + "Order": 1, + "DeletedAt": null, + "EntryId": "2dc39f33-d145-4a66-a846-c4e68e3837e2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "genet, kill small livestock and use the same bathroom, Genus Genetta", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "genet", + "pt": "gineta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7d38e076-c57a-4e3f-8fa6-e23e57829724", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "b4a02fc9-2ae5-4c96-ae87-ceec6845871e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2aacba99-22b4-4f02-ba97-b7347de36933", + "DeletedAt": null, + "LexemeForm": { + "seh": "nfofomimba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "dfad5d62-b5e7-46e0-b26e-e062147e72c5", + "Order": 1, + "DeletedAt": null, + "EntryId": "2aacba99-22b4-4f02-ba97-b7347de36933", + "Definition": { + "en": { + "Spans": [ + { + "Text": "prostrated on stomach", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "prostando-se de barriga", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "prostrated", + "pt": "prostando-se" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e22a3bc2-75e7-4e5e-8dc3-2294317201c1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "dfad5d62-b5e7-46e0-b26e-e062147e72c5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77b67f10-29cc-4624-8ed0-077784e9c95c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nfutete" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1e0627cb-c81f-4fa9-9b31-f7b364bf443c", + "Order": 1, + "DeletedAt": null, + "EntryId": "77b67f10-29cc-4624-8ed0-077784e9c95c", + "Definition": {}, + "Gloss": { + "en": "paralysis", + "pt": "paralezia" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c05dc39e-da18-49d0-a277-a7739f815c63", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1e0627cb-c81f-4fa9-9b31-f7b364bf443c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2afe57a-1cdc-4086-b9ab-e6d1488fb487", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027anga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22f12a7c-237a-4aec-be5a-9785f8839977", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2afe57a-1cdc-4086-b9ab-e6d1488fb487", + "Definition": { + "en": { + "Spans": [ + { + "Text": "traditional doctor", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "medicine-man", + "pt": "curandeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "131131c7-a132-4154-95fe-aebee8256a09", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "22f12a7c-237a-4aec-be5a-9785f8839977", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1c3896d4-90c0-4382-a316-beefea925c25", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027oma" + }, + "CitationForm": { + "seh": "ng\u0027oma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8abb551d-571b-4612-a4cd-85d065bca104", + "Order": 1, + "DeletedAt": null, + "EntryId": "1c3896d4-90c0-4382-a316-beefea925c25", + "Definition": {}, + "Gloss": { + "en": "drum", + "pt": "batuque" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3580e32b-4969-4ec8-93f9-0207d126aa06", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8abb551d-571b-4612-a4cd-85d065bca104", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c74603b3-c270-4fa4-ba9b-44cf5abedea4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ombe" + }, + "CitationForm": { + "seh": "ng\u0027ombe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df313b4b-f760-4864-a5f8-9854dff3af73", + "Order": 1, + "DeletedAt": null, + "EntryId": "c74603b3-c270-4fa4-ba9b-44cf5abedea4", + "Definition": {}, + "Gloss": { + "en": "ox", + "pt": "boi" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f26ced61-2d0d-486c-8b92-1e74b87ec5fd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "df313b4b-f760-4864-a5f8-9854dff3af73", + "DeletedAt": null + } + ] + }, + { + "Id": "33493618-0bdb-4baa-aa80-235f7009c5a0", + "Order": 2, + "DeletedAt": null, + "EntryId": "c74603b3-c270-4fa4-ba9b-44cf5abedea4", + "Definition": {}, + "Gloss": { + "en": "cow", + "pt": "vaca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c626a4f7-ae56-4318-bdef-8978b34c468f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ombo" + }, + "CitationForm": { + "seh": "ng\u0027ombo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "634a8b59-c02c-402f-8387-a6ad5cfc7917", + "Order": 1, + "DeletedAt": null, + "EntryId": "c626a4f7-ae56-4318-bdef-8978b34c468f", + "Definition": {}, + "Gloss": { + "en": "oar", + "pt": "remo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3fc2723f-f1f3-47fe-b1a2-44ffbbb96d7f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "George, Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "634a8b59-c02c-402f-8387-a6ad5cfc7917", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a17204d-f9cc-4b45-ac40-ac0937f58c07", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ona" + }, + "CitationForm": { + "seh": "ng\u0027ona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3f9fe653-77fb-4e5a-9e41-9f1da6877f9b", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a17204d-f9cc-4b45-ac40-ac0937f58c07", + "Definition": {}, + "Gloss": { + "en": "crocodile", + "pt": "crocodilo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5bee9527-2f90-40c5-84db-3c77b9ff56b7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3f9fe653-77fb-4e5a-9e41-9f1da6877f9b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "50ad4666-e760-405e-ad49-5ba870c38714", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bfb0f5db-2dcf-4720-bfe9-4f53685c2fa0", + "Order": 1, + "DeletedAt": null, + "EntryId": "50ad4666-e760-405e-ad49-5ba870c38714", + "Definition": {}, + "Gloss": { + "en": "little", + "pt": "pouco" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b9445f85-1d85-4222-bc54-822f328c8612", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "munthu ng\u0027ono; cinthu cing\u0027ono", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "bfb0f5db-2dcf-4720-bfe9-4f53685c2fa0", + "DeletedAt": null + } + ] + }, + { + "Id": "edad5197-9710-431f-b970-60c3c6ccab59", + "Order": 2, + "DeletedAt": null, + "EntryId": "50ad4666-e760-405e-ad49-5ba870c38714", + "Definition": {}, + "Gloss": { + "en": "short", + "pt": "pequeno" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c99b7977-dd4e-4e57-8809-62c65952d51e", + "Order": 3, + "DeletedAt": null, + "EntryId": "50ad4666-e760-405e-ad49-5ba870c38714", + "Definition": {}, + "Gloss": { + "en": "unimportant", + "pt": "na\u0303o important" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f3ceb132-afb4-4ac2-bc16-558aed912c7c", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f93d7fa2-5a29-4a66-96c1-8817f4800897", + "Order": 1, + "DeletedAt": null, + "EntryId": "f3ceb132-afb4-4ac2-bc16-558aed912c7c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "younger brother", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "irma\u0303o mais novo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "brother", + "pt": "irma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0e22b61b-a4a0-4a86-843b-591843c8376d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Barbara\u0027s notebook; Nyzazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f93d7fa2-5a29-4a66-96c1-8817f4800897", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f240305-92b7-463e-8afe-46b08e839722", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ono-ng\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d73a4295-bd7e-486d-97d7-4d252553ad42", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f240305-92b7-463e-8afe-46b08e839722", + "Definition": {}, + "Gloss": { + "en": "very small", + "pt": "muito pequenino" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ae7f2ae2-1790-4a6b-860a-e58db88b74fd", + "DeletedAt": null, + "LexemeForm": { + "seh": "nga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7c34e18c-1e1b-4a36-a660-35e3faca1879", + "Order": 1, + "DeletedAt": null, + "EntryId": "ae7f2ae2-1790-4a6b-860a-e58db88b74fd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "my", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "meu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1S", + "pt": "1S" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e80a14e7-e9f9-4958-af5f-29d8a04c1e92", + "DeletedAt": null, + "LexemeForm": { + "seh": "nga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "2a371b75-1ed9-433b-a7a5-48bc4cebea03", + "Order": 1, + "DeletedAt": null, + "EntryId": "e80a14e7-e9f9-4958-af5f-29d8a04c1e92", + "Definition": { + "en": { + "Spans": [ + { + "Text": "if, conditional", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "se, condicional", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "COND", + "pt": "COND" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "80cb2399-8f83-43ac-a017-58b8f296719e", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0073f2a7-9b27-4e09-a640-992836a26b27", + "Order": 1, + "DeletedAt": null, + "EntryId": "80cb2399-8f83-43ac-a017-58b8f296719e", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "um pessoa na\u0303o specifica, algue\u0301m, fulano", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "someone", + "pt": "algue\u0301m" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6a83696c-e81d-4dc5-9c8f-bbd36fb8a3d8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "0073f2a7-9b27-4e09-a640-992836a26b27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b2bb6c09-3b4d-427a-b729-e6dfea2537a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "n\u0027gano" + }, + "CitationForm": { + "seh": "ngano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", + "Order": 1, + "DeletedAt": null, + "EntryId": "b2bb6c09-3b4d-427a-b729-e6dfea2537a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "physical end", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "limit do espac\u0327o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "end", + "pt": "fim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a3ad202-d2d5-4a47-ae99-b162884a6d8d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "n\u0027gano wa mapika", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "termino de corrida", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", + "DeletedAt": null + }, + { + "Id": "7d01d8f9-4a7d-47ad-ae9c-5447ce2bdc2f", + "Order": 2, + "Sentence": {}, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "fronteira de machamba", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", + "DeletedAt": null + } + ] + }, + { + "Id": "941c7da8-d6b8-43c5-801b-f2eff707378e", + "Order": 2, + "DeletedAt": null, + "EntryId": "b2bb6c09-3b4d-427a-b729-e6dfea2537a2", + "Definition": {}, + "Gloss": { + "en": "border", + "pt": "fronteira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c62abd93-3e39-406e-846d-bf31d3739105", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "n\u0027gano wa munda", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "941c7da8-d6b8-43c5-801b-f2eff707378e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16e3cb98-126e-4527-b03a-9f8a9d6ff59b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngasi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e5999ac9-691d-4b18-a0f9-3bfcece80bf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "16e3cb98-126e-4527-b03a-9f8a9d6ff59b", + "Definition": {}, + "Gloss": { + "en": "how many?", + "pt": "quantos?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7dcb8b47-52f5-442b-aee9-2bd0b6e9bdec", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Muna pifuwo pingasi?", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Tem animais quantas?", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "e5999ac9-691d-4b18-a0f9-3bfcece80bf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5a91c16-ee1d-4e8f-981e-8c2960bd5068", + "DeletedAt": null, + "LexemeForm": { + "seh": "gole" + }, + "CitationForm": { + "seh": "ngole" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b3aed28-7c60-4c92-a7db-dccc8c1a3c0c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5a91c16-ee1d-4e8f-981e-8c2960bd5068", + "Definition": {}, + "Gloss": { + "en": "fingernail", + "pt": "unha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7b9e93ba-129b-43a4-9c75-7e1a406d93f3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "4b3aed28-7c60-4c92-a7db-dccc8c1a3c0c", + "DeletedAt": null + } + ] + }, + { + "Id": "11febd8d-c6dc-481b-a7b7-cc2049d33e5b", + "Order": 2, + "DeletedAt": null, + "EntryId": "d5a91c16-ee1d-4e8f-981e-8c2960bd5068", + "Definition": {}, + "Gloss": { + "en": "toenail", + "pt": "unha de pe\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f3d50dc-07ed-438e-ac40-cf6b6d2df8ce", + "DeletedAt": null, + "LexemeForm": { + "seh": "golo" + }, + "CitationForm": { + "seh": "ngolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d2a9a738-926f-401e-973f-a6b8fe2c8469", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f3d50dc-07ed-438e-ac40-cf6b6d2df8ce", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tank, drum, a container for holding water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "drum", + "pt": "tambor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e4ffce8-5223-42d0-9290-baa75a11a16c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "d2a9a738-926f-401e-973f-a6b8fe2c8469", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f01d90c-0f7c-41ee-8b25-06de03415adb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngumi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd429be7-30dd-4676-93f5-e6d5bd3c74d7", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f01d90c-0f7c-41ee-8b25-06de03415adb", + "Definition": {}, + "Gloss": { + "en": "well person", + "pt": "pessoa sa\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9ff79aeb-07e5-474f-9dbc-37448a9ec799", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dd429be7-30dd-4676-93f5-e6d5bd3c74d7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba19d655-d247-4359-94b9-8c04fd3a5132", + "DeletedAt": null, + "LexemeForm": { + "seh": "gundu" + }, + "CitationForm": { + "seh": "ngundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c3791ccf-4988-4217-ad9c-b417c5a0ae43", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba19d655-d247-4359-94b9-8c04fd3a5132", + "Definition": { + "en": { + "Spans": [ + { + "Text": "squirrel", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "squirrel", + "pt": "esquilo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5db873e2-6dd8-479d-b020-b1a593367cb9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "c3791ccf-4988-4217-ad9c-b417c5a0ae43", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "515c94cc-0483-49fd-8040-258b83347961", + "DeletedAt": null, + "LexemeForm": { + "seh": "guo" + }, + "CitationForm": { + "seh": "nguo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f8441f5e-a2cc-4d41-bded-5bf5723d04e8", + "Order": 1, + "DeletedAt": null, + "EntryId": "515c94cc-0483-49fd-8040-258b83347961", + "Definition": {}, + "Gloss": { + "en": "cloth", + "pt": "tecido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b735111-82f4-4714-88a9-dcd80f1eb2d3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f8441f5e-a2cc-4d41-bded-5bf5723d04e8", + "DeletedAt": null + } + ] + }, + { + "Id": "cb86900f-db45-4b50-95fb-641a1cacb51f", + "Order": 2, + "DeletedAt": null, + "EntryId": "515c94cc-0483-49fd-8040-258b83347961", + "Definition": {}, + "Gloss": { + "en": "clothes", + "pt": "ropa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc3ac80c-c9b8-4234-8676-6258d999246c", + "DeletedAt": null, + "LexemeForm": { + "seh": "ni" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "07e57d85-0a08-40a8-b523-6abc7b1ce65b", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc3ac80c-c9b8-4234-8676-6258d999246c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "plural", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "plural", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PL", + "pt": "PL" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8155184b-a312-446e-8295-4e07b8890f34", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "07e57d85-0a08-40a8-b523-6abc7b1ce65b", + "DeletedAt": null + } + ] + }, + { + "Id": "ba2430a3-7f68-4648-ab7f-fb36dd932532", + "Order": 2, + "DeletedAt": null, + "EntryId": "fc3ac80c-c9b8-4234-8676-6258d999246c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "polite", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "bem-educado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "POLITE", + "pt": "POLITE" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cf63c773-d329-4f18-b660-877b58475994", + "DeletedAt": null, + "LexemeForm": { + "seh": "ninga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d6000cc0-db88-465a-9396-556304110322", + "Order": 1, + "DeletedAt": null, + "EntryId": "cf63c773-d329-4f18-b660-877b58475994", + "Definition": {}, + "Gloss": { + "en": "like", + "pt": "como" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00564a82-43da-472d-8ff6-740d40293d85", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d6000cc0-db88-465a-9396-556304110322", + "DeletedAt": null + } + ] + }, + { + "Id": "59e4c607-6f2a-4db2-8c4a-65c90227b5d4", + "Order": 2, + "DeletedAt": null, + "EntryId": "cf63c773-d329-4f18-b660-877b58475994", + "Definition": {}, + "Gloss": { + "en": "as as" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "59ef9703-6190-40f2-a436-3c2a1f9d3efb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ninji" + }, + "CitationForm": { + "seh": "ninji" + }, + "LiteralMeaning": {}, + "MorphType": "Phrase", + "Senses": [ + { + "Id": "925dad47-cb4b-449c-98e4-cceea3111df3", + "Order": 1, + "DeletedAt": null, + "EntryId": "59ef9703-6190-40f2-a436-3c2a1f9d3efb", + "Definition": {}, + "Gloss": { + "en": "is what?", + "pt": "e\u0301 o que?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf6f3cdd-80cf-427c-8a20-ecaa41a01644", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "925dad47-cb4b-449c-98e4-cceea3111df3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04025f77-982c-4822-a0d7-f7d55efc54c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "jala" + }, + "CitationForm": { + "seh": "njala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "18cc7ade-d219-4a9e-acf0-01aa4d9f051d", + "Order": 1, + "DeletedAt": null, + "EntryId": "04025f77-982c-4822-a0d7-f7d55efc54c2", + "Definition": {}, + "Gloss": { + "en": "hunger", + "pt": "fome" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b1a33dd-ad50-49e6-8df0-88fe3bc98601", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "18cc7ade-d219-4a9e-acf0-01aa4d9f051d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7722f8f7-d0d7-4698-80c9-a457b316d728", + "DeletedAt": null, + "LexemeForm": { + "seh": "jazi" + }, + "CitationForm": { + "seh": "njazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f19ba77-d81e-4695-97e2-64c8b4493c57", + "Order": 1, + "DeletedAt": null, + "EntryId": "7722f8f7-d0d7-4698-80c9-a457b316d728", + "Definition": {}, + "Gloss": { + "en": "lightning", + "pt": "rela\u0302mpago" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26d05eec-4851-4760-ade6-e709a93f77fa", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6f19ba77-d81e-4695-97e2-64c8b4493c57", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d8e0e0a-38bf-4482-bee0-6429f843321f", + "DeletedAt": null, + "LexemeForm": { + "seh": "njipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "03557652-bd0d-4571-9ae6-08f6e2f9da4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d8e0e0a-38bf-4482-bee0-6429f843321f", + "Definition": {}, + "Gloss": { + "en": "what?", + "pt": "o que?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "be3ad213-1b22-4ba1-b77d-dcd6bb97f47c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "03557652-bd0d-4571-9ae6-08f6e2f9da4e", + "DeletedAt": null + } + ] + }, + { + "Id": "381d322a-1473-4da9-96b4-9029da3dae48", + "Order": 2, + "DeletedAt": null, + "EntryId": "4d8e0e0a-38bf-4482-bee0-6429f843321f", + "Definition": {}, + "Gloss": { + "en": "which?", + "pt": "qual?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7ef74b8-60fb-457a-a64d-d403b4e3cce0", + "DeletedAt": null, + "LexemeForm": { + "seh": "njira" + }, + "CitationForm": { + "seh": "njira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b8a598b9-d0d4-4f2f-8104-bbd334fc5693", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7ef74b8-60fb-457a-a64d-d403b4e3cce0", + "Definition": {}, + "Gloss": { + "en": "path", + "pt": "caminho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f30f0ed6-fe61-4a8a-b8f2-9209102a610a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b8a598b9-d0d4-4f2f-8104-bbd334fc5693", + "DeletedAt": null + } + ] + }, + { + "Id": "bbff3938-1a96-4945-ba82-54a48ba05b30", + "Order": 2, + "DeletedAt": null, + "EntryId": "f7ef74b8-60fb-457a-a64d-d403b4e3cce0", + "Definition": {}, + "Gloss": { + "en": "road", + "pt": "rua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b185db8d-3c4a-4f3c-860f-8bdd1e762760", + "DeletedAt": null, + "LexemeForm": { + "seh": "jiri" + }, + "CitationForm": { + "seh": "njiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "61068445-c27a-4c9c-8143-7808c5edb94e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b185db8d-3c4a-4f3c-860f-8bdd1e762760", + "Definition": { + "en": { + "Spans": [ + { + "Text": "warthog - Phacochoerus aethiopicus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "warthog", + "pt": "javalim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c7c6d6b-80ad-4fcd-8702-c8ffcd6060c1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "61068445-c27a-4c9c-8143-7808c5edb94e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "51d78a36-3960-4369-9c35-54330153a58f", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae9a251a-d0bb-44df-b71a-249fbfc73ab5", + "Order": 1, + "DeletedAt": null, + "EntryId": "51d78a36-3960-4369-9c35-54330153a58f", + "Definition": {}, + "Gloss": { + "en": "cucumber vine", + "pt": "pepineiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3d5bcff3-31b0-4efb-8467-3283724d94d9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ae9a251a-d0bb-44df-b71a-249fbfc73ab5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea9bb7f3-7f20-4d36-9b07-6f43efb2af65", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaka" + }, + "CitationForm": { + "seh": "nkaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "77484c2b-276c-43d1-9a25-da14726f62d0", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea9bb7f3-7f20-4d36-9b07-6f43efb2af65", + "Definition": {}, + "Gloss": { + "en": "milk", + "pt": "leite" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "73de014d-79c9-43e8-bf6a-cfb8fc9beb64", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "77484c2b-276c-43d1-9a25-da14726f62d0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e2ecbe0-1426-4825-9a83-e76e77538f80", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaliboxo" + }, + "CitationForm": { + "seh": "nkaliboxo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df9aa41b-00fd-45c3-97d6-b523dd11dc8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e2ecbe0-1426-4825-9a83-e76e77538f80", + "Definition": {}, + "Gloss": { + "en": "prison", + "pt": "prisa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "32e11b09-f9f9-4c2b-8463-6bc85db6eded", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "df9aa41b-00fd-45c3-97d6-b523dd11dc8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c6320fb8-1d5b-46d3-99d4-654862db621a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamwene" + }, + "CitationForm": { + "seh": "nkamwene" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5de0fd4-03ac-453b-8fa3-8de5d9c42862", + "Order": 1, + "DeletedAt": null, + "EntryId": "c6320fb8-1d5b-46d3-99d4-654862db621a", + "Definition": {}, + "Gloss": { + "en": "son-in-law", + "pt": "genro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e29cb5f-a996-42b5-9ce7-2b22694478a8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a5de0fd4-03ac-453b-8fa3-8de5d9c42862", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "456b34db-7718-48c4-86b2-42d4c7c1c2d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkasi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c5f10432-68e2-4f53-b8e0-99775f6a5b4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "456b34db-7718-48c4-86b2-42d4c7c1c2d7", + "Definition": {}, + "Gloss": { + "en": "water turtle", + "pt": "tortaruga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "44bbd93a-4bcd-4a74-876b-0dd303e25bc8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "George", + "Ws": "en" + } + ] + }, + "SenseId": "c5f10432-68e2-4f53-b8e0-99775f6a5b4c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b923248f-2755-438e-842c-df2333443bfc", + "DeletedAt": null, + "LexemeForm": { + "seh": "kate" + }, + "CitationForm": { + "seh": "nkate" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "83098d50-1738-4b23-9e81-af91ed942dc6", + "Order": 1, + "DeletedAt": null, + "EntryId": "b923248f-2755-438e-842c-df2333443bfc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bread without yeast, by extention, any bread", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pa\u0303o sem fermento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bread", + "pt": "pa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6209811d-3697-4c4a-9451-b1c578120fcd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "83098d50-1738-4b23-9e81-af91ed942dc6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "162182b2-127d-4a8c-8c3f-cbf8f60e17e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ed1379bc-8a34-4d0a-ba8c-46436283e6e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "162182b2-127d-4a8c-8c3f-cbf8f60e17e0", + "Definition": {}, + "Gloss": { + "en": "within", + "pt": "dentro de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "80ab86ad-4f1f-40ef-a7ca-2ba7057bf3f2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ed1379bc-8a34-4d0a-ba8c-46436283e6e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e87ceb25-50c6-46b7-8a35-d830b0f4330e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazali" + }, + "CitationForm": { + "seh": "nkazali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "49224fa1-f421-498a-b1ae-fb1ce0465824", + "Order": 1, + "DeletedAt": null, + "EntryId": "e87ceb25-50c6-46b7-8a35-d830b0f4330e", + "Definition": {}, + "Gloss": { + "en": "married couple", + "pt": "casal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3163668-885f-4d35-b13b-4e82d07d2491", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Canting001", + "Ws": "en" + } + ] + }, + "SenseId": "49224fa1-f421-498a-b1ae-fb1ce0465824", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eb2aed24-d79b-4050-809b-ef47bfca4d2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazi" + }, + "CitationForm": { + "seh": "nkazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e535a688-81bd-4303-9087-b7001e6f7617", + "Order": 1, + "DeletedAt": null, + "EntryId": "eb2aed24-d79b-4050-809b-ef47bfca4d2e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "feminine, woman, wife", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "woman", + "pt": "mulher" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "041f3bdd-9579-4d51-b13d-fd80c85b7e20", + "Order": 1, + "Sentence": {}, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "gato feminina", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira:14, 26; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e535a688-81bd-4303-9087-b7001e6f7617", + "DeletedAt": null + } + ] + }, + { + "Id": "2b4cf9c3-f860-430d-bf08-fa0b5b4db0fd", + "Order": 2, + "DeletedAt": null, + "EntryId": "eb2aed24-d79b-4050-809b-ef47bfca4d2e", + "Definition": {}, + "Gloss": { + "en": "wife", + "pt": "esposa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b450f9e0-0223-40b8-bdff-43900dfa5e15", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkhabe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "Order": 1, + "DeletedAt": null, + "EntryId": "b450f9e0-0223-40b8-bdff-43900dfa5e15", + "Definition": {}, + "Gloss": { + "en": "not 1", + "pt": "na\u0303o 1" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71a1ea0c-a1d9-4e27-9cda-09131efcde21", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Wayenda xicola leru? Nkhabe, [sidaenda tayu.]", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Foste escola hoje\u0301 na\u0303o neg-fui na\u0303o", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + }, + { + "Id": "3aa1ba2f-f8ae-4388-8646-01f1142ceffe", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkhabe kucicita", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o fazer (eu na\u0303o fiz)", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + }, + { + "Id": "0087f72a-d285-41f8-bed9-f1cdb5c34e84", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkabe kucifuna [tayu] - present", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + }, + { + "Id": "60dde44c-0a0f-4ba4-ac13-7c297526dce1", + "Order": 4, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sindacifuna [tayu] - past", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e615721-be3e-4a1c-aae5-43a64464d948", + "DeletedAt": null, + "LexemeForm": { + "seh": "khadzi" + }, + "CitationForm": { + "seh": "nkhadzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "44452f74-92ff-4438-9feb-203af775465e", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e615721-be3e-4a1c-aae5-43a64464d948", + "Definition": {}, + "Gloss": { + "en": "slug", + "pt": "concha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ca1323a-5b19-4936-8f79-cc9307f1b92a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "44452f74-92ff-4438-9feb-203af775465e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fffaca2d-d708-41e4-aa29-40ec1605f909", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaka" + }, + "CitationForm": { + "seh": "nkhaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bb70b8cd-bead-40e9-a912-6f480ba3875e", + "Order": 1, + "DeletedAt": null, + "EntryId": "fffaca2d-d708-41e4-aa29-40ec1605f909", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Pangolin, a scale covered mammal", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Pangolin", + "pt": "pangolin" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68af4bf7-36c4-4fbc-b41b-55c666b6529c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "bb70b8cd-bead-40e9-a912-6f480ba3875e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "92de151b-5b71-42fd-b205-692884a37c16", + "DeletedAt": null, + "LexemeForm": { + "seh": "khalamu" + }, + "CitationForm": { + "seh": "nkhalamu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "256f16b7-b704-452b-b830-945038083837", + "Order": 1, + "DeletedAt": null, + "EntryId": "92de151b-5b71-42fd-b205-692884a37c16", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lion, scientific name: Panthera leo", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "lion", + "pt": "lea\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b7fbf40-6a37-41f3-8ef2-4cb334df75c0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "256f16b7-b704-452b-b830-945038083837", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72a316cb-a410-4e35-af3c-f8fe40525a74", + "DeletedAt": null, + "LexemeForm": { + "seh": "khambala" + }, + "CitationForm": { + "seh": "nkhambala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8ff6235e-b9c6-40f9-bf32-b229db57e9d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "72a316cb-a410-4e35-af3c-f8fe40525a74", + "Definition": {}, + "Gloss": { + "en": "rope", + "pt": "corda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90f20fe0-18b2-401d-a524-8d4f68ecba5d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; George; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8ff6235e-b9c6-40f9-bf32-b229db57e9d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c6d6e53-29ff-4ade-91b0-074d4584070a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khanga" + }, + "CitationForm": { + "seh": "nkhanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31e99354-68f6-4fa4-9f58-9c0debddd09c", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c6d6e53-29ff-4ade-91b0-074d4584070a", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "galinha de mato", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "guinea fowl", + "pt": "galinha de mato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "948b90d8-5c03-4f24-b23c-675c1b3a7078", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "31e99354-68f6-4fa4-9f58-9c0debddd09c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9da476fa-6237-4ad4-9b28-96c7f2c9f3ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "n\u0027khangaiwa" + }, + "CitationForm": { + "seh": "nkhangaiwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e5840cc6-20ef-4564-ae10-6428aafe6d41", + "Order": 1, + "DeletedAt": null, + "EntryId": "9da476fa-6237-4ad4-9b28-96c7f2c9f3ef", + "Definition": {}, + "Gloss": { + "en": "pidgen", + "pt": "pomba" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2638f5c3-41f8-4b39-a40a-755c70bc4db4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e5840cc6-20ef-4564-ae10-6428aafe6d41", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1179a131-c9f1-44d4-93fb-2ddaf8484f4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkhodolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "22bb3b03-c9de-4d51-bd30-7ce30b7041a2", + "Order": 1, + "DeletedAt": null, + "EntryId": "1179a131-c9f1-44d4-93fb-2ddaf8484f4f", + "Definition": {}, + "Gloss": { + "en": "back of head", + "pt": "nuca" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e34c661b-05e5-4356-9a30-c5f7b8fd49b2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "22bb3b03-c9de-4d51-bd30-7ce30b7041a2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc05df92-6ce9-4da6-9cf9-845ec179d5e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkhomole" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42168c00-4637-4588-99d2-3551d7ce021f", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc05df92-6ce9-4da6-9cf9-845ec179d5e4", + "Definition": {}, + "Gloss": { + "en": "cliff", + "pt": "precipi\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "70eaa064-c760-4b91-8be2-c1fd95b99e9e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "42168c00-4637-4588-99d2-3551d7ce021f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aa9c1d12-7461-42d1-9e8a-e73488d9b32a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khondo" + }, + "CitationForm": { + "seh": "nkhondo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e124eab7-6dfc-425a-ada3-332b4fbd5b85", + "Order": 1, + "DeletedAt": null, + "EntryId": "aa9c1d12-7461-42d1-9e8a-e73488d9b32a", + "Definition": {}, + "Gloss": { + "en": "war", + "pt": "guerra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db4b9141-23c8-4d39-8cf3-4bf657ee68cd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e124eab7-6dfc-425a-ada3-332b4fbd5b85", + "DeletedAt": null + } + ] + }, + { + "Id": "37a98331-4024-40ae-9a5f-f2e8f7113d28", + "Order": 2, + "DeletedAt": null, + "EntryId": "aa9c1d12-7461-42d1-9e8a-e73488d9b32a", + "Definition": {}, + "Gloss": { + "en": "battle", + "pt": "batalha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ddac28e-41b1-43b3-ba6a-5afabfbf9b2f", + "DeletedAt": null, + "LexemeForm": { + "seh": "khope" + }, + "CitationForm": { + "seh": "nkhope" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b4100f7-c8a1-40b1-9b48-a152f5ea057f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ddac28e-41b1-43b3-ba6a-5afabfbf9b2f", + "Definition": {}, + "Gloss": { + "en": "face", + "pt": "cara" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e3ec003-43da-4646-9ebd-70692731b3c9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5b4100f7-c8a1-40b1-9b48-a152f5ea057f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1ed60dc-dc40-43e4-a287-622f8e0c3ff3", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuku" + }, + "CitationForm": { + "seh": "nkhuku" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c43a5b2-f283-4e9f-bc26-8a4cbcb666ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1ed60dc-dc40-43e4-a287-622f8e0c3ff3", + "Definition": {}, + "Gloss": { + "en": "chicken", + "pt": "galinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ad58f185-202c-42a8-8471-42755aceb4b8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5(fowl); Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2c43a5b2-f283-4e9f-bc26-8a4cbcb666ab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29698b20-50c5-414d-b3c6-ad7f579c8212", + "DeletedAt": null, + "LexemeForm": { + "seh": "khumba" + }, + "CitationForm": { + "seh": "nkhumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "36d939f0-1c27-43d4-ae1c-93dd6dbf721d", + "Order": 1, + "DeletedAt": null, + "EntryId": "29698b20-50c5-414d-b3c6-ad7f579c8212", + "Definition": {}, + "Gloss": { + "en": "pig", + "pt": "porco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b66626a-609c-461e-92bd-ab42b04af3a3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque says nkhamba", + "Ws": "en" + } + ] + }, + "SenseId": "36d939f0-1c27-43d4-ae1c-93dd6dbf721d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "220e0d3a-a457-49d2-9812-fafe539c5bd5", + "DeletedAt": null, + "LexemeForm": { + "seh": "khunguni" + }, + "CitationForm": { + "seh": "nkhunguni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8b0b5a08-d690-415f-bc4e-f66f5f76884c", + "Order": 1, + "DeletedAt": null, + "EntryId": "220e0d3a-a457-49d2-9812-fafe539c5bd5", + "Definition": {}, + "Gloss": { + "en": "bed bug", + "pt": "percevejo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f658de4f-ddc3-4040-a92b-3c17a9b0cced", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8b0b5a08-d690-415f-bc4e-f66f5f76884c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab3ff4f4-eb2c-4eb2-aeef-11a654aa9d6b", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuni" + }, + "CitationForm": { + "seh": "nkhuni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d7c1ad3e-fa9d-4da0-b819-ce5c82060463", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab3ff4f4-eb2c-4eb2-aeef-11a654aa9d6b", + "Definition": {}, + "Gloss": { + "en": "firewood", + "pt": "lenha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f9dc34c8-4b05-4665-be4a-fe8f3903fab9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "d7c1ad3e-fa9d-4da0-b819-ce5c82060463", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f03e85a-34f6-4645-9f7a-3d7ec4d41232", + "DeletedAt": null, + "LexemeForm": { + "seh": "khunza" + }, + "CitationForm": { + "seh": "nkhunza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "79166c0b-9275-4425-8cf4-94fd058f41d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f03e85a-34f6-4645-9f7a-3d7ec4d41232", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a small basket used to measure flour", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "basket small", + "pt": "cesta pequena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "708bee99-a3d3-4d30-b9bc-59d901ab4f0a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "79166c0b-9275-4425-8cf4-94fd058f41d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "82862c8d-9424-4e91-95b4-d24fa650eb06", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwale" + }, + "CitationForm": { + "seh": "nkhwale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ebcd115-fbd1-468d-883d-51b754651a08", + "Order": 1, + "DeletedAt": null, + "EntryId": "82862c8d-9424-4e91-95b4-d24fa650eb06", + "Definition": {}, + "Gloss": { + "en": "partridge", + "pt": "perdiz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1cf49f2b-0fec-477b-9232-206e5e78ed2c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,16", + "Ws": "en" + } + ] + }, + "SenseId": "7ebcd115-fbd1-468d-883d-51b754651a08", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "179c24e4-fb64-44a5-9145-4e404546df06", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwazi" + }, + "CitationForm": { + "seh": "nkhwazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ecfc1d9c-8d25-475a-8881-a12e26ca80b3", + "Order": 1, + "DeletedAt": null, + "EntryId": "179c24e4-fb64-44a5-9145-4e404546df06", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "guia que come peixe", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "fishhawk", + "pt": "guia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b5e69030-b92d-4b9f-a900-3e52819f251b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "ecfc1d9c-8d25-475a-8881-a12e26ca80b3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18829274-4ddc-478e-8913-65e2e9058d81", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwizi" + }, + "CitationForm": { + "seh": "nkhwizi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35baece7-ece9-448f-aa11-2c2d6752992f", + "Order": 1, + "DeletedAt": null, + "EntryId": "18829274-4ddc-478e-8913-65e2e9058d81", + "Definition": { + "en": { + "Spans": [ + { + "Text": "shrew", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "shrew", + "pt": "animal tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86844cc9-bd7e-4ccb-a081-d18d13f825e6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "35baece7-ece9-448f-aa11-2c2d6752992f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b3e2a6ef-0d7a-412a-82a7-93650300b137", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4d43343e-235c-47a8-963e-8ed7a1923e55", + "Order": 1, + "DeletedAt": null, + "EntryId": "b3e2a6ef-0d7a-412a-82a7-93650300b137", + "Definition": {}, + "Gloss": { + "en": "hemorroids", + "pt": "hemorro\u0301ides" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "70f96d60-34b7-44d7-b882-0edad0533113", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Mauricio; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4d43343e-235c-47a8-963e-8ed7a1923e55", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3ca7c7ad-c8c9-4cc8-aa6d-fe08222181ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "kono" + }, + "CitationForm": { + "seh": "nkono" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8125329e-2b09-4073-b9d2-566190f5f940", + "Order": 1, + "DeletedAt": null, + "EntryId": "3ca7c7ad-c8c9-4cc8-aa6d-fe08222181ff", + "Definition": { + "en": { + "Spans": [ + { + "Text": "arm (includes hand)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "arm", + "pt": "brac\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d714e0e7-46fc-4571-a88d-a206de719592", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira26", + "Ws": "en" + } + ] + }, + "SenseId": "8125329e-2b09-4073-b9d2-566190f5f940", + "DeletedAt": null + } + ] + }, + { + "Id": "af077c3d-81fb-440f-9bc9-28fa60edf42b", + "Order": 2, + "DeletedAt": null, + "EntryId": "3ca7c7ad-c8c9-4cc8-aa6d-fe08222181ff", + "Definition": {}, + "Gloss": { + "en": "bull", + "pt": "touro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8e72771-f29c-4062-a9e1-cd23fd7e8ffb", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkono-nkono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ef06b58-d563-41f4-b376-9ad16943b667", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8e72771-f29c-4062-a9e1-cd23fd7e8ffb", + "Definition": {}, + "Gloss": { + "en": "right side", + "pt": "a\u0300 direito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a38a158-803a-4810-bbed-25fa1423fb5e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0ef06b58-d563-41f4-b376-9ad16943b667", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ba72117-7f91-426a-a4d1-242d2783f151", + "DeletedAt": null, + "LexemeForm": { + "seh": "kondzi" + }, + "CitationForm": { + "seh": "nkonzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72479316-4b29-4461-8617-689a52c54e8d", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ba72117-7f91-426a-a4d1-242d2783f151", + "Definition": {}, + "Gloss": { + "en": "healer", + "pt": "o que cura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a44536eb-10d6-4562-b2b2-d566d5a7a8f9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "72479316-4b29-4461-8617-689a52c54e8d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "01852e43-3920-49fa-9552-0609a3026243", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkucano" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f4b02198-cc6f-42b9-b379-87670671b181", + "Order": 1, + "DeletedAt": null, + "EntryId": "01852e43-3920-49fa-9552-0609a3026243", + "Definition": {}, + "Gloss": { + "en": "day after tomorrow", + "pt": "depois de amanha" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "43fdca13-26b9-4a2b-8599-3529ea19300c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac; Moreira p25 (nkuca)", + "Ws": "en" + } + ] + }, + "SenseId": "f4b02198-cc6f-42b9-b379-87670671b181", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ddf24ca1-40c5-456f-b97b-35d813516e33", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkudz" + }, + "CitationForm": { + "seh": "nkudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1b4adbf5-c01a-4e04-92f6-5c8b793281e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "ddf24ca1-40c5-456f-b97b-35d813516e33", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "engrandecer em fama", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "become great", + "pt": "engrandecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "99b1527f-3ce1-4ec2-aa42-040059535e3d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1b4adbf5-c01a-4e04-92f6-5c8b793281e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "269593e9-597a-4753-9769-e9d470ed75d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "kulo" + }, + "CitationForm": { + "seh": "nkulo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "36456952-2f14-41c9-9495-eb9f1487b8fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "269593e9-597a-4753-9769-e9d470ed75d3", + "Definition": {}, + "Gloss": { + "en": "river", + "pt": "rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4153416a-784d-4f7c-a664-2640f7979a14", + "Name": { + "en": "River" + }, + "Code": "1.3.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "5a27fb12-9726-4ed0-9d4f-fae6bacbe2e0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "36456952-2f14-41c9-9495-eb9f1487b8fe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21195759-1f0a-4185-b82e-1ad7a191fa22", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumba" + }, + "CitationForm": { + "seh": "nkumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14a9995f-76c2-4c3c-847a-c62b2248db58", + "Order": 1, + "DeletedAt": null, + "EntryId": "21195759-1f0a-4185-b82e-1ad7a191fa22", + "Definition": {}, + "Gloss": { + "en": "pig", + "pt": "porco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7888ac74-045d-455d-a3fa-2ce54e2b60a3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "14a9995f-76c2-4c3c-847a-c62b2248db58", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3157cb06-8ea5-488e-91ac-cef9b11f637e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbi" + }, + "CitationForm": { + "seh": "nkumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ade16bb8-0425-4ff0-9a24-8076659a7882", + "Order": 1, + "DeletedAt": null, + "EntryId": "3157cb06-8ea5-488e-91ac-cef9b11f637e", + "Definition": {}, + "Gloss": { + "en": "herd", + "pt": "mandada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e12ab888-3fd8-49a0-a4ee-e595834b3f31", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ade16bb8-0425-4ff0-9a24-8076659a7882", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfb4bca2-1bf5-45e1-a339-33d76af2e8be", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbidzi" + }, + "CitationForm": { + "seh": "nkumbidzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb77ce64-c8af-435a-ac39-07b05d2972d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfb4bca2-1bf5-45e1-a339-33d76af2e8be", + "Definition": {}, + "Gloss": { + "en": "shepherd", + "pt": "pastor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7af0059-072a-4d55-be89-b51a7c7d73f9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "fb77ce64-c8af-435a-ac39-07b05d2972d1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkuz" + }, + "CitationForm": { + "seh": "nkuza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0448ef5d-878b-498a-9d1d-93fe68eadca9", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "make grow", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "make grow", + "pt": "fazer crecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "117e3433-c049-4b92-b0e7-770a8502d48a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0448ef5d-878b-498a-9d1d-93fe68eadca9", + "DeletedAt": null + } + ] + }, + { + "Id": "836479c2-ab88-4892-81d9-91e29ecf5dc2", + "Order": 2, + "DeletedAt": null, + "EntryId": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "raise a child", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "criar crianc\u0327a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "raise", + "pt": "criar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "64fb2069-f0dc-4c51-affe-8e6ed5f660ab", + "Order": 3, + "DeletedAt": null, + "EntryId": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "magnify", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "magnificar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "magnify", + "pt": "magnificar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "90adecc0-fa11-4a93-be1b-6362ec6cbdb3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nomwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f93ba876-786d-4e5d-92b1-efc5bd29d173", + "Order": 1, + "DeletedAt": null, + "EntryId": "90adecc0-fa11-4a93-be1b-6362ec6cbdb3", + "Definition": {}, + "Gloss": { + "en": "seven", + "pt": "sete" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c5d80e09-7b92-4abc-8785-5cd78cedf14f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "f93ba876-786d-4e5d-92b1-efc5bd29d173", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8869feb4-b6ac-46a3-accd-f201b20d1cfa", + "DeletedAt": null, + "LexemeForm": { + "seh": "noz" + }, + "CitationForm": { + "seh": "noza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f4ee7520-0ff3-432a-a66f-8bbf6e0d14a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "8869feb4-b6ac-46a3-accd-f201b20d1cfa", + "Definition": {}, + "Gloss": { + "en": "sharpen", + "pt": "afiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26d127ab-09b3-42a6-a69e-4c172074cf90", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndoko kanoze mpeni.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Vai afiar faca.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "f4ee7520-0ff3-432a-a66f-8bbf6e0d14a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0934279f-70f1-463a-8046-dae18be1e38a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sala" + }, + "CitationForm": { + "seh": "nsala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f121b1d7-df23-4725-809b-477f508a3d18", + "Order": 1, + "DeletedAt": null, + "EntryId": "0934279f-70f1-463a-8046-dae18be1e38a", + "Definition": {}, + "Gloss": { + "en": "insanity", + "pt": "loucura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a583e52e-8bd3-4de7-9694-e380c69d8cbd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f121b1d7-df23-4725-809b-477f508a3d18", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adf7a985-644b-4787-a9bf-3136567c5a42", + "DeletedAt": null, + "LexemeForm": { + "seh": "sambo" + }, + "CitationForm": { + "seh": "nsambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef0ec71a-ffef-46be-8306-f1bfdac5e28d", + "Order": 1, + "DeletedAt": null, + "EntryId": "adf7a985-644b-4787-a9bf-3136567c5a42", + "Definition": {}, + "Gloss": { + "en": "custom", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8bf2870f-fc69-4fc1-be90-c0c6ae0b8dbb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ef0ec71a-ffef-46be-8306-f1bfdac5e28d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "59c0f0f4-f763-41de-8ac7-84ba48b22e35", + "DeletedAt": null, + "LexemeForm": { + "seh": "sambvu" + }, + "CitationForm": { + "seh": "nsambvu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97120ba0-66d8-4012-8c14-169f1d59b0e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "59c0f0f4-f763-41de-8ac7-84ba48b22e35", + "Definition": {}, + "Gloss": { + "en": "fig tree", + "pt": "figueira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1711394-0bad-43c4-ad3f-399f14e89959", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "97120ba0-66d8-4012-8c14-169f1d59b0e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16d8a838-b229-4042-91d3-ba65ec772520", + "DeletedAt": null, + "LexemeForm": { + "seh": "sana" + }, + "CitationForm": { + "seh": "nsana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cd22832b-fb54-4642-9d51-084ef52d6a3c", + "Order": 1, + "DeletedAt": null, + "EntryId": "16d8a838-b229-4042-91d3-ba65ec772520", + "Definition": {}, + "Gloss": { + "en": "back bone", + "pt": "coluna vertebral" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a80f12aa-c30d-4892-978a-b076985742d5", + "Name": { + "en": "Torso" + }, + "Code": "2.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f12a5029-e04d-482e-904a-bc2bf802fbc7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "cd22832b-fb54-4642-9d51-084ef52d6a3c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da5db379-e070-4b03-9b2c-acdfefcb4387", + "DeletedAt": null, + "LexemeForm": { + "seh": "sana" + }, + "CitationForm": { + "seh": "nsana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "28534efc-ce0d-4350-9559-b0547178deea", + "Order": 1, + "DeletedAt": null, + "EntryId": "da5db379-e070-4b03-9b2c-acdfefcb4387", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tree dassie, about the size of a rat, has no tail, not to be confused w/ nsenzi (cane rat) which has a tail and is bigger, tree dassie Dendrohyrax arboreus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "tree dassie", + "pt": "rato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d993fad-702c-4eef-85bc-71567edfa7a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a4eb22b0-f699-4eef-8156-c514c3071eec", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d993fad-702c-4eef-85bc-71567edfa7a7", + "Definition": {}, + "Gloss": { + "en": "fast", + "pt": "depressa" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b682872-76d2-4803-8ac5-4a7f72194484", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "hasafamba tayu mwansanga ninga sulo.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "NEG-he-PRESENT-walk-VF not fast-VFIN as...as rabbit", + "Ws": "en" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Sulo2 006;Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a4eb22b0-f699-4eef-8156-c514c3071eec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "807276f4-b3bf-4dd5-a17c-869dc52a4649", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsanga-nsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "879cc03d-9848-46a6-ba1e-ec3d9de38e7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "807276f4-b3bf-4dd5-a17c-869dc52a4649", + "Definition": {}, + "Gloss": { + "en": "very fast", + "pt": "muito depressa" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5104bb86-8c29-4e28-9a30-48a5d7d06945", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "879cc03d-9848-46a6-ba1e-ec3d9de38e7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d642f8d-480a-49bc-8214-7d0a52803475", + "DeletedAt": null, + "LexemeForm": { + "seh": "sangani" + }, + "CitationForm": { + "seh": "nsangani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cd62410-e96b-493f-8296-5b403542952b", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d642f8d-480a-49bc-8214-7d0a52803475", + "Definition": {}, + "Gloss": { + "en": "proverb", + "pt": "prove\u0301rbio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0feafe15-e65b-487f-98ca-a6741e8fcc3e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8cd62410-e96b-493f-8296-5b403542952b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dc1c3df4-b24e-4112-ba97-02316d798ac8", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanganiko" + }, + "CitationForm": { + "seh": "nsanganiko" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc33f8eb-6b18-4198-b799-51af781eb949", + "Order": 1, + "DeletedAt": null, + "EntryId": "dc1c3df4-b24e-4112-ba97-02316d798ac8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "divining meeting, a meetings where leaders try to find out why someone got sick", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "reunia\u0303o de divinhar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "meeting", + "pt": "reunia\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "8e88ed6a-000d-400a-8cd8-7b3cc7f1818c", + "Name": { + "en": "Traditional medicine" + }, + "Code": "2.5.7.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "46623476-8474-47ba-b16a-aa89151fc815", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "cc33f8eb-6b18-4198-b799-51af781eb949", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eb57b246-6f53-4e92-83c3-dd2840b2cf87", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanje" + }, + "CitationForm": { + "seh": "nsanje" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e47855c9-9760-478c-9e97-851e893540a6", + "Order": 1, + "DeletedAt": null, + "EntryId": "eb57b246-6f53-4e92-83c3-dd2840b2cf87", + "Definition": {}, + "Gloss": { + "en": "parable", + "pt": "para\u0301bola" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1e306cef-bcfb-4449-8b24-493e95b092ad", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e47855c9-9760-478c-9e97-851e893540a6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "10e03b4f-f0d7-44aa-b94e-c683234fbbe0", + "DeletedAt": null, + "LexemeForm": { + "seh": "sapato" + }, + "CitationForm": { + "seh": "nsapato" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d580baf8-e5f3-4c90-bbbc-5ee1b78e7b2e", + "Order": 1, + "DeletedAt": null, + "EntryId": "10e03b4f-f0d7-44aa-b94e-c683234fbbe0", + "Definition": {}, + "Gloss": { + "en": "shoe", + "pt": "sapato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6731281-ea99-4232-b9dd-285419fad6ab", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d580baf8-e5f3-4c90-bbbc-5ee1b78e7b2e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61f9964d-e748-4e7a-8026-479ab20ae14d", + "DeletedAt": null, + "LexemeForm": { + "seh": "sapo" + }, + "CitationForm": { + "seh": "nsapo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6adddc4c-c9b5-40a1-bd9e-f3a784a9f8bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "61f9964d-e748-4e7a-8026-479ab20ae14d", + "Definition": {}, + "Gloss": { + "en": "fruit", + "pt": "fruto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57fd4b99-0e3e-4a33-88e3-dffc8927d8f5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6adddc4c-c9b5-40a1-bd9e-f3a784a9f8bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75cdb613-eb3f-4c71-a874-a32e02aabdbe", + "DeletedAt": null, + "LexemeForm": { + "seh": "sawawa" + }, + "CitationForm": { + "seh": "nsawawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a9f862a5-44a1-4dbb-a58c-43bbfe24b43b", + "Order": 1, + "DeletedAt": null, + "EntryId": "75cdb613-eb3f-4c71-a874-a32e02aabdbe", + "Definition": {}, + "Gloss": { + "en": "louse", + "pt": "piolho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2db4f6b7-95b5-41b7-b590-530595706d2c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a9f862a5-44a1-4dbb-a58c-43bbfe24b43b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5947b8b-17c4-4205-a47f-d47b365adc8c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sekese" + }, + "CitationForm": { + "seh": "nsekese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6c78a046-71b7-498f-b3ea-e48b920eab7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5947b8b-17c4-4205-a47f-d47b365adc8c", + "Definition": {}, + "Gloss": { + "en": "tree type", + "pt": "arvora tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7765dc54-c4da-4bc1-a531-9719890f375e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6c78a046-71b7-498f-b3ea-e48b920eab7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "00f99de8-333b-4c51-a306-a6d54b58723a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sengere" + }, + "CitationForm": { + "seh": "nsengere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "368b3592-de73-4b0b-a65d-654e61cec4ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "00f99de8-333b-4c51-a306-a6d54b58723a", + "Definition": {}, + "Gloss": { + "en": "bamboo", + "pt": "bambu\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1aeea11d-bad4-40bf-b3af-5b26f88b925a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "368b3592-de73-4b0b-a65d-654e61cec4ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c135beb8-f267-4b72-9648-64c6dd203930", + "DeletedAt": null, + "LexemeForm": { + "seh": "senzi" + }, + "CitationForm": { + "seh": "nsenzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94bb8014-0932-47e3-a9e3-bc6cac35811c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c135beb8-f267-4b72-9648-64c6dd203930", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Cane rat, eats suger cane", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ratazana", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rat", + "pt": "ratazana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1fc57911-b7da-445e-b543-7b8e5e949f03", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "94bb8014-0932-47e3-a9e3-bc6cac35811c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3cb8518f-8fd7-4c9a-b3f8-5d2eda416436", + "DeletedAt": null, + "LexemeForm": { + "seh": "seru" + }, + "CitationForm": { + "seh": "nseru" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2d75b87d-a82c-452f-9b8d-2b62f54547f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "3cb8518f-8fd7-4c9a-b3f8-5d2eda416436", + "Definition": { + "en": { + "Spans": [ + { + "Text": "court case", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "caso de tribunal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "case", + "pt": "caso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "85214614-ab45-4805-9014-092750d47511", + "Name": { + "en": "Trial" + }, + "Code": "4.7.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fa8567b2-a282-4e5f-9006-05b65e0be5ef", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2d75b87d-a82c-452f-9b8d-2b62f54547f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5b15daa-a40c-4ab6-bc70-a200c35e1d7d", + "DeletedAt": null, + "LexemeForm": { + "seh": "seu" + }, + "CitationForm": { + "seh": "nseu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9ff4d93-0056-4ed5-b596-c2a754e15795", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5b15daa-a40c-4ab6-bc70-a200c35e1d7d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "street, paved or not", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "street", + "pt": "estrada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f9b4ce01-a1d3-46af-84e1-e596f6a9c1d1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f9ff4d93-0056-4ed5-b596-c2a754e15795", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35e35524-ee4f-4924-8e84-d6b754c7cf2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sika" + }, + "CitationForm": { + "seh": "nsika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14e0886b-48f4-4a78-94bc-3ee0ab625a34", + "Order": 1, + "DeletedAt": null, + "EntryId": "35e35524-ee4f-4924-8e84-d6b754c7cf2e", + "Definition": {}, + "Gloss": { + "en": "market place", + "pt": "mercado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "55d3be12-12a8-4246-b441-8cae8a3b3ef0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "14e0886b-48f4-4a78-94bc-3ee0ab625a34", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "333e7a30-6f26-471b-9658-fce82d3d4b17", + "DeletedAt": null, + "LexemeForm": { + "seh": "singano" + }, + "CitationForm": { + "seh": "nsingano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1bfd809b-9c02-4c32-b618-cd50e06769af", + "Order": 1, + "DeletedAt": null, + "EntryId": "333e7a30-6f26-471b-9658-fce82d3d4b17", + "Definition": { + "en": { + "Spans": [ + { + "Text": "neddle for sewing, medical injections, repair fishing nets", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "neddle", + "pt": "agulha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "124c3bbd-7848-4f2d-8aff-28a8416195fd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1bfd809b-9c02-4c32-b618-cd50e06769af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0f392c3-0823-4896-8d91-3d683de702b5", + "DeletedAt": null, + "LexemeForm": { + "seh": "sinzo" + }, + "CitationForm": { + "seh": "nsinzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7987d576-84a1-49c9-86f4-8b1933683d4f", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0f392c3-0823-4896-8d91-3d683de702b5", + "Definition": {}, + "Gloss": { + "en": "distance", + "pt": "dista\u0302ncia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ae8b6811-07b9-4f90-b260-9449dfdbd1aa", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "7987d576-84a1-49c9-86f4-8b1933683d4f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1c574f5-cf21-404e-9b94-fcda93d00fc2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sisi" + }, + "CitationForm": { + "seh": "nsisi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d415fe28-d9e0-4c91-ba73-a4179d2edbe2", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1c574f5-cf21-404e-9b94-fcda93d00fc2", + "Definition": {}, + "Gloss": { + "en": "pity", + "pt": "pena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "269b17bb-43ff-4045-a4ba-38774b792ea2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nsisi zikulu maningi zidacita imwe", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "a grande misericordia que fez", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d415fe28-d9e0-4c91-ba73-a4179d2edbe2", + "DeletedAt": null + } + ] + }, + { + "Id": "4db5aa57-a073-428b-b732-689c302aede4", + "Order": 2, + "DeletedAt": null, + "EntryId": "b1c574f5-cf21-404e-9b94-fcda93d00fc2", + "Definition": {}, + "Gloss": { + "en": "compassion", + "pt": "compaxa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "681cf4ab-2e0f-4ec6-933b-382e8c6e5359", + "DeletedAt": null, + "LexemeForm": { + "seh": "situ" + }, + "CitationForm": { + "seh": "nsitu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b8858cb-989e-41b3-a6fc-79f04fd8dcc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "681cf4ab-2e0f-4ec6-933b-382e8c6e5359", + "Definition": {}, + "Gloss": { + "en": "forest", + "pt": "floresta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "025da6f4-b1b6-423a-8c0f-b324f531a6f1", + "Name": { + "en": "Plant" + }, + "Code": "1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a12bd5de-301c-4a7c-92cf-2f4fd9dad174", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "0b8858cb-989e-41b3-a6fc-79f04fd8dcc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a160f54c-b664-4792-bae7-a0cf30b1921f", + "DeletedAt": null, + "LexemeForm": { + "seh": "sodzi" + }, + "CitationForm": { + "seh": "nsodzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab4edb17-b51d-4258-b349-4bdfd1dff7d6", + "Order": 1, + "DeletedAt": null, + "EntryId": "a160f54c-b664-4792-bae7-a0cf30b1921f", + "Definition": {}, + "Gloss": { + "en": "hunter", + "pt": "cac\u0327ador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "121e8396-40c1-460d-8bf0-7f5c58b46d1e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ab4edb17-b51d-4258-b349-4bdfd1dff7d6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c2633d33-0cb9-4315-82be-058803862559", + "DeletedAt": null, + "LexemeForm": { + "seh": "sodzi" + }, + "CitationForm": { + "seh": "nsodzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5daf8137-2e36-4e03-bd23-7b41707adcde", + "Order": 1, + "DeletedAt": null, + "EntryId": "c2633d33-0cb9-4315-82be-058803862559", + "Definition": {}, + "Gloss": { + "en": "tear", + "pt": "la\u0301grima" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2043d0fb-e82a-4c6e-b6c8-8c042dc1a45d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26 Ort", + "Ws": "en" + } + ] + }, + "SenseId": "5daf8137-2e36-4e03-bd23-7b41707adcde", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "caa170d3-6942-4e87-b6d2-4577bc5d73ea", + "DeletedAt": null, + "LexemeForm": { + "seh": "soka" + }, + "CitationForm": { + "seh": "nsoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3cd74405-3950-4399-872f-dc1ca7d328df", + "Order": 1, + "DeletedAt": null, + "EntryId": "caa170d3-6942-4e87-b6d2-4577bc5d73ea", + "Definition": {}, + "Gloss": { + "en": "group", + "pt": "grupo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7c8e26b-a3ab-4764-97b5-45d513209452", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3cd74405-3950-4399-872f-dc1ca7d328df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ef66d14-cb42-412e-a51d-0c6f60471e7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "solo" + }, + "CitationForm": { + "seh": "nsolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab5b910f-08b2-4b66-93fd-596b2858cc56", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ef66d14-cb42-412e-a51d-0c6f60471e7f", + "Definition": {}, + "Gloss": { + "en": "head", + "pt": "cabec\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d2bf7e56-dbc3-4089-896c-797fef5948af", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,15; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ab5b910f-08b2-4b66-93fd-596b2858cc56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a4434311-f71d-4d69-9a62-e35d65214560", + "DeletedAt": null, + "LexemeForm": { + "seh": "sonkhano" + }, + "CitationForm": { + "seh": "nsonkhano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b80953f-959c-4364-bbec-484c1626a7c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "a4434311-f71d-4d69-9a62-e35d65214560", + "Definition": {}, + "Gloss": { + "en": "reunion", + "pt": "reunia\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c68f4982-0d61-46e9-8aa7-80a2eea8277f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0b80953f-959c-4364-bbec-484c1626a7c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8ae3cdb5-b324-404f-a8be-299c1cde277c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sonkho" + }, + "CitationForm": { + "seh": "nsonkho" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "19791fae-9fdc-4d6f-a48f-07875c335123", + "Order": 1, + "DeletedAt": null, + "EntryId": "8ae3cdb5-b324-404f-a8be-299c1cde277c", + "Definition": {}, + "Gloss": { + "en": "tax", + "pt": "imposto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8a7e617-0844-42a6-a5d1-a65080d99a02", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "19791fae-9fdc-4d6f-a48f-07875c335123", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4600ec8-5db9-48b2-a2b3-f9691ca822e1", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsua" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "2806737d-be15-4e31-b771-1dd0ce799341", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4600ec8-5db9-48b2-a2b3-f9691ca822e1", + "Definition": {}, + "Gloss": { + "en": "island", + "pt": "ilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e720efa8-7f67-4cae-84ce-985050987da7", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsunga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "851805bb-5ca7-4f6e-9f1d-1ee3e47880a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "e720efa8-7f67-4cae-84ce-985050987da7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a liquid form of yeast made from cimera used in making beer", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "fermento para cerveja", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "yeast liquid", + "pt": "fermento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86e982e6-c8b6-466a-bd2b-46e54f58ed62", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Silva", + "Ws": "en" + } + ] + }, + "SenseId": "851805bb-5ca7-4f6e-9f1d-1ee3e47880a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a5ccdd3-da6c-477b-ba26-89b22ec94419", + "DeletedAt": null, + "LexemeForm": { + "seh": "supai" + }, + "CitationForm": { + "seh": "nsupai" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a865c6d4-b15e-4fd4-9493-24405b7f5e5d", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a5ccdd3-da6c-477b-ba26-89b22ec94419", + "Definition": {}, + "Gloss": { + "en": "police", + "pt": "poli\u0301cia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "41187dba-ae36-469b-8956-b3528a38f3ea", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a865c6d4-b15e-4fd4-9493-24405b7f5e5d", + "DeletedAt": null + } + ] + }, + { + "Id": "6d230db6-8a2f-4132-9e49-1187bf3ff03e", + "Order": 2, + "DeletedAt": null, + "EntryId": "3a5ccdd3-da6c-477b-ba26-89b22ec94419", + "Definition": {}, + "Gloss": { + "en": "militia", + "pt": "mili\u0301cia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7bc078e5-c6d0-49ab-92ea-9bbb09ce3849", + "DeletedAt": null, + "LexemeForm": { + "seh": "suwa" + }, + "CitationForm": { + "seh": "nsuwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6860e918-e83d-43eb-8424-6b9e630b92fd", + "Order": 1, + "DeletedAt": null, + "EntryId": "7bc078e5-c6d0-49ab-92ea-9bbb09ce3849", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ball of corn porrige which is then dipped into the sauce in traditional table manners", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "bolo de massa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "porridge", + "pt": "massa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88875471-9160-4daa-9b1c-4a31f74d826a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6860e918-e83d-43eb-8424-6b9e630b92fd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1527e86f-556a-43b3-b0ce-accb94a0bb5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "suwo" + }, + "CitationForm": { + "seh": "nsuwo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5f151b0e-769b-43ea-8a62-ef105f427854", + "Order": 1, + "DeletedAt": null, + "EntryId": "1527e86f-556a-43b3-b0ce-accb94a0bb5d", + "Definition": {}, + "Gloss": { + "en": "door", + "pt": "porta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cdaa5bdd-c511-43eb-887c-b97fda77e455", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5f151b0e-769b-43ea-8a62-ef105f427854", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ecd9b33-540a-4fc8-af96-2fbddd4353f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7bd437c5-f64a-42c2-8e0e-3bc9abcb0cc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ecd9b33-540a-4fc8-af96-2fbddd4353f5", + "Definition": {}, + "Gloss": { + "en": "gravy", + "pt": "molho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f700bb92-59a3-4fbc-b962-8ac81899daf2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "7bd437c5-f64a-42c2-8e0e-3bc9abcb0cc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "154e2689-3db4-40f0-bdf5-499db13ea4ce", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d3819b6-d016-41a6-941c-99244adac796", + "Order": 1, + "DeletedAt": null, + "EntryId": "154e2689-3db4-40f0-bdf5-499db13ea4ce", + "Definition": { + "en": { + "Spans": [ + { + "Text": "far in the interior", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "muito dentro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "far in", + "pt": "muito dentro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c36698cb-9f3a-42ea-a851-eb95895b0ec9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p25", + "Ws": "en" + } + ] + }, + "SenseId": "1d3819b6-d016-41a6-941c-99244adac796", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56eade68-7255-47e1-af7f-782188254223", + "DeletedAt": null, + "LexemeForm": { + "seh": "tambo" + }, + "CitationForm": { + "seh": "ntambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bab5b338-8f1e-4850-8077-ab3a1edd6b4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "56eade68-7255-47e1-af7f-782188254223", + "Definition": {}, + "Gloss": { + "en": "clouds", + "pt": "nuvens" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5423eb63-d96c-4945-be25-4b6005db9f10", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze \u0026 Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "bab5b338-8f1e-4850-8077-ab3a1edd6b4e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ce70c34c-410c-4278-87c8-fdff2d4e351e", + "DeletedAt": null, + "LexemeForm": { + "seh": "tanda" + }, + "CitationForm": { + "seh": "ntanda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "feddbc06-ceaa-4395-9e93-23220f990226", + "Order": 1, + "DeletedAt": null, + "EntryId": "ce70c34c-410c-4278-87c8-fdff2d4e351e", + "Definition": {}, + "Gloss": { + "en": "cross", + "pt": "crux" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e085855-76de-4f1e-92e5-9e6a842f3e32", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "feddbc06-ceaa-4395-9e93-23220f990226", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "230bce5f-1835-4a68-829d-a69e515e4f9f", + "DeletedAt": null, + "LexemeForm": { + "seh": "tanga" + }, + "CitationForm": { + "seh": "ntanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f8b04c28-6bd1-4988-8de5-5f02c4a769c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "230bce5f-1835-4a68-829d-a69e515e4f9f", + "Definition": {}, + "Gloss": { + "en": "pumpkin vine", + "pt": "aboboreira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2b52ece2-5ac7-4360-8e06-8585fa3f4a61", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f8b04c28-6bd1-4988-8de5-5f02c4a769c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c575d8f-8aa2-4a9a-84b2-627d939dc499", + "DeletedAt": null, + "LexemeForm": { + "seh": "temo" + }, + "CitationForm": { + "seh": "ntemo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ffe085a6-ebcc-4a15-8564-f006328b0d33", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c575d8f-8aa2-4a9a-84b2-627d939dc499", + "Definition": {}, + "Gloss": { + "en": "traditional law", + "pt": "lei tradicinal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3706fd08-5b98-4729-8d77-9b5bbe42f229", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ffe085a6-ebcc-4a15-8564-f006328b0d33", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16cffb0a-7f0e-401f-a035-c467a974074b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tenda" + }, + "CitationForm": { + "seh": "ntenda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "100834ce-ed34-4f91-b36d-ef47034ec7b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "16cffb0a-7f0e-401f-a035-c467a974074b", + "Definition": {}, + "Gloss": { + "en": "sick person", + "pt": "doente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8aa0bacd-d06d-48df-bc9b-7633ff841efa", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "100834ce-ed34-4f91-b36d-ef47034ec7b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72675443-a294-4dab-b502-1419834323a1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tendere" + }, + "CitationForm": { + "seh": "ntendere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d974749d-666b-4d63-9b8d-156ad768e9b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "72675443-a294-4dab-b502-1419834323a1", + "Definition": {}, + "Gloss": { + "en": "peace", + "pt": "paz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "678ebf00-2516-48ea-9519-7d65e2026498", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisafunadi ntendere m\u0027Mosambiki.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Mesmo quero paz em Moc\u0327ambique.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d974749d-666b-4d63-9b8d-156ad768e9b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75803e82-5565-4905-ab83-ec777636c870", + "DeletedAt": null, + "LexemeForm": { + "seh": "tengo" + }, + "CitationForm": { + "seh": "ntengo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "659a1576-f97c-4613-baec-9e6c64986014", + "Order": 1, + "DeletedAt": null, + "EntryId": "75803e82-5565-4905-ab83-ec777636c870", + "Definition": {}, + "Gloss": { + "en": "number", + "pt": "nu\u0301mero" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4b27c44b-1a6e-4238-8940-8938ee56ae2a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "659a1576-f97c-4613-baec-9e6c64986014", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e96b1074-d2fc-400d-b283-f9f2e8af8dca", + "DeletedAt": null, + "LexemeForm": { + "seh": "tete" + }, + "CitationForm": { + "seh": "ntete" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c95f1739-469b-4753-b871-afe192303f69", + "Order": 1, + "DeletedAt": null, + "EntryId": "e96b1074-d2fc-400d-b283-f9f2e8af8dca", + "Definition": {}, + "Gloss": { + "en": "cane", + "pt": "canisa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "401670ea-4c2d-4507-829c-30b72f6acb90", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c95f1739-469b-4753-b871-afe192303f69", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8ca39043-9d1a-4bae-93e1-a5823d8ae6cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthalaunda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "90c935cb-79d1-4644-ad82-74d34cca515c", + "Order": 1, + "DeletedAt": null, + "EntryId": "8ca39043-9d1a-4bae-93e1-a5823d8ae6cc", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "area, zona", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "area", + "pt": "area" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b61c1ac3-cf65-43d5-8b00-88d356fe65f8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "90c935cb-79d1-4644-ad82-74d34cca515c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8cf523f3-caa0-416b-9b58-318edd2ca3d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "authambi" + }, + "CitationForm": { + "seh": "nthambi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cfcb6cb-208e-40dc-ba97-89d7832abeab", + "Order": 1, + "DeletedAt": null, + "EntryId": "8cf523f3-caa0-416b-9b58-318edd2ca3d1", + "Definition": {}, + "Gloss": { + "en": "liar", + "pt": "mentirosos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f3afd86-b9e0-4e5a-b80c-ac809d050200", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8cfcb6cb-208e-40dc-ba97-89d7832abeab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30323a8a-405a-4ad3-82b3-9086dfdbc10b", + "DeletedAt": null, + "LexemeForm": { + "seh": "thawi" + }, + "CitationForm": { + "seh": "nthawi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "495e4687-518a-4bd8-8c2b-66a69dd4b275", + "Order": 1, + "DeletedAt": null, + "EntryId": "30323a8a-405a-4ad3-82b3-9086dfdbc10b", + "Definition": {}, + "Gloss": { + "en": "branch", + "pt": "ramo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5e88847-1098-4c07-b205-f9278648f4cf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "495e4687-518a-4bd8-8c2b-66a69dd4b275", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49cc9257-90c7-4fe0-a9e0-2c8d72aa5e2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "thembe" + }, + "CitationForm": { + "seh": "nthembe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2fdb0790-644f-4d6f-a123-4d88a0f842ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "49cc9257-90c7-4fe0-a9e0-2c8d72aa5e2b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "animal skin alone, after it is taken off the body", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "animal skin", + "pt": "pele de animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3adbb8a1-163e-4e4f-a9c5-4cfe052f8eca", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2fdb0790-644f-4d6f-a123-4d88a0f842ea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b053eb5d-836a-462b-a2dc-ad19ef0c5bab", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthenda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07568c02-2000-430b-a0c7-41e626dc39f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "b053eb5d-836a-462b-a2dc-ad19ef0c5bab", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a sickness specific", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "uma doenc\u0327a specifica", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "a sickness", + "pt": "uma doenc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cea724a6-3356-43a9-bc16-5fb5fffdc165", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthenga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "11486f77-4bb3-4882-a1c0-045fb45d216b", + "Order": 1, + "DeletedAt": null, + "EntryId": "cea724a6-3356-43a9-bc16-5fb5fffdc165", + "Definition": {}, + "Gloss": { + "en": "feather", + "pt": "pena de ave" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aa29b0fc-e491-40ae-8493-4b6bf59cb212", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "11486f77-4bb3-4882-a1c0-045fb45d216b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0a60edba-1656-448b-83f8-fe9cc27b5282", + "DeletedAt": null, + "LexemeForm": { + "seh": "thete" + }, + "CitationForm": { + "seh": "nthete" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8ecaca7b-0fd8-4dda-bc35-3d914fd897a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "0a60edba-1656-448b-83f8-fe9cc27b5282", + "Definition": {}, + "Gloss": { + "en": "grasshopper", + "pt": "gafanhoto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7dcc92e-9b13-4ad2-beaf-8d1be861372b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8ecaca7b-0fd8-4dda-bc35-3d914fd897a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "52c7195d-4ddc-41ec-81cc-5fd560039e4e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thonga" + }, + "CitationForm": { + "seh": "nthonga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "688c63ab-91b6-43f2-821f-71d3ec409900", + "Order": 1, + "DeletedAt": null, + "EntryId": "52c7195d-4ddc-41ec-81cc-5fd560039e4e", + "Definition": {}, + "Gloss": { + "en": "noise", + "pt": "barulho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4d215a1-f5b2-460f-9f66-1ea813550b87", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2:14", + "Ws": "en" + } + ] + }, + "SenseId": "688c63ab-91b6-43f2-821f-71d3ec409900", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "977d1248-a6b7-4398-be8a-e89de0e3913e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumbi" + }, + "CitationForm": { + "seh": "nthumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3dc4981b-71d2-4d87-9ba3-b3be486eca63", + "Order": 1, + "DeletedAt": null, + "EntryId": "977d1248-a6b7-4398-be8a-e89de0e3913e", + "Definition": {}, + "Gloss": { + "en": "tomb", + "pt": "tu\u0301mulo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1177e519-43dc-4758-b121-e94d46df06d4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3dc4981b-71d2-4d87-9ba3-b3be486eca63", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "34ef8407-af64-4d17-8cc2-1cf8a542ff6e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthuyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "23541917-3a2c-44c3-ba49-8970a207eeb6", + "Order": 1, + "DeletedAt": null, + "EntryId": "34ef8407-af64-4d17-8cc2-1cf8a542ff6e", + "Definition": {}, + "Gloss": { + "en": "Suricate", + "pt": "raposa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a5706d75-ba84-43e5-a3b9-a917071b39b3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Rogerio knows as raposa", + "Ws": "en" + } + ] + }, + "SenseId": "23541917-3a2c-44c3-ba49-8970a207eeb6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4586fe24-4cb1-42b9-8c0c-ade3f8a5492b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tima" + }, + "CitationForm": { + "seh": "ntima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "566a7159-a3f7-4d7e-8878-78da37d657d7", + "Order": 1, + "DeletedAt": null, + "EntryId": "4586fe24-4cb1-42b9-8c0c-ade3f8a5492b", + "Definition": {}, + "Gloss": { + "en": "heart", + "pt": "corac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f9fd5f0e-4b16-4503-bbad-105217256ce5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "566a7159-a3f7-4d7e-8878-78da37d657d7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c0a6616-ba67-4060-80d9-c0d5bf5c7086", + "DeletedAt": null, + "LexemeForm": { + "seh": "tolo" + }, + "CitationForm": { + "seh": "ntolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "358c3a82-6cb9-4f98-9279-411ed528fb86", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c0a6616-ba67-4060-80d9-c0d5bf5c7086", + "Definition": {}, + "Gloss": { + "en": "bagage", + "pt": "bagagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f2bc9d9-f930-43c1-abd7-707827d0e2ee", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "358c3a82-6cb9-4f98-9279-411ed528fb86", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3495b0d4-1bd5-4d38-b617-57e86ad7b5d8", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntondono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3b4c5a61-8b47-4c5d-8616-070fb2a66296", + "Order": 1, + "DeletedAt": null, + "EntryId": "3495b0d4-1bd5-4d38-b617-57e86ad7b5d8", + "Definition": {}, + "Gloss": { + "en": "three days after", + "pt": "tre\u0302s dias depois" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "704d083d-5ef6-4f87-a67e-2037dbdcf0e8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p25 (says:ntondo)", + "Ws": "en" + } + ] + }, + "SenseId": "3b4c5a61-8b47-4c5d-8616-070fb2a66296", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba01aa6b-ad84-43ba-92d7-d8876cf02e6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "tongi" + }, + "CitationForm": { + "seh": "ntongi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "05060894-c1ca-462e-8fb4-008eb27df73b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba01aa6b-ad84-43ba-92d7-d8876cf02e6a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "an authority, a judge", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "an authority", + "pt": "um autoridade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd7d0c9c-791e-4c34-b9ed-ebddad8f9724", + "Name": { + "en": "Judge, render a verdict" + }, + "Code": "4.7.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7ab9fdcd-dc86-4f11-bfff-0d3a9a389b6b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "05060894-c1ca-462e-8fb4-008eb27df73b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2846c365-b52c-4a90-a25c-0bf63af135be", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanza" + }, + "CitationForm": { + "seh": "ntsanza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "999ab06c-80a3-4baf-998e-63a288376c10", + "Order": 1, + "DeletedAt": null, + "EntryId": "2846c365-b52c-4a90-a25c-0bf63af135be", + "Definition": {}, + "Gloss": { + "en": "nest", + "pt": "ninho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7cd3d60e-6222-4dc9-8ec6-a01a9287a9b2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "999ab06c-80a3-4baf-998e-63a288376c10", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a895c7e0-22f9-41a3-a888-f1707bd773a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsekese" + }, + "CitationForm": { + "seh": "ntsekese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cabdee9b-7858-4dde-876a-7efda599239c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a895c7e0-22f9-41a3-a888-f1707bd773a2", + "Definition": {}, + "Gloss": { + "en": "tree type", + "pt": "arvora tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f9043803-da4f-40fc-ba41-4974996d0461", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsekese" + }, + "CitationForm": { + "seh": "ntsekese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fde8ceed-ce62-404a-b0ff-89f51bfe846a", + "Order": 1, + "DeletedAt": null, + "EntryId": "f9043803-da4f-40fc-ba41-4974996d0461", + "Definition": { + "en": { + "Spans": [ + { + "Text": "chicken that lays eggs", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "pullet", + "pt": "frango" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "1618fc66-e12c-4d04-8dd2-bb583bbd69eb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "fde8ceed-ce62-404a-b0ff-89f51bfe846a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8cd98155-a0d4-4170-b766-0460c17ab946", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsembe" + }, + "CitationForm": { + "seh": "ntsembe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aac9e30b-ddff-43c7-a81b-ab10fde04118", + "Order": 1, + "DeletedAt": null, + "EntryId": "8cd98155-a0d4-4170-b766-0460c17ab946", + "Definition": { + "en": { + "Spans": [ + { + "Text": "victim of a sacrifice", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "a sacrifice", + "pt": "um sacrifi\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cc6d53dc-3a76-4479-b615-65689f1f2147", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5 (says also host)", + "Ws": "en" + } + ] + }, + "SenseId": "aac9e30b-ddff-43c7-a81b-ab10fde04118", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b9021548-9a9c-410c-9be0-28741c8610c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsengwa" + }, + "CitationForm": { + "seh": "ntsengwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad2de11b-1f83-49d6-b52e-7e4f608bfd6d", + "Order": 1, + "DeletedAt": null, + "EntryId": "b9021548-9a9c-410c-9be0-28741c8610c0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "an open basket made of reed used to carry food", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "basket open", + "pt": "cesta aberta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f9b73b19-876c-40c6-9305-063b89c75936", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ad2de11b-1f83-49d6-b52e-7e4f608bfd6d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0240b39e-7c46-43e3-ba95-b7377da4b36b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsikana" + }, + "CitationForm": { + "seh": "ntsikana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b8db0515-daaa-4a7c-a992-5d59faa5ac10", + "Order": 1, + "DeletedAt": null, + "EntryId": "0240b39e-7c46-43e3-ba95-b7377da4b36b", + "Definition": {}, + "Gloss": { + "en": "girl", + "pt": "rapariga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "344d6007-dc7e-4e9c-a8ed-14909053ffd1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:26", + "Ws": "en" + } + ] + }, + "SenseId": "b8db0515-daaa-4a7c-a992-5d59faa5ac10", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "673db415-bbdb-4866-88fa-be37082d02df", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsiku" + }, + "CitationForm": { + "seh": "ntsiku" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "12147f94-e581-4f63-bac4-cde9ed2a0828", + "Order": 1, + "DeletedAt": null, + "EntryId": "673db415-bbdb-4866-88fa-be37082d02df", + "Definition": {}, + "Gloss": { + "en": "day", + "pt": "dia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1dc0b4bd-e7bd-49bf-969d-8b5fb79b4414", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsima" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3021e436-8d59-431a-923e-6675fef9338c", + "Order": 1, + "DeletedAt": null, + "EntryId": "1dc0b4bd-e7bd-49bf-969d-8b5fb79b4414", + "Definition": {}, + "Gloss": { + "en": "corn meal", + "pt": "massa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5218845-e760-402d-8aff-a092e2a38dbb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3021e436-8d59-431a-923e-6675fef9338c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4ef85e38-27a4-4ba0-b1aa-5b647f5baae3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsogoleri" + }, + "CitationForm": { + "seh": "ntsogoleri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "635276eb-6ed8-4b78-8c27-204adecdf03c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4ef85e38-27a4-4ba0-b1aa-5b647f5baae3", + "Definition": {}, + "Gloss": { + "en": "leader", + "pt": "lider" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "902cfcbe-6e42-4e55-b2a5-9146702fc16b", + "Name": { + "en": "Guide" + }, + "Code": "7.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecf9ebd7-f991-41df-98cd-bcf1254d5d0b", + "Name": { + "en": "Go first" + }, + "Code": "7.2.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "185e434d-9c17-4b50-8957-7a16cf35c433", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "635276eb-6ed8-4b78-8c27-204adecdf03c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2a378802-8cf5-44fa-bd31-3e16fdf9e496", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsorri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8431ffc5-7a7a-4959-b414-4f5b8a4f5af9", + "Order": 1, + "DeletedAt": null, + "EntryId": "2a378802-8cf5-44fa-bd31-3e16fdf9e496", + "Definition": {}, + "Gloss": { + "en": "pullet", + "pt": "frango" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "09643d26-5604-4c2e-a8f3-e8bc40572cfc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "8431ffc5-7a7a-4959-b414-4f5b8a4f5af9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1bf1e09-8292-4ee1-b2d0-25a8299983c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsuwa" + }, + "CitationForm": { + "seh": "ntsuwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b113ea41-e7b3-4a5d-a5bc-221da8935393", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1bf1e09-8292-4ee1-b2d0-25a8299983c6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "game of stones in holes, Mancala, Wari", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "un jogo tradicional com pedras e baracos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "game", + "pt": "jogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a3d95c6a-4b0b-4af0-aca8-addd042becd2", + "Name": { + "en": "Play, fun" + }, + "Code": "4.2.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "57d3b11f-c7d1-417f-8e88-c02efe57d0e1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b113ea41-e7b3-4a5d-a5bc-221da8935393", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cedec827-0443-4c44-92fa-9538230131f1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tumwi" + }, + "CitationForm": { + "seh": "ntumwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e97eb2cc-192e-4975-923f-3c1a6de8df0e", + "Order": 1, + "DeletedAt": null, + "EntryId": "cedec827-0443-4c44-92fa-9538230131f1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "messenger, sent one, angel, gives or does what was sent for", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "messengeiro, enviado, anjo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "messenger", + "pt": "messengeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "8d266c98-9db3-4d3e-b204-956aa848ffa5", + "Name": { + "en": "Communication devices" + }, + "Code": "3.5.9.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "6ce178a3-7def-4590-b4df-4bc84459166c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "e97eb2cc-192e-4975-923f-3c1a6de8df0e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "becf491a-a26b-460e-aca6-9cb5ba7bc4cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "tunda" + }, + "CitationForm": { + "seh": "ntunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4f8b6ad-d902-4e14-947e-696ffdc396ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "becf491a-a26b-460e-aca6-9cb5ba7bc4cc", + "Definition": {}, + "Gloss": { + "en": "dry land", + "pt": "terra seca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90b8cbaf-1f02-4455-818e-8d72ff51a593", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ntunda unango wa bara", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "outra lado de mar", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "a4f8b6ad-d902-4e14-947e-696ffdc396ec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9b49e45-e8a0-4028-a578-fcf5d40e19a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntundu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "19498627-ef76-4992-af1a-a69edcd03198", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9b49e45-e8a0-4028-a578-fcf5d40e19a4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a group of people who are of a different ethnic group", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "groupo differente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "group", + "pt": "groupo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "23372178-5acd-483f-b4dd-502e2ede59e6", + "DeletedAt": null, + "LexemeForm": { + "seh": "tundo" + }, + "CitationForm": { + "seh": "ntuntho" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e3029014-e00b-4144-a33c-cf8c91c5ed5b", + "Order": 1, + "DeletedAt": null, + "EntryId": "23372178-5acd-483f-b4dd-502e2ede59e6", + "Definition": {}, + "Gloss": { + "en": "types", + "pt": "especia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2dd8f4ef-54ed-4413-8594-c4eb12f01c3d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu acita mituntho yonsene ya pinyama.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Deus fez todas as especias de animais.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "e3029014-e00b-4144-a33c-cf8c91c5ed5b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "51b9eb6e-ba89-4b3a-91c3-44579e74eab6", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntunzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff10bede-29cb-4bd1-96bc-c5dd503f8ed6", + "Order": 1, + "DeletedAt": null, + "EntryId": "51b9eb6e-ba89-4b3a-91c3-44579e74eab6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spirit of the dead", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "espi\u0301rito do morto", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "spirit", + "pt": "espi\u0301rito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1cb79293-d4f7-4990-9f50-3bb595744f61", + "Name": { + "en": "Soul, spirit" + }, + "Code": "3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f6c81fb-02a4-415f-a363-fb11cc6b9254", + "Name": { + "en": "Supernatural being" + }, + "Code": "4.9.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fb089b3c-6dd0-4eb6-83c6-61588e95cc9c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "ff10bede-29cb-4bd1-96bc-c5dd503f8ed6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d5470b7-d6c7-4103-b8fa-126060a95ac6", + "DeletedAt": null, + "LexemeForm": { + "seh": "tupo" + }, + "CitationForm": { + "seh": "ntupo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4f6c11e-9abb-4bc2-9303-66945fb7e2f7", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d5470b7-d6c7-4103-b8fa-126060a95ac6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "clan name, praise name", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "clan name", + "pt": "nome de cla\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a781d57d-174d-47a6-b6a1-ae635a13df84", + "Name": { + "en": "Family, clan" + }, + "Code": "4.1.9.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "6db5c091-8624-4935-b142-a2ad3131e4fa", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a4f6c11e-9abb-4bc2-9303-66945fb7e2f7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4faa1169-875a-4f42-8aea-0c30581350cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "nu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b486f62d-fbef-46de-978f-e8882a8964e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "4faa1169-875a-4f42-8aea-0c30581350cf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "your", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "vossa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2P", + "pt": "2P" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb0168f7-fa1e-4300-b9f5-da9ce65ec872", + "DeletedAt": null, + "LexemeForm": { + "seh": "numph" + }, + "CitationForm": { + "seh": "numpha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e191820-913b-4f14-b6ad-c445e44c0a92", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb0168f7-fa1e-4300-b9f5-da9ce65ec872", + "Definition": {}, + "Gloss": { + "en": "jump", + "pt": "saltar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "872e14a4-1cff-4f0d-915f-c3f867e0a28a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8e191820-913b-4f14-b6ad-c445e44c0a92", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32440709-e7da-4ac2-8de1-a87fecaedaff", + "DeletedAt": null, + "LexemeForm": { + "seh": "nungu" + }, + "CitationForm": { + "seh": "nungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f7a5db1-0591-4c48-af24-9f9eb2bffca3", + "Order": 1, + "DeletedAt": null, + "EntryId": "32440709-e7da-4ac2-8de1-a87fecaedaff", + "Definition": { + "en": { + "Spans": [ + { + "Text": "porcupine", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "porcupine", + "pt": "porco-espinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1cebb71f-d0ec-47e1-9cf5-188c5ce81d27", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "6f7a5db1-0591-4c48-af24-9f9eb2bffca3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5b3febe7-3f43-4e6f-b40b-34f42e5fa01d", + "DeletedAt": null, + "LexemeForm": { + "seh": "nunkh" + }, + "CitationForm": { + "seh": "nunkha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "80a94d07-3222-4db9-8c81-dc0b5d0f72a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "5b3febe7-3f43-4e6f-b40b-34f42e5fa01d", + "Definition": {}, + "Gloss": { + "en": "smell", + "pt": "cheirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe8bd76c-c1ac-42d7-b8e7-424f0c49af6f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "80a94d07-3222-4db9-8c81-dc0b5d0f72a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8299a1ca-500a-48e5-868a-dfd07d1099bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "nya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "6502591c-41f0-45ea-8126-df8a747c1ee5", + "Order": 1, + "DeletedAt": null, + "EntryId": "8299a1ca-500a-48e5-868a-dfd07d1099bb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "-er", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Nominalizer", + "pt": "nominalizador" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "124ea6a8-2a7c-4344-8b59-9a2f44f0871c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nyakufamba nyamatanya", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "6502591c-41f0-45ea-8126-df8a747c1ee5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3510001d-d4a8-40a5-a373-2d0341ded6c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyabasa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e81ec0f7-ef1b-469d-a6a3-6f6dcd5a4b13", + "Order": 1, + "DeletedAt": null, + "EntryId": "3510001d-d4a8-40a5-a373-2d0341ded6c3", + "Definition": {}, + "Gloss": { + "en": "worker", + "pt": "trabalhador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ab692c3-0831-4c55-9010-002aff120a53", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e81ec0f7-ef1b-469d-a6a3-6f6dcd5a4b13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "529949ad-beb7-413a-a981-29aa2fd2ed3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyacinthu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78303856-fbc9-49b6-9fb8-487990aacddd", + "Order": 1, + "DeletedAt": null, + "EntryId": "529949ad-beb7-413a-a981-29aa2fd2ed3c", + "Definition": {}, + "Gloss": { + "en": "owner", + "pt": "dono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6895f4b-56c5-4478-8834-c56eaba94b44", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "78303856-fbc9-49b6-9fb8-487990aacddd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fe5c64e5-9fe6-4b8f-9373-4b2787831758", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyadzedze" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c2c9938c-a798-43e6-a720-5fbb815afaab", + "Order": 1, + "DeletedAt": null, + "EntryId": "fe5c64e5-9fe6-4b8f-9373-4b2787831758", + "Definition": {}, + "Gloss": { + "en": "bad luck", + "pt": "azar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ad0338ba-5d36-4599-8357-748dcf2cf500", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c2c9938c-a798-43e6-a720-5fbb815afaab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "66b58f34-8893-4a3b-b44d-690b88a29dc6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyadzis" + }, + "CitationForm": { + "seh": "nyadzisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b0a57d5-c230-42a6-89ca-56f677db2e3d", + "Order": 1, + "DeletedAt": null, + "EntryId": "66b58f34-8893-4a3b-b44d-690b88a29dc6", + "Definition": {}, + "Gloss": { + "en": "shame", + "pt": "envergonhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6d9db7ff-682b-4139-a36f-1e1c9208b653", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0b0a57d5-c230-42a6-89ca-56f677db2e3d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d169edb-a7d9-49d4-9704-383108e2f6c4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyagrinya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "81cd6c56-0d05-45fa-b101-f42183055887", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d169edb-a7d9-49d4-9704-383108e2f6c4", + "Definition": {}, + "Gloss": { + "en": "slave girl", + "pt": "scravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b39d3116-9c70-4e71-8694-6e7eb4ceb85d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:20 says servant girl; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "81cd6c56-0d05-45fa-b101-f42183055887", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2098fe21-5936-4c3a-a66e-0faa7fb4245e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakalemalema" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "55a92fd8-0ced-486d-ad63-a44033517c10", + "Order": 1, + "DeletedAt": null, + "EntryId": "2098fe21-5936-4c3a-a66e-0faa7fb4245e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "bat", + "pt": "morcego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c4f48d5e-6779-4176-8ea7-463eb12d2e70", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "55a92fd8-0ced-486d-ad63-a44033517c10", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c6ea6e29-547d-499d-a585-169497a3f186", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakapheru\u0301-pheru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "706da4f3-c698-4f9c-a850-aa18ebd8af13", + "Order": 1, + "DeletedAt": null, + "EntryId": "c6ea6e29-547d-499d-a585-169497a3f186", + "Definition": {}, + "Gloss": { + "en": "butterfly", + "pt": "borboleta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d74b2158-c3a8-430a-af84-54ea6dbfd7fc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "706da4f3-c698-4f9c-a850-aa18ebd8af13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c466764-5b3c-4166-b7d1-bd178fdc5eb5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakatangale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98a8489b-53d8-4498-8c4d-39db5a3351a0", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c466764-5b3c-4166-b7d1-bd178fdc5eb5", + "Definition": {}, + "Gloss": { + "en": "flute", + "pt": "flouta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "91ddf495-a28b-4a32-90dc-6f997d0cd069", + "Name": { + "en": "Musical instrument" + }, + "Code": "4.2.3.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "564bcbe5-b22a-4ba6-87b3-698f34706bae", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "98a8489b-53d8-4498-8c4d-39db5a3351a0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aa95cb4d-2a46-44b3-af55-587793bf988c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakatendewa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b2ccc71-e17b-4b23-83ce-c55d93d405e8", + "Order": 1, + "DeletedAt": null, + "EntryId": "aa95cb4d-2a46-44b3-af55-587793bf988c", + "Definition": {}, + "Gloss": { + "en": "chameleon", + "pt": "camalea\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "17950350-c0b5-40b4-921b-f9f7a85ec7f2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "6b2ccc71-e17b-4b23-83ce-c55d93d405e8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6898396e-eb4c-4d33-924c-989e78fe6c81", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakhonbze" + }, + "CitationForm": { + "seh": "nyakhobze" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65226cdb-93f2-4c6e-9d8a-46efc17f30ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "6898396e-eb4c-4d33-924c-989e78fe6c81", + "Definition": { + "en": { + "Spans": [ + { + "Text": "an animal like a gazelle", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "animal type", + "pt": "tipo animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "983e3762-985e-404e-849b-4ebcc7d13ca6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "65226cdb-93f2-4c6e-9d8a-46efc17f30ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cc07acd6-130f-4504-b02c-0219b3008728", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakucerenga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c55a5fd1-efd5-4069-afde-a04f621c695f", + "Order": 1, + "DeletedAt": null, + "EntryId": "cc07acd6-130f-4504-b02c-0219b3008728", + "Definition": {}, + "Gloss": { + "en": "poor person", + "pt": "pobre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a5cefc6-f6f7-491b-8264-1ef7ee347c11", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c55a5fd1-efd5-4069-afde-a04f621c695f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a50c356d-8742-4aa7-99c5-b733f7bc1bee", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakucherenga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b50cb098-aec2-47aa-9a3c-79dc42f5140e", + "Order": 1, + "DeletedAt": null, + "EntryId": "a50c356d-8742-4aa7-99c5-b733f7bc1bee", + "Definition": {}, + "Gloss": { + "en": "poor person", + "pt": "pessoa pobre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aff5fc33-3937-472a-954c-b6b72e28d0e5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b50cb098-aec2-47aa-9a3c-79dc42f5140e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b0b9def-5194-44ec-af26-d270483dfc19", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakucinga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a899604f-eb0f-49aa-bcee-ff35bfb31929", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b0b9def-5194-44ec-af26-d270483dfc19", + "Definition": {}, + "Gloss": { + "en": "barber", + "pt": "barbeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b3b96835-bf84-4b2c-81de-5b927c3a87b8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "a899604f-eb0f-49aa-bcee-ff35bfb31929", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "848c98f2-6d5e-4ad8-a63a-ee0c8c0eafc2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakudalo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "77e42cbd-8448-4559-90e9-43b6afbef901", + "Order": 1, + "DeletedAt": null, + "EntryId": "848c98f2-6d5e-4ad8-a63a-ee0c8c0eafc2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "traditional prophet", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "profeta tradicional", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "prophet", + "pt": "profeta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "41851d93-b323-450b-8341-686d9f1eee41", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "77e42cbd-8448-4559-90e9-43b6afbef901", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b9988df-225c-48f4-ac5f-59744fb3972e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakufunza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88be5194-7358-4a16-93c0-b40ed7081384", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b9988df-225c-48f4-ac5f-59744fb3972e", + "Definition": {}, + "Gloss": { + "en": "student", + "pt": "estudante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ea5ac30-ea3a-4447-87e0-112b868a5430", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "88be5194-7358-4a16-93c0-b40ed7081384", + "DeletedAt": null + } + ] + }, + { + "Id": "12466f00-d0d2-47b3-8500-e63420d61e83", + "Order": 2, + "DeletedAt": null, + "EntryId": "4b9988df-225c-48f4-ac5f-59744fb3972e", + "Definition": {}, + "Gloss": { + "en": "discipulo", + "pt": "discipulo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c3ce4d0b-fafd-4e6c-b76d-180fd351e719", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakukumba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57c4f23c-09e7-48b6-8652-ce1d91acaeaf", + "Order": 1, + "DeletedAt": null, + "EntryId": "c3ce4d0b-fafd-4e6c-b76d-180fd351e719", + "Definition": {}, + "Gloss": { + "en": "ploughman", + "pt": "cavador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2c66e9c8-0ad0-4109-86a1-62545fd44d69", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "57c4f23c-09e7-48b6-8652-ce1d91acaeaf", + "DeletedAt": null + } + ] + }, + { + "Id": "fc1d89f8-d156-485e-8a87-1e52f5ff4f54", + "Order": 2, + "DeletedAt": null, + "EntryId": "c3ce4d0b-fafd-4e6c-b76d-180fd351e719", + "Definition": {}, + "Gloss": { + "en": "quarry-man", + "pt": "cabouqueiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9d860d31-9e48-4b78-abca-a4957c8570d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakulamala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ac1edb2-e1c0-4132-af39-a8f05581d963", + "Order": 1, + "DeletedAt": null, + "EntryId": "9d860d31-9e48-4b78-abca-a4957c8570d0", + "Definition": {}, + "Gloss": { + "en": "lame", + "pt": "coxo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bf82e80b-ee9f-42b0-9a1f-d9b9f65da9b1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1ac1edb2-e1c0-4132-af39-a8f05581d963", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0f5bd4c-8cc3-4fd7-a2b7-30f8b5a17f02", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakulima" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b91e4033-75fb-44ad-b0ed-76c4684e4933", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0f5bd4c-8cc3-4fd7-a2b7-30f8b5a17f02", + "Definition": {}, + "Gloss": { + "en": "farmer", + "pt": "lavrador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e43d6d85-4ef0-4a69-bc73-b196ef1dc9a9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "b91e4033-75fb-44ad-b0ed-76c4684e4933", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5c8f8918-db6b-47ef-9e95-00c7979889c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakulotera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5a8385e0-a9bf-4d95-9f19-75704214b093", + "Order": 1, + "DeletedAt": null, + "EntryId": "5c8f8918-db6b-47ef-9e95-00c7979889c2", + "Definition": {}, + "Gloss": { + "en": "seer", + "pt": "adivinhador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ee14b08-c8f3-42f7-b6b9-7e7d28e46d1c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5a8385e0-a9bf-4d95-9f19-75704214b093", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "53f5e2c2-e32c-474b-b769-c95ab8b021dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakumana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e9e4898-3e17-40ce-8fb9-bd603c82474a", + "Order": 1, + "DeletedAt": null, + "EntryId": "53f5e2c2-e32c-474b-b769-c95ab8b021dd", + "Definition": {}, + "Gloss": { + "en": "selfish one", + "pt": "guloso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da87b64e-ac4e-4dee-9616-2a629e4fa625", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakunyengerera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "85ae067e-bdc2-41bc-838a-e6859e16ad51", + "Order": 1, + "DeletedAt": null, + "EntryId": "da87b64e-ac4e-4dee-9616-2a629e4fa625", + "Definition": {}, + "Gloss": { + "en": "deceiver", + "pt": "enganador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "256dc80d-5f22-4451-a71f-0cc8e2b31c53", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "85ae067e-bdc2-41bc-838a-e6859e16ad51", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33d655c6-8898-4f6a-a64a-b9a85d851c60", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakupulumusa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "53c8b485-af48-4e9f-8caa-bcec1e7fe66a", + "Order": 1, + "DeletedAt": null, + "EntryId": "33d655c6-8898-4f6a-a64a-b9a85d851c60", + "Definition": {}, + "Gloss": { + "en": "savior", + "pt": "salvador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21abd2a7-b72b-40da-97ee-6ba7dcf04f79", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "53c8b485-af48-4e9f-8caa-bcec1e7fe66a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6652a08a-8461-4345-acf2-0b1ed3068d84", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakutongi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88185ef7-0946-4133-88a3-00efb760e4e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "6652a08a-8461-4345-acf2-0b1ed3068d84", + "Definition": {}, + "Gloss": { + "en": "leader", + "pt": "dirigente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f1335146-7975-42ee-b779-b8f7b7b5e883", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "88185ef7-0946-4133-88a3-00efb760e4e1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ace5e592-4cb8-4fe4-b3ea-a9c70d1d9d41", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakwawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e2394edc-16a7-4558-ab4f-163a80a8b095", + "Order": 1, + "DeletedAt": null, + "EntryId": "ace5e592-4cb8-4fe4-b3ea-a9c70d1d9d41", + "Definition": {}, + "Gloss": { + "en": "ruler", + "pt": "re\u0301gulo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "5f3e44b8-e94c-49b4-9e2d-1acd93dddf75", + "Name": { + "en": "Government official" + }, + "Code": "4.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "5bae26b2-423e-4e8a-b8b6-4194e20377bb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e2394edc-16a7-4558-ab4f-163a80a8b095", + "DeletedAt": null + } + ] + }, + { + "Id": "d73db95c-3883-4848-a2b6-d6b16a9989b0", + "Order": 2, + "DeletedAt": null, + "EntryId": "ace5e592-4cb8-4fe4-b3ea-a9c70d1d9d41", + "Definition": {}, + "Gloss": { + "en": "province" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a82cddfb-3e00-4a2d-bf02-a1e4e4d617e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "yale" + }, + "CitationForm": { + "seh": "nyale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65f74be4-09d7-4350-8d36-d175af72fadb", + "Order": 1, + "DeletedAt": null, + "EntryId": "a82cddfb-3e00-4a2d-bf02-a1e4e4d617e0", + "Definition": {}, + "Gloss": { + "en": "lamp", + "pt": "candieiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c53098f-e9fe-401b-b2af-b06fda122439", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth (luz); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "65f74be4-09d7-4350-8d36-d175af72fadb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "25bf4f24-5c66-4c5c-a919-cc794317af7b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyalo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b6332ab-c4b6-43e6-a2ec-6e8803e2b524", + "Order": 1, + "DeletedAt": null, + "EntryId": "25bf4f24-5c66-4c5c-a919-cc794317af7b", + "Definition": {}, + "Gloss": { + "en": "sole of foot", + "pt": "planta de pe\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "84a1af8c-860e-443a-90bf-3aa121b8003b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0b6332ab-c4b6-43e6-a2ec-6e8803e2b524", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbd2bcd7-449f-4675-836d-745bcfa45435", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyalugwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41b1a905-20e2-468f-bf42-8f4a963112a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbd2bcd7-449f-4675-836d-745bcfa45435", + "Definition": { + "en": { + "Spans": [ + { + "Text": "leopard - Panthera pardus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "leopard", + "pt": "leopardo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "052428d3-6d26-42ee-8d4a-12c4967537ef", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque;Moreira:14; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "41b1a905-20e2-468f-bf42-8f4a963112a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3371fcfb-84d0-47cb-aeef-70d71830953c", + "DeletedAt": null, + "LexemeForm": { + "seh": "yama" + }, + "CitationForm": { + "seh": "nyama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b60d62f9-0ee8-4b1c-8a4a-d79be94424a4", + "Order": 1, + "DeletedAt": null, + "EntryId": "3371fcfb-84d0-47cb-aeef-70d71830953c", + "Definition": {}, + "Gloss": { + "en": "meat", + "pt": "carne" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "5c348090-12f4-4c83-8331-e10971bbc8d3", + "Name": { + "en": "Meat" + }, + "Code": "5.2.3.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "d54a264a-d1a7-4cb2-ae82-95a06954b179", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b60d62f9-0ee8-4b1c-8a4a-d79be94424a4", + "DeletedAt": null + } + ] + }, + { + "Id": "98e5e096-618a-48f9-a711-52c2f1fefbc0", + "Order": 2, + "DeletedAt": null, + "EntryId": "3371fcfb-84d0-47cb-aeef-70d71830953c", + "Definition": {}, + "Gloss": { + "en": "animal", + "pt": "animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "944cf5af-469e-4b03-878f-a05d34b0d9f6", + "Name": { + "en": "Animal" + }, + "Code": "1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "033baf4d-cb5c-4d66-b8c6-69b18eceddac", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyama ya m\u0027madzi" + }, + "CitationForm": { + "seh": "nyama ya m\u0027madzi" + }, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "2333b0a2-0459-4779-adf0-915c7fc632d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "033baf4d-cb5c-4d66-b8c6-69b18eceddac", + "Definition": {}, + "Gloss": { + "en": "fish", + "pt": "peixe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4dba2f05-f072-47bd-8635-5ab45c684ae2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2333b0a2-0459-4779-adf0-915c7fc632d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "414d2d64-8996-454c-858f-d790156963f4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamalonda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca489d31-36ba-4184-b468-507c8d97ec05", + "Order": 1, + "DeletedAt": null, + "EntryId": "414d2d64-8996-454c-858f-d790156963f4", + "Definition": {}, + "Gloss": { + "en": "merchant", + "pt": "comerciante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2be257b-cdd9-424e-b436-ff0a4a96f34f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ca489d31-36ba-4184-b468-507c8d97ec05", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d9675151-65bb-4ee0-bf21-fb15ad14cccc", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamalwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f95a8db0-2124-443f-bb9e-f1b842f4ee23", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9675151-65bb-4ee0-bf21-fb15ad14cccc", + "Definition": {}, + "Gloss": { + "en": "enemy", + "pt": "inimigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8f973c27-f10d-41f0-bb96-95e6ff4093ff", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2:45", + "Ws": "en" + } + ] + }, + "SenseId": "f95a8db0-2124-443f-bb9e-f1b842f4ee23", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ca499033-105c-4ce4-95f8-725e6c0c5aab", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamawo" + }, + "CitationForm": { + "seh": "nyamaso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "793be52b-5f0e-4dfc-8e66-1ee2087be5e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "ca499033-105c-4ce4-95f8-725e6c0c5aab", + "Definition": {}, + "Gloss": { + "en": "observer", + "pt": "observador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b346b016-2958-4e02-b0c3-27788a7242fd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "793be52b-5f0e-4dfc-8e66-1ee2087be5e6", + "DeletedAt": null + } + ] + }, + { + "Id": "55a0d8b6-b407-41ea-be39-458bdb197473", + "Order": 2, + "DeletedAt": null, + "EntryId": "ca499033-105c-4ce4-95f8-725e6c0c5aab", + "Definition": {}, + "Gloss": { + "en": "inspector", + "pt": "inspector" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a52ba05-a374-4f16-992a-2f6840d54575", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamisonkho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e81f57e9-8551-4014-81be-661d69576fc9", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a52ba05-a374-4f16-992a-2f6840d54575", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "cobrador do impostos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "tax collector", + "pt": "cobrador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1d1c8a0e-441a-4732-940d-3eadbe8182ea", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e81f57e9-8551-4014-81be-661d69576fc9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da09dd6b-da20-4f79-bc4f-f76af044ff1d", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamudzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5927f31d-3bb0-4201-a042-3f46ee311c07", + "Order": 1, + "DeletedAt": null, + "EntryId": "da09dd6b-da20-4f79-bc4f-f76af044ff1d", + "Definition": {}, + "Gloss": { + "en": "house owner", + "pt": "dono de casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "51cb83f4-75fb-4d5b-94dd-b1a71375a94c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32;(says inhabitant); Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "5927f31d-3bb0-4201-a042-3f46ee311c07", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "396ad4a4-9b58-4ecf-937d-ceed777345df", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyancidwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73a9f31b-4988-40cd-ae46-ac58775ed9ff", + "Order": 1, + "DeletedAt": null, + "EntryId": "396ad4a4-9b58-4ecf-937d-ceed777345df", + "Definition": {}, + "Gloss": { + "en": "frog", + "pt": "sapo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f60708f4-2b0e-4678-be57-870d234d7da9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "73a9f31b-4988-40cd-ae46-ac58775ed9ff", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3cebff4b-17b2-447e-aaad-edf2856b9217", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyandalo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ddf80ef-f9b0-440c-aa72-ac59d78baadf", + "Order": 1, + "DeletedAt": null, + "EntryId": "3cebff4b-17b2-447e-aaad-edf2856b9217", + "Definition": { + "en": { + "Spans": [ + { + "Text": "traditional prophet", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "profeta tradicional", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "prophet", + "pt": "profeta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "147c2e58-9ae8-460f-8cab-bf04a668945d", + "Name": { + "en": "Prophecy" + }, + "Code": "4.9.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2830b72-c642-484f-9485-24682aa11ed8", + "Name": { + "en": "Omen, divination" + }, + "Code": "4.9.4.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "775fbee4-c4fd-425e-877a-cb01cc4e6d4e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7ddf80ef-f9b0-440c-aa72-ac59d78baadf", + "DeletedAt": null + } + ] + }, + { + "Id": "9ba68ba6-39f7-4b0c-a084-7574eb1425c5", + "Order": 2, + "DeletedAt": null, + "EntryId": "3cebff4b-17b2-447e-aaad-edf2856b9217", + "Definition": {}, + "Gloss": { + "en": "medium", + "pt": "me\u0301dium" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d812ff4e-aac3-4d5f-a4a6-45d87005a131", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyanfutete" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eb384ce8-1bb2-47a5-9ba6-fb1e8aa1ab92", + "Order": 1, + "DeletedAt": null, + "EntryId": "d812ff4e-aac3-4d5f-a4a6-45d87005a131", + "Definition": {}, + "Gloss": { + "en": "paralytic", + "pt": "paraletico" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c2dbe83a-d638-45ac-a6d5-5f041b9dde71", + "Name": { + "en": "Disabled" + }, + "Code": "2.5.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "026881f6-224a-45d3-9c02-b00d63b1ee04", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "eb384ce8-1bb2-47a5-9ba6-fb1e8aa1ab92", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3e8204af-c0f3-428e-baaf-b534c0c703d6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyanfuwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94bc3a57-f0e9-4554-bf68-a1e48f9c1128", + "Order": 1, + "DeletedAt": null, + "EntryId": "3e8204af-c0f3-428e-baaf-b534c0c703d6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Common molerat, has large incisors, Cyptomys hottentotus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "molerat", + "pt": "rato tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "54af375c-bb2d-4824-bb86-5225afee8cc6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "94bc3a57-f0e9-4554-bf68-a1e48f9c1128", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08c1c69c-66c0-4af2-899b-eed5a1b9396d", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyang\u0027ang\u0027a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9bf15869-a62b-46b3-97f7-6e9755eefcb9", + "Order": 1, + "DeletedAt": null, + "EntryId": "08c1c69c-66c0-4af2-899b-eed5a1b9396d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bushbaby, noted for its night cry, any of Family Lorisidae", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "galagonidae, tipo de primata pequeno e noturno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bushbaby", + "pt": "macaco tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb7e2c81-0ee8-491b-bc95-fdc9635c7194", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "9bf15869-a62b-46b3-97f7-6e9755eefcb9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d825efa-82dd-490e-9d6d-173fe7e41ae3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyang\u0027ombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d69ce9d9-b848-4d2f-ae20-139cc5c39a4f", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d825efa-82dd-490e-9d6d-173fe7e41ae3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cattle herdsman", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "criador do gado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "herdsman", + "pt": "criador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dc7858f0-6f4e-49d0-a044-64adbf7c8a90", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "d69ce9d9-b848-4d2f-ae20-139cc5c39a4f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d499f97-5535-4d31-81dc-3d9a62efc508", + "DeletedAt": null, + "LexemeForm": { + "seh": "yanga" + }, + "CitationForm": { + "seh": "nyanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea83300d-198d-4a01-a5c7-02d69e8ecb6d", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d499f97-5535-4d31-81dc-3d9a62efc508", + "Definition": {}, + "Gloss": { + "en": "horn", + "pt": "chifre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "e92bd326-f254-48d9-b4e4-49c88ee14866", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist;Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "ea83300d-198d-4a01-a5c7-02d69e8ecb6d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dbf5e159-f53c-4700-9a75-53f1bf7d58b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyangalis" + }, + "CitationForm": { + "seh": "nyangalisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86f75dd8-5f35-49b6-bad7-b56faeee989e", + "Order": 1, + "DeletedAt": null, + "EntryId": "dbf5e159-f53c-4700-9a75-53f1bf7d58b2", + "Definition": {}, + "Gloss": { + "en": "tickle", + "pt": "fazer co\u0302cegas" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ce3cc90-0840-423a-8ec8-0e813a4e0c04", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "86f75dd8-5f35-49b6-bad7-b56faeee989e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78f34f65-66e3-4c8a-a2f2-b88b51fecda4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyansala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fb899f4-3e60-4da5-ae2f-bc193922ee2b", + "Order": 1, + "DeletedAt": null, + "EntryId": "78f34f65-66e3-4c8a-a2f2-b88b51fecda4", + "Definition": {}, + "Gloss": { + "en": "insane person", + "pt": "maluco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a01a1900-fc1f-462e-ba3d-ae822711b034", + "Name": { + "en": "Mental illness" + }, + "Code": "2.5.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4bac5a6b-38fb-4c79-81f3-8912413b34eb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "8fb899f4-3e60-4da5-ae2f-bc193922ee2b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0d7681f-9ac1-4356-ad16-9b55dedea127", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyantsembe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0add00b4-215f-48b4-9cd9-4a6ea9cdea9e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0d7681f-9ac1-4356-ad16-9b55dedea127", + "Definition": {}, + "Gloss": { + "en": "priest", + "pt": "sacerdote" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "9f792202-8023-4ef3-b269-5ae4b6908a0b", + "Name": { + "en": "Offering, sacrifice" + }, + "Code": "4.9.5.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "134b2ae8-afd8-40a0-be09-3b5edc84ec9a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0add00b4-215f-48b4-9cd9-4a6ea9cdea9e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2b425a5e-3e36-4be3-83b8-607e4cb27057", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyanyas" + }, + "CitationForm": { + "seh": "nyanyasa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "97adf28c-c672-4948-8fa6-9a5c480c3d28", + "Order": 1, + "DeletedAt": null, + "EntryId": "2b425a5e-3e36-4be3-83b8-607e4cb27057", + "Definition": {}, + "Gloss": { + "en": "be disgusting", + "pt": "e\u0301 nogento" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "ed7930df-e7b4-43c9-a11a-b09521276b57", + "Name": { + "en": "Smell" + }, + "Code": "2.3.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "da0003c0-33dc-4d24-ba81-c89651257327", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Njira ino isandinyanyasa.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Rua este e\u0301 nogento.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "97adf28c-c672-4948-8fa6-9a5c480c3d28", + "DeletedAt": null + }, + { + "Id": "aff852f5-ed49-408d-9197-298cd0e4c9db", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Pidalonga iwe pindinyanyasa.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Coisa que tu disseste na\u0303o gostei.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Wordlist says \u0022sujo\u0022; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "97adf28c-c672-4948-8fa6-9a5c480c3d28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "117cfde6-29f1-40d3-a456-87adfa7e4098", + "DeletedAt": null, + "LexemeForm": { + "seh": "yanza" + }, + "CitationForm": { + "seh": "nyanza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d8b9835-607a-4a5f-a7e0-d36258e48b85", + "Order": 1, + "DeletedAt": null, + "EntryId": "117cfde6-29f1-40d3-a456-87adfa7e4098", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large river or lake", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "river", + "pt": "rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4153416a-784d-4f7c-a664-2640f7979a14", + "Name": { + "en": "River" + }, + "Code": "1.3.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4dc0ceec-6331-4c7c-a6a3-4789f3da7f52", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "1d8b9835-607a-4a5f-a7e0-d36258e48b85", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f45d42a-bd1d-49c3-979e-3c88821a57f3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyapaketi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "74ecc498-4610-44d3-8bf1-e94e0a6bf71c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f45d42a-bd1d-49c3-979e-3c88821a57f3", + "Definition": {}, + "Gloss": { + "en": "sailor", + "pt": "marinheiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "29f49e77-8dba-498c-8f01-eec317756498", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "74ecc498-4610-44d3-8bf1-e94e0a6bf71c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bf6d2007-5e0c-4aa2-8cf3-a6bdd6ab668c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyarumbi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f1b22f18-4fff-468a-b40c-d38b79a4e1e9", + "Order": 1, + "DeletedAt": null, + "EntryId": "bf6d2007-5e0c-4aa2-8cf3-a6bdd6ab668c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "person who comes alongside at the time of death to help the family, becomes like a member of the family", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "grave digger", + "pt": "conveiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b20ff211-0b97-4c30-a961-39e5540f635b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f1b22f18-4fff-468a-b40c-d38b79a4e1e9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e10f84a4-5293-45c0-85be-529583600fa2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyasa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9a0e9e70-85ee-4730-abd3-06b24cd7f4b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "e10f84a4-5293-45c0-85be-529583600fa2", + "Definition": {}, + "Gloss": { + "en": "gazell", + "pt": "gazela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e462418-98c1-4023-9edc-299134ccf9c4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "9a0e9e70-85ee-4730-abd3-06b24cd7f4b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9f0442e0-e702-4d89-98a1-6b4cb9fe9805", + "DeletedAt": null, + "LexemeForm": { + "seh": "yati" + }, + "CitationForm": { + "seh": "nyati" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e7864414-f020-4453-a46a-a2e783a319bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "9f0442e0-e702-4d89-98a1-6b4cb9fe9805", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Cape buffalo", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Cape buffalo", + "pt": "bu\u0301falo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f6e47575-1e0f-46ad-b18e-5efc1799550e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "e7864414-f020-4453-a46a-a2e783a319bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "637142a1-200e-4496-a5e3-55c0ebc5de13", + "DeletedAt": null, + "LexemeForm": { + "seh": "yatwa" + }, + "CitationForm": { + "seh": "nyatwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ecd8c68d-5241-40e9-93df-05bf46a70474", + "Order": 1, + "DeletedAt": null, + "EntryId": "637142a1-200e-4496-a5e3-55c0ebc5de13", + "Definition": {}, + "Gloss": { + "en": "suffering", + "pt": "sofrimento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cdb0735-c4bf-4ab8-9eb1-95667fc83167", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyaunthaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87a4f889-f5e3-4a58-b4d2-851f7994fd50", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cdb0735-c4bf-4ab8-9eb1-95667fc83167", + "Definition": {}, + "Gloss": { + "en": "heir", + "pt": "herdeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "163c99fd-94f7-4bfe-a672-88fd831e6d3c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,32; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "87a4f889-f5e3-4a58-b4d2-851f7994fd50", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4bd22e9d-0246-460b-9c72-8a354ee61623", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyawance" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "713209b8-5687-42da-8a9f-0c4194df9c33", + "Order": 1, + "DeletedAt": null, + "EntryId": "4bd22e9d-0246-460b-9c72-8a354ee61623", + "Definition": {}, + "Gloss": { + "en": "cereal type", + "pt": "tipo cereal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6f57d658-bd0b-4030-80c3-ea054dcef2b6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "713209b8-5687-42da-8a9f-0c4194df9c33", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "44d51b2c-5c95-4c43-928a-3cc583e61c1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyengerer" + }, + "CitationForm": { + "seh": "nyengerera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa3dbb29-03c4-4bbd-9cae-d6d7e43d31c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "44d51b2c-5c95-4c43-928a-3cc583e61c1e", + "Definition": {}, + "Gloss": { + "en": "deceive", + "pt": "enganhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "48a06b6a-5354-48d4-8b80-39a0a450ff47", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "aa3dbb29-03c4-4bbd-9cae-d6d7e43d31c9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61673e8e-d55c-4d0d-99b4-8e8a1cef008b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyenyen" + }, + "CitationForm": { + "seh": "nyenyena" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be6b1547-a452-400b-8bfb-b4911b6f3cb9", + "Order": 1, + "DeletedAt": null, + "EntryId": "61673e8e-d55c-4d0d-99b4-8e8a1cef008b", + "Definition": {}, + "Gloss": { + "en": "chew", + "pt": "roer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb794646-1e34-4aa0-bdce-da744120084d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "be6b1547-a452-400b-8bfb-b4911b6f3cb9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a3b3d633-d4a3-4f8b-b5a0-2c301d971a99", + "DeletedAt": null, + "LexemeForm": { + "seh": "yenyezi" + }, + "CitationForm": { + "seh": "nyenyezi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c903a4d7-2f95-4fe9-908b-9878d753aba3", + "Order": 1, + "DeletedAt": null, + "EntryId": "a3b3d633-d4a3-4f8b-b5a0-2c301d971a99", + "Definition": {}, + "Gloss": { + "en": "star", + "pt": "estrela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1941734-7d28-4cee-8fc8-5cd27906fb27", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c903a4d7-2f95-4fe9-908b-9878d753aba3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0aa351f-d56e-40bb-9dbd-91c3327b7585", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyerezer" + }, + "CitationForm": { + "seh": "nyerezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2d50f802-27d2-438a-8761-fa5c754d237a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0aa351f-d56e-40bb-9dbd-91c3327b7585", + "Definition": { + "en": { + "Spans": [ + { + "Text": "think, reflect", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "think", + "pt": "pensar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b28eae3-03ff-4875-b265-125a1033e3bd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Jac; Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2d50f802-27d2-438a-8761-fa5c754d237a", + "DeletedAt": null + } + ] + }, + { + "Id": "abc99545-0202-43ed-be8f-7264687ca3e9", + "Order": 2, + "DeletedAt": null, + "EntryId": "e0aa351f-d56e-40bb-9dbd-91c3327b7585", + "Definition": {}, + "Gloss": { + "en": "remember", + "pt": "recordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "511ca549-5c45-48f2-9ceb-d4ce6d86e66b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Usanyerezera pida cita iwe?", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "Do you remember what you did?", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Recorda aquele que voces fez?", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "abc99545-0202-43ed-be8f-7264687ca3e9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "54039880-5aa8-45b7-9f25-98acb594db45", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyezek" + }, + "CitationForm": { + "seh": "nyezeka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1325055b-2112-4ca8-8998-c64dd7c06071", + "Order": 1, + "DeletedAt": null, + "EntryId": "54039880-5aa8-45b7-9f25-98acb594db45", + "Definition": {}, + "Gloss": { + "en": "broken", + "pt": "quebrado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "885d6bf6-6316-42bd-9e1f-97cd4e0727ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "yimbo" + }, + "CitationForm": { + "seh": "nyimbo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01066106-cffb-43a3-8bb5-c62b81b88f48", + "Order": 1, + "DeletedAt": null, + "EntryId": "885d6bf6-6316-42bd-9e1f-97cd4e0727ef", + "Definition": {}, + "Gloss": { + "en": "song", + "pt": "canc\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21b070e3-d0b0-4df4-ae76-39be4b50587b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "01066106-cffb-43a3-8bb5-c62b81b88f48", + "DeletedAt": null + } + ] + }, + { + "Id": "83979ad4-d05c-440d-8979-55584e2cd670", + "Order": 2, + "DeletedAt": null, + "EntryId": "885d6bf6-6316-42bd-9e1f-97cd4e0727ef", + "Definition": {}, + "Gloss": { + "en": "hymn", + "pt": "hino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93c20da6-1bc0-4af5-8080-b424115bc466", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyindir" + }, + "CitationForm": { + "seh": "nyindira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72f793c5-1b2c-43f0-9754-7dc192c6d153", + "Order": 1, + "DeletedAt": null, + "EntryId": "93c20da6-1bc0-4af5-8080-b424115bc466", + "Definition": {}, + "Gloss": { + "en": "trust", + "pt": "confiar 2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00860aad-7f1d-4cac-b7a8-652cc24df642", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "72f793c5-1b2c-43f0-9754-7dc192c6d153", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c074ea74-6c5a-422e-bd61-25686afa54f0", + "DeletedAt": null, + "LexemeForm": { + "seh": "yoka" + }, + "CitationForm": { + "seh": "nyoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0eab6051-3e88-4006-94c2-bf686688ff8c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c074ea74-6c5a-422e-bd61-25686afa54f0", + "Definition": {}, + "Gloss": { + "en": "snake", + "pt": "serpente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "83b27e1e-ab89-48ce-b74e-0262746b8a97", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0eab6051-3e88-4006-94c2-bf686688ff8c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6a15c1e-0d46-4e48-ba62-56f28b185b87", + "DeletedAt": null, + "LexemeForm": { + "seh": "yota" + }, + "CitationForm": { + "seh": "nyota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d7e19fe-4e89-4473-9b0d-b1daf3378f4a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6a15c1e-0d46-4e48-ba62-56f28b185b87", + "Definition": {}, + "Gloss": { + "en": "thirst", + "pt": "sede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ddae7766-de32-465c-a7be-4a2dd5efa9b4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1d7e19fe-4e89-4473-9b0d-b1daf3378f4a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aee8dece-00ea-4705-9405-384e12faee8e", + "DeletedAt": null, + "LexemeForm": { + "seh": "yumba" + }, + "CitationForm": { + "seh": "nyumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ceccd7ea-1268-4e04-a017-c929c4c6ccf6", + "Order": 1, + "DeletedAt": null, + "EntryId": "aee8dece-00ea-4705-9405-384e12faee8e", + "Definition": {}, + "Gloss": { + "en": "house", + "pt": "casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d61f48b1-920d-4bdd-9156-cc938026cf92", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ceccd7ea-1268-4e04-a017-c929c4c6ccf6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd913fd4-9c6a-4afb-bc2a-fbd6b1d70e85", + "DeletedAt": null, + "LexemeForm": { + "seh": "nzawo" + }, + "CitationForm": { + "seh": "nzace" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c910b6c-cf3c-4bd5-b975-55217a5e15f3", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd913fd4-9c6a-4afb-bc2a-fbd6b1d70e85", + "Definition": {}, + "Gloss": { + "en": "companion", + "pt": "companheiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df3324cb-61a2-4cf0-a339-922baea302e8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2c910b6c-cf3c-4bd5-b975-55217a5e15f3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9fb811ea-34bc-49a8-81c5-7993ea219da6", + "DeletedAt": null, + "LexemeForm": { + "seh": "zakazi" + }, + "CitationForm": { + "seh": "nzakazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "16f52de8-f3c0-4eb0-bb16-e5ead6689294", + "Order": 1, + "DeletedAt": null, + "EntryId": "9fb811ea-34bc-49a8-81c5-7993ea219da6", + "Definition": {}, + "Gloss": { + "en": "slave", + "pt": "escravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3cf77dea-7c50-499f-8953-deafaa30452d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "16f52de8-f3c0-4eb0-bb16-e5ead6689294", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "651b37c1-2b3c-409c-bab2-2b1193ab0c38", + "DeletedAt": null, + "LexemeForm": { + "seh": "zimu" + }, + "CitationForm": { + "seh": "nzimu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "307e4826-e570-4309-a661-0c09ce55f8ee", + "Order": 1, + "DeletedAt": null, + "EntryId": "651b37c1-2b3c-409c-bab2-2b1193ab0c38", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ancestor spirit", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "espirito de antepassado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "spirit", + "pt": "espirito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1cb79293-d4f7-4990-9f50-3bb595744f61", + "Name": { + "en": "Soul, spirit" + }, + "Code": "3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f6c81fb-02a4-415f-a363-fb11cc6b9254", + "Name": { + "en": "Supernatural being" + }, + "Code": "4.9.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c4cf426b-d3db-4e3e-929e-7aa534e217fa", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nzimwace akwata Mulungu. (Heins:98)", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Deus levou o espi\u0301rito dele.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "307e4826-e570-4309-a661-0c09ce55f8ee", + "DeletedAt": null + } + ] + }, + { + "Id": "e1fae09d-3261-4997-872c-f478b9ee9c7b", + "Order": 2, + "DeletedAt": null, + "EntryId": "651b37c1-2b3c-409c-bab2-2b1193ab0c38", + "Definition": {}, + "Gloss": { + "en": "human soul", + "pt": "alma humana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d7466b7-b566-4df9-babc-ee52ee9aab59", + "DeletedAt": null, + "LexemeForm": { + "seh": "zou" + }, + "CitationForm": { + "seh": "nzou" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3e08d5cd-0d4b-4a8d-a2da-30e0c85d4309", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d7466b7-b566-4df9-babc-ee52ee9aab59", + "Definition": {}, + "Gloss": { + "en": "elephant", + "pt": "elefante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dcf393d6-838f-4e7d-b2fd-72e59338aef1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16 ndzou; Wordlist nzou", + "Ws": "en" + } + ] + }, + "SenseId": "3e08d5cd-0d4b-4a8d-a2da-30e0c85d4309", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75361262-037f-45c6-82f8-53617a4c4566", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungu" + }, + "CitationForm": { + "seh": "nzungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "43eb9d22-183b-4e8f-8b62-76711d9d9c4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "75361262-037f-45c6-82f8-53617a4c4566", + "Definition": {}, + "Gloss": { + "en": "white person", + "pt": "pessoa branco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b9eb2cf-915d-4f70-8c01-97be5a591110", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "43eb9d22-183b-4e8f-8b62-76711d9d9c4e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "699a9535-a304-48ff-a2ba-355102edc41f", + "DeletedAt": null, + "LexemeForm": { + "seh": "o" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "7fdfd1bd-5073-4c74-8d99-a0272b0b7817", + "Order": 1, + "DeletedAt": null, + "EntryId": "699a9535-a304-48ff-a2ba-355102edc41f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "indicates the result or outcome of an action", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "action", + "pt": "acc\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "06314ba4-c1dc-4a15-b24d-c49dffed2e9e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cipwazo", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "despising", + "Ws": "en" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "7fdfd1bd-5073-4c74-8d99-a0272b0b7817", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41d09df3-8c11-4be4-b1f3-485649545e2a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ombol" + }, + "CitationForm": { + "seh": "ombola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01660702-0cff-44c1-bca0-7299180d70d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "41d09df3-8c11-4be4-b1f3-485649545e2a", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "salvar pessoa duma crise", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "free", + "pt": "livrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3403fa76-8703-4476-b872-c0b7eb53eb83", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "01660702-0cff-44c1-bca0-7299180d70d3", + "DeletedAt": null + } + ] + }, + { + "Id": "c8df1ccd-8f18-4c95-a4e3-04c0f25a714e", + "Order": 2, + "DeletedAt": null, + "EntryId": "41d09df3-8c11-4be4-b1f3-485649545e2a", + "Definition": {}, + "Gloss": { + "en": "save", + "pt": "salvar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a720a295-aa60-43e3-901a-23db69fc113f", + "DeletedAt": null, + "LexemeForm": { + "seh": "on" + }, + "CitationForm": { + "seh": "ona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fe25565c-e101-47c5-b92e-2f699c7f72c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a720a295-aa60-43e3-901a-23db69fc113f", + "Definition": {}, + "Gloss": { + "en": "see", + "pt": "ver" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "119a010b-4110-4052-aa1a-c0b7d0e108d3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "fe25565c-e101-47c5-b92e-2f699c7f72c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65420ebf-20d7-4881-b799-9944cd7b881f", + "DeletedAt": null, + "LexemeForm": { + "seh": "oneka" + }, + "CitationForm": { + "seh": "onekF" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bb3908d9-79a1-4af3-a976-06db433da5a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "65420ebf-20d7-4881-b799-9944cd7b881f", + "Definition": {}, + "Gloss": { + "en": "happen", + "pt": "acontece" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b533926-c366-48bb-ae1f-c57aecdee670", + "DeletedAt": null, + "LexemeForm": { + "seh": "wongo" + }, + "CitationForm": { + "seh": "ongo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f5a038ca-f12d-4786-a7b5-76cb62c0c806", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b533926-c366-48bb-ae1f-c57aecdee670", + "Definition": {}, + "Gloss": { + "en": "brain", + "pt": "ce\u0301rebro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9bbd91e8-d4b9-4fe9-b2d1-cccf975dab99", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f5a038ca-f12d-4786-a7b5-76cb62c0c806", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "48ea4cc9-6b60-4f40-8b8e-2c25e411fc8f", + "DeletedAt": null, + "LexemeForm": { + "seh": "onsene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5f08fd4c-f27d-4990-959b-ded9fc67887f", + "Order": 1, + "DeletedAt": null, + "EntryId": "48ea4cc9-6b60-4f40-8b8e-2c25e411fc8f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "all , everyone, everything", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "toda , todo, tudo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "all", + "pt": "todo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f91e178-6f81-42b3-8fe0-eedcf226372b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5f08fd4c-f27d-4990-959b-ded9fc67887f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adf6a3e4-04ca-4f59-ae11-6127351ee694", + "DeletedAt": null, + "LexemeForm": { + "seh": "pa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "511d1db3-ef9e-4974-b86d-dd7049adc3cf", + "Order": 1, + "DeletedAt": null, + "EntryId": "adf6a3e4-04ca-4f59-ae11-6127351ee694", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "DeletedAt": null, + "LexemeForm": { + "seh": "pa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "3f732700-6604-407b-9561-5679466fd816", + "Order": 1, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "at", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "a\u0301", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3fa0cb72-e407-45bc-a90f-38adc5041151", + "Order": 2, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ea73ff7d-66be-492b-8932-ac0a9f169045", + "Order": 3, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d063c9c8-0783-4e95-815a-80c2d90a0685", + "Order": 4, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a79dae5d-2a1f-466c-91e2-16dd9ba73ea3", + "Order": 5, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "0f2ca062-34a9-4860-a750-ba6b2e746e1b", + "Order": 6, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c72f0def-ba21-4e71-b599-1fac8a7aac78", + "DeletedAt": null, + "LexemeForm": { + "seh": "dambo" + }, + "CitationForm": { + "seh": "padambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ddff3979-8797-4434-a5cd-d9cc036eec8c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c72f0def-ba21-4e71-b599-1fac8a7aac78", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area just outside of the house", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "yard", + "pt": "quintal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b2c99262-c521-4f33-855e-438f5aa5a95c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kuna munthu kudambo.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Esta\u0301 alguem fora de casa.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ddff3979-8797-4434-a5cd-d9cc036eec8c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35f6824e-2c78-4cab-97b1-431276e53d06", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu" + }, + "CitationForm": { + "seh": "padzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "085bd1d5-7d44-49ce-b2f1-d99e07f27725", + "Order": 1, + "DeletedAt": null, + "EntryId": "35f6824e-2c78-4cab-97b1-431276e53d06", + "Definition": {}, + "Gloss": { + "en": "on top of", + "pt": "em cima de" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ae92e3a9-0028-4c78-849f-8ad8090d961d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo; Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "085bd1d5-7d44-49ce-b2f1-d99e07f27725", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e3b156d-fd40-4b66-87f7-2f849cf2fdc2", + "DeletedAt": null, + "LexemeForm": { + "seh": "pafupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e41243fa-94bb-4fea-9ff7-b6fd65218271", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e3b156d-fd40-4b66-87f7-2f849cf2fdc2", + "Definition": {}, + "Gloss": { + "en": "near", + "pt": "perto de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dc422def-6671-4793-a2c5-df1f6c0ba0c9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Asakala pafupi na ine.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Viva perto de mim.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "e41243fa-94bb-4fea-9ff7-b6fd65218271", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "222c6df8-a053-4535-957c-011e95da4362", + "DeletedAt": null, + "LexemeForm": { + "seh": "paka" + }, + "CitationForm": { + "seh": "paka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fdd9782e-30a8-4beb-ae64-e0b6a49d4611", + "Order": 1, + "DeletedAt": null, + "EntryId": "222c6df8-a053-4535-957c-011e95da4362", + "Definition": { + "en": { + "Spans": [ + { + "Text": "domestic cat", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "gato domestico", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "cat", + "pt": "gato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "49c878dd-277f-4bc9-b8ad-9ba192709108", + "Name": { + "en": "Cat" + }, + "Code": "6.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56ef3f06-7fb9-462e-a7d0-517f3ce1623f", + "Name": { + "en": "Carnivore" + }, + "Code": "1.6.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "eec2a28e-a8fb-4964-bfe2-70f4d57dd19f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "fdd9782e-30a8-4beb-ae64-e0b6a49d4611", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9a4d7d7-df81-42f9-9d11-0252f6237675", + "DeletedAt": null, + "LexemeForm": { + "seh": "pak" + }, + "CitationForm": { + "seh": "paka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31eae4ca-af01-4b5f-b43e-7030a1904e30", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9a4d7d7-df81-42f9-9d11-0252f6237675", + "Definition": {}, + "Gloss": { + "en": "organize", + "pt": "organizar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b547aff2-cc47-439a-8b34-9f7df414411f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "31eae4ca-af01-4b5f-b43e-7030a1904e30", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21390618-b38c-4e29-af2d-eff40efa0749", + "DeletedAt": null, + "LexemeForm": { + "seh": "paka bonga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "10bf25f6-c827-4e17-b1a8-77abcee2c7d5", + "Order": 1, + "DeletedAt": null, + "EntryId": "21390618-b38c-4e29-af2d-eff40efa0749", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild cat; African Wild Cat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cat", + "pt": "gato bravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bcde0e03-55aa-4db9-827e-e734d61fdf12", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "10bf25f6-c827-4e17-b1a8-77abcee2c7d5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "142d18ef-1d34-4cc0-9325-e8cbfa134934", + "DeletedAt": null, + "LexemeForm": { + "seh": "pakati_na_kati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b56a7877-3732-479b-981e-13bde2cf3199", + "Order": 1, + "DeletedAt": null, + "EntryId": "142d18ef-1d34-4cc0-9325-e8cbfa134934", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the very middle", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "no meio mesmo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "middle", + "pt": "no meio" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9b35c2f4-a264-4b1a-8482-d7314c20c915", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwadia walowa mbuli pakati-na-kati.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "A canoa fundou-se no meio.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "b56a7877-3732-479b-981e-13bde2cf3199", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56450014-7d28-4af1-8a01-528d36d9f4b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "paketi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a1c424c-57fe-4c5e-bbfa-4a5f46f3ad04", + "Order": 1, + "DeletedAt": null, + "EntryId": "56450014-7d28-4af1-8a01-528d36d9f4b2", + "Definition": {}, + "Gloss": { + "en": "ship", + "pt": "na\u0301vio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "155d30e6-2668-41d6-8978-99afe2083780", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2a1c424c-57fe-4c5e-bbfa-4a5f46f3ad04", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dc14a063-4beb-40be-93b8-906cc1e02ffd", + "DeletedAt": null, + "LexemeForm": { + "seh": "pakil" + }, + "CitationForm": { + "seh": "pakila" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3f9ab123-8e44-4b7d-8751-036addaa3924", + "Order": 1, + "DeletedAt": null, + "EntryId": "dc14a063-4beb-40be-93b8-906cc1e02ffd", + "Definition": {}, + "Gloss": { + "en": "embark", + "pt": "embarcar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5272912-8600-4c5b-89d4-73492e363881", + "DeletedAt": null, + "LexemeForm": { + "seh": "pakweca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "69dd5abb-75c8-43c9-a9de-e9d0a54d0f5f", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5272912-8600-4c5b-89d4-73492e363881", + "Definition": {}, + "Gloss": { + "en": "in the open", + "pt": "a\u0300 vista" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a1b2dcc-a250-46c8-8ce9-1228d9d80928", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Abisala pakweca", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Escondeu poco \u0027a vista (hid it where it could be seen)", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24 (says in public); Nyazeze says \u0027a vista", + "Ws": "en" + } + ] + }, + "SenseId": "69dd5abb-75c8-43c9-a9de-e9d0a54d0f5f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7af6916d-b7dd-4e57-92d2-f80194156e12", + "DeletedAt": null, + "LexemeForm": { + "seh": "pale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "eacb0398-8ba6-4bad-a412-7e3d0eec8026", + "Order": 1, + "DeletedAt": null, + "EntryId": "7af6916d-b7dd-4e57-92d2-f80194156e12", + "Definition": {}, + "Gloss": { + "en": "there", + "pt": "ali\u0301" + }, + "PartOfSpeech": { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2ba081c9-876c-47c3-8c95-93622922a6de", + "DeletedAt": null, + "LexemeForm": { + "seh": "pambul" + }, + "CitationForm": { + "seh": "pambula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce86d5d3-44ed-43d9-8a49-ec1fcf09b1ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "2ba081c9-876c-47c3-8c95-93622922a6de", + "Definition": {}, + "Gloss": { + "en": "separate", + "pt": "separar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c77fb145-1e73-4839-98ea-92b7a20aaa65", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ce86d5d3-44ed-43d9-8a49-ec1fcf09b1ec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5472df2-f6fd-4590-aff5-2640810b47cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "pana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1be67c1d-65da-45ae-b21e-51fd0de3c0c3", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5472df2-f6fd-4590-aff5-2640810b47cf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the presence of", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "na presenca de", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "with", + "pt": "com" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18309613-9a02-4aa8-a074-0bfa67cd6fff", + "DeletedAt": null, + "LexemeForm": { + "seh": "pandir" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "dd06cc0b-c6f0-4a06-82e1-f2148e3ed54e", + "Order": 1, + "DeletedAt": null, + "EntryId": "18309613-9a02-4aa8-a074-0bfa67cd6fff", + "Definition": { + "en": { + "Spans": [ + { + "Text": "come up out of the water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "come up", + "pt": "ascender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "not sure of definition", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65f5143a-51f8-4075-a1c5-3d53f8146237", + "DeletedAt": null, + "LexemeForm": { + "seh": "panduk" + }, + "CitationForm": { + "seh": "panduka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "af2f2f67-3c07-40eb-b0e9-a6666c9851be", + "Order": 1, + "DeletedAt": null, + "EntryId": "65f5143a-51f8-4075-a1c5-3d53f8146237", + "Definition": {}, + "Gloss": { + "en": "tear", + "pt": "rasgar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57231790-5ed8-4ea7-a85b-2b1af0146e51", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "af2f2f67-3c07-40eb-b0e9-a6666c9851be", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "76b91e5b-7325-49ae-b2a0-dbc900330ea0", + "DeletedAt": null, + "LexemeForm": { + "seh": "pandul" + }, + "CitationForm": { + "seh": "pandula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "123cfb49-e66b-4a7e-9997-0d690f191eb1", + "Order": 1, + "DeletedAt": null, + "EntryId": "76b91e5b-7325-49ae-b2a0-dbc900330ea0", + "Definition": {}, + "Gloss": { + "en": "split", + "pt": "rachar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "445af6b4-65bb-470c-af73-c6883832b4d9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "123cfb49-e66b-4a7e-9997-0d690f191eb1", + "DeletedAt": null + } + ] + }, + { + "Id": "510fd70c-f3b5-4486-a739-ea40c1013314", + "Order": 2, + "DeletedAt": null, + "EntryId": "76b91e5b-7325-49ae-b2a0-dbc900330ea0", + "Definition": {}, + "Gloss": { + "en": "tear", + "pt": "rasgar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9fbd7eee-a680-44a8-a832-2e544d3615c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "pang\u0027ono-pang\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9422102a-ec7f-49ec-a216-c9d0d99a6581", + "Order": 1, + "DeletedAt": null, + "EntryId": "9fbd7eee-a680-44a8-a832-2e544d3615c3", + "Definition": {}, + "Gloss": { + "en": "slowly", + "pt": "devagar" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9af7314-ccfb-4fe7-b5d2-2c22b6c89acc", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ddisafamba pang\u0027ono-pang\u0027ono.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Ando devagar.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "9422102a-ec7f-49ec-a216-c9d0d99a6581", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "63d6139e-0347-435b-9138-63f3640381e6", + "DeletedAt": null, + "LexemeForm": { + "seh": "pang" + }, + "CitationForm": { + "seh": "panga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc18e2d7-e581-4fae-bdeb-d70406e2c2bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "63d6139e-0347-435b-9138-63f3640381e6", + "Definition": {}, + "Gloss": { + "en": "say", + "pt": "dizer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d2523d31-53b3-4587-b62b-c0d10980dc85", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cc18e2d7-e581-4fae-bdeb-d70406e2c2bc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebf9c8d1-440e-41a0-83d1-892d64cb9c61", + "DeletedAt": null, + "LexemeForm": { + "seh": "pangan" + }, + "CitationForm": { + "seh": "pangana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e18ad564-feaf-4720-86dd-505f28398a27", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebf9c8d1-440e-41a0-83d1-892d64cb9c61", + "Definition": {}, + "Gloss": { + "en": "say goodbye", + "pt": "despedir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c3ab87e7-7de0-403e-aebf-83a762c25191", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e18ad564-feaf-4720-86dd-505f28398a27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "257a2df2-04c4-4524-a893-a7686c897092", + "DeletedAt": null, + "LexemeForm": { + "seh": "panganizan" + }, + "CitationForm": { + "seh": "panganizana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "288640d4-e9da-429d-ae09-563930a2ff83", + "Order": 1, + "DeletedAt": null, + "EntryId": "257a2df2-04c4-4524-a893-a7686c897092", + "Definition": {}, + "Gloss": { + "en": "say goodbye", + "pt": "despedir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5e31b84-01a5-48da-827f-c5edffcc66d6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "288640d4-e9da-429d-ae09-563930a2ff83", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45f75244-8464-4fdb-93ec-18a5a8425189", + "DeletedAt": null, + "LexemeForm": { + "seh": "pangiz" + }, + "CitationForm": { + "seh": "pangiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50d9fda5-66fd-4161-afdc-e43a62fbf669", + "Order": 1, + "DeletedAt": null, + "EntryId": "45f75244-8464-4fdb-93ec-18a5a8425189", + "Definition": {}, + "Gloss": { + "en": "show", + "pt": "mostrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "19987244-b1aa-42ca-95f0-f0eb67c2e87f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "50d9fda5-66fd-4161-afdc-e43a62fbf669", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6efbec30-8255-4bd3-89c4-cdc5ee41d764", + "DeletedAt": null, + "LexemeForm": { + "seh": "nja" + }, + "CitationForm": { + "seh": "panja" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4e05471f-c25c-49b6-bde0-ef91ee7a87d7", + "Order": 1, + "DeletedAt": null, + "EntryId": "6efbec30-8255-4bd3-89c4-cdc5ee41d764", + "Definition": {}, + "Gloss": { + "en": "outside of", + "pt": "fora de" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f696a0aa-7975-41cf-84cd-5c4ba9b659c4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "4e05471f-c25c-49b6-bde0-ef91ee7a87d7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "712b9c10-d811-49b9-82c4-e601a13c5091", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsi" + }, + "CitationForm": { + "seh": "pantsi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d761126d-b38c-44ee-99c5-fcca3c1d8595", + "Order": 1, + "DeletedAt": null, + "EntryId": "712b9c10-d811-49b9-82c4-e601a13c5091", + "Definition": { + "en": { + "Spans": [ + { + "Text": "underneath, at the bottom", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "down", + "pt": "em baixo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3fd8a580-74de-46c3-aad9-744f8951da92", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kalani pantsi.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "Sit down please.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Sente-se aqui.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d761126d-b38c-44ee-99c5-fcca3c1d8595", + "DeletedAt": null + } + ] + }, + { + "Id": "169ce7e6-e82d-4e74-8ac1-3c36f8882e71", + "Order": 2, + "DeletedAt": null, + "EntryId": "712b9c10-d811-49b9-82c4-e601a13c5091", + "Definition": {}, + "Gloss": { + "en": "on the ground", + "pt": "no cha\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c969339a-41d8-4f20-a745-59b5fbf99c07", + "DeletedAt": null, + "LexemeForm": { + "seh": "pedzi" + }, + "CitationForm": { + "seh": "papedzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef2a35dd-f9b5-4411-83b0-947b8f42060d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c969339a-41d8-4f20-a745-59b5fbf99c07", + "Definition": {}, + "Gloss": { + "en": "lying", + "pt": "em va\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b79582fc-1942-49ea-a62f-c669e8bb3178", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ef2a35dd-f9b5-4411-83b0-947b8f42060d", + "DeletedAt": null + } + ] + }, + { + "Id": "8785332a-5ca6-4ff9-b13a-1c8788ce703e", + "Order": 2, + "DeletedAt": null, + "EntryId": "c969339a-41d8-4f20-a745-59b5fbf99c07", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a place that has nothing", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "empty", + "pt": "vazio" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0e39c805-c796-4fe3-bafe-3c916055c9bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "papi" + }, + "CitationForm": { + "seh": "papi?" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7b954282-dabd-4a06-bfd7-4ab1d972d915", + "Order": 1, + "DeletedAt": null, + "EntryId": "0e39c805-c796-4fe3-bafe-3c916055c9bd", + "Definition": {}, + "Gloss": { + "en": "where?", + "pt": "onde?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "929b624f-dddf-402b-9a93-5e20f0b5bb5a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mandiceka papi? Mandiceka kupi?", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Onde no corpo cortou-me? Em que zona de terra me cortou?", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "7b954282-dabd-4a06-bfd7-4ab1d972d915", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2ae1253b-2aa1-4c9a-bea7-f7c0f4bc46b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "parata" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d196009f-a66a-4004-9a72-cfb51309720a", + "Order": 1, + "DeletedAt": null, + "EntryId": "2ae1253b-2aa1-4c9a-bea7-f7c0f4bc46b7", + "Definition": {}, + "Gloss": { + "en": "silver", + "pt": "prata" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3860d159-d064-478c-9b07-78d3ed0bf924", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d196009f-a66a-4004-9a72-cfb51309720a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5bd31e68-8d84-44a3-b328-adfdecdf0aee", + "DeletedAt": null, + "LexemeForm": { + "seh": "paratu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "39572c63-f53e-474b-bbcb-f16a69029fd3", + "Order": 1, + "DeletedAt": null, + "EntryId": "5bd31e68-8d84-44a3-b328-adfdecdf0aee", + "Definition": {}, + "Gloss": { + "en": "plate", + "pt": "prato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf78dd6b-09f2-4ebb-89e4-1028cc77a714", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "39572c63-f53e-474b-bbcb-f16a69029fd3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7ba2ebe-9e6b-4a90-b837-7b58cb3e4609", + "DeletedAt": null, + "LexemeForm": { + "seh": "pas" + }, + "CitationForm": { + "seh": "pasa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d578529c-8a83-4ee1-b74c-6818d74f6761", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7ba2ebe-9e6b-4a90-b837-7b58cb3e4609", + "Definition": {}, + "Gloss": { + "en": "give", + "pt": "dar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a41f633-ab9c-4636-a344-bc36f60c0438", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d578529c-8a83-4ee1-b74c-6818d74f6761", + "DeletedAt": null + } + ] + }, + { + "Id": "85493eee-1e87-42b3-97f3-de8668ed9d5e", + "Order": 2, + "DeletedAt": null, + "EntryId": "f7ba2ebe-9e6b-4a90-b837-7b58cb3e4609", + "Definition": {}, + "Gloss": { + "en": "serve", + "pt": "servir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3943d4e-1e52-44c6-b245-65b5f29e1887", + "DeletedAt": null, + "LexemeForm": { + "seh": "patali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "75d60067-185b-4e4c-98a1-a0c8d39f3f31", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3943d4e-1e52-44c6-b245-65b5f29e1887", + "Definition": {}, + "Gloss": { + "en": "far away", + "pt": "muito longe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b41fddf7-8865-4981-9454-1299b039d348", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "75d60067-185b-4e4c-98a1-a0c8d39f3f31", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c4fe8236-caa5-46c1-9308-9ae6e65a395e", + "DeletedAt": null, + "LexemeForm": { + "seh": "patat" + }, + "CitationForm": { + "seh": "patata" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65861da3-3916-4daa-83ed-56289478af5e", + "Order": 1, + "DeletedAt": null, + "EntryId": "c4fe8236-caa5-46c1-9308-9ae6e65a395e", + "Definition": {}, + "Gloss": { + "en": "pillage", + "pt": "sacar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4cb3c0af-d605-4217-8594-c13decfb48d6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "65861da3-3916-4daa-83ed-56289478af5e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8a47a8c4-5002-44cf-874d-ddf630cf2bd6", + "DeletedAt": null, + "LexemeForm": { + "seh": "patsogolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7871daba-766d-4236-a452-353b1d106d6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "8a47a8c4-5002-44cf-874d-ddf630cf2bd6", + "Definition": {}, + "Gloss": { + "en": "in front of", + "pt": "frente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b36d4e25-2170-4813-9388-728cacb68c60", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7871daba-766d-4236-a452-353b1d106d6f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cffdc161-6b27-486a-9547-ce90cea6b705", + "DeletedAt": null, + "LexemeForm": { + "seh": "pember" + }, + "CitationForm": { + "seh": "pembera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "954048a2-1a8e-44cb-8203-8b52aa29c3f0", + "Order": 1, + "DeletedAt": null, + "EntryId": "cffdc161-6b27-486a-9547-ce90cea6b705", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ganhar raza\u0303o no acusac\u0327a\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "proved innocent", + "pt": "provado inocente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84", + "Name": { + "en": "Acquit" + }, + "Code": "4.7.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "6b39e8b4-6994-413c-9915-2c03ca043418", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "954048a2-1a8e-44cb-8203-8b52aa29c3f0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ed4db00-cf99-4bca-9df0-7cd8bb8dedb8", + "DeletedAt": null, + "LexemeForm": { + "seh": "penepi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d016eb89-0061-448c-aa42-5890289bb9ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ed4db00-cf99-4bca-9df0-7cd8bb8dedb8", + "Definition": {}, + "Gloss": { + "en": "this very one", + "pt": "este mesmo" + }, + "PartOfSpeech": { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6114523a-b2d9-45b7-bf31-6858624112b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "penepo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "84fb19ee-6e27-40c3-b5f4-c7cc6025d636", + "Order": 1, + "DeletedAt": null, + "EntryId": "6114523a-b2d9-45b7-bf31-6858624112b3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "at that very one or place", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "at that very place", + "pt": "ali\u0301 mesmo" + }, + "PartOfSpeech": { + "Id": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "Name": { + "en": "Demonstrative6", + "pt": "Demonstrativo6" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2976cd0f-f9a0-486b-a025-0142ab9888fb", + "DeletedAt": null, + "LexemeForm": { + "seh": "peno" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "81cc027d-824b-4fc1-9808-36d64a737ac2", + "Order": 1, + "DeletedAt": null, + "EntryId": "2976cd0f-f9a0-486b-a025-0142ab9888fb", + "Definition": {}, + "Gloss": { + "en": "or", + "pt": "ou" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f09b07d2-74c5-466c-b0f8-043214518db0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Jac; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "81cc027d-824b-4fc1-9808-36d64a737ac2", + "DeletedAt": null + } + ] + }, + { + "Id": "d8a94a11-85f5-4067-88ef-1d5c78b4da4a", + "Order": 2, + "DeletedAt": null, + "EntryId": "2976cd0f-f9a0-486b-a025-0142ab9888fb", + "Definition": {}, + "Gloss": { + "en": "I don\u0027t know", + "pt": "na\u0303o sei" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "656de5b9-9346-42a1-835a-2c6ef748dfde", + "DeletedAt": null, + "LexemeForm": { + "seh": "penul" + }, + "CitationForm": { + "seh": "penula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84e0a019-cb57-458a-823e-d32007d7a545", + "Order": 1, + "DeletedAt": null, + "EntryId": "656de5b9-9346-42a1-835a-2c6ef748dfde", + "Definition": {}, + "Gloss": { + "en": "doubt", + "pt": "duvidar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "785d81bc-bb91-4c44-8c45-22633225cd61", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "84e0a019-cb57-458a-823e-d32007d7a545", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eff2c77d-7d33-419e-a904-b75012cad660", + "DeletedAt": null, + "LexemeForm": { + "seh": "pepes" + }, + "CitationForm": { + "seh": "pepesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5cadb5a3-cbd7-46b5-b4cb-ef93b8ffd14b", + "Order": 1, + "DeletedAt": null, + "EntryId": "eff2c77d-7d33-419e-a904-b75012cad660", + "Definition": {}, + "Gloss": { + "en": "blow", + "pt": "soprar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e91eb37-077a-4378-8c5f-193df49b8748", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist (phephesa); Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5cadb5a3-cbd7-46b5-b4cb-ef93b8ffd14b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "506595a3-0e16-4ffa-bb23-468da292b7b8", + "DeletedAt": null, + "LexemeForm": { + "seh": "perek" + }, + "CitationForm": { + "seh": "pereka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9462d765-6d98-4b26-9e9b-bb4a4d2ee805", + "Order": 1, + "DeletedAt": null, + "EntryId": "506595a3-0e16-4ffa-bb23-468da292b7b8", + "Definition": {}, + "Gloss": { + "en": "hand over", + "pt": "entregar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5ed68589-d763-4fa7-912f-22ce6f531434", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musapereka takhuta kuna Mulungu", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "9462d765-6d98-4b26-9e9b-bb4a4d2ee805", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6970b4ee-5729-4b47-8953-96ffa37e3676", + "DeletedAt": null, + "LexemeForm": { + "seh": "pereker" + }, + "CitationForm": { + "seh": "perekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbd52040-b1d0-4c01-af17-accc2d5ae22e", + "Order": 1, + "DeletedAt": null, + "EntryId": "6970b4ee-5729-4b47-8953-96ffa37e3676", + "Definition": {}, + "Gloss": { + "en": "accompany", + "pt": "acompanhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5d542915-85b4-4834-8282-c027e3b9451d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cbd52040-b1d0-4c01-af17-accc2d5ae22e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "DeletedAt": null, + "LexemeForm": { + "seh": "pezi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", + "Order": 1, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "false", + "pt": "falso" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "22298b53-d837-4cb3-9dd7-213d684a0690", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mulungu wa pezi, a lungu a pezi, cinthu ca pezi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "deus falso, deuses falsas, coisa falsa", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazezep", + "Ws": "en" + } + ] + }, + "SenseId": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", + "DeletedAt": null + }, + { + "Id": "9fda8e92-8c0c-452c-a5e3-e5173f33135b", + "Order": 2, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", + "DeletedAt": null + } + ] + }, + { + "Id": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", + "Order": 2, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "in vain", + "pt": "em va\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3cd6d639-85da-411c-bd79-4c6074369ecf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkhabe cakudya, ndalimira pezi.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o ha\u0301 comida, cultivei em va\u0303o.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", + "DeletedAt": null + } + ] + }, + { + "Id": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", + "Order": 3, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "freely", + "pt": "de grac\u0327a" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67890ef6-b55b-40c4-a498-33704a1d49d2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwapasiwa pezi, apasenimbo pezi.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Receberam de grac\u0327a, de-los de grac\u0327a", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", + "DeletedAt": null + } + ] + }, + { + "Id": "d4106031-2175-4339-951b-86db166cd624", + "Order": 4, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "if not", + "pt": "sena\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "52059fd0-2ef2-4b2c-9c5b-35214da1cb40", + "DeletedAt": null, + "LexemeForm": { + "seh": "pezi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "71fcd994-9fdf-41b5-a70e-4fff1395ec6b", + "Order": 1, + "DeletedAt": null, + "EntryId": "52059fd0-2ef2-4b2c-9c5b-35214da1cb40", + "Definition": {}, + "Gloss": { + "en": "nude", + "pt": "nu\u0301" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "625f5c1d-2c59-41ca-92f5-08baf7a69a2f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Munthu ali pezi.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "Person is nude.", + "Ws": "pt" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Pessoa esta\u0301 nu\u0301.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "71fcd994-9fdf-41b5-a70e-4fff1395ec6b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c0cd8307-88e0-4cb0-b719-819073a90562", + "DeletedAt": null, + "LexemeForm": { + "seh": "fafa" + }, + "CitationForm": { + "seh": "pfafa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73ac71aa-df75-446e-9939-6baced57d246", + "Order": 1, + "DeletedAt": null, + "EntryId": "c0cd8307-88e0-4cb0-b719-819073a90562", + "Definition": {}, + "Gloss": { + "en": "liver", + "pt": "figado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efd5c156-2c49-429b-b06f-b91bc2aa3595", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist, George", + "Ws": "en" + } + ] + }, + "SenseId": "73ac71aa-df75-446e-9939-6baced57d246", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57297a7e-451b-4411-a575-6a36a974a626", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfigu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca4a133b-e0f9-4a56-b60f-16718a39ddae", + "Order": 1, + "DeletedAt": null, + "EntryId": "57297a7e-451b-4411-a575-6a36a974a626", + "Definition": {}, + "Gloss": { + "en": "banana", + "pt": "banana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "49084a0c-55e5-432e-8c07-a5288d9b8d31", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ca4a133b-e0f9-4a56-b60f-16718a39ddae", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad6b068f-bf71-4f91-8a17-438a194c5a2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "fua" + }, + "CitationForm": { + "seh": "pfua" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e8eff102-aef9-45bf-94e7-aa718bf94a73", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad6b068f-bf71-4f91-8a17-438a194c5a2d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a pyramidal stone used to hold pots over a cooking fire", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hearth stone", + "pt": "pedra de lar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fdc8643e-4d23-41ac-a2ea-a39de3a221fd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,19; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e8eff102-aef9-45bf-94e7-aa718bf94a73", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bb6d076-92e1-4f15-af15-2f01acba2088", + "DeletedAt": null, + "LexemeForm": { + "seh": "fufu" + }, + "CitationForm": { + "seh": "pfufu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ac4751d-c0f9-40c7-ad01-f392c2424abd", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bb6d076-92e1-4f15-af15-2f01acba2088", + "Definition": {}, + "Gloss": { + "en": "wall", + "pt": "parede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c1acbdaa-a19e-4df7-b3d8-f144e2ba879d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1ac4751d-c0f9-40c7-ad01-f392c2424abd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "412c22a5-5840-49ac-af40-2fdbb93501ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfum" + }, + "CitationForm": { + "seh": "pfuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6e831179-7140-424a-8de9-4f64dc62f902", + "Order": 1, + "DeletedAt": null, + "EntryId": "412c22a5-5840-49ac-af40-2fdbb93501ef", + "Definition": {}, + "Gloss": { + "en": "get rich", + "pt": "enriquecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "866ce198-1f8c-4d45-be89-6e97aa04cc93", + "DeletedAt": null, + "LexemeForm": { + "seh": "fumbi" + }, + "CitationForm": { + "seh": "pfumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1d4fa07-ebf9-40ab-a269-cebbd8e8e4e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "866ce198-1f8c-4d45-be89-6e97aa04cc93", + "Definition": { + "en": { + "Spans": [ + { + "Text": "dust, powder", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dust", + "pt": "po\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d6de2535-4d21-44fb-80b8-01c0e71de6d9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:13; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c1d4fa07-ebf9-40ab-a269-cebbd8e8e4e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0ffeb52b-5052-4cf5-88bf-5cde438179f2", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfung" + }, + "CitationForm": { + "seh": "pfunga" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d96c0e30-122f-4965-b2f2-7a28c5919eda", + "Order": 1, + "DeletedAt": null, + "EntryId": "0ffeb52b-5052-4cf5-88bf-5cde438179f2", + "Definition": {}, + "Gloss": { + "en": "close", + "pt": "fechar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9723cad8-6330-430b-981e-6080f0a00832", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "d96c0e30-122f-4965-b2f2-7a28c5919eda", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ac9350d1-9fdc-4819-9283-ea9a2c870488", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfungul" + }, + "CitationForm": { + "seh": "pfungula" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "722a07be-8f96-4584-896b-5d4a1be2ff09", + "Order": 1, + "DeletedAt": null, + "EntryId": "ac9350d1-9fdc-4819-9283-ea9a2c870488", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "abrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2703b1a-942f-4dfb-93cf-fa8ed1b62a9e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "722a07be-8f96-4584-896b-5d4a1be2ff09", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2f6e91f0-45c8-4996-a83f-7deabec2e239", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunz" + }, + "CitationForm": { + "seh": "pfunza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f3702c7-fb24-4c15-8848-170402959bce", + "Order": 1, + "DeletedAt": null, + "EntryId": "2f6e91f0-45c8-4996-a83f-7deabec2e239", + "Definition": {}, + "Gloss": { + "en": "study", + "pt": "estudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7504741-9eaa-45a0-b5ae-17dc47c9e3f1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2f3702c7-fb24-4c15-8848-170402959bce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a83b8424-0c70-4258-8a9d-089a9aba2ac3", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunzis" + }, + "CitationForm": { + "seh": "pfunzisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ec31552-edd9-4071-9e74-ea6e4ea8cf26", + "Order": 1, + "DeletedAt": null, + "EntryId": "a83b8424-0c70-4258-8a9d-089a9aba2ac3", + "Definition": {}, + "Gloss": { + "en": "teach", + "pt": "ensinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71443fff-cc03-44fd-b5ad-892111fe45bb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7ec31552-edd9-4071-9e74-ea6e4ea8cf26", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "083fa3ea-1d1f-40a9-8d88-63722de7332f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ph" + }, + "CitationForm": { + "seh": "pha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "34c84c1d-1627-4a45-805d-8a613c39f8fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "083fa3ea-1d1f-40a9-8d88-63722de7332f", + "Definition": {}, + "Gloss": { + "en": "kill", + "pt": "matar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "b8d2fdb9-22ea-4040-8abb-aeeff0399f23", + "Name": { + "en": "Kill" + }, + "Code": "2.6.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "1770d209-608c-4385-9339-cb6ee569fefb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo037; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "34c84c1d-1627-4a45-805d-8a613c39f8fb", + "DeletedAt": null + } + ] + }, + { + "Id": "e1928272-94d5-4a99-b51c-8c79299b2b06", + "Order": 2, + "DeletedAt": null, + "EntryId": "083fa3ea-1d1f-40a9-8d88-63722de7332f", + "Definition": {}, + "Gloss": { + "en": "hurt", + "pt": "fazer doer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0ca8335-d1c8-4042-b61f-757efca05736", + "DeletedAt": null, + "LexemeForm": { + "seh": "phamir" + }, + "CitationForm": { + "seh": "phamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86c9f6ef-1382-442b-81c5-535496307803", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0ca8335-d1c8-4042-b61f-757efca05736", + "Definition": {}, + "Gloss": { + "en": "rest on", + "pt": "pousar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b238fcb0-6370-46e6-8c47-0c7219df4e16", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "86c9f6ef-1382-442b-81c5-535496307803", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "055bb251-95da-4959-92c1-aa7bab5cc7c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "panga" + }, + "CitationForm": { + "seh": "phanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "55e6af15-103c-4b41-9e10-da36ee20f5da", + "Order": 1, + "DeletedAt": null, + "EntryId": "055bb251-95da-4959-92c1-aa7bab5cc7c0", + "Definition": {}, + "Gloss": { + "en": "bandit", + "pt": "bandido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e9d59cae-b01a-43c1-84e4-595e601c3d23", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "55e6af15-103c-4b41-9e10-da36ee20f5da", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec3b3f9d-9f6a-4165-90e3-f616f9c40cbc", + "DeletedAt": null, + "LexemeForm": { + "seh": "panya" + }, + "CitationForm": { + "seh": "phanya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "49ea4ff8-7c73-4fad-950d-b3d2dec9ad8b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec3b3f9d-9f6a-4165-90e3-f616f9c40cbc", + "Definition": {}, + "Gloss": { + "en": "field rat", + "pt": "rato de campo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "602a507e-eab9-41ad-90b4-4cd82abf0d49", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "49ea4ff8-7c73-4fad-950d-b3d2dec9ad8b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72473c5b-250d-49e4-964c-7612c4ab3cdd", + "DeletedAt": null, + "LexemeForm": { + "seh": "phanz" + }, + "CitationForm": { + "seh": "phanza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "908cc39a-c4ae-4aab-a8a1-4cb2794ef409", + "Order": 1, + "DeletedAt": null, + "EntryId": "72473c5b-250d-49e4-964c-7612c4ab3cdd", + "Definition": {}, + "Gloss": { + "en": "diarrhea", + "pt": "diarreia" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "39dcb6b9-94df-45be-a128-c14c7a9dcdbd", + "Name": { + "en": "Stomach illness" + }, + "Code": "2.5.2.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ac60ca45-3128-4762-a811-ec365a24a0ff", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "908cc39a-c4ae-4aab-a8a1-4cb2794ef409", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "phat" + }, + "CitationForm": { + "seh": "phata" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98c38a96-d34b-4581-aca1-17ff2dc2c62e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "Definition": {}, + "Gloss": { + "en": "take ahold", + "pt": "pegar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3a170279-8e61-41ae-ab1f-3817c343e8cf", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "98c38a96-d34b-4581-aca1-17ff2dc2c62e", + "DeletedAt": null + } + ] + }, + { + "Id": "4fe54fea-afdf-4ce3-8789-da578722a5f6", + "Order": 2, + "DeletedAt": null, + "EntryId": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "Definition": {}, + "Gloss": { + "en": "grab", + "pt": "agarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c300c23f-9269-4a24-8be8-b91847605697", + "Order": 3, + "DeletedAt": null, + "EntryId": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "Definition": {}, + "Gloss": { + "en": "do", + "pt": "fazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2515b1d1-0f74-480f-804d-fe44e405034f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phataniz" + }, + "CitationForm": { + "seh": "phataniza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1665923c-551f-4e87-aa3e-a0c01859612c", + "Order": 1, + "DeletedAt": null, + "EntryId": "2515b1d1-0f74-480f-804d-fe44e405034f", + "Definition": {}, + "Gloss": { + "en": "connect", + "pt": "ligar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b444fc5-2edb-4b9b-8c09-558cdd2381d8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1665923c-551f-4e87-aa3e-a0c01859612c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45690817-2993-4cad-85b0-5bae2dddf01e", + "DeletedAt": null, + "LexemeForm": { + "seh": "paza" + }, + "CitationForm": { + "seh": "phaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f17ee35f-9e3a-47b7-8aed-0abffa9e539e", + "Order": 1, + "DeletedAt": null, + "EntryId": "45690817-2993-4cad-85b0-5bae2dddf01e", + "Definition": {}, + "Gloss": { + "en": "hoe", + "pt": "enxada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "399bacf2-a5bd-478a-a7b6-fa7e49d1656f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f17ee35f-9e3a-47b7-8aed-0abffa9e539e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2572149b-1b1d-43ab-8edc-b2918ad33499", + "DeletedAt": null, + "LexemeForm": { + "seh": "phedz" + }, + "CitationForm": { + "seh": "phedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5607b315-66cf-4c69-9cc1-54040e31e662", + "Order": 1, + "DeletedAt": null, + "EntryId": "2572149b-1b1d-43ab-8edc-b2918ad33499", + "Definition": {}, + "Gloss": { + "en": "help", + "pt": "ajudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de54033f-6a9d-48e3-b825-7ce8024a0733", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungo mbakuphedzeni.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Deus te abenc\u0327o\u0303e.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "5607b315-66cf-4c69-9cc1-54040e31e662", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8dfc98df-d122-40d9-990c-a83beede064d", + "DeletedAt": null, + "LexemeForm": { + "seh": "phek" + }, + "CitationForm": { + "seh": "pheka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4076b0ba-747a-4966-ad7e-4caa4c2cabc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "8dfc98df-d122-40d9-990c-a83beede064d", + "Definition": {}, + "Gloss": { + "en": "be wounded", + "pt": "ferir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "25d025df-a858-4e3b-afe8-c9b5823de3d1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "4076b0ba-747a-4966-ad7e-4caa4c2cabc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "611d0fe9-b361-4bb1-a07a-8037efce1d7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phemb" + }, + "CitationForm": { + "seh": "phemba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc267b94-4a33-4731-aaaf-d484830ec3d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "611d0fe9-b361-4bb1-a07a-8037efce1d7f", + "Definition": {}, + "Gloss": { + "en": "ask for", + "pt": "pedir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eaa3d8b8-c851-4474-bc62-d09fdd7d5985", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "dc267b94-4a33-4731-aaaf-d484830ec3d4", + "DeletedAt": null + }, + { + "Id": "ebfa83e0-3ad8-4615-a739-c6020769dc73", + "Order": 2, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "dc267b94-4a33-4731-aaaf-d484830ec3d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af2460ff-f65e-49ff-8e10-a47ba5f2ff98", + "DeletedAt": null, + "LexemeForm": { + "seh": "phember" + }, + "CitationForm": { + "seh": "phembera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa981b11-04ff-4af2-ae44-796234cb159b", + "Order": 1, + "DeletedAt": null, + "EntryId": "af2460ff-f65e-49ff-8e10-a47ba5f2ff98", + "Definition": {}, + "Gloss": { + "en": "pray", + "pt": "orar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6086f990-f49e-4db7-8206-ce1af2ab916f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "aa981b11-04ff-4af2-ae44-796234cb159b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5864651e-303c-46a7-afc5-b9a69060971b", + "DeletedAt": null, + "LexemeForm": { + "seh": "phembw" + }, + "CitationForm": { + "seh": "phembwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "246c0387-eb1b-44f3-9b1f-a7bdaa8df9b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "5864651e-303c-46a7-afc5-b9a69060971b", + "Definition": {}, + "Gloss": { + "en": "be requested", + "pt": "ser pedido" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f10341c4-ec1e-4829-92eb-97a4a5a6e58b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "246c0387-eb1b-44f3-9b1f-a7bdaa8df9b5", + "DeletedAt": null + } + ] + }, + { + "Id": "06977799-bc47-4b69-ac51-4e669399e821", + "Order": 2, + "DeletedAt": null, + "EntryId": "5864651e-303c-46a7-afc5-b9a69060971b", + "Definition": {}, + "Gloss": { + "en": "invite", + "pt": "convite" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "873acf26-bab1-47a3-8cf8-09e845f31c3e", + "DeletedAt": null, + "LexemeForm": { + "seh": "pesi" + }, + "CitationForm": { + "seh": "phesi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38351af5-160a-449f-b6f5-334748970449", + "Order": 1, + "DeletedAt": null, + "EntryId": "873acf26-bab1-47a3-8cf8-09e845f31c3e", + "Definition": {}, + "Gloss": { + "en": "cane", + "pt": "canic\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e68155f5-1b10-45c0-ab1c-fc9178920142", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "38351af5-160a-449f-b6f5-334748970449", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56f730bb-c2a3-47ed-97e9-c5937fdef40e", + "DeletedAt": null, + "LexemeForm": { + "seh": "phewa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f28a937-b7ad-4ce4-b967-9faad084543b", + "Order": 1, + "DeletedAt": null, + "EntryId": "56f730bb-c2a3-47ed-97e9-c5937fdef40e", + "Definition": {}, + "Gloss": { + "en": "shoulder", + "pt": "ombro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "60f1b7c4-67bb-4fbe-8efb-a0b0c3cf1a31", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2f28a937-b7ad-4ce4-b967-9faad084543b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "945ebef5-7a27-48fe-96f8-ee8bb9eb72eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "phik" + }, + "CitationForm": { + "seh": "phika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58ed32da-a923-470e-b739-1ee2521c1dbb", + "Order": 1, + "DeletedAt": null, + "EntryId": "945ebef5-7a27-48fe-96f8-ee8bb9eb72eb", + "Definition": {}, + "Gloss": { + "en": "cook", + "pt": "cozinhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "1fda68d4-5941-4695-b656-090d603a3344", + "Name": { + "en": "Food preparation" + }, + "Code": "5.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "139e7671-161a-4ba5-a8b2-6895d46d2aae", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "58ed32da-a923-470e-b739-1ee2521c1dbb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fad65192-562f-478b-b39a-6987f2b3e67e", + "DeletedAt": null, + "LexemeForm": { + "seh": "pindi" + }, + "CitationForm": { + "seh": "phindi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d0e03952-92d9-4bf5-b7ac-d63a37ee3910", + "Order": 1, + "DeletedAt": null, + "EntryId": "fad65192-562f-478b-b39a-6987f2b3e67e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "part, peice", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "part", + "pt": "pedac\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dd5ce2aa-87be-4c11-bdb6-e4f5843fbee2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d0e03952-92d9-4bf5-b7ac-d63a37ee3910", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f2a1c43-b4a2-4e3a-b204-28a56ff12df6", + "DeletedAt": null, + "LexemeForm": { + "seh": "phindudz" + }, + "CitationForm": { + "seh": "phindudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "766a0dcd-11a0-48dc-ba1e-53c6d6a63354", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f2a1c43-b4a2-4e3a-b204-28a56ff12df6", + "Definition": {}, + "Gloss": { + "en": "change", + "pt": "mudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1272ad41-c183-4b2f-89a8-b3a814d67264", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "766a0dcd-11a0-48dc-ba1e-53c6d6a63354", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2892652-cc90-4007-b0a5-e44a40783c05", + "DeletedAt": null, + "LexemeForm": { + "seh": "phinduk" + }, + "CitationForm": { + "seh": "phinduka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0e15ca96-23ed-4faa-87c8-ca7a0d64e87f", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2892652-cc90-4007-b0a5-e44a40783c05", + "Definition": {}, + "Gloss": { + "en": "change oneself", + "pt": "mudar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aaa6af45-dd3d-43c6-9a5e-ced850d5e5dd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Mount of transfiguration", + "Ws": "en" + } + ] + }, + "SenseId": "0e15ca96-23ed-4faa-87c8-ca7a0d64e87f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a662234-0a7f-4978-8b8f-d37bffac14b6", + "DeletedAt": null, + "LexemeForm": { + "seh": "phingidz" + }, + "CitationForm": { + "seh": "phingidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b64743d-8234-4efd-bee6-01929aa5925b", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a662234-0a7f-4978-8b8f-d37bffac14b6", + "Definition": {}, + "Gloss": { + "en": "dirty", + "pt": "sujar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed89614b-5248-4f0a-8741-579ca0668d8d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "4b64743d-8234-4efd-bee6-01929aa5925b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f00863e-8570-4f94-9ff4-7d8b0b44f096", + "DeletedAt": null, + "LexemeForm": { + "seh": "phingidzik" + }, + "CitationForm": { + "seh": "phingidzika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc721689-3c6e-4e3d-8b48-304f1144ee8a", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f00863e-8570-4f94-9ff4-7d8b0b44f096", + "Definition": {}, + "Gloss": { + "en": "get dirty", + "pt": "sujar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "46ad1505-9049-41d8-831b-768f46f12500", + "Name": { + "en": "Clean, dirty" + }, + "Code": "5.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ab5f5c89-7ec9-49b7-b25f-31dcb7255036", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "cc721689-3c6e-4e3d-8b48-304f1144ee8a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "baa4ac28-a084-4a57-b4a8-1e58278c74ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "pira" + }, + "CitationForm": { + "seh": "phira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2da1985b-4c8e-48c6-b819-be26a601b9c1", + "Order": 1, + "DeletedAt": null, + "EntryId": "baa4ac28-a084-4a57-b4a8-1e58278c74ef", + "Definition": { + "en": { + "Spans": [ + { + "Text": "various types of millet", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "mapira, milho miu\u0301do", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "millet", + "pt": "mapira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b18ddd3-c8bd-4041-be87-6c4722d53eb0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:13", + "Ws": "en" + } + ] + }, + "SenseId": "2da1985b-4c8e-48c6-b819-be26a601b9c1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b479779f-689b-4e2c-949c-e5c037ae5f2f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phiramanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4b483281-d3c1-432d-a5ff-1e7df777fc23", + "Order": 1, + "DeletedAt": null, + "EntryId": "b479779f-689b-4e2c-949c-e5c037ae5f2f", + "Definition": {}, + "Gloss": { + "en": "corn", + "pt": "milho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d30c1ff4-e25d-4a9a-9cf9-4fad2c21de44", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4b483281-d3c1-432d-a5ff-1e7df777fc23", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "130c1a0e-2905-463e-a3a2-498d92f069fd", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": { + "seh": "phiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb4d0840-35ad-4b51-a991-d3caac72b07b", + "Order": 1, + "DeletedAt": null, + "EntryId": "130c1a0e-2905-463e-a3a2-498d92f069fd", + "Definition": {}, + "Gloss": { + "en": "mountain", + "pt": "montanha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae", + "Name": { + "en": "Mountain" + }, + "Code": "1.2.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fdf2d7fe-bd2c-4e17-ba24-970a6fe778bc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo; Moreira:19; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "fb4d0840-35ad-4b51-a991-d3caac72b07b", + "DeletedAt": null + } + ] + }, + { + "Id": "9c5ab5d0-b755-41e7-8bfc-38cf4ac7476a", + "Order": 2, + "DeletedAt": null, + "EntryId": "130c1a0e-2905-463e-a3a2-498d92f069fd", + "Definition": {}, + "Gloss": { + "en": "hill", + "pt": "monte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cafc5c7d-dc47-418f-bd2a-d0b02c05fc47", + "DeletedAt": null, + "LexemeForm": { + "seh": "phol" + }, + "CitationForm": { + "seh": "phola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a29d6ebc-5c8a-4267-93f5-7acbb56f0a82", + "Order": 1, + "DeletedAt": null, + "EntryId": "cafc5c7d-dc47-418f-bd2a-d0b02c05fc47", + "Definition": {}, + "Gloss": { + "en": "stab", + "pt": "espetar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3ccc928-91e8-4793-b791-19c685368b95", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a29d6ebc-5c8a-4267-93f5-7acbb56f0a82", + "DeletedAt": null + } + ] + }, + { + "Id": "0f025d44-7074-4e04-868e-cc0a74db6931", + "Order": 2, + "DeletedAt": null, + "EntryId": "cafc5c7d-dc47-418f-bd2a-d0b02c05fc47", + "Definition": {}, + "Gloss": { + "en": "drill", + "pt": "furar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b9f98b12-4842-4d4a-a605-39446bb747b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "phony" + }, + "CitationForm": { + "seh": "phonya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "310bbea4-dfd1-44b0-b6e5-cfb9ee73fd33", + "Order": 1, + "DeletedAt": null, + "EntryId": "b9f98b12-4842-4d4a-a605-39446bb747b7", + "Definition": {}, + "Gloss": { + "en": "break", + "pt": "quebrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8571196f-b183-43ef-a73b-cc858a334e55", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "310bbea4-dfd1-44b0-b6e5-cfb9ee73fd33", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "659569fd-078f-4200-8e5a-50e7209847d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "phop" + }, + "CitationForm": { + "seh": "phopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d741e8d-7136-465d-8d8c-f699482d7e7a", + "Order": 1, + "DeletedAt": null, + "EntryId": "659569fd-078f-4200-8e5a-50e7209847d0", + "Definition": {}, + "Gloss": { + "en": "close lid", + "pt": "tampar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88646d9b-3b72-412c-8c65-e5bf67234343", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1d741e8d-7136-465d-8d8c-f699482d7e7a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c14a0da6-6e85-4d49-ab80-b47e7fec341a", + "DeletedAt": null, + "LexemeForm": { + "seh": "pobvu" + }, + "CitationForm": { + "seh": "phovu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bfb6430-34b1-4953-ac6f-1d14a55368e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c14a0da6-6e85-4d49-ab80-b47e7fec341a", + "Definition": {}, + "Gloss": { + "en": "foam", + "pt": "espuma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00f82257-7868-4d91-a555-b433d49be043", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4bfb6430-34b1-4953-ac6f-1d14a55368e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2f3b962-9d77-41ba-85b2-941e960cda02", + "DeletedAt": null, + "LexemeForm": { + "seh": "phul" + }, + "CitationForm": { + "seh": "phula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e68fa0ae-00e9-401e-8939-1cdbcbf38a8f", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2f3b962-9d77-41ba-85b2-941e960cda02", + "Definition": {}, + "Gloss": { + "en": "spit", + "pt": "cuspir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "897f89de-a5e3-44bd-b2e9-3ce0f4ce983d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e68fa0ae-00e9-401e-8939-1cdbcbf38a8f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "53b1babb-f932-4745-abce-20d9695e2d63", + "DeletedAt": null, + "LexemeForm": { + "seh": "puli" + }, + "CitationForm": { + "seh": "phuli" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22454890-7c2d-4a3b-beaf-c7a5a4dc141d", + "Order": 1, + "DeletedAt": null, + "EntryId": "53b1babb-f932-4745-abce-20d9695e2d63", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bunch of leaves or plants", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "molho de folhas ou planta", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bunch", + "pt": "molho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0cda28d-49a8-4d9b-b8d8-950262c19369", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "22454890-7c2d-4a3b-beaf-c7a5a4dc141d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7af80b86-3062-4027-acaf-ab1ab7b811a6", + "DeletedAt": null, + "LexemeForm": { + "seh": "pute" + }, + "CitationForm": { + "seh": "phute" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98ae9c6a-49c6-4f2f-ae64-bcd03ce4e6c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "7af80b86-3062-4027-acaf-ab1ab7b811a6", + "Definition": {}, + "Gloss": { + "en": "abcess", + "pt": "abcesso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "77f0d0dc-61ee-4373-9879-35a7059bd892", + "Name": { + "en": "Tooth decay" + }, + "Code": "2.5.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2dfe7213-283d-49ad-9b49-aabaa666dac2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "98ae9c6a-49c6-4f2f-ae64-bcd03ce4e6c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b46e4739-7153-4883-b2c3-908365df67d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "putu" + }, + "CitationForm": { + "seh": "phutu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2581c234-84f5-4ef9-ae06-3be67d528c6a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b46e4739-7153-4883-b2c3-908365df67d3", + "Definition": {}, + "Gloss": { + "en": "cheek", + "pt": "buchecha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ad235e50-5075-4783-a2ac-464fc1d35e70", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "2581c234-84f5-4ef9-ae06-3be67d528c6a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a8ea8e05-9e79-4f5c-8370-9df8525166b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "phwandu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "882560fc-27d5-4ea8-add0-8335b97c5032", + "Order": 1, + "DeletedAt": null, + "EntryId": "a8ea8e05-9e79-4f5c-8370-9df8525166b1", + "Definition": {}, + "Gloss": { + "en": "feast", + "pt": "festa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71983f5c-327e-4f3f-8eee-d404c0d77360", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "882560fc-27d5-4ea8-add0-8335b97c5032", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16b421e9-006e-4374-ba54-e3e8c6493edd", + "DeletedAt": null, + "LexemeForm": { + "seh": "phwet" + }, + "CitationForm": { + "seh": "phweta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e352f748-01e6-471f-a6d1-978b74e6c6a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "16b421e9-006e-4374-ba54-e3e8c6493edd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to flee", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "fugir", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "flee", + "pt": "fugir apertado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "aa965615-5d7a-40ab-8781-cff09fa2841f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e352f748-01e6-471f-a6d1-978b74e6c6a5", + "DeletedAt": null + } + ] + }, + { + "Id": "90054694-7f6e-4674-a525-b3e59e05f58d", + "Order": 2, + "DeletedAt": null, + "EntryId": "16b421e9-006e-4374-ba54-e3e8c6493edd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "enter by means of a tight space", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "entrar pelo buraco apertado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "enter", + "pt": "entrar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "19888b08-f360-4232-9c69-57ef5c4937f2", + "DeletedAt": null, + "LexemeForm": { + "seh": "phwete" + }, + "CitationForm": { + "seh": "phwethe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5c0b6467-8c7a-48ac-af53-c5b81c079967", + "Order": 1, + "DeletedAt": null, + "EntryId": "19888b08-f360-4232-9c69-57ef5c4937f2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Diceros bicorniss (or Ceratotherium simum - not in Sena area)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rhinoceros", + "pt": "rinocerante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5d8dce6d-45ad-47dc-a38a-26331bca3df0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "5c0b6467-8c7a-48ac-af53-c5b81c079967", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "pi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "43a4b50c-b681-4e03-ad5c-1649e7daf633", + "Order": 1, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a3846ed9-9b20-4c5f-8abb-873f9ff99a17", + "Order": 2, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "fdff4835-a887-4305-952a-4089525f3e62", + "Order": 3, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "182f783d-7703-4dc6-8aaa-d4c995ec11e0", + "Order": 4, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d7932d5f-f27f-4cbb-b264-52061d0b3253", + "Order": 5, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9f3c0dec-740d-42a2-9079-59b44fb3cecd", + "DeletedAt": null, + "LexemeForm": { + "seh": "pi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "23b8a9b8-fab7-41e8-a70f-7cc7b72c94eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "9f3c0dec-740d-42a2-9079-59b44fb3cecd", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "92d8a3e5-790f-4c0d-927b-fcd64073db53", + "DeletedAt": null, + "LexemeForm": { + "seh": "pibves" + }, + "CitationForm": { + "seh": "pibvesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d6332e9-6bf8-4bc3-8ecc-bd4ef18512f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "92d8a3e5-790f-4c0d-927b-fcd64073db53", + "Definition": {}, + "Gloss": { + "en": "understand", + "pt": "compreender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "2251956c-607a-41dd-b047-c16ad95f04ef", + "Order": 2, + "DeletedAt": null, + "EntryId": "92d8a3e5-790f-4c0d-927b-fcd64073db53", + "Definition": {}, + "Gloss": { + "en": "perceive", + "pt": "perceber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eb3eb9b2-1130-402e-952a-44a20075a642", + "DeletedAt": null, + "LexemeForm": { + "seh": "pina" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "10d326c8-2805-4ecf-91c3-2d933a063863", + "Order": 1, + "DeletedAt": null, + "EntryId": "eb3eb9b2-1130-402e-952a-44a20075a642", + "Definition": {}, + "Gloss": { + "en": "again", + "pt": "outra vez" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8fa842ea-8c2d-40be-885c-30645fc695c6", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndabwera pina", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Vim outra vez", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "10d326c8-2805-4ecf-91c3-2d933a063863", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c02367d0-a6db-43f2-97d9-9daba1ffd174", + "DeletedAt": null, + "LexemeForm": { + "seh": "pingir" + }, + "CitationForm": { + "seh": "pingira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "06909499-5a12-4fdc-b48e-5805606fe878", + "Order": 1, + "DeletedAt": null, + "EntryId": "c02367d0-a6db-43f2-97d9-9daba1ffd174", + "Definition": { + "en": { + "Spans": [ + { + "Text": "put something on one\u0027s back or shoulders", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "po\u0302r uma coisa no colo ou obros", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "carry", + "pt": "carrigar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "549120da-4e82-4132-8f61-43806d226647", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "06909499-5a12-4fdc-b48e-5805606fe878", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b8e3bcc7-cf77-4537-a774-52bdca6cb280", + "DeletedAt": null, + "LexemeForm": { + "seh": "pingirir" + }, + "CitationForm": { + "seh": "pingirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6257b3a4-5c21-474e-8045-768ac98bd030", + "Order": 1, + "DeletedAt": null, + "EntryId": "b8e3bcc7-cf77-4537-a774-52bdca6cb280", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wrap around", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "amarrar sem no\u0301", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wrap around", + "pt": "amarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "408447ec-6296-4652-82e7-18fe2ea4e6d9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6257b3a4-5c21-474e-8045-768ac98bd030", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6721e1c9-772d-4a29-bab9-d6c2cf5f4107", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ec9e2a2a-4acf-4873-be17-33c22215f214", + "Order": 1, + "DeletedAt": null, + "EntryId": "6721e1c9-772d-4a29-bab9-d6c2cf5f4107", + "Definition": {}, + "Gloss": { + "en": "two", + "pt": "dois" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "35a7a244-996e-4d8b-bb97-5ec291c00863", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "ec9e2a2a-4acf-4873-be17-33c22215f214", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8e4f8eb-7a7e-46ec-89f9-cf3f23f2c20a", + "DeletedAt": null, + "LexemeForm": { + "seh": "piringan" + }, + "CitationForm": { + "seh": "piringana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9604e24e-0b32-4036-b99f-029dad305317", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8e4f8eb-7a7e-46ec-89f9-cf3f23f2c20a", + "Definition": {}, + "Gloss": { + "en": "is more than", + "pt": "ultrapassar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "80e1a2df-d3a9-4460-849d-2eece2861634", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9604e24e-0b32-4036-b99f-029dad305317", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "627688ca-a90b-4bf4-8793-1a182d1222c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "pirir" + }, + "CitationForm": { + "seh": "pirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "610b9c2f-9e5d-458f-acbc-0f024bc732fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "627688ca-a90b-4bf4-8793-1a182d1222c3", + "Definition": {}, + "Gloss": { + "en": "trust", + "pt": "confiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a316a58-6299-4e73-b15c-75a8719635ad", + "DeletedAt": null, + "LexemeForm": { + "seh": "pis" + }, + "CitationForm": { + "seh": "pisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9e3d001b-8dbd-47bd-843d-545ae2eeedc8", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a316a58-6299-4e73-b15c-75a8719635ad", + "Definition": {}, + "Gloss": { + "en": "burn", + "pt": "queimar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4c46e0d2-db36-4a60-b9e5-2618aaed37de", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Lero kwapisa.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "Today it is \u0022burning up\u0022.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Hoje faz calor", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "9e3d001b-8dbd-47bd-843d-545ae2eeedc8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "DeletedAt": null, + "LexemeForm": { + "seh": "pit" + }, + "CitationForm": { + "seh": "pita" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f452c5e8-330c-4323-862b-aba0ec42a2c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "Definition": {}, + "Gloss": { + "en": "enter", + "pt": "entrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b8aa36a5-4ce8-402d-9545-5f14e0b4b00e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f452c5e8-330c-4323-862b-aba0ec42a2c4", + "DeletedAt": null + }, + { + "Id": "b310f04d-3121-4ef7-aa4f-c8f83b09dfa4", + "Order": 2, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2 013; Mauricio", + "Ws": "en" + } + ] + }, + "SenseId": "f452c5e8-330c-4323-862b-aba0ec42a2c4", + "DeletedAt": null + } + ] + }, + { + "Id": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", + "Order": 2, + "DeletedAt": null, + "EntryId": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "Definition": {}, + "Gloss": { + "en": "be more than", + "pt": "ultrapassar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5325a3b6-551e-4f6e-8c14-eed70be18516", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nkulu kupita \u0022greater\u0022", + "Ws": "en" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", + "DeletedAt": null + } + ] + }, + { + "Id": "198c45b5-e301-484e-ae81-fa801eb01331", + "Order": 3, + "DeletedAt": null, + "EntryId": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "Definition": {}, + "Gloss": { + "en": "except", + "pt": "sena\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b20a3f7-e1aa-4896-86b7-5c590d2b8794", + "DeletedAt": null, + "LexemeForm": { + "seh": "pokes" + }, + "CitationForm": { + "seh": "pokesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "051bfd1e-a26e-46e2-b13a-f3b00478e092", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b20a3f7-e1aa-4896-86b7-5c590d2b8794", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "tirar de forc\u0327a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "snatch", + "pt": "tirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d901e977-d417-4ebf-b430-d1a1c992216e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "051bfd1e-a26e-46e2-b13a-f3b00478e092", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8b4afd2d-617d-496a-9744-28b4f9c64cdf", + "DeletedAt": null, + "LexemeForm": { + "seh": "pokos" + }, + "CitationForm": { + "seh": "pokosa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff74f41d-6ccb-4d1a-be68-010a4320ed00", + "Order": 1, + "DeletedAt": null, + "EntryId": "8b4afd2d-617d-496a-9744-28b4f9c64cdf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "snatch, jerk out of the hand", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "arrancar na ma\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "snatch", + "pt": "agarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a1786879-7a9c-49d0-babe-802266f5da43", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ff74f41d-6ccb-4d1a-be68-010a4320ed00", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e053f7f-054b-4f2e-9d4d-2e52bd026f01", + "DeletedAt": null, + "LexemeForm": { + "seh": "pokoser" + }, + "CitationForm": { + "seh": "pokosera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b419d979-913b-4cf5-8a8d-c3982e3c2093", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e053f7f-054b-4f2e-9d4d-2e52bd026f01", + "Definition": { + "en": { + "Spans": [ + { + "Text": "take from someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "levar de alguem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "take", + "pt": "levar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7e52ebe-3822-4dd0-a4ff-087909c05127", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b419d979-913b-4cf5-8a8d-c3982e3c2093", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81a5753e-384a-43e7-bf66-d38ef77a04a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "poloz" + }, + "CitationForm": { + "seh": "poloza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f7f7d77-6064-4ce1-b6a3-f80826d62a99", + "Order": 1, + "DeletedAt": null, + "EntryId": "81a5753e-384a-43e7-bf66-d38ef77a04a8", + "Definition": {}, + "Gloss": { + "en": "weak", + "pt": "fraco" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16833983-c2b1-496a-a660-b75401d65a01", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0f7f7d77-6064-4ce1-b6a3-f80826d62a99", + "DeletedAt": null + } + ] + }, + { + "Id": "ad61964d-ef71-4857-89cb-5205ab969a8b", + "Order": 2, + "DeletedAt": null, + "EntryId": "81a5753e-384a-43e7-bf66-d38ef77a04a8", + "Definition": {}, + "Gloss": { + "en": "quiet", + "pt": "quieta" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d8c31365-5e36-4ce5-90ec-cf114527fe24", + "DeletedAt": null, + "LexemeForm": { + "seh": "pontho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a3baa2ad-79c0-41b1-9a24-e007e6d0b931", + "Order": 1, + "DeletedAt": null, + "EntryId": "d8c31365-5e36-4ce5-90ec-cf114527fe24", + "Definition": {}, + "Gloss": { + "en": "again", + "pt": "de novo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "92fef216-2ea0-4368-9323-69f315291960", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Tinaonana lini pontho?", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a3baa2ad-79c0-41b1-9a24-e007e6d0b931", + "DeletedAt": null + } + ] + }, + { + "Id": "c796903a-0d54-404a-a971-a11c1a968a61", + "Order": 2, + "DeletedAt": null, + "EntryId": "d8c31365-5e36-4ce5-90ec-cf114527fe24", + "Definition": {}, + "Gloss": { + "en": "also", + "pt": "ale\u0301m disso" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "066403f7-1807-4500-a50c-14dc5147719b", + "DeletedAt": null, + "LexemeForm": { + "seh": "pony" + }, + "CitationForm": { + "seh": "ponya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e35e3997-6b2c-4db4-81ed-13929160c341", + "Order": 1, + "DeletedAt": null, + "EntryId": "066403f7-1807-4500-a50c-14dc5147719b", + "Definition": {}, + "Gloss": { + "en": "throw", + "pt": "atirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "844e02a2-f96e-4e06-93ed-365d82e549d0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e35e3997-6b2c-4db4-81ed-13929160c341", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bda85504-a7da-4806-8796-9656e41478aa", + "DeletedAt": null, + "LexemeForm": { + "seh": "posi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c9c466d6-5256-46aa-9bb5-937c02901148", + "Order": 1, + "DeletedAt": null, + "EntryId": "bda85504-a7da-4806-8796-9656e41478aa", + "Definition": {}, + "Gloss": { + "en": "one", + "pt": "um" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e136ed1e-70b7-4211-bc0f-291705a2d047", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Tingamala kulengesa posi tinabwera piri", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Depois de countar \u0022um\u0022 chegamos a \u0022dois\u0022.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", + "DeletedAt": null + }, + { + "Id": "1f820f71-c282-4506-9e75-78d9d06ab66f", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Posi wace ng\u0027ono-ng\u0027ono, lembani posi wa nkulu.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Sua \u0022um\u0022 e\u0301 muito pequeno, escreva um \u0022um\u0022 grande.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", + "DeletedAt": null + }, + { + "Id": "5000b3ec-ece5-4bfc-8c57-fb3ac122602a", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "posi yace", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "suas \u0022uns\u0022", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "991de334-0b44-49f4-b5a9-3492ab3a423c", + "DeletedAt": null, + "LexemeForm": { + "seh": "potok" + }, + "CitationForm": { + "seh": "potoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d9cb4e6f-d542-4847-9ffd-72997d708f48", + "Order": 1, + "DeletedAt": null, + "EntryId": "991de334-0b44-49f4-b5a9-3492ab3a423c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one person leaves a group for a short time", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "uma pessoa abandona ou retirar-se duma grupo durante uma altura curta", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "abandon", + "pt": "abandonar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5e917652-d4a3-4c55-bf79-0c72bd7b212e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d9cb4e6f-d542-4847-9ffd-72997d708f48", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1d1f4c34-7445-4115-8e27-d16d0d13442c", + "DeletedAt": null, + "LexemeForm": { + "seh": "psa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0a837b13-3198-4f8c-9049-c7a6b2ae0d4f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1d1f4c34-7445-4115-8e27-d16d0d13442c", + "Definition": {}, + "Gloss": { + "en": "new", + "pt": "novo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "928cc025-604d-4ba4-9fd7-7cc8b4fe5975", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nyumba ipsa", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "casa nova", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0a837b13-3198-4f8c-9049-c7a6b2ae0d4f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3d41998-1cce-4773-93d7-ec7b9c6a2c5f", + "DeletedAt": null, + "LexemeForm": { + "seh": "psair" + }, + "CitationForm": { + "seh": "psaira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd0805ee-73c0-4c9d-8f0c-5b99eba335ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3d41998-1cce-4773-93d7-ec7b9c6a2c5f", + "Definition": {}, + "Gloss": { + "en": "sweep", + "pt": "varrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ceff8bfb-326b-4ee3-a3ae-7460015d35c9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dd0805ee-73c0-4c9d-8f0c-5b99eba335ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c151bfd2-4d0e-41af-8690-4a4f727ecb84", + "DeletedAt": null, + "LexemeForm": { + "seh": "psaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a1393013-96f3-4f9c-9dd4-9c3d1b95747d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c151bfd2-4d0e-41af-8690-4a4f727ecb84", + "Definition": {}, + "Gloss": { + "en": "married man", + "pt": "homen casado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4edef5b-d652-4322-9c89-48e52a22b7a8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a1393013-96f3-4f9c-9dd4-9c3d1b95747d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9430ddac-62cf-4d9d-9987-2b0dfcb43dd7", + "DeletedAt": null, + "LexemeForm": { + "seh": "psek" + }, + "CitationForm": { + "seh": "pseka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3feaedde-d34f-48b6-b61a-657a7768e7f7", + "Order": 1, + "DeletedAt": null, + "EntryId": "9430ddac-62cf-4d9d-9987-2b0dfcb43dd7", + "Definition": {}, + "Gloss": { + "en": "break", + "pt": "partir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac3c7754-dd27-4cc4-b895-be8ec1edb7fc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3feaedde-d34f-48b6-b61a-657a7768e7f7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "164147cc-4bba-4502-a602-0cfe185e5886", + "DeletedAt": null, + "LexemeForm": { + "seh": "psimo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7126b5f1-a48d-4788-8c37-e9837e25f274", + "Order": 1, + "DeletedAt": null, + "EntryId": "164147cc-4bba-4502-a602-0cfe185e5886", + "Definition": {}, + "Gloss": { + "en": "arrow", + "pt": "seta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a600ecc8-11e7-4de7-adb0-c2c751253805", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Passo", + "Ws": "en" + } + ] + }, + "SenseId": "7126b5f1-a48d-4788-8c37-e9837e25f274", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5b77cbed-fa36-4252-8887-9ecf11418d16", + "DeletedAt": null, + "LexemeForm": { + "seh": "psiru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fafade83-795b-4355-bcb8-9873dbad754f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5b77cbed-fa36-4252-8887-9ecf11418d16", + "Definition": {}, + "Gloss": { + "en": "trouble maker", + "pt": "malandro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f94922e7-e5c2-4ab8-8376-6c88fbce8916", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "fafade83-795b-4355-bcb8-9873dbad754f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57f166a3-6a90-4028-9e2a-f704190a2b36", + "DeletedAt": null, + "LexemeForm": { + "seh": "pukut" + }, + "CitationForm": { + "seh": "pukuta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aefd8f47-6a88-499f-9860-41598b0821ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "57f166a3-6a90-4028-9e2a-f704190a2b36", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "limpar (na\u0303o cha\u0303o)", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "clean", + "pt": "limpar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4fd4d60a-43f9-4054-98e7-6d0c7b5116d4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "aefd8f47-6a88-499f-9860-41598b0821ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfc74aad-6b03-4967-b007-632908404ab4", + "DeletedAt": null, + "LexemeForm": { + "seh": "pulumuk" + }, + "CitationForm": { + "seh": "pulumuka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "34f2de2d-2b16-47d0-b90e-58da1e9da580", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfc74aad-6b03-4967-b007-632908404ab4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "save from death", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "salvar de morte", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "save", + "pt": "salvar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f2daba17-f3c7-4f16-94f6-f475f0a3cee4", + "Order": 2, + "DeletedAt": null, + "EntryId": "dfc74aad-6b03-4967-b007-632908404ab4", + "Definition": {}, + "Gloss": { + "en": "live", + "pt": "vivir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e5987e54-4319-40b8-af49-3222b14072dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "pulumus" + }, + "CitationForm": { + "seh": "pulumusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58670c9a-5c67-4b4b-87ef-5d221763088d", + "Order": 1, + "DeletedAt": null, + "EntryId": "e5987e54-4319-40b8-af49-3222b14072dd", + "Definition": {}, + "Gloss": { + "en": "save", + "pt": "salvar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "43e46058-ff31-49e7-94bb-e25124093253", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "58670c9a-5c67-4b4b-87ef-5d221763088d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "553a3f44-8c3c-4b34-8558-18bfdcb1bcb5", + "DeletedAt": null, + "LexemeForm": { + "seh": "pum" + }, + "CitationForm": { + "seh": "puma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7607ede7-857f-4bc2-bc8a-ffa119369041", + "Order": 1, + "DeletedAt": null, + "EntryId": "553a3f44-8c3c-4b34-8558-18bfdcb1bcb5", + "Definition": {}, + "Gloss": { + "en": "rest", + "pt": "descansar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac35aebb-4c3f-4a91-a311-b04fa97297e4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2:030 ; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7607ede7-857f-4bc2-bc8a-ffa119369041", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7060b22-b932-4167-b8fb-9a52edc8bb29", + "DeletedAt": null, + "LexemeForm": { + "seh": "pwand" + }, + "CitationForm": { + "seh": "pwanda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "416479f0-f40d-42a8-9f53-0b36644f6a0e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7060b22-b932-4167-b8fb-9a52edc8bb29", + "Definition": {}, + "Gloss": { + "en": "step", + "pt": "pisar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a7d3c3cb-3445-4104-b48d-743854ab23c9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "416479f0-f40d-42a8-9f53-0b36644f6a0e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "102c6b55-e50c-4d04-9e3d-b2f7abdd9148", + "DeletedAt": null, + "LexemeForm": { + "seh": "pwaz" + }, + "CitationForm": { + "seh": "pwaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "10b12fa3-9914-416a-8fa1-d2468ad75a80", + "Order": 1, + "DeletedAt": null, + "EntryId": "102c6b55-e50c-4d04-9e3d-b2f7abdd9148", + "Definition": {}, + "Gloss": { + "en": "despise", + "pt": "desprezar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "30e230df-1f3b-4035-a1fd-86d98f89785b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2 004; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "10b12fa3-9914-416a-8fa1-d2468ad75a80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dafcf5ca-2765-4602-bfee-bf49b1c6fea7", + "DeletedAt": null, + "LexemeForm": { + "seh": "pweker" + }, + "CitationForm": { + "seh": "pwekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ccaed89-b1ea-46df-be4b-6e3783022746", + "Order": 1, + "DeletedAt": null, + "EntryId": "dafcf5ca-2765-4602-bfee-bf49b1c6fea7", + "Definition": {}, + "Gloss": { + "en": "rebuke", + "pt": "repreender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0d59adfe-d7f9-4286-ae9b-f705d3fc1e26", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0ccaed89-b1ea-46df-be4b-6e3783022746", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0eccb172-934c-4243-a93b-679f3b4eeb0b", + "DeletedAt": null, + "LexemeForm": { + "seh": "py" + }, + "CitationForm": { + "seh": "pya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b2a7e770-d42a-4824-be0e-573da2378774", + "Order": 1, + "DeletedAt": null, + "EntryId": "0eccb172-934c-4243-a93b-679f3b4eeb0b", + "Definition": {}, + "Gloss": { + "en": "burn", + "pt": "queimar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e192081-38fa-4efe-b063-fd35d7e427fc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "b2a7e770-d42a-4824-be0e-573da2378774", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21fea269-aa2c-414f-885d-56197b7f955a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ringi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df21a85f-bac3-4b99-a803-11ab3cb0f03e", + "Order": 1, + "DeletedAt": null, + "EntryId": "21fea269-aa2c-414f-885d-56197b7f955a", + "Definition": {}, + "Gloss": { + "en": "boxing ring", + "pt": "circulo de box" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28584ea4-6eae-4ad7-9f7a-7c363cf7e175", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "df21a85f-bac3-4b99-a803-11ab3cb0f03e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7d967137-bd79-4289-979a-23c7a6ae4125", + "DeletedAt": null, + "LexemeForm": { + "seh": "ririm" + }, + "CitationForm": { + "seh": "ririma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32a60fd6-a381-4384-9736-388b2b757260", + "Order": 1, + "DeletedAt": null, + "EntryId": "7d967137-bd79-4289-979a-23c7a6ae4125", + "Definition": {}, + "Gloss": { + "en": "sink", + "pt": "afundar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0045604c-829f-4014-8846-c70cb4e72261", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "32a60fd6-a381-4384-9736-388b2b757260", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b03fae4d-9782-44db-8750-a5c63c617970", + "DeletedAt": null, + "LexemeForm": { + "seh": "rrw" + }, + "CitationForm": { + "seh": "rrwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "71c418ed-430e-42bb-b4b1-9b182da8db95", + "Order": 1, + "DeletedAt": null, + "EntryId": "b03fae4d-9782-44db-8750-a5c63c617970", + "Definition": {}, + "Gloss": { + "en": "marry", + "pt": "casar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "989fb78e-1e6e-474b-b466-6ff0ba208d21", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "71c418ed-430e-42bb-b4b1-9b182da8db95", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "494b1de4-0c63-4f51-804b-72f8495ee7a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "c5a022df-0a66-4888-a51f-a5e1d92cdb26", + "Order": 1, + "DeletedAt": null, + "EntryId": "494b1de4-0c63-4f51-804b-72f8495ee7a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "habtitual", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "HAB", + "pt": "HAB" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3ee1ca91-7b0a-4567-bb1f-a4fdd123eebf", + "Order": 2, + "DeletedAt": null, + "EntryId": "494b1de4-0c63-4f51-804b-72f8495ee7a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Present", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "PRES", + "pt": "PRES" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4162e425-13d8-4f02-931d-b93449e6937e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sa\u0301badu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58397013-05a0-4187-a402-4b7531a3d1f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "4162e425-13d8-4f02-931d-b93449e6937e", + "Definition": {}, + "Gloss": { + "en": "Saturday", + "pt": "sa\u0301bado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "044d8861-843b-4009-81e0-ffe421555e47", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "58397013-05a0-4187-a402-4b7531a3d1f6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "448ac2dc-1294-43b1-b008-a650f863c7d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "sabudu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "076bf5e2-f0dc-4475-b4b5-13f3a82fcd9d", + "Order": 1, + "DeletedAt": null, + "EntryId": "448ac2dc-1294-43b1-b008-a650f863c7d9", + "Definition": {}, + "Gloss": { + "en": "Saturday", + "pt": "sa\u0301budu" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e1316c0-2761-4b83-84fd-d2c17515843c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "076bf5e2-f0dc-4475-b4b5-13f3a82fcd9d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0f2db272-650b-4074-8fea-47a57db8da9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "sacul" + }, + "CitationForm": { + "seh": "sacula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "82120296-420f-4bc3-a316-ff1ef6f5823c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0f2db272-650b-4074-8fea-47a57db8da9d", + "Definition": {}, + "Gloss": { + "en": "weed a garden", + "pt": "tirar capim" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "811e8c93-d97a-4aab-bd67-268b7783ff11", + "Name": { + "en": "Tend a field" + }, + "Code": "6.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ec902f00-80a4-4b9a-885f-880a00c9a6c4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "82120296-420f-4bc3-a316-ff1ef6f5823c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5ea247c-727a-4a24-9681-52a2dd2faa0a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sak" + }, + "CitationForm": { + "seh": "saka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7bb96ac1-c93b-4075-abda-fc991a4232bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5ea247c-727a-4a24-9681-52a2dd2faa0a", + "Definition": {}, + "Gloss": { + "en": "get", + "pt": "procurar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8615178e-e881-47fc-a185-0a5cfc0ca7a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "sakha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "229f1945-8679-4417-a15f-0dc777567523", + "Order": 1, + "DeletedAt": null, + "EntryId": "8615178e-e881-47fc-a185-0a5cfc0ca7a5", + "Definition": {}, + "Gloss": { + "en": "sack", + "pt": "saco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c0a256e-2264-421e-a891-fad443bd683c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "229f1945-8679-4417-a15f-0dc777567523", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6c643c0-0382-4b29-95be-59acb133ae97", + "DeletedAt": null, + "LexemeForm": { + "seh": "sakhu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f91440d-e07b-4444-b306-820bc3c62d78", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6c643c0-0382-4b29-95be-59acb133ae97", + "Definition": {}, + "Gloss": { + "en": "sack", + "pt": "saco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7693b340-05eb-4ec0-bfb5-62e2a102f38c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "1f91440d-e07b-4444-b306-820bc3c62d78", + "DeletedAt": null + }, + { + "Id": "d3f51154-f915-4c35-b236-735537869b03", + "Order": 2, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1f91440d-e07b-4444-b306-820bc3c62d78", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3344fdf4-a13b-4c79-9ad6-6097e665fc97", + "DeletedAt": null, + "LexemeForm": { + "seh": "sakir" + }, + "CitationForm": { + "seh": "sakira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1b86fc97-a86d-4edb-a856-501eaf8b9e6c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3344fdf4-a13b-4c79-9ad6-6097e665fc97", + "Definition": {}, + "Gloss": { + "en": "get for", + "pt": "procurar para" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f2b8aef2-ec0b-4433-a929-44420f548ec4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "1b86fc97-a86d-4edb-a856-501eaf8b9e6c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bedd7ff0-a9bd-4598-9351-e23cfbce645a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sal" + }, + "CitationForm": { + "seh": "sala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9374269-8d7c-433e-a4d1-2fbc6cd04fa5", + "Order": 1, + "DeletedAt": null, + "EntryId": "bedd7ff0-a9bd-4598-9351-e23cfbce645a", + "Definition": {}, + "Gloss": { + "en": "stay", + "pt": "ficar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "957536b7-d5c2-4e7e-af36-1881c877548f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f9374269-8d7c-433e-a4d1-2fbc6cd04fa5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96c1522a-3124-4b58-9760-c97d8625a78a", + "DeletedAt": null, + "LexemeForm": { + "seh": "samb" + }, + "CitationForm": { + "seh": "samba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8aaa121c-0d62-46ec-a3f8-932b53ec00f0", + "Order": 1, + "DeletedAt": null, + "EntryId": "96c1522a-3124-4b58-9760-c97d8625a78a", + "Definition": {}, + "Gloss": { + "en": "bathe", + "pt": "banhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3dd6af88-d82b-415b-9b8b-bb98a41875d8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8aaa121c-0d62-46ec-a3f8-932b53ec00f0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af589c9c-f424-4366-a011-dba593f5c186", + "DeletedAt": null, + "LexemeForm": { + "seh": "sambirir" + }, + "CitationForm": { + "seh": "sambirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc9918ca-3931-45f2-a346-37e20a6eb6b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "af589c9c-f424-4366-a011-dba593f5c186", + "Definition": {}, + "Gloss": { + "en": "swim", + "pt": "nadar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a4465d34-89b6-4a28-9bf3-d4a227824b58", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bc9918ca-3931-45f2-a346-37e20a6eb6b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a177cc33-183c-4fec-b842-7c12e64c6a0b", + "DeletedAt": null, + "LexemeForm": { + "seh": "sandik" + }, + "CitationForm": { + "seh": "sandika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f35b7645-f5d6-4526-9ff8-cfa0a2bfff9f", + "Order": 1, + "DeletedAt": null, + "EntryId": "a177cc33-183c-4fec-b842-7c12e64c6a0b", + "Definition": {}, + "Gloss": { + "en": "correct", + "pt": "corrigir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8a93b32-3e4e-45a9-9cdb-c120cc9efc51", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f35b7645-f5d6-4526-9ff8-cfa0a2bfff9f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c19976a2-9cfa-4d19-9aed-0200bba67624", + "DeletedAt": null, + "LexemeForm": { + "seh": "sandikik" + }, + "CitationForm": { + "seh": "sandikika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3df4e095-0ab3-4e63-b349-4085ad7ea31d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c19976a2-9cfa-4d19-9aed-0200bba67624", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be disappointed, things didn\u0027t turn out as planned, so one feels sorry for an action, repent", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "be disappointed", + "pt": "disappointar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9e207aa4-adb3-43c5-b402-cbd02be726fb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3df4e095-0ab3-4e63-b349-4085ad7ea31d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d263c705-f2a2-419c-a42d-8963c433b444", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanduk" + }, + "CitationForm": { + "seh": "sanduka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e5ddd13-ed8e-4e0e-ac77-f6c630ff5e1c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d263c705-f2a2-419c-a42d-8963c433b444", + "Definition": {}, + "Gloss": { + "en": "change", + "pt": "mudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "256617cf-2cdb-4161-9b33-686ff6ceeb84", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8e5ddd13-ed8e-4e0e-ac77-f6c630ff5e1c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f33b2123-3575-4dc9-9255-3d207820079d", + "DeletedAt": null, + "LexemeForm": { + "seh": "sandukir" + }, + "CitationForm": { + "seh": "sandukira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "edaca876-4e83-48b2-a21c-43f30e9ec1f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f33b2123-3575-4dc9-9255-3d207820079d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one that was a friend and now is an enemy", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "betray", + "pt": "trair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d78854b5-f5e1-44ea-9341-47264ded4889", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "edaca876-4e83-48b2-a21c-43f30e9ec1f9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b041dab2-b828-4f19-846c-bfab50de5732", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanduz" + }, + "CitationForm": { + "seh": "sanduza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9b3f4461-b2be-4678-bcd9-ef1fe0f95d6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "b041dab2-b828-4f19-846c-bfab50de5732", + "Definition": { + "en": { + "Spans": [ + { + "Text": "change turn over something that is drying", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "change", + "pt": "mudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "65004fc3-e917-4948-be71-6f58666aec90", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9b3f4461-b2be-4678-bcd9-ef1fe0f95d6f", + "DeletedAt": null + } + ] + }, + { + "Id": "6a17df72-0935-4972-8df4-37a444a3e609", + "Order": 2, + "DeletedAt": null, + "EntryId": "b041dab2-b828-4f19-846c-bfab50de5732", + "Definition": {}, + "Gloss": { + "en": "transform", + "pt": "transformar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d94eaa3-f891-43be-93b5-ca24fc443185", + "DeletedAt": null, + "LexemeForm": { + "seh": "sankhul" + }, + "CitationForm": { + "seh": "sankhula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d5594291-e8d7-448b-8c98-356280a9beff", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d94eaa3-f891-43be-93b5-ca24fc443185", + "Definition": {}, + "Gloss": { + "en": "choose", + "pt": "escolher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6564851-a738-4648-a055-83c0fab4be93", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d5594291-e8d7-448b-8c98-356280a9beff", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7caa342a-2217-4a66-b690-bcbf748db6a0", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "92b77272-33f6-4ae9-9593-8884890d1596", + "Order": 1, + "DeletedAt": null, + "EntryId": "7caa342a-2217-4a66-b690-bcbf748db6a0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "second story of a building, often but not always used to store grain.", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "elevated house", + "pt": "casa elevada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8120a626-c5bf-4cd4-94a1-e186dc21719d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Dzuwa sanza", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "por de sol", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "92b77272-33f6-4ae9-9593-8884890d1596", + "DeletedAt": null + }, + { + "Id": "01d91810-b888-4262-b131-836966e5190d", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mapiramanga ali pa sanza.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Milho esta\u0301 em cima de casa elevada.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "92b77272-33f6-4ae9-9593-8884890d1596", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7d33069-fa77-4de9-b955-8fbca0a0f335", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a7921e6-0eed-496f-8fce-251cc73f54b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7d33069-fa77-4de9-b955-8fbca0a0f335", + "Definition": {}, + "Gloss": { + "en": "branch", + "pt": "ramo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b0593e44-fa76-4751-b234-214f35ea70d8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6a7921e6-0eed-496f-8fce-251cc73f54b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "432dc2da-4831-42a0-b39e-bdae47c2bb9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sasany" + }, + "CitationForm": { + "seh": "sasanya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22d82ffc-5fb1-433d-b1d7-ea2f0cf74946", + "Order": 1, + "DeletedAt": null, + "EntryId": "432dc2da-4831-42a0-b39e-bdae47c2bb9e", + "Definition": {}, + "Gloss": { + "en": "prepare", + "pt": "arranjar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b5c6127-d8ce-4eac-b126-429d84212df9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "22d82ffc-5fb1-433d-b1d7-ea2f0cf74946", + "DeletedAt": null + } + ] + }, + { + "Id": "971be336-8e62-4ad2-97e7-47562f7cf80d", + "Order": 2, + "DeletedAt": null, + "EntryId": "432dc2da-4831-42a0-b39e-bdae47c2bb9e", + "Definition": {}, + "Gloss": { + "en": "straighten up", + "pt": "endireitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "110c0a2b-edb5-4cde-b23a-55bb6a1652f6", + "DeletedAt": null, + "LexemeForm": { + "seh": "sawasawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d3d45414-258a-41bf-b107-dc316f5eb53e", + "Order": 1, + "DeletedAt": null, + "EntryId": "110c0a2b-edb5-4cde-b23a-55bb6a1652f6", + "Definition": {}, + "Gloss": { + "en": "equal", + "pt": "igual" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "030737e9-089d-4df6-8187-9a30302ac08c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d3d45414-258a-41bf-b107-dc316f5eb53e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc31fdc8-2604-42d7-99c8-34e27ad3dac2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sek" + }, + "CitationForm": { + "seh": "seka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ce4fc2d-6488-4049-be7b-3d6685c21093", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc31fdc8-2604-42d7-99c8-34e27ad3dac2", + "Definition": {}, + "Gloss": { + "en": "laugh", + "pt": "rir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9f6c011e-714d-4cf8-ae62-de570390a443", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5ce4fc2d-6488-4049-be7b-3d6685c21093", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1cddb6ce-314a-420a-b796-ec280c1fd71c", + "DeletedAt": null, + "LexemeForm": { + "seh": "semb" + }, + "CitationForm": { + "seh": "semba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "23e2e383-ef7c-4d19-a72f-1621ef30e0ed", + "Order": 1, + "DeletedAt": null, + "EntryId": "1cddb6ce-314a-420a-b796-ec280c1fd71c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "engage, go to the girl\u0027s father and ask to marry", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "become engaged", + "pt": "namorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "99bfee17-4cb9-484c-8f81-335dd1322736", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "23e2e383-ef7c-4d19-a72f-1621ef30e0ed", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f30b367-5496-4f7a-8c6b-95711f1b69e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "senzek" + }, + "CitationForm": { + "seh": "senzeka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "28376e7b-02a2-41bb-87bd-7161ce3ac904", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f30b367-5496-4f7a-8c6b-95711f1b69e2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "children\u0027s play, noncompetative play", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "brincar de crianc\u0327as", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "play", + "pt": "brincar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "94a80045-7351-4c72-a570-d242e410c013", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyezeze; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "28376e7b-02a2-41bb-87bd-7161ce3ac904", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96241026-4980-4758-b979-574ff19c4e3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5c30367b-6a13-44e2-9d98-b41917c9eb99", + "Order": 1, + "DeletedAt": null, + "EntryId": "96241026-4980-4758-b979-574ff19c4e3c", + "Definition": {}, + "Gloss": { + "en": "eight", + "pt": "oito" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7fd37087-140b-42b2-9e86-c1c5e4d2afa2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "5c30367b-6a13-44e2-9d98-b41917c9eb99", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "43d895e7-f155-478b-b6fb-2ba65b267385", + "DeletedAt": null, + "LexemeForm": { + "seh": "si" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "91a80f4d-c929-4b7c-ab95-403544fb9b61", + "Order": 1, + "DeletedAt": null, + "EntryId": "43d895e7-f155-478b-b6fb-2ba65b267385", + "Definition": { + "en": { + "Spans": [ + { + "Text": "first person singular negative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "primeiro pessoa singular negativo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1SNEG", + "pt": "1SNEG" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d03f39d0-10ef-4d35-b13b-a965124a9230", + "DeletedAt": null, + "LexemeForm": { + "seh": "sia" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3df4ef3e-1ef2-4b5e-a41e-ebd024335c8c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d03f39d0-10ef-4d35-b13b-a965124a9230", + "Definition": {}, + "Gloss": { + "en": "leave someone", + "pt": "deixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3204f76-ce79-47c7-8c1f-4ddb81f74be0", + "DeletedAt": null, + "LexemeForm": { + "seh": "simango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41acb687-44b9-4c4d-b448-122dea15f267", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3204f76-ce79-47c7-8c1f-4ddb81f74be0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Samango monkey", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "monkey", + "pt": "macaco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b8c0a1ee-e7fc-4282-a8a1-82ce009ba838", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "41acb687-44b9-4c4d-b448-122dea15f267", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f3107da-fee5-4761-8bb3-d2b02ae5a1ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "simb" + }, + "CitationForm": { + "seh": "simba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e103ab2e-f827-4438-96bf-86ef4267e9aa", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f3107da-fee5-4761-8bb3-d2b02ae5a1ed", + "Definition": {}, + "Gloss": { + "en": "give praise", + "pt": "dar lavor" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e2068be-090c-41e9-8b43-e25ca034eb31", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "e103ab2e-f827-4438-96bf-86ef4267e9aa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3ffe2c6-91ba-470a-8292-1622d94335ec", + "DeletedAt": null, + "LexemeForm": { + "seh": "simbisis" + }, + "CitationForm": { + "seh": "simbisisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d4030108-039e-48d9-a868-901c2072385d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3ffe2c6-91ba-470a-8292-1622d94335ec", + "Definition": { + "en": { + "Spans": [ + { + "Text": "complete, explain, fulfill", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "compete", + "pt": "completar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4bf93f34-5eee-4007-9e47-0ab8a0f5663a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d4030108-039e-48d9-a868-901c2072385d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "68cd4cbe-82c3-496b-bdb8-33195ac3bfde", + "DeletedAt": null, + "LexemeForm": { + "seh": "sine" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6737d4ac-143a-4729-829e-f5f8bd391e06", + "Order": 1, + "DeletedAt": null, + "EntryId": "68cd4cbe-82c3-496b-bdb8-33195ac3bfde", + "Definition": {}, + "Gloss": { + "en": "it is not", + "pt": "na\u0303o e\u0301" + }, + "PartOfSpeech": { + "Id": "748af620-8cd0-4364-a951-c234306f5b9f", + "Name": { + "en": "Copula Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd281030-363a-47ea-9e4c-96bf1bffc0a3", + "DeletedAt": null, + "LexemeForm": { + "seh": "sinyala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94ee3153-27ce-49a1-9a8a-5fc0afa329c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd281030-363a-47ea-9e4c-96bf1bffc0a3", + "Definition": {}, + "Gloss": { + "en": "prostitute", + "pt": "prostituta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9e3a735-cf26-4960-83f6-f5546eab2cdc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:20 (says half caste); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "94ee3153-27ce-49a1-9a8a-5fc0afa329c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0977c6c-e092-45a9-86b9-023cb2bee311", + "DeletedAt": null, + "LexemeForm": { + "seh": "sirir" + }, + "CitationForm": { + "seh": "sirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57bfaa1f-735b-4c81-97aa-69b2efd9b530", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0977c6c-e092-45a9-86b9-023cb2bee311", + "Definition": {}, + "Gloss": { + "en": "be greedy", + "pt": "cobic\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a49a064-ca35-400d-9062-74284af211ec", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndasirira nguwo yako.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Cobicei a tua ropa.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "57bfaa1f-735b-4c81-97aa-69b2efd9b530", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bcbe35eb-8f26-41fe-84e6-e88c179248ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "sirizw" + }, + "CitationForm": { + "seh": "sirizwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eca32c60-3044-4c43-9ba3-7192e3155034", + "Order": 1, + "DeletedAt": null, + "EntryId": "bcbe35eb-8f26-41fe-84e6-e88c179248ff", + "Definition": {}, + "Gloss": { + "en": "be upset", + "pt": "ficar chateado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c02c708b-1a28-48a1-953f-3e11507f7f96", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2:41", + "Ws": "en" + } + ] + }, + "SenseId": "eca32c60-3044-4c43-9ba3-7192e3155034", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "308ec1c8-9754-4c9a-88ed-eacdf6fea89c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sitir" + }, + "CitationForm": { + "seh": "sitira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea17990f-9b07-43fe-b097-597f7e238156", + "Order": 1, + "DeletedAt": null, + "EntryId": "308ec1c8-9754-4c9a-88ed-eacdf6fea89c", + "Definition": {}, + "Gloss": { + "en": "impede", + "pt": "impedir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e69179d-c185-4f66-941d-de3afe08b79d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ea17990f-9b07-43fe-b097-597f7e238156", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05640c89-1b5b-463b-83e9-778928d23fc7", + "DeletedAt": null, + "LexemeForm": { + "seh": "siy" + }, + "CitationForm": { + "seh": "siya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "54abd687-0f45-4550-8779-511abb42721d", + "Order": 1, + "DeletedAt": null, + "EntryId": "05640c89-1b5b-463b-83e9-778928d23fc7", + "Definition": {}, + "Gloss": { + "en": "leave someone", + "pt": "deixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a93c42a8-dc8b-46a7-a83c-1501144f6507", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu wanga, Mulungu wanga, wandisiiranji?", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "54abd687-0f45-4550-8779-511abb42721d", + "DeletedAt": null + } + ] + }, + { + "Id": "32467084-7626-49a5-81ad-ffd52563622c", + "Order": 2, + "DeletedAt": null, + "EntryId": "05640c89-1b5b-463b-83e9-778928d23fc7", + "Definition": {}, + "Gloss": { + "en": "die", + "pt": "morrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cd852ab7-6c27-4366-bc22-5d44f425badf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "N\u0027tenda atisiya", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "The sick one has left us (died).", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "O doente nos deixou (morreu).", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "32467084-7626-49a5-81ad-ffd52563622c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f85e330e-dc79-447d-a5ea-979382f8beee", + "DeletedAt": null, + "LexemeForm": { + "seh": "sodz" + }, + "CitationForm": { + "seh": "sodza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "feb33bce-b6eb-4ceb-ac7d-4576e2624962", + "Order": 1, + "DeletedAt": null, + "EntryId": "f85e330e-dc79-447d-a5ea-979382f8beee", + "Definition": {}, + "Gloss": { + "en": "hunt", + "pt": "cac\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a858111f-ed4f-4a2e-98fa-47a2cecec217", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "feb33bce-b6eb-4ceb-ac7d-4576e2624962", + "DeletedAt": null + } + ] + }, + { + "Id": "b9579104-0efb-4b6b-9e41-023c12911774", + "Order": 2, + "DeletedAt": null, + "EntryId": "f85e330e-dc79-447d-a5ea-979382f8beee", + "Definition": {}, + "Gloss": { + "en": "fish", + "pt": "pescar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "570efd59-0e7d-4717-9d03-e3aa0a99fb15", + "DeletedAt": null, + "LexemeForm": { + "seh": "sogol" + }, + "CitationForm": { + "seh": "sogola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8057b6f0-b920-4858-88d2-309e1eed6b9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "570efd59-0e7d-4717-9d03-e3aa0a99fb15", + "Definition": {}, + "Gloss": { + "en": "go in front", + "pt": "adiantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "275ef75c-09ca-418a-8da6-d965f272ba00", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8057b6f0-b920-4858-88d2-309e1eed6b9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "132f1c22-92e0-4b68-838c-c20ff24aa3ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "som" + }, + "CitationForm": { + "seh": "soma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e74c118-c9ef-4a6e-8c67-13d0f309763e", + "Order": 1, + "DeletedAt": null, + "EntryId": "132f1c22-92e0-4b68-838c-c20ff24aa3ac", + "Definition": {}, + "Gloss": { + "en": "lack", + "pt": "faultar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1666decc-8f0b-49ea-acde-de80a464c2c3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8e74c118-c9ef-4a6e-8c67-13d0f309763e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "375d478e-91a5-4bf7-bfd5-a1fce8777d23", + "DeletedAt": null, + "LexemeForm": { + "seh": "son" + }, + "CitationForm": { + "seh": "sona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", + "Order": 1, + "DeletedAt": null, + "EntryId": "375d478e-91a5-4bf7-bfd5-a1fce8777d23", + "Definition": {}, + "Gloss": { + "en": "sew", + "pt": "coser" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14619413-a646-4223-b467-91556bf06e09", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndasona nguwo.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Eu cosi roupas.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", + "DeletedAt": null + }, + { + "Id": "f066bdff-2843-46ff-9ec5-1eac7de82d78", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nguwa nyakusoniwa", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Ropa cosida", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e3def7f9-5c60-4550-a87a-44c6ef539815", + "DeletedAt": null, + "LexemeForm": { + "seh": "sow" + }, + "CitationForm": { + "seh": "sowa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f752860-a94c-40e1-8e00-e21a9de5f0cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "e3def7f9-5c60-4550-a87a-44c6ef539815", + "Definition": {}, + "Gloss": { + "en": "not exist", + "pt": "ter falta" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00742720-4968-4fbc-a5ed-5a634dbe6518", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akhafamba mbuto dza kusowa anthu maningi.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "he walked in a place of not many people", + "Ws": "en" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "1f752860-a94c-40e1-8e00-e21a9de5f0cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "70e9e2a1-964d-417e-8385-6734f0e9b3b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "sowek" + }, + "CitationForm": { + "seh": "soweka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3638e80f-f10d-4940-870c-8e11a37c1741", + "Order": 1, + "DeletedAt": null, + "EntryId": "70e9e2a1-964d-417e-8385-6734f0e9b3b7", + "Definition": {}, + "Gloss": { + "en": "lack", + "pt": "faltar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1dcbb6f-4d8d-49dc-8ed9-e051fa5c21e0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3638e80f-f10d-4940-870c-8e11a37c1741", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ba747b1-77c0-4ebe-b541-1150596df1a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "subenz" + }, + "CitationForm": { + "seh": "subenza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "56aa7d5b-4657-48a4-9279-8ae8d6b1d47d", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ba747b1-77c0-4ebe-b541-1150596df1a2", + "Definition": {}, + "Gloss": { + "en": "work", + "pt": "trabalhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5320918-183d-47cb-8d95-28425c88269c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musasubenza kupi?", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "trabalha a onde?", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "56aa7d5b-4657-48a4-9279-8ae8d6b1d47d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57009cdb-cd11-451f-8340-05dce62ccb40", + "DeletedAt": null, + "LexemeForm": { + "seh": "sudzul" + }, + "CitationForm": { + "seh": "sudzula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e7918fd5-b343-4516-9e0f-47742369c08e", + "Order": 1, + "DeletedAt": null, + "EntryId": "57009cdb-cd11-451f-8340-05dce62ccb40", + "Definition": {}, + "Gloss": { + "en": "untie", + "pt": "desatar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00bc9cb8-8521-4de5-a49a-f739bc416546", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e7918fd5-b343-4516-9e0f-47742369c08e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "446538d9-1b1e-4b45-97c5-07af29dc72e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "sukun" + }, + "CitationForm": { + "seh": "sukuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31c1e263-4dbc-402f-a0f3-82d860f258f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "446538d9-1b1e-4b45-97c5-07af29dc72e9", + "Definition": {}, + "Gloss": { + "en": "pinch", + "pt": "belisca\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05139c3e-2e20-47b6-816a-59018702ee82", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist (said arranhar)", + "Ws": "en" + } + ] + }, + "SenseId": "31c1e263-4dbc-402f-a0f3-82d860f258f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8b4c2f6c-7bc3-41da-9705-8967901fdb1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sulo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8b58fac-14b5-4eb0-8a25-03a5f365ea4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "8b4c2f6c-7bc3-41da-9705-8967901fdb1e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "rabbit", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rabbit", + "pt": "coelho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d52bc50d-8279-467f-a7ed-958ef06e266e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "c8b58fac-14b5-4eb0-8a25-03a5f365ea4c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e36d67d0-39f8-4b80-9173-19cac2ff12c5", + "DeletedAt": null, + "LexemeForm": { + "seh": "sum" + }, + "CitationForm": { + "seh": "suma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f411efec-e9a4-42da-9842-8ef770cbf71a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e36d67d0-39f8-4b80-9173-19cac2ff12c5", + "Definition": {}, + "Gloss": { + "en": "complain", + "pt": "queixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1818a6fa-ddc0-44ff-96a0-6e788c97c0b3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f411efec-e9a4-42da-9842-8ef770cbf71a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1abdc28d-398c-429f-bead-7202899d3885", + "DeletedAt": null, + "LexemeForm": { + "seh": "supada" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "398a49fe-4e56-4627-ae97-cb65ba976267", + "Order": 1, + "DeletedAt": null, + "EntryId": "1abdc28d-398c-429f-bead-7202899d3885", + "Definition": {}, + "Gloss": { + "en": "machede", + "pt": "catana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f98ff9c-dcc3-4ed9-a24b-c2420a70c705", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "398a49fe-4e56-4627-ae97-cb65ba976267", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "439f88cd-0acc-42bd-acc4-db26e80c827c", + "DeletedAt": null, + "LexemeForm": { + "seh": "suzumir" + }, + "CitationForm": { + "seh": "suzumira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d06ecf71-49da-4964-9580-9579fd3f4d19", + "Order": 1, + "DeletedAt": null, + "EntryId": "439f88cd-0acc-42bd-acc4-db26e80c827c", + "Definition": {}, + "Gloss": { + "en": "peek", + "pt": "espreitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bc7f452f-898e-477a-bc7d-a18c96244169", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d06ecf71-49da-4964-9580-9579fd3f4d19", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2cd63e9-b1d2-4a3b-b26b-0e5ec67a26d6", + "DeletedAt": null, + "LexemeForm": { + "seh": "sw" + }, + "CitationForm": { + "seh": "swa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1cf49a8e-38e9-414f-b537-8f83f8b48dc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2cd63e9-b1d2-4a3b-b26b-0e5ec67a26d6", + "Definition": {}, + "Gloss": { + "en": "break", + "pt": "quebrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8335ae3a-2734-4b4e-8d08-7b19d8414721", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:4 (bsu a); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1cf49a8e-38e9-414f-b537-8f83f8b48dc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f5599cb-54e7-41bb-884d-e1aef553b0f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "taik" + }, + "CitationForm": { + "seh": "taika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "13b95c7a-e9f5-4949-a5fa-4ee19fabe2b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f5599cb-54e7-41bb-884d-e1aef553b0f5", + "Definition": {}, + "Gloss": { + "en": "get lost", + "pt": "perder-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "41878109-2f74-462f-b9d7-ce5dc0daa666", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "13b95c7a-e9f5-4949-a5fa-4ee19fabe2b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c7bed3b1-eb76-45d1-82f5-e9c8f0286af2", + "DeletedAt": null, + "LexemeForm": { + "seh": "tair" + }, + "CitationForm": { + "seh": "taira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca663076-d46e-4916-9152-fb4b1ef79f28", + "Order": 1, + "DeletedAt": null, + "EntryId": "c7bed3b1-eb76-45d1-82f5-e9c8f0286af2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "throw onto someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "deitar sobre alguem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "throw", + "pt": "deitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2ece3f3-684d-4da2-aa8b-7708a7c66795", + "DeletedAt": null, + "LexemeForm": { + "seh": "tairirw" + }, + "CitationForm": { + "seh": "tairirwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "587500c7-c9d0-4ca7-be10-38f22967b04d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2ece3f3-684d-4da2-aa8b-7708a7c66795", + "Definition": {}, + "Gloss": { + "en": "be accepted", + "pt": "ser aceite" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d265b2ee-d382-4868-b7b0-a60d83643d5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ta\u0301limba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef17635e-7bf6-4081-9faa-89b79f750a92", + "Order": 1, + "DeletedAt": null, + "EntryId": "d265b2ee-d382-4868-b7b0-a60d83643d5d", + "Definition": {}, + "Gloss": { + "en": "bed", + "pt": "cama" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0f2c3405-5b48-4c87-b13b-42c044aee3f6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef17635e-7bf6-4081-9faa-89b79f750a92", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "499207d4-cf8f-4272-9dcc-723871224c8b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tamb" + }, + "CitationForm": { + "seh": "tamba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "61ba3dff-0d4a-4f4f-a3c9-da3d0ae58cd9", + "Order": 1, + "DeletedAt": null, + "EntryId": "499207d4-cf8f-4272-9dcc-723871224c8b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "catch suffering", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "apanhar sofrimento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "suffer", + "pt": "sofrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "500414b0-0b87-4bf4-a8ec-f1a3e6331b9c", + "DeletedAt": null, + "LexemeForm": { + "seh": "tambir" + }, + "CitationForm": { + "seh": "tambira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ffa46537-54b5-4f01-a275-fce0693eea51", + "Order": 1, + "DeletedAt": null, + "EntryId": "500414b0-0b87-4bf4-a8ec-f1a3e6331b9c", + "Definition": {}, + "Gloss": { + "en": "receive", + "pt": "receber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "baba77bd-a023-4c00-b40f-3b5353a94772", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ffa46537-54b5-4f01-a275-fce0693eea51", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "907917e1-61ea-4f3d-a5fa-3295dbe4e7a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tani" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b9f6b2b3-fe70-4b2b-9d90-47d4b36194bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "907917e1-61ea-4f3d-a5fa-3295dbe4e7a7", + "Definition": {}, + "Gloss": { + "en": "how?", + "pt": "como?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c018e539-9c31-4a2a-9736-d896328ea4f4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b9f6b2b3-fe70-4b2b-9d90-47d4b36194bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "148a2e40-1bce-4854-b868-8514de1ef583", + "DeletedAt": null, + "LexemeForm": { + "seh": "tanthatu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "35b68d05-0492-4bc2-9003-a3b443d6bb08", + "Order": 1, + "DeletedAt": null, + "EntryId": "148a2e40-1bce-4854-b868-8514de1ef583", + "Definition": {}, + "Gloss": { + "en": "six", + "pt": "seis" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "536b66e9-5b56-4e3e-ba7b-8fe91daa7c87", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "35b68d05-0492-4bc2-9003-a3b443d6bb08", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "409b80d2-e926-4449-911c-956d23f7daef", + "DeletedAt": null, + "LexemeForm": { + "seh": "tap" + }, + "CitationForm": { + "seh": "tapa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "daeef4ba-0630-46d0-85f7-d42aea9bdc51", + "Order": 1, + "DeletedAt": null, + "EntryId": "409b80d2-e926-4449-911c-956d23f7daef", + "Definition": {}, + "Gloss": { + "en": "scoop", + "pt": "tirar gra\u0303os" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "beef260e-a484-4292-a903-a97b671ecd68", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "daeef4ba-0630-46d0-85f7-d42aea9bdc51", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7a8f21b-4304-4e87-9721-54c4097b3767", + "DeletedAt": null, + "LexemeForm": { + "seh": "tapatw" + }, + "CitationForm": { + "seh": "tapatwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fd6925ea-62b7-484d-b7f3-3e26652c2876", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7a8f21b-4304-4e87-9721-54c4097b3767", + "Definition": {}, + "Gloss": { + "en": "be enslaved", + "pt": "ser escravo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "48331395-f0b7-4a64-b754-e4ddf699e698", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "fd6925ea-62b7-484d-b7f3-3e26652c2876", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6b8a0da-b97d-4511-9562-bec2277c9c33", + "DeletedAt": null, + "LexemeForm": { + "seh": "tapik" + }, + "CitationForm": { + "seh": "tapika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2b1e6e5c-832b-4c98-bab7-3aab2e4ed099", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6b8a0da-b97d-4511-9562-bec2277c9c33", + "Definition": {}, + "Gloss": { + "en": "vomit", + "pt": "vomitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "272d4669-d22a-484f-b784-efac759790da", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2b1e6e5c-832b-4c98-bab7-3aab2e4ed099", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45f878d6-86a0-42a7-a9f2-ed74fb11f519", + "DeletedAt": null, + "LexemeForm": { + "seh": "tatu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "275e89aa-2531-4a04-8cc4-c633939186af", + "Order": 1, + "DeletedAt": null, + "EntryId": "45f878d6-86a0-42a7-a9f2-ed74fb11f519", + "Definition": {}, + "Gloss": { + "en": "three", + "pt": "tre\u0302s" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2f838722-389b-4048-9d1c-a48542f17fe3", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ana atatu", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:33", + "Ws": "en" + } + ] + }, + "SenseId": "275e89aa-2531-4a04-8cc4-c633939186af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tawir" + }, + "CitationForm": { + "seh": "tawira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be445097-46a4-456d-9ce2-cd5df74eedb0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "respond", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "responder", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "respond", + "pt": "responder" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cff5fb2a-3529-4640-8d38-963abf821737", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "be445097-46a4-456d-9ce2-cd5df74eedb0", + "DeletedAt": null + } + ] + }, + { + "Id": "3ce69d12-3a32-44e4-8761-314d11d493b0", + "Order": 2, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "agree", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "concordar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "agree", + "pt": "concordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "082609f1-948d-4d7e-88a8-bdbdf9c07aa8", + "Order": 3, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "believe", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cre", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "belive", + "pt": "crer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "9de92b45-c94c-4ad6-b43a-a91c3627b415", + "Order": 4, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "trust", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "confiar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trust", + "pt": "confiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "604b2b52-bb1a-4a4f-a945-58d91f6583ff", + "Order": 5, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "accept", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "acreditar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "accept", + "pt": "acreditar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30169f43-6797-4216-950d-36b330ca2c85", + "DeletedAt": null, + "LexemeForm": { + "seh": "tay" + }, + "CitationForm": { + "seh": "taya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9db6aecc-bae4-42fe-9a51-0e6141043296", + "Order": 1, + "DeletedAt": null, + "EntryId": "30169f43-6797-4216-950d-36b330ca2c85", + "Definition": {}, + "Gloss": { + "en": "throw out", + "pt": "deitar fora" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf0d2836-5d8a-45de-9fc0-cbc294dc138c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9db6aecc-bae4-42fe-9a51-0e6141043296", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af29747d-2cc8-47e4-8d31-cd87905ab185", + "DeletedAt": null, + "LexemeForm": { + "seh": "tayu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "Order": 1, + "DeletedAt": null, + "EntryId": "af29747d-2cc8-47e4-8d31-cd87905ab185", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "na\u0303o , usado por e\u0302mfase", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "not at all", + "pt": "nada" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16c4d35c-1267-434e-8cc6-ccbe251c4a37", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "si- aweni tayu", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "neg-eles(um groupo) na\u0303o", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "cc5f5926-b548-4efd-a6e0-96d501f30dec", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Wayenda xicola leru? Nkhabe, [sidaenda tayu.]", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Foste escola hoje\u0301 na\u0303o neg-fui na\u0303o", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "1e882aa3-5a06-4c43-b030-25ffe79ba369", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkhabe kucicita", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o fazer (eu na\u0303o fiz)", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "5be0c856-e85b-4d91-9bca-b4e1f97b9d50", + "Order": 4, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkabe kucifuna [tayu] - present", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "f7e5a22f-1c75-4d58-9c83-360f4411a1f6", + "Order": 5, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sindacifuna [tayu] - past", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d25cfdbe-1f0d-4dea-ab0a-0afa51f8a226", + "DeletedAt": null, + "LexemeForm": { + "seh": "tebzala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a8395899-5677-4b10-ad80-d2e54c4d5b30", + "Order": 1, + "DeletedAt": null, + "EntryId": "d25cfdbe-1f0d-4dea-ab0a-0afa51f8a226", + "Definition": {}, + "Gloss": { + "en": "father-in-law", + "pt": "sogro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5c9f4626-1c11-4da6-8100-10258a3de09b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook (tebzala)", + "Ws": "en" + } + ] + }, + "SenseId": "a8395899-5677-4b10-ad80-d2e54c4d5b30", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0635d81-8228-4ff7-8b7b-55f940d82f4b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tekeny" + }, + "CitationForm": { + "seh": "tekenya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0635d81-8228-4ff7-8b7b-55f940d82f4b", + "Definition": {}, + "Gloss": { + "en": "shake", + "pt": "mexer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ba4e9983-0fc6-4e44-8f47-b0ca2a988f40", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndatekenya karu", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Conduzir carro", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "DeletedAt": null + }, + { + "Id": "7b5b26af-1065-4c9e-b256-ed246155e847", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Phesi ya kutekenyeka na mphepo.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Canic\u0327o mudado pelo vento.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "DeletedAt": null + }, + { + "Id": "f6dcc2ad-61c5-4978-abf3-acd9403d6882", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndatekenya muti", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "Shake tree", + "Ws": "en" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "DeletedAt": null + } + ] + }, + { + "Id": "7d04a11e-a1cc-4c15-a02c-1867b204ccd1", + "Order": 2, + "DeletedAt": null, + "EntryId": "e0635d81-8228-4ff7-8b7b-55f940d82f4b", + "Definition": {}, + "Gloss": { + "en": "drive", + "pt": "conduzir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7898fcb4-34f0-4255-afcd-5d421ee02cf1", + "DeletedAt": null, + "LexemeForm": { + "seh": "teker" + }, + "CitationForm": { + "seh": "tekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "660286a9-9d95-41b5-9a83-0ade27159575", + "Order": 1, + "DeletedAt": null, + "EntryId": "7898fcb4-34f0-4255-afcd-5d421ee02cf1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "inappropriate behavior repeated or a sickness that continues", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it\u0027s too much", + "pt": "e\u0301 demais" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec301ca4-2289-4e6e-9b3f-16415ac8052e", + "DeletedAt": null, + "LexemeForm": { + "seh": "teketesan" + }, + "CitationForm": { + "seh": "teketesana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0cff3926-500e-48fa-a76e-586fa07b315b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec301ca4-2289-4e6e-9b3f-16415ac8052e", + "Definition": {}, + "Gloss": { + "en": "argue", + "pt": "discutir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f6679303-a1d2-4863-a062-f51e9abd67ec", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0cff3926-500e-48fa-a76e-586fa07b315b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "572a51a1-3a92-4d65-95d0-a1278a445550", + "DeletedAt": null, + "LexemeForm": { + "seh": "tem" + }, + "CitationForm": { + "seh": "tema" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78ffd0fa-3cef-472b-95ba-5212d0fd9cc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "572a51a1-3a92-4d65-95d0-a1278a445550", + "Definition": {}, + "Gloss": { + "en": "cut", + "pt": "cortar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e77ebb7-f44c-451c-952d-b9a2bebeae41", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "78ffd0fa-3cef-472b-95ba-5212d0fd9cc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4128ccd6-d6fa-4128-9de8-046444459ad9", + "DeletedAt": null, + "LexemeForm": { + "seh": "temek" + }, + "CitationForm": { + "seh": "temeka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ce11eb01-66ef-4c4f-a2aa-d39b0d8bc02d", + "Order": 1, + "DeletedAt": null, + "EntryId": "4128ccd6-d6fa-4128-9de8-046444459ad9", + "Definition": {}, + "Gloss": { + "en": "ferido", + "pt": "wounded" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5b5fff3-8af6-449e-8709-6f5a30bf28b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tenepa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9bc220f0-6d26-4dab-9dcd-ee5814702e7e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5b5fff3-8af6-449e-8709-6f5a30bf28b3", + "Definition": {}, + "Gloss": { + "en": "in this way", + "pt": "deste modo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e2df5029-cf41-4e40-8f5d-8280ad602f37", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9bc220f0-6d26-4dab-9dcd-ee5814702e7e", + "DeletedAt": null + } + ] + }, + { + "Id": "103c6d03-e0ce-4210-8c46-543c91a9a4fc", + "Order": 2, + "DeletedAt": null, + "EntryId": "d5b5fff3-8af6-449e-8709-6f5a30bf28b3", + "Definition": {}, + "Gloss": { + "en": "so", + "pt": "assim" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "50d5fa93-3d1c-4c7c-865c-de66b27a19f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "tenepo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4bd08dc0-41cf-4d75-93c7-8767c81179d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "50d5fa93-3d1c-4c7c-865c-de66b27a19f5", + "Definition": {}, + "Gloss": { + "en": "in that way", + "pt": "desse modo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eadf9a9e-e9e4-4bb2-b4d3-c4b8f91e2af8", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "4bd08dc0-41cf-4d75-93c7-8767c81179d1", + "DeletedAt": null + } + ] + }, + { + "Id": "d016f216-ef2f-4307-ac89-f31679d2e8fe", + "Order": 2, + "DeletedAt": null, + "EntryId": "50d5fa93-3d1c-4c7c-865c-de66b27a19f5", + "Definition": {}, + "Gloss": { + "en": "so" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "533833e0-0775-46fc-96a4-c9a402458353", + "DeletedAt": null, + "LexemeForm": { + "seh": "tey" + }, + "CitationForm": { + "seh": "teya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09b9897f-e966-4ebb-b14b-4d39f7cffae1", + "Order": 1, + "DeletedAt": null, + "EntryId": "533833e0-0775-46fc-96a4-c9a402458353", + "Definition": {}, + "Gloss": { + "en": "give birth", + "pt": "parir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ab1f906-e3fc-4ba9-ba8a-167b1739d7fb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "09b9897f-e966-4ebb-b14b-4d39f7cffae1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f61f8753-b15d-44b9-ad22-2e14c70a6437", + "DeletedAt": null, + "LexemeForm": { + "seh": "thabuk" + }, + "CitationForm": { + "seh": "thabuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4e98335-0d70-47d8-b43d-f7ee335ad565", + "Order": 1, + "DeletedAt": null, + "EntryId": "f61f8753-b15d-44b9-ad22-2e14c70a6437", + "Definition": {}, + "Gloss": { + "en": "suffer", + "pt": "sofrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b73fe253-8ddc-42c3-96ba-6a21cba6afda", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c4e98335-0d70-47d8-b43d-f7ee335ad565", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a600e79-f024-41b3-a787-9d1357d931cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "thabus" + }, + "CitationForm": { + "seh": "thabusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f5908d1-d132-4290-b5cf-9c45bd76e15d", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a600e79-f024-41b3-a787-9d1357d931cf", + "Definition": {}, + "Gloss": { + "en": "punish", + "pt": "castigar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "22098c73-1fec-4416-a343-b8fb0758c7a7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1f5908d1-d132-4290-b5cf-9c45bd76e15d", + "DeletedAt": null + } + ] + }, + { + "Id": "636a6a22-a647-4966-aa8a-50d018f0a58b", + "Order": 2, + "DeletedAt": null, + "EntryId": "5a600e79-f024-41b3-a787-9d1357d931cf", + "Definition": {}, + "Gloss": { + "en": "suffer", + "pt": "sofrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4c6cdc5c-7177-4f2d-8c44-d73cf530c95d", + "DeletedAt": null, + "LexemeForm": { + "seh": "tako" + }, + "CitationForm": { + "seh": "thako" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e834c2bb-bd64-45cf-ac25-8cfa82fd4f4d", + "Order": 1, + "DeletedAt": null, + "EntryId": "4c6cdc5c-7177-4f2d-8c44-d73cf530c95d", + "Definition": {}, + "Gloss": { + "en": "buttock", + "pt": "na\u0301dega" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2e48ad99-9431-4480-a398-567583aa0335", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "e834c2bb-bd64-45cf-ac25-8cfa82fd4f4d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7bfb038-e859-4063-8ead-a708d88d7a32", + "DeletedAt": null, + "LexemeForm": { + "seh": "thamang" + }, + "CitationForm": { + "seh": "thamanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3a72249d-72e0-4470-98b2-6fb64a0bd357", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7bfb038-e859-4063-8ead-a708d88d7a32", + "Definition": {}, + "Gloss": { + "en": "run", + "pt": "correr" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7452d1d2-eb8a-4c5b-acb4-23b85491ea96", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3a72249d-72e0-4470-98b2-6fb64a0bd357", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2f988d06-4001-4702-bf4e-a4da48cb7564", + "DeletedAt": null, + "LexemeForm": { + "seh": "thambo" + }, + "CitationForm": { + "seh": "thambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04aaab1a-5495-42b1-a958-3f72ca3de6e8", + "Order": 1, + "DeletedAt": null, + "EntryId": "2f988d06-4001-4702-bf4e-a4da48cb7564", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sky, space, where there are stars, not heaven", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ceu, firmamento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "sky", + "pt": "ceu" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "109b3ea6-ebce-494d-b423-7b88b9f9f125", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "04aaab1a-5495-42b1-a958-3f72ca3de6e8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "980fbf75-8c1c-4dd1-890c-7f9f1b92e107", + "DeletedAt": null, + "LexemeForm": { + "seh": "thando" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "59b235d0-71ff-4d3d-9050-eb56582b40ca", + "Order": 1, + "DeletedAt": null, + "EntryId": "980fbf75-8c1c-4dd1-890c-7f9f1b92e107", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a place where noone lives, wilderness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "desert", + "pt": "deserto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "7988974c-99fd-40dd-9b5e-2d81ec603ddc", + "Name": { + "en": "Forest, grassland, desert" + }, + "Code": "1.2.1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "e35fb6e6-d506-4a42-b511-13485828df25", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "59b235d0-71ff-4d3d-9050-eb56582b40ca", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a7995695-c240-4962-8226-eda7227fa7cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "thanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ef4f01e-1158-4b4f-8f05-427691f8a458", + "Order": 1, + "DeletedAt": null, + "EntryId": "a7995695-c240-4962-8226-eda7227fa7cc", + "Definition": {}, + "Gloss": { + "en": "pumpkin", + "pt": "abobora" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4be96911-b117-4f1c-805e-265b0746a442", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "7ef4f01e-1158-4b4f-8f05-427691f8a458", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f94cb8ec-f0fa-4889-b92f-26cdc3b34a24", + "DeletedAt": null, + "LexemeForm": { + "seh": "thanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "178130d5-6ddd-4fcf-8a25-2da2b42a9fef", + "Order": 1, + "DeletedAt": null, + "EntryId": "f94cb8ec-f0fa-4889-b92f-26cdc3b34a24", + "Definition": {}, + "Gloss": { + "en": "kraal", + "pt": "corral" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dadd7ec-7d11-4f32-a7ee-a3f770b2ee6b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "178130d5-6ddd-4fcf-8a25-2da2b42a9fef", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d1cc305b-b91a-403a-a50c-7071fbb7a4c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangir" + }, + "CitationForm": { + "seh": "thangira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b6d85ba-d915-4ab4-a276-64c26534135b", + "Order": 1, + "DeletedAt": null, + "EntryId": "d1cc305b-b91a-403a-a50c-7071fbb7a4c8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to do before another person, preempt, \u0022beat to the punch\u0022", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "do first", + "pt": "anticipar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7b58e8f9-6ce4-4307-9f5a-9cf6af7224bb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5b6d85ba-d915-4ab4-a276-64c26534135b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b6f4402-e670-469f-81c2-7b58341f52bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangwi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "17f9b2ab-451b-492b-905f-9429e4abc8ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b6f4402-e670-469f-81c2-7b58341f52bb", + "Definition": {}, + "Gloss": { + "en": "because", + "pt": "porque" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1d9d1e66-cbcc-4ad5-ad8d-0e9c07028f44", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "sulo 037; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "17f9b2ab-451b-492b-905f-9429e4abc8ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a062fca8-cd51-47e5-bb98-b33542fbf36f", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangwi" + }, + "CitationForm": { + "seh": "thangwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6115d59e-4e92-405f-bcfb-459907d99e66", + "Order": 1, + "DeletedAt": null, + "EntryId": "a062fca8-cd51-47e5-bb98-b33542fbf36f", + "Definition": {}, + "Gloss": { + "en": "cause", + "pt": "por causa de" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ca3e124-6147-4cdf-8120-63ca80b9369f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "6115d59e-4e92-405f-bcfb-459907d99e66", + "DeletedAt": null + } + ] + }, + { + "Id": "12fae128-5dc7-4143-8ebd-dc84bc3af794", + "Order": 2, + "DeletedAt": null, + "EntryId": "a062fca8-cd51-47e5-bb98-b33542fbf36f", + "Definition": {}, + "Gloss": { + "en": "guilt", + "pt": "culpa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d01e0fb0-0c57-4371-89ba-c959f4b818b4", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangwi anji?" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "de0c5b8a-9f70-4dd3-890c-43931b7907fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d01e0fb0-0c57-4371-89ba-c959f4b818b4", + "Definition": {}, + "Gloss": { + "en": "why?", + "pt": "error porque?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2fbc4f3a-60b0-4038-a27f-1fc9e0d409db", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "de0c5b8a-9f70-4dd3-890c-43931b7907fc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86092307-18bf-4b3c-8dda-480edb917a7a", + "DeletedAt": null, + "LexemeForm": { + "seh": "thanya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a99c2963-ef2c-4f80-a549-fb25ddcd3767", + "Order": 1, + "DeletedAt": null, + "EntryId": "86092307-18bf-4b3c-8dda-480edb917a7a", + "Definition": {}, + "Gloss": { + "en": "leprosy", + "pt": "lepra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c004700f-6d08-4032-8498-373fe0e6435e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thasik" + }, + "CitationForm": { + "seh": "thasika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04116e62-fca1-4b32-b2c0-ca82646efe3a", + "Order": 1, + "DeletedAt": null, + "EntryId": "c004700f-6d08-4032-8498-373fe0e6435e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to spread out on the ground or hang out to dry", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "extend", + "pt": "estender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "794777e5-9fcf-482a-b206-58c6c128df56", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "04116e62-fca1-4b32-b2c0-ca82646efe3a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2bff9aa-8666-449d-814f-b96bfb88f9b9", + "DeletedAt": null, + "LexemeForm": { + "seh": "thaw" + }, + "CitationForm": { + "seh": "thawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad2949d1-f16f-4086-a94e-3331fab7072d", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2bff9aa-8666-449d-814f-b96bfb88f9b9", + "Definition": {}, + "Gloss": { + "en": "flee", + "pt": "fugir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "36fbdc51-1612-4d62-b28f-a6b86f352e91", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ad2949d1-f16f-4086-a94e-3331fab7072d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff5bb86f-26ad-49ef-9743-231d46cb9531", + "DeletedAt": null, + "LexemeForm": { + "seh": "thawala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ed7a308d-7bec-4372-8253-d13abd1945b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff5bb86f-26ad-49ef-9743-231d46cb9531", + "Definition": {}, + "Gloss": { + "en": "lake", + "pt": "lago" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "0c292ae0-a522-4c85-bcd4-4523e35f0615", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ed7a308d-7bec-4372-8253-d13abd1945b1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "70987fd8-ffce-456b-b96a-736d2bb2d9ba", + "DeletedAt": null, + "LexemeForm": { + "seh": "thesi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "505400d3-1e4a-42ce-acef-758b92bed1fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "70987fd8-ffce-456b-b96a-736d2bb2d9ba", + "Definition": {}, + "Gloss": { + "en": "frog", + "pt": "ra\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d239fbb1-882b-40f4-b3ee-1b1d9d28a6c3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "505400d3-1e4a-42ce-acef-758b92bed1fc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "093b10b6-c34c-4126-a4cb-0c209cfe66e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tika" + }, + "CitationForm": { + "seh": "thika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "13592c25-2d1e-4c60-98ad-9ea4ccd6a6a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "093b10b6-c34c-4126-a4cb-0c209cfe66e3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hyena", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hyena", + "pt": "hiena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a66816d0-e35a-42af-b184-11414ede1088", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "13592c25-2d1e-4c60-98ad-9ea4ccd6a6a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "daee4cec-ea74-485d-b750-3c46af48694c", + "DeletedAt": null, + "LexemeForm": { + "seh": "atikiti" + }, + "CitationForm": { + "seh": "thikiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94749a03-836e-4bd5-a4f1-9da4b3f5b05b", + "Order": 1, + "DeletedAt": null, + "EntryId": "daee4cec-ea74-485d-b750-3c46af48694c", + "Definition": {}, + "Gloss": { + "en": "ticket", + "pt": "bilhete" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc2c0495-ec68-4eef-b796-689b8ab1496a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "94749a03-836e-4bd5-a4f1-9da4b3f5b05b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45981d7b-4ef6-407a-a229-e2a9cd14d509", + "DeletedAt": null, + "LexemeForm": { + "seh": "thim" + }, + "CitationForm": { + "seh": "thima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3c5e68c4-1133-4d06-8f01-c33987ba51eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "45981d7b-4ef6-407a-a229-e2a9cd14d509", + "Definition": {}, + "Gloss": { + "en": "extinguish", + "pt": "estinguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2002e000-f5da-4205-9776-9e54fcca3e67", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3c5e68c4-1133-4d06-8f01-c33987ba51eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f16067f1-f4c5-4cc4-b3a9-defff0d212a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "thimidz" + }, + "CitationForm": { + "seh": "thimidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a8c34399-4446-4f34-8064-5850c2d0f45a", + "Order": 1, + "DeletedAt": null, + "EntryId": "f16067f1-f4c5-4cc4-b3a9-defff0d212a5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "serve more food or drink", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "po\u0302r mais no prato ou no copo, acrescentar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "add to", + "pt": "acrescentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5a3faadd-0f4b-47ce-a479-4d2fdc66885c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Thimidzani madzi nkomixo.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Acrescente a\u0301gua no copo.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "a8c34399-4446-4f34-8064-5850c2d0f45a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a38eddad-09cd-420a-85b9-b8bffa0341e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "thimis" + }, + "CitationForm": { + "seh": "thimisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc5958ca-8e90-45de-8354-59d185422059", + "Order": 1, + "DeletedAt": null, + "EntryId": "a38eddad-09cd-420a-85b9-b8bffa0341e8", + "Definition": {}, + "Gloss": { + "en": "extinguish", + "pt": "apagar fogo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62b9ac22-82aa-43fd-b8f5-2e5234873267", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bc5958ca-8e90-45de-8354-59d185422059", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3793a9d3-19b9-413a-9ebf-00747a213025", + "DeletedAt": null, + "LexemeForm": { + "seh": "thimiz" + }, + "CitationForm": { + "seh": "thimiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a82aa97-31cf-43c3-a14b-09ffe761131e", + "Order": 1, + "DeletedAt": null, + "EntryId": "3793a9d3-19b9-413a-9ebf-00747a213025", + "Definition": {}, + "Gloss": { + "en": "increase", + "pt": "aumentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d9b32823-4cb1-4957-8406-5589af352c78", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2a82aa97-31cf-43c3-a14b-09ffe761131e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "244d26db-dad3-4ecb-b9a9-c43f4518e5bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "thinidz" + }, + "CitationForm": { + "seh": "thinidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1bb87002-3523-48d6-b63e-b1cb9afd3abf", + "Order": 1, + "DeletedAt": null, + "EntryId": "244d26db-dad3-4ecb-b9a9-c43f4518e5bb", + "Definition": {}, + "Gloss": { + "en": "add", + "pt": "acrescentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "51dc5787-c52a-4b5e-afa6-1103199f6d2f", + "DeletedAt": null, + "LexemeForm": { + "seh": "thirir" + }, + "CitationForm": { + "seh": "thirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98979afc-58f8-4894-bc22-f9daa3d857e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "51dc5787-c52a-4b5e-afa6-1103199f6d2f", + "Definition": {}, + "Gloss": { + "en": "pour", + "pt": "po\u0302r a\u0301gua" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9e704e40-c9e7-4953-bcf5-08710bb1d9b8", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndithirireni manja.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Po\u0302r agua nas ma\u0303os.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "98979afc-58f8-4894-bc22-f9daa3d857e1", + "DeletedAt": null + } + ] + }, + { + "Id": "ea8dcc79-5ac4-448c-9326-f727516e7bf4", + "Order": 2, + "DeletedAt": null, + "EntryId": "51dc5787-c52a-4b5e-afa6-1103199f6d2f", + "Definition": {}, + "Gloss": { + "en": "to water", + "pt": "regar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "84279a81-6f27-49a0-8d48-5f8f9cc9632d", + "DeletedAt": null, + "LexemeForm": { + "seh": "thoera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a764da34-5c43-421d-9aac-e3260e289725", + "Order": 1, + "DeletedAt": null, + "EntryId": "84279a81-6f27-49a0-8d48-5f8f9cc9632d", + "Definition": {}, + "Gloss": { + "en": "loincloth", + "pt": "tanga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "962e3417-83f3-40b3-bd94-3ae33b25a169", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a764da34-5c43-421d-9aac-e3260e289725", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d48098be-2356-4412-ac3c-786c21fb63b9", + "DeletedAt": null, + "LexemeForm": { + "seh": "thongwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94f68ad2-1d69-41de-8aee-0185e99f8ccf", + "Order": 1, + "DeletedAt": null, + "EntryId": "d48098be-2356-4412-ac3c-786c21fb63b9", + "Definition": {}, + "Gloss": { + "en": "pasturage", + "pt": "pastagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9ab7291-c77e-423e-b02f-d93b6bf45b69", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "94f68ad2-1d69-41de-8aee-0185e99f8ccf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8ce2c8ec-2d31-4277-8f01-ae503e81c751", + "DeletedAt": null, + "LexemeForm": { + "seh": "thonje" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "890eb70c-54b8-4a4d-b031-db9451dc98ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "8ce2c8ec-2d31-4277-8f01-ae503e81c751", + "Definition": {}, + "Gloss": { + "en": "cotton", + "pt": "algoda\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dc571432-a53c-40be-b634-1841c1764a27", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "890eb70c-54b8-4a4d-b031-db9451dc98ab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab892c21-8abf-4bd4-a452-c12d724a9d49", + "DeletedAt": null, + "LexemeForm": { + "seh": "thony" + }, + "CitationForm": { + "seh": "thonya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9a261001-cf61-46f3-8e58-7cae8273b3ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab892c21-8abf-4bd4-a452-c12d724a9d49", + "Definition": {}, + "Gloss": { + "en": "point", + "pt": "apontar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ccec8ed-ae50-4282-9e58-e41bbdd9ee34", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "9a261001-cf61-46f3-8e58-7cae8273b3ba", + "DeletedAt": null + } + ] + }, + { + "Id": "7d75b23b-4960-47e8-93f1-d4a3136f04b9", + "Order": 2, + "DeletedAt": null, + "EntryId": "ab892c21-8abf-4bd4-a452-c12d724a9d49", + "Definition": {}, + "Gloss": { + "en": "choose", + "pt": "escolher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bc08c8c8-291b-40b3-9b12-6cc96852456d", + "DeletedAt": null, + "LexemeForm": { + "seh": "thu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8b2a4aa-2771-4b20-9488-60f4ef42e93f", + "Order": 1, + "DeletedAt": null, + "EntryId": "bc08c8c8-291b-40b3-9b12-6cc96852456d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "our", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "nosso", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1PL", + "pt": "1PL" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09e70d34-a5e3-43f3-8a86-53aab3d2155e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thubu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d2332721-57bf-4367-8f26-fa188d1386cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "09e70d34-a5e3-43f3-8a86-53aab3d2155e", + "Definition": {}, + "Gloss": { + "en": "elder", + "pt": "ancia\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "46f0e8a5-26ca-4cd7-9764-4259904f4205", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d2332721-57bf-4367-8f26-fa188d1386cb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb550121-b7aa-46cb-83dd-4be296564816", + "DeletedAt": null, + "LexemeForm": { + "seh": "thul" + }, + "CitationForm": { + "seh": "thula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94991b8a-9d06-43f6-8903-159c9b5ee9df", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb550121-b7aa-46cb-83dd-4be296564816", + "Definition": {}, + "Gloss": { + "en": "give name", + "pt": "dar nome" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "99b4793d-beda-413b-9a47-6581fcf29bed", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "94991b8a-9d06-43f6-8903-159c9b5ee9df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3d85aa59-6fd2-46c9-8919-236af76e2af0", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumbi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6dc56367-27f8-4f4f-bd7f-9a04bc470966", + "Order": 1, + "DeletedAt": null, + "EntryId": "3d85aa59-6fd2-46c9-8919-236af76e2af0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a small bag on a string for holding money or small personal items", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "bag", + "pt": "bolso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72de2715-381e-4cae-936c-5222267657c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumbzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "05fc5ede-c5ac-4b95-ac1d-ce44536dd56a", + "Order": 1, + "DeletedAt": null, + "EntryId": "72de2715-381e-4cae-936c-5222267657c7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "female goat that has not yet had kids", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "goat", + "pt": "cabra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c1a3e324-6247-4d0c-bb9a-6b772ee1656f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "05fc5ede-c5ac-4b95-ac1d-ce44536dd56a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "59f33df3-3613-4381-bcd5-f30225ac42cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumul" + }, + "CitationForm": { + "seh": "thumula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d3b472d-b11b-46c5-b440-3e0c3b93465f", + "Order": 1, + "DeletedAt": null, + "EntryId": "59f33df3-3613-4381-bcd5-f30225ac42cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "snap a whip", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "arrebentar com ma\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "snap", + "pt": "arrebentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a0788c5-6d69-426c-9b01-0a21499f0c6a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d3b472d-b11b-46c5-b440-3e0c3b93465f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41f103e8-4164-426a-8ca6-34e0bd958981", + "DeletedAt": null, + "LexemeForm": { + "seh": "thupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "459bd1a5-34de-49d8-b98f-03aa6705b13d", + "Order": 1, + "DeletedAt": null, + "EntryId": "41f103e8-4164-426a-8ca6-34e0bd958981", + "Definition": {}, + "Gloss": { + "en": "body form", + "pt": "corpo forma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "77457bd1-7880-42d7-83cb-fe1a9e2769c3", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "thupi ing\u0027ono", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "corpo pequeno", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "459bd1a5-34de-49d8-b98f-03aa6705b13d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1d884862-73ef-43a8-aa5b-cd5c6e1e9ae1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3acbd0c7-6157-45ee-a9de-023564e4cb89", + "Order": 1, + "DeletedAt": null, + "EntryId": "1d884862-73ef-43a8-aa5b-cd5c6e1e9ae1", + "Definition": {}, + "Gloss": { + "en": "speak", + "pt": "falar 2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3926f2bb-c9ee-412e-8f0d-30273e286ce1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "693324a1-f760-46d2-b801-9d7aee566717", + "Order": 1, + "DeletedAt": null, + "EntryId": "3926f2bb-c9ee-412e-8f0d-30273e286ce1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "we", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "no\u0301s", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1P", + "pt": "1P" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d22c2b0d-2c83-42d2-973b-c20afdcc9398", + "Order": 2, + "DeletedAt": null, + "EntryId": "3926f2bb-c9ee-412e-8f0d-30273e286ce1", + "Definition": {}, + "Gloss": { + "en": "1P", + "pt": "1P" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a95bccc-c795-4f28-8353-64513f1c83cb", + "DeletedAt": null, + "LexemeForm": { + "seh": "tikan" + }, + "CitationForm": { + "seh": "tikana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "194662d7-732d-4c3c-8a38-39c3ec910646", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a95bccc-c795-4f28-8353-64513f1c83cb", + "Definition": {}, + "Gloss": { + "en": "insult", + "pt": "insultar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "40ec8061-de4e-4be5-aef4-6351195ce220", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "194662d7-732d-4c3c-8a38-39c3ec910646", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d444aa30-4bae-495f-ab07-e6063cd92857", + "DeletedAt": null, + "LexemeForm": { + "seh": "tirigu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cddbdd63-7bc5-47a6-abf6-2f8853f6cee0", + "Order": 1, + "DeletedAt": null, + "EntryId": "d444aa30-4bae-495f-ab07-e6063cd92857", + "Definition": {}, + "Gloss": { + "en": "wheat", + "pt": "trigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "323a8f6a-b082-4572-98a0-dcc01bde12c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "toera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3d49958b-619a-4620-b1c6-7c6fd7899de3", + "Order": 1, + "DeletedAt": null, + "EntryId": "323a8f6a-b082-4572-98a0-dcc01bde12c8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in order to", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "in order to", + "pt": "para que" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4fb571f2-247e-429e-977d-dbb82ab22399", + "DeletedAt": null, + "LexemeForm": { + "seh": "tom" + }, + "CitationForm": { + "seh": "toma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "625ce16c-7cca-4209-8052-c78dddfed8cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "4fb571f2-247e-429e-977d-dbb82ab22399", + "Definition": {}, + "Gloss": { + "en": "start", + "pt": "comec\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "18c52e64-3c5c-41e6-ae34-4505767a4cdd", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "625ce16c-7cca-4209-8052-c78dddfed8cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "60e74399-05ff-44d5-b4a1-f593e5bdceb4", + "MaybeId": "60e74399-05ff-44d5-b4a1-f593e5bdceb4", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "ComplexFormHeadword": "toma-toma", + "ComponentEntryId": "4fb571f2-247e-429e-977d-dbb82ab22399", + "ComponentSenseId": null, + "ComponentHeadword": "toma" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "DeletedAt": null, + "LexemeForm": { + "seh": "toma-tom" + }, + "CitationForm": { + "seh": "toma-toma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8c76e0a3-47d5-4412-b5e6-c8b8338538a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "Definition": { + "en": { + "Spans": [ + { + "Text": "very beginning", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "princi\u0301pio mesmo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "beginning", + "pt": "princi\u0301pio" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d23f4424-0e2f-4470-be17-8b4dd825f40d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8c76e0a3-47d5-4412-b5e6-c8b8338538a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "60e74399-05ff-44d5-b4a1-f593e5bdceb4", + "MaybeId": "60e74399-05ff-44d5-b4a1-f593e5bdceb4", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "ComplexFormHeadword": "toma-toma", + "ComponentEntryId": "4fb571f2-247e-429e-977d-dbb82ab22399", + "ComponentSenseId": null, + "ComponentHeadword": "toma" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c42ca81b-5821-4369-aa36-7f296e5164ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "tong" + }, + "CitationForm": { + "seh": "tonga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be876ecb-1662-4abf-ab67-4e7b43d600de", + "Order": 1, + "DeletedAt": null, + "EntryId": "c42ca81b-5821-4369-aa36-7f296e5164ab", + "Definition": {}, + "Gloss": { + "en": "rule", + "pt": "reinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2dba3be5-e82a-4fd2-8cdb-2415b099aa3e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "be876ecb-1662-4abf-ab67-4e7b43d600de", + "DeletedAt": null + } + ] + }, + { + "Id": "b429c752-8136-42a4-b68d-e0d1adb7ed22", + "Order": 2, + "DeletedAt": null, + "EntryId": "c42ca81b-5821-4369-aa36-7f296e5164ab", + "Definition": {}, + "Gloss": { + "en": "judge", + "pt": "julgar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3935a3f1-3eee-4cfa-8aa0-ee41c4071c93", + "DeletedAt": null, + "LexemeForm": { + "seh": "tot" + }, + "CitationForm": { + "seh": "tota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3fd82d2b-b8a1-490a-acc6-708d88540bcd", + "Order": 1, + "DeletedAt": null, + "EntryId": "3935a3f1-3eee-4cfa-8aa0-ee41c4071c93", + "Definition": {}, + "Gloss": { + "en": "wet", + "pt": "molhado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee117764-7d34-40d6-8dfa-4cc52a04c751", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "3fd82d2b-b8a1-490a-acc6-708d88540bcd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb6a83e4-6b17-4404-ad53-132336baee91", + "DeletedAt": null, + "LexemeForm": { + "seh": "totes" + }, + "CitationForm": { + "seh": "totesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b547ec3a-2566-4f59-8d7b-5d6b607fb74e", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb6a83e4-6b17-4404-ad53-132336baee91", + "Definition": {}, + "Gloss": { + "en": "get wet", + "pt": "molhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4e29431-968e-4418-be47-e353b66114f1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b547ec3a-2566-4f59-8d7b-5d6b607fb74e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc6de902-80a8-44aa-883b-2c0b30d302e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tower" + }, + "CitationForm": { + "seh": "towera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "843731e3-603e-4249-ba99-754a719865e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc6de902-80a8-44aa-883b-2c0b30d302e9", + "Definition": {}, + "Gloss": { + "en": "follow", + "pt": "segir atras de" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "1b73b2bf-9582-4f8a-822a-e0d020272c7c", + "Name": { + "en": "Follow" + }, + "Code": "7.2.5.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "521096cd-367f-41f0-a3fb-771ab8c69de7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "843731e3-603e-4249-ba99-754a719865e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4aa41cbc-e472-4949-bf2c-0846042f9f9c", + "DeletedAt": null, + "LexemeForm": { + "seh": "towez" + }, + "CitationForm": { + "seh": "toweza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fdcdb28b-0bc6-4e95-82bc-45e2e0418405", + "Order": 1, + "DeletedAt": null, + "EntryId": "4aa41cbc-e472-4949-bf2c-0846042f9f9c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "follow a concept", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "seguir a ideia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "follow", + "pt": "seguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eae0fd5a-2801-4366-be34-dec6f7b252ce", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "fdcdb28b-0bc6-4e95-82bc-45e2e0418405", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a250917f-f920-4f70-9f73-adf4916b0da0", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsakal" + }, + "CitationForm": { + "seh": "tsakala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f02956b-df94-46df-a074-ce6387e75b3a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a250917f-f920-4f70-9f73-adf4916b0da0", + "Definition": {}, + "Gloss": { + "en": "wear out", + "pt": "envelhecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8dc1be56-7f70-4730-894d-3aa68957c827", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsa\u0301kala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "02ebdfc0-2508-409a-9bec-019437e80fc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "8dc1be56-7f70-4730-894d-3aa68957c827", + "Definition": { + "en": { + "Spans": [ + { + "Text": "torn cloth", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "farapo, pano rasgado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rag", + "pt": "farapo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5c5bc889-ec8b-4846-b7ac-c49a678df125", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "02ebdfc0-2508-409a-9bec-019437e80fc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c85ca2c3-5367-4f52-b7ac-c5468d1f7ef3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsalakan" + }, + "CitationForm": { + "seh": "tsalakana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2aedd60c-398c-4cf4-9b9e-24c9a0ac9d4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c85ca2c3-5367-4f52-b7ac-c5468d1f7ef3", + "Definition": {}, + "Gloss": { + "en": "think", + "pt": "pensar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4c6dfc4-fce1-4285-ad5a-c4ce4d7ed022", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsam" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "106bb902-0085-4070-a820-3a6551f7b8a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4c6dfc4-fce1-4285-ad5a-c4ce4d7ed022", + "Definition": {}, + "Gloss": { + "en": "disembark", + "pt": "desembarque " + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1bc4c289-7ca9-4837-be70-60408986b881", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsamba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cb4114f3-6b9c-4d10-83da-15aa3707622f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1bc4c289-7ca9-4837-be70-60408986b881", + "Definition": {}, + "Gloss": { + "en": "leaf", + "pt": "folha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61bf33e1-2041-4720-9308-b9837e7d6ecc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Wrth; Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cb4114f3-6b9c-4d10-83da-15aa3707622f", + "DeletedAt": null + } + ] + }, + { + "Id": "8a1aab3b-5e70-4283-afd6-e169458cdf69", + "Order": 2, + "DeletedAt": null, + "EntryId": "1bc4c289-7ca9-4837-be70-60408986b881", + "Definition": {}, + "Gloss": { + "en": "sheet of paper", + "pt": "folha de papel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "18938887-46cf-45ca-b2c9-9d432d9de64a", + "Order": 3, + "DeletedAt": null, + "EntryId": "1bc4c289-7ca9-4837-be70-60408986b881", + "Definition": {}, + "Gloss": { + "en": "letter", + "pt": "carta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a293d3ca-3546-4139-923b-07d682c34bf1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", + "Order": 1, + "DeletedAt": null, + "EntryId": "a293d3ca-3546-4139-923b-07d682c34bf1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "savannah open grassland, desert, burned field, wilderness", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "savana sem muitos a\u0301rvores, deserto, mato queimado, sem capi\u0301m", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bushland", + "pt": "mato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "7988974c-99fd-40dd-9b5e-2d81ec603ddc", + "Name": { + "en": "Forest, grassland, desert" + }, + "Code": "1.2.1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "35f6bef0-6044-4df3-8f8e-dd923bce2274", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p28 says forest", + "Ws": "en" + } + ] + }, + "SenseId": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", + "DeletedAt": null + }, + { + "Id": "a67fc229-474e-4742-9967-6f1102042405", + "Order": 2, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", + "DeletedAt": null + } + ] + }, + { + "Id": "6b33c75b-bfe6-48e5-b698-7c2386f22c25", + "Order": 2, + "DeletedAt": null, + "EntryId": "a293d3ca-3546-4139-923b-07d682c34bf1", + "Definition": {}, + "Gloss": { + "en": "weeds", + "pt": "capim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a1d04188-ee3b-40cc-a591-6a1bc8b99183", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4e1623b7-2320-48c6-a4d2-1d535a22a87f", + "Order": 1, + "DeletedAt": null, + "EntryId": "a1d04188-ee3b-40cc-a591-6a1bc8b99183", + "Definition": {}, + "Gloss": { + "en": "wasp", + "pt": "vespa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0914468b-9c18-4b00-9c3a-76fec89da19e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,19", + "Ws": "en" + } + ] + }, + "SenseId": "4e1623b7-2320-48c6-a4d2-1d535a22a87f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2614a9d9-5279-4b6e-9f33-1db67d2d0100", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanzay" + }, + "CitationForm": { + "seh": "tsanzaya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce9787bb-6789-49f9-9981-27b1724cef66", + "Order": 1, + "DeletedAt": null, + "EntryId": "2614a9d9-5279-4b6e-9f33-1db67d2d0100", + "Definition": {}, + "Gloss": { + "en": "happy", + "pt": "feliz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ccd1560-00cc-4757-9bbf-e29093335453", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwana wa kusanzaya", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Crianca feliz", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "komerwa = gostar, amar", + "Ws": "en" + } + ] + }, + "SenseId": "ce9787bb-6789-49f9-9981-27b1724cef66", + "DeletedAt": null + }, + { + "Id": "7571567b-f4b5-467e-83b1-a1a4547a3a1f", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwana aenda kunyumba na kusanzaya.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "A crianca feliz foi a casa.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "ce9787bb-6789-49f9-9981-27b1724cef66", + "DeletedAt": null + } + ] + }, + { + "Id": "d8c5c5b8-9b61-4fea-95b3-7ec530fd4644", + "Order": 2, + "DeletedAt": null, + "EntryId": "2614a9d9-5279-4b6e-9f33-1db67d2d0100", + "Definition": {}, + "Gloss": { + "en": "satisfaction", + "pt": "satisfac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "be4fbcf0-d232-4aac-bb85-ce9ba780b2dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanzayis" + }, + "CitationForm": { + "seh": "tsanzayisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2ec29c07-952c-4c22-94e9-f18d655c3133", + "Order": 1, + "DeletedAt": null, + "EntryId": "be4fbcf0-d232-4aac-bb85-ce9ba780b2dd", + "Definition": {}, + "Gloss": { + "en": "make happy", + "pt": "causar ser feliz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "77024558-c174-4747-873b-8c33fd5b35b3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "2ec29c07-952c-4c22-94e9-f18d655c3133", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "592cbddf-54f0-4f8f-a707-11b8f1ef28e1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsato" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9c28e583-c552-4275-9691-a5bf860a2578", + "Order": 1, + "DeletedAt": null, + "EntryId": "592cbddf-54f0-4f8f-a707-11b8f1ef28e1", + "Definition": {}, + "Gloss": { + "en": "boa constrictor", + "pt": "jibo\u0301ia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e69d4f94-7151-41f2-a772-cd0a685273d5", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsau" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3736a2ed-4afc-47be-98f0-c1fd28d42f84", + "Order": 1, + "DeletedAt": null, + "EntryId": "e69d4f94-7151-41f2-a772-cd0a685273d5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "species of small apple", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "mac\u0327anica", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "apple", + "pt": "mac\u0327anica" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5f350568-3b62-4de9-b42f-347b886300aa", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3736a2ed-4afc-47be-98f0-c1fd28d42f84", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4c01b16c-1a2d-4318-93be-8d4b6b2abbd7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsekwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "99872666-823a-445c-8f3a-0d5c8798ef7e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4c01b16c-1a2d-4318-93be-8d4b6b2abbd7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild goose or duck", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ganso ou pato bravo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "goose", + "pt": "ganso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "714decc8-6909-4408-b390-f908cf4e2e3b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "99872666-823a-445c-8f3a-0d5c8798ef7e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aabd71a3-95d5-495d-bdbc-92176795563a", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsinde" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c4f3e215-8ab4-4bd0-ad3c-1347ecccfbc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "aabd71a3-95d5-495d-bdbc-92176795563a", + "Definition": {}, + "Gloss": { + "en": "at the foot of", + "pt": "em baixo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "134a1867-cda7-43bc-ab0c-417725e82010", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c4f3e215-8ab4-4bd0-ad3c-1347ecccfbc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4f12e40-8553-4b37-b8c5-5b54388ee389", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsisi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "236decb1-bb94-472b-8a02-4b46e83fcd67", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4f12e40-8553-4b37-b8c5-5b54388ee389", + "Definition": {}, + "Gloss": { + "en": "hair", + "pt": "cabelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9bd5cdd6-5d34-42a6-b959-fb3d7415216f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,19 tshisi; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "236decb1-bb94-472b-8a02-4b46e83fcd67", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "40925010-195e-428a-a1a1-1dc97506192e", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsogol" + }, + "CitationForm": { + "seh": "tsogola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "035b3bfa-5694-4c35-9c0d-2f8d70250156", + "Order": 1, + "DeletedAt": null, + "EntryId": "40925010-195e-428a-a1a1-1dc97506192e", + "Definition": {}, + "Gloss": { + "en": "go ahead of", + "pt": "adiantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3a5f891-5261-4967-b531-1441bb88ad3c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "035b3bfa-5694-4c35-9c0d-2f8d70250156", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd4b37fd-328f-44c4-88cf-d659cea94ded", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsoka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8756ef8f-b016-4c53-ae52-ebe134672b80", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd4b37fd-328f-44c4-88cf-d659cea94ded", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bad luck with a cause", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "curse", + "pt": "maldic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23befca5-f9a2-49f9-9c71-dfa4ec381f1c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8756ef8f-b016-4c53-ae52-ebe134672b80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13c40958-fac7-491a-95f6-8a2dbb15c77f", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsose" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6e95dee1-8398-4fa4-ada9-0bfebb343542", + "Order": 1, + "DeletedAt": null, + "EntryId": "13c40958-fac7-491a-95f6-8a2dbb15c77f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "covering with reeds \u0026 etc", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cobertura de colmo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "thatching", + "pt": "cobertura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "eec72226-106c-4825-b245-6e18110ee917", + "Name": { + "en": "Roof" + }, + "Code": "6.5.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2c12be60-b3a0-4a05-ac87-37af36e5ebb9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,19(pl:masose)", + "Ws": "en" + } + ] + }, + "SenseId": "6e95dee1-8398-4fa4-ada9-0bfebb343542", + "DeletedAt": null + } + ] + }, + { + "Id": "59373346-8f5d-4d04-bfda-f4aa384c0c81", + "Order": 2, + "DeletedAt": null, + "EntryId": "13c40958-fac7-491a-95f6-8a2dbb15c77f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small gate", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "porta\u0303o pequena", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "gate", + "pt": "porta\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e0213ba-f932-4584-9081-6c5e01d6bab7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsuk" + }, + "CitationForm": { + "seh": "tsuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "807fc0c7-a3db-40ac-b74b-2f32418f3715", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e0213ba-f932-4584-9081-6c5e01d6bab7", + "Definition": {}, + "Gloss": { + "en": "wash dishes", + "pt": "lavar loica" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c0fee9e9-5211-4b21-a795-7e97856c5edb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "807fc0c7-a3db-40ac-b74b-2f32418f3715", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d9edf5a-78cc-457c-8a36-abe3cb88d037", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsukwal" + }, + "CitationForm": { + "seh": "tsukwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3d7c131-2e6c-4715-a476-9cd2f74be96e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d9edf5a-78cc-457c-8a36-abe3cb88d037", + "Definition": {}, + "Gloss": { + "en": "become sad", + "pt": "entrestecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62c66c3b-a3b4-40ab-b5a3-91f957c9c8c9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b3d7c131-2e6c-4715-a476-9cd2f74be96e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "981126ae-62be-494d-a04b-4e86cea32cab", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsuphu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "56055ad6-781e-40d4-bc90-a92ad2e6a316", + "Order": 1, + "DeletedAt": null, + "EntryId": "981126ae-62be-494d-a04b-4e86cea32cab", + "Definition": {}, + "Gloss": { + "en": "comb of a fowl", + "pt": "crista de galo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1e0cfd2-a67d-46a4-a109-01a1a2d0d1c4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:19 (tshumphu); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "56055ad6-781e-40d4-bc90-a92ad2e6a316", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "839f64d5-0a73-4bc1-b96c-db9287142100", + "DeletedAt": null, + "LexemeForm": { + "seh": "tu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "4b5edab8-2284-4fba-8fa2-3c9c714de3b8", + "Order": 1, + "DeletedAt": null, + "EntryId": "839f64d5-0a73-4bc1-b96c-db9287142100", + "Definition": { + "en": { + "Spans": [ + { + "Text": "completly", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "INTENS", + "pt": "INTENS" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6dcceea0-f2ec-4b90-8554-37342605fc1a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kumwadzikiratu \u0022espelhar-se em contra partida\u0022 aenderatu athawiratu", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "4b5edab8-2284-4fba-8fa2-3c9c714de3b8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ed069088-4f8e-4202-ad1c-030f8b7eff92", + "DeletedAt": null, + "LexemeForm": { + "seh": "tul" + }, + "CitationForm": { + "seh": "tula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c28f868d-c826-40d1-934c-d591cdd190b7", + "Order": 1, + "DeletedAt": null, + "EntryId": "ed069088-4f8e-4202-ad1c-030f8b7eff92", + "Definition": {}, + "Gloss": { + "en": "leave something", + "pt": "deixar coisa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "756475fc-5bfc-4815-a28a-02723037cc2c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c28f868d-c826-40d1-934c-d591cdd190b7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a769ce59-d43a-47d4-937a-4f1792808bb9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tum" + }, + "CitationForm": { + "seh": "tuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "83c39fed-42c6-446e-91d1-2b40af74eff5", + "Order": 1, + "DeletedAt": null, + "EntryId": "a769ce59-d43a-47d4-937a-4f1792808bb9", + "Definition": {}, + "Gloss": { + "en": "send", + "pt": "enviar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4c3ba88a-029e-4224-a64b-26671d63e513", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "83c39fed-42c6-446e-91d1-2b40af74eff5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3d329509-7cfa-4384-8ed1-b024fe1307b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "tumiz" + }, + "CitationForm": { + "seh": "tumiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "006ee802-ec4c-40b5-81f4-1f22c2b23613", + "Order": 1, + "DeletedAt": null, + "EntryId": "3d329509-7cfa-4384-8ed1-b024fe1307b2", + "Definition": {}, + "Gloss": { + "en": "send", + "pt": "mandar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa0092c3-dcd0-4f9d-96cb-6bd77f837648", + "DeletedAt": null, + "LexemeForm": { + "seh": "tun" + }, + "CitationForm": { + "seh": "tuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc0108a7-1dfb-483f-a67a-4882cad7e919", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa0092c3-dcd0-4f9d-96cb-6bd77f837648", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lie, a knowing malicious lie", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "lie", + "pt": "mentir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0944fd98-c83e-4c48-94a5-84a73c9623df", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "bc0108a7-1dfb-483f-a67a-4882cad7e919", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "249034fa-490f-4743-a32d-1965fd07506e", + "DeletedAt": null, + "LexemeForm": { + "seh": "tunuzir" + }, + "CitationForm": { + "seh": "tunuzira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41f653c0-8007-444f-9095-cc5af134f584", + "Order": 1, + "DeletedAt": null, + "EntryId": "249034fa-490f-4743-a32d-1965fd07506e", + "Definition": {}, + "Gloss": { + "en": "acuse", + "pt": "acusar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cb919e95-79e7-488f-92d2-b83e96195a32", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "41f653c0-8007-444f-9095-cc5af134f584", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c827e379-03b1-4f06-a737-6e0d9a62f3df", + "DeletedAt": null, + "LexemeForm": { + "seh": "tup" + }, + "CitationForm": { + "seh": "tupa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5647f2a9-9d0a-4599-9e48-cf98cd9624c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c827e379-03b1-4f06-a737-6e0d9a62f3df", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to rise refering to the process of yeast causing dough to rise", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rise dough", + "pt": "levantar massa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c4e08950-6198-4bce-af09-e4c44083b165", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "5647f2a9-9d0a-4599-9e48-cf98cd9624c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "15411cd2-1b38-44f3-b371-04f16fc05b59", + "DeletedAt": null, + "LexemeForm": { + "seh": "tutumuk" + }, + "CitationForm": { + "seh": "tutumuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "95b6047b-3637-4494-9779-6216b4014a80", + "Order": 1, + "DeletedAt": null, + "EntryId": "15411cd2-1b38-44f3-b371-04f16fc05b59", + "Definition": {}, + "Gloss": { + "en": "startle", + "pt": "ser assustado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "27abd531-0930-46e5-89bd-3c6276a6e8c6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Dioni\u0301sio", + "Ws": "en" + } + ] + }, + "SenseId": "95b6047b-3637-4494-9779-6216b4014a80", + "DeletedAt": null + } + ] + }, + { + "Id": "8a4af5f4-a71e-47c5-a292-630923ada7bf", + "Order": 2, + "DeletedAt": null, + "EntryId": "15411cd2-1b38-44f3-b371-04f16fc05b59", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake up from worrying dreams", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "acordar com preocupaco\u0303es", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake worried", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "149ee2a3-6dee-4048-afe3-9341cb30b91c", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "dc001d5b-37e6-40c8-85e3-25830ac083f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "149ee2a3-6dee-4048-afe3-9341cb30b91c", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "494f70ff-a22b-402a-a2b6-5a2d77f3fb84", + "Order": 1, + "DeletedAt": null, + "EntryId": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "bca44468-9d04-4f0d-9e65-38694978d312", + "Order": 2, + "DeletedAt": null, + "EntryId": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d2b54291-bb8e-4645-b3f2-0d77890118b9", + "Order": 3, + "DeletedAt": null, + "EntryId": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d0342d1-fc26-4408-bd1c-fc58abfe7956", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "8ae60e33-d745-4c84-8c51-43d8f51344b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d0342d1-fc26-4408-bd1c-fc58abfe7956", + "Definition": { + "en": { + "Spans": [ + { + "Text": "you, second person singular", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tu, segunda pessoa singular", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2S", + "pt": "2S" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "d9318a7f-f3ce-4454-8acd-1ab3b0dffd96", + "Order": 1, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f4ae1775-b605-4604-8546-3cfcb6ca1c31", + "Order": 2, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "65b694cd-f545-4444-8763-fcfb46f3c401", + "Order": 3, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "7ec7b783-215f-442a-b660-d00b071a64d8", + "Order": 4, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5edf6ba3-b791-4d37-878f-2a669e3b670f", + "Order": 1, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": { + "en": { + "Spans": [ + { + "Text": "-ness, -ity, the essence of, abstract", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "-idade", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "6b48f7a4-471f-4b15-8b03-17a83b9de0d3", + "Order": 2, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "af7ab1cc-2536-4251-bdde-ae723e46a105", + "Order": 3, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c3f8b8ee-f1ea-4a6b-b8a3-34b0ca297629", + "Order": 4, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a0b813dc-f06c-41c9-9496-fdb656b331e0", + "Order": 5, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "ee2b627c-94e8-43e6-8a47-36ed4046a6a8", + "MaybeId": "ee2b627c-94e8-43e6-8a47-36ed4046a6a8", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "ComponentSenseId": null, + "ComponentHeadword": "u" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47d2f97f-b376-4241-8312-620392869cfd", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubaba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "135250b8-31fa-4d05-b3dd-3422225a9006", + "Order": 1, + "DeletedAt": null, + "EntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "Definition": {}, + "Gloss": { + "en": "paternity", + "pt": "paternidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee500084-db18-4500-b978-65445fbbed5d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "135250b8-31fa-4d05-b3dd-3422225a9006", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "2e0cf09a-d18d-4bef-8bc2-ba68a6ed1ff1", + "MaybeId": "2e0cf09a-d18d-4bef-8bc2-ba68a6ed1ff1", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "ComponentSenseId": null, + "ComponentHeadword": "baba" + }, + { + "Id": "ee2b627c-94e8-43e6-8a47-36ed4046a6a8", + "MaybeId": "ee2b627c-94e8-43e6-8a47-36ed4046a6a8", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "ComponentSenseId": null, + "ComponentHeadword": "u" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "7d3b1116-4489-4cc1-bc17-1734198e044f", + "Name": { + "en": "Abstract", + "pt": "Substantivo Abstrato" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "790f529d-28ed-4a50-af49-27de75aecc4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9f8f51bf-aa51-4686-b839-fdbc9d17f1bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "790f529d-28ed-4a50-af49-27de75aecc4f", + "Definition": {}, + "Gloss": { + "en": "brotherhood", + "pt": "irmandade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "39fec9e6-a965-49e5-88e0-4fee4748afa7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "9f8f51bf-aa51-4686-b839-fdbc9d17f1bc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "6c8e6a75-ead2-4cfb-bdfa-56d4bd7bc413", + "MaybeId": "6c8e6a75-ead2-4cfb-bdfa-56d4bd7bc413", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "790f529d-28ed-4a50-af49-27de75aecc4f", + "ComplexFormHeadword": "ubale", + "ComponentEntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "ComponentSenseId": null, + "ComponentHeadword": "m\u0027bale" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "7d3b1116-4489-4cc1-bc17-1734198e044f", + "Name": { + "en": "Abstract", + "pt": "Substantivo Abstrato" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d8528b87-68fb-4bc1-ba87-20adc9341dfa", + "DeletedAt": null, + "LexemeForm": { + "seh": "bali" + }, + "CitationForm": { + "seh": "ubali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f55e116-bffe-43cc-b63e-3fc7fb464906", + "Order": 1, + "DeletedAt": null, + "EntryId": "d8528b87-68fb-4bc1-ba87-20adc9341dfa", + "Definition": {}, + "Gloss": { + "en": "nature active", + "pt": "natureza activo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9cf9349b-a2a2-4ad3-8979-a777399426bc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "8f55e116-bffe-43cc-b63e-3fc7fb464906", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "662509e5-e556-4233-aca0-0527bbadeb04", + "DeletedAt": null, + "LexemeForm": { + "seh": "balwi" + }, + "CitationForm": { + "seh": "ubalwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "194ed05c-dc3a-4cec-bda9-f913d397f4c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "662509e5-e556-4233-aca0-0527bbadeb04", + "Definition": {}, + "Gloss": { + "en": "nature passive", + "pt": "natureza passivo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ea028b17-0942-4751-bebe-600555b1442b", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "194ed05c-dc3a-4cec-bda9-f913d397f4c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "be41c370-e3a7-4cb3-a4cc-6fc32dbc9ffb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "094f4d6a-81eb-4cc1-b0b8-34cf24c90da7", + "Order": 1, + "DeletedAt": null, + "EntryId": "be41c370-e3a7-4cb3-a4cc-6fc32dbc9ffb", + "Definition": {}, + "Gloss": { + "en": "unity", + "pt": "unidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c985333d-a23b-4b30-afcb-45b44e7b9688", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "094f4d6a-81eb-4cc1-b0b8-34cf24c90da7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8f1bb766-6e22-44a4-aa81-b4bae718b4ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubodzi-bodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ea48f99d-9b4e-41b4-99b3-a70c040a881d", + "Order": 1, + "DeletedAt": null, + "EntryId": "8f1bb766-6e22-44a4-aa81-b4bae718b4ac", + "Definition": {}, + "Gloss": { + "en": "same", + "pt": "mesmo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c938b15-497a-4852-8b5e-6afb1b3cf8c7", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ea48f99d-9b4e-41b4-99b3-a70c040a881d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a96600f-de8f-4e72-ad6d-3d10baf502a3", + "DeletedAt": null, + "LexemeForm": { + "seh": "ucenche" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "90e822b6-9c0a-4815-b20c-498954c79e55", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a96600f-de8f-4e72-ad6d-3d10baf502a3", + "Definition": {}, + "Gloss": { + "en": "termite", + "pt": "formiga branco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a53010f4-673a-4cb3-8a5e-612653f1d967", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21 (ucendje); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "90e822b6-9c0a-4815-b20c-498954c79e55", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "DeletedAt": null, + "LexemeForm": { + "seh": "uceni" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9171df95-1a24-41d1-9194-d61abfa19488", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "Definition": {}, + "Gloss": { + "en": "purity", + "pt": "pureza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62caa4d9-535a-478e-bfa6-b7ca04d91778", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "9171df95-1a24-41d1-9194-d61abfa19488", + "DeletedAt": null + } + ] + }, + { + "Id": "3e1edd79-92fa-4512-86a0-c4ba64c8cd07", + "Order": 2, + "DeletedAt": null, + "EntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "Definition": {}, + "Gloss": { + "en": "whiteness", + "pt": "blanqueza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "7e0308a3-d18a-4aa9-b19e-f89607514106", + "MaybeId": "7e0308a3-d18a-4aa9-b19e-f89607514106", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "ComplexFormHeadword": "uceni", + "ComponentEntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "ComponentSenseId": null, + "ComponentHeadword": "cen" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7f8efbf-0e3c-4957-8ddd-013d8166e5d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "uchi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bfb0395-c6fc-4db5-8b04-cfe1c2bdcc8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7f8efbf-0e3c-4957-8ddd-013d8166e5d2", + "Definition": {}, + "Gloss": { + "en": "smoke", + "pt": "fumo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "edbb277a-c76d-4ece-9d58-322128d59a12", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "uchi ukulu", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4bfb0395-c6fc-4db5-8b04-cfe1c2bdcc8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "826b9d62-744d-4d8e-976b-26b7f7f14266", + "DeletedAt": null, + "LexemeForm": { + "seh": "uci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "136a7fae-16be-4f69-9cc1-783a5c5d074c", + "Order": 1, + "DeletedAt": null, + "EntryId": "826b9d62-744d-4d8e-976b-26b7f7f14266", + "Definition": {}, + "Gloss": { + "en": "honey", + "pt": "mel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "328eac57-8663-4b33-97f1-56b2f340f798", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "uci wakutapira", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "mel doce", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "136a7fae-16be-4f69-9cc1-783a5c5d074c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91c553cd-7924-474f-a91a-4320f264a792", + "DeletedAt": null, + "LexemeForm": { + "seh": "didi" + }, + "CitationForm": { + "seh": "udidi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78c00a11-2e56-4697-b5bf-80904626cdf3", + "Order": 1, + "DeletedAt": null, + "EntryId": "91c553cd-7924-474f-a91a-4320f264a792", + "Definition": {}, + "Gloss": { + "en": "goodness", + "pt": "bondade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac7575a5-a5c0-4a9a-a63a-75e72b34f408", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "78c00a11-2e56-4697-b5bf-80904626cdf3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7bae7ed-1fa4-4659-9b43-02aac4761fdd", + "DeletedAt": null, + "LexemeForm": { + "seh": "udzakazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b976689-b5df-47fe-bec3-756897ca779e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7bae7ed-1fa4-4659-9b43-02aac4761fdd", + "Definition": {}, + "Gloss": { + "en": "slavery", + "pt": "escravida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "81d6ce11-bcaa-4c25-bbdd-79e607b48dd9", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4b976689-b5df-47fe-bec3-756897ca779e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f82d76f5-e1c6-444c-b672-4fd2563781d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "udzu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24295910-8cbe-4dfb-888c-798376ffc7fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "f82d76f5-e1c6-444c-b672-4fd2563781d0", + "Definition": {}, + "Gloss": { + "en": "weed dry", + "pt": "capim seco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f57bc36a-ad6e-4c17-a048-08bd8c3c0141", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "24295910-8cbe-4dfb-888c-798376ffc7fa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "119b6841-465f-44ca-96bb-ce8d75a3c5b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ufa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6cecf1f9-7a8f-4595-bfc4-c217bf8b81f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "119b6841-465f-44ca-96bb-ce8d75a3c5b7", + "Definition": {}, + "Gloss": { + "en": "flour", + "pt": "farinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1447278f-efff-4807-b9ea-c487dea1ba5e", + "Name": { + "en": "Food from seeds" + }, + "Code": "5.2.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ebc9c111-dda4-4187-9261-0322fe14cabe", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira: ; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6cecf1f9-7a8f-4595-bfc4-c217bf8b81f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78e01f2d-c253-4207-b4f5-2731536ec071", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipi" + }, + "CitationForm": { + "seh": "uipi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eca2562a-400e-4845-af66-21b452a16723", + "Order": 1, + "DeletedAt": null, + "EntryId": "78e01f2d-c253-4207-b4f5-2731536ec071", + "Definition": {}, + "Gloss": { + "en": "bad", + "pt": "mal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "77232534-ed80-40f9-b8e4-a1503fafd467", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kudzindikira udidi na uipi", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "reconhecer bom e mal", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "eca2562a-400e-4845-af66-21b452a16723", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c7514277-299c-45eb-a1f8-2108e3085ba8", + "DeletedAt": null, + "LexemeForm": { + "seh": "uk" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "6b70c8c1-88b3-4130-b3a5-7affccc88c74", + "Order": 1, + "DeletedAt": null, + "EntryId": "c7514277-299c-45eb-a1f8-2108e3085ba8", + "Definition": {}, + "Gloss": { + "en": "apart", + "pt": "separado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57e0a581-d77a-4fbc-b072-a98398533f3d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ukhali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e088214d-88f2-4594-8f98-1f4f7c29dc65", + "Order": 1, + "DeletedAt": null, + "EntryId": "57e0a581-d77a-4fbc-b072-a98398533f3d", + "Definition": {}, + "Gloss": { + "en": "entity", + "pt": "entidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7354f8c3-650f-455d-9fcf-5ca0bddc602f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e088214d-88f2-4594-8f98-1f4f7c29dc65", + "DeletedAt": null + } + ] + }, + { + "Id": "c7ca7796-1ba2-4bdd-be82-40e4d3de066c", + "Order": 2, + "DeletedAt": null, + "EntryId": "57e0a581-d77a-4fbc-b072-a98398533f3d", + "Definition": {}, + "Gloss": { + "en": "essence", + "pt": "essencia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45f03292-e15e-4f57-8a13-e1dbb27c4cb8", + "DeletedAt": null, + "LexemeForm": { + "seh": "uku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e923c04d-9f7d-4043-8212-a94c0d9ab8c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "45f03292-e15e-4f57-8a13-e1dbb27c4cb8", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aaba6577-61e7-4c33-8097-29224f716db2", + "DeletedAt": null, + "LexemeForm": { + "seh": "ukulu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "358f3141-e7ab-4c29-ad51-ca223360afe8", + "Order": 1, + "DeletedAt": null, + "EntryId": "aaba6577-61e7-4c33-8097-29224f716db2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "greatness, to have great responsibility", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "greatness", + "pt": "grandeza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b7b633d8-5938-4833-af62-c8d386d0b6cb", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "358f3141-e7ab-4c29-ad51-ca223360afe8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41637a62-161c-43e2-a2c4-954b3fa6486a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ul" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "a46c939f-bdbf-47b1-b167-1f2b8184bc36", + "Order": 1, + "DeletedAt": null, + "EntryId": "41637a62-161c-43e2-a2c4-954b3fa6486a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "reversive also apart, separate", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "REV", + "pt": "REV" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "470b963b-756a-43b8-80f9-e3b914503470", + "DeletedAt": null, + "LexemeForm": { + "seh": "langi" + }, + "CitationForm": { + "seh": "ulangi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea7ee9b7-19a6-42d5-b570-2275f5541b5e", + "Order": 1, + "DeletedAt": null, + "EntryId": "470b963b-756a-43b8-80f9-e3b914503470", + "Definition": {}, + "Gloss": { + "en": "moral of story", + "pt": "moral de conto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "69ba0985-7c6c-43ed-a305-12e167fffb44", + "DeletedAt": null, + "LexemeForm": { + "seh": "laphi" + }, + "CitationForm": { + "seh": "ulaphi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f99e2076-dadf-4143-99d7-1d5d173fcf7b", + "Order": 1, + "DeletedAt": null, + "EntryId": "69ba0985-7c6c-43ed-a305-12e167fffb44", + "Definition": {}, + "Gloss": { + "en": "width", + "pt": "comprimento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5206e32-4268-4a16-a007-9f57f467216e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "f99e2076-dadf-4143-99d7-1d5d173fcf7b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b220bb10-cb7b-4924-94e9-bf92273c9023", + "DeletedAt": null, + "LexemeForm": { + "seh": "ulawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ababeddc-08c3-4780-8012-7198cf761d05", + "Order": 1, + "DeletedAt": null, + "EntryId": "b220bb10-cb7b-4924-94e9-bf92273c9023", + "Definition": { + "en": { + "Spans": [ + { + "Text": "shoal of fish", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cardume de peixe", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "shoal", + "pt": "cardume" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "535bff6a-c343-41e9-9a61-b0e0d223d20e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21", + "Ws": "en" + } + ] + }, + "SenseId": "ababeddc-08c3-4780-8012-7198cf761d05", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "64e90cd8-644c-4650-be10-1f552aba693f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ule" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "80432d6c-77a3-4a83-a225-fb47755c38c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "64e90cd8-644c-4650-be10-1f552aba693f", + "Definition": {}, + "Gloss": { + "en": "that one", + "pt": "aquele" + }, + "PartOfSpeech": { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a80c0309-9b86-4caa-854f-80b535b5493b", + "DeletedAt": null, + "LexemeForm": { + "seh": "lendo" + }, + "CitationForm": { + "seh": "ulendo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "51aaf249-32a7-421b-87a3-3205be891797", + "Order": 1, + "DeletedAt": null, + "EntryId": "a80c0309-9b86-4caa-854f-80b535b5493b", + "Definition": {}, + "Gloss": { + "en": "trip", + "pt": "viagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "20d7e293-af37-4058-ba22-dea4c2bc526f", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "51aaf249-32a7-421b-87a3-3205be891797", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62d799a1-87e6-413a-a57f-d68478b115bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "umama" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "de3c9399-15af-4edf-8aaa-68f96d56637e", + "Order": 1, + "DeletedAt": null, + "EntryId": "62d799a1-87e6-413a-a57f-d68478b115bd", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "estado de ser mai", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "maternity", + "pt": "maternidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dcf598d3-2ea7-4b0c-9c6a-c6ead09f8c7c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "de3c9399-15af-4edf-8aaa-68f96d56637e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c27cdd26-df99-44d4-9af1-6e2ad8edf66d", + "DeletedAt": null, + "LexemeForm": { + "seh": "umambo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fc67e6a9-5387-43f2-91a3-216cfd5e65a8", + "Order": 1, + "DeletedAt": null, + "EntryId": "c27cdd26-df99-44d4-9af1-6e2ad8edf66d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the extent of the authority of a king, the land and people governed by a king", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "kingdom", + "pt": "reino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9", + "Name": { + "en": "Country" + }, + "Code": "4.6.7.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "473fbba6-0e1d-43f5-8001-b819ce5a0181", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "fc67e6a9-5387-43f2-91a3-216cfd5e65a8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "84869a6c-24fa-4a41-b621-9d9720c2efaf", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbirimi" + }, + "CitationForm": { + "seh": "umbirimi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97a7c86c-6550-4e5c-a49f-a5a80330d9af", + "Order": 1, + "DeletedAt": null, + "EntryId": "84869a6c-24fa-4a41-b621-9d9720c2efaf", + "Definition": {}, + "Gloss": { + "en": "pride", + "pt": "ogulho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "74de137c-6a58-41ac-b30d-0b9529b95e8f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Imwe anthu a umbirimi...", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Voce\u0302s homens de ogulho...", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "97a7c86c-6550-4e5c-a49f-a5a80330d9af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29b943ed-8640-4ace-8d88-eb2d3bc0bca9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mboni" + }, + "CitationForm": { + "seh": "umboni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "25b7c888-d2fe-4c54-ace2-9b299e7a899d", + "Order": 1, + "DeletedAt": null, + "EntryId": "29b943ed-8640-4ace-8d88-eb2d3bc0bca9", + "Definition": {}, + "Gloss": { + "en": "testimony", + "pt": "testimonio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c34cc0f3-2800-4704-b925-ae99b27f08ff", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "25b7c888-d2fe-4c54-ace2-9b299e7a899d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e00e4a6-1aa4-473f-bf9d-5a6c77b6781f", + "DeletedAt": null, + "LexemeForm": { + "seh": "umbuya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42083ae6-df49-4ae6-bfc8-48aef6b280d0", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e00e4a6-1aa4-473f-bf9d-5a6c77b6781f", + "Definition": {}, + "Gloss": { + "en": "lordship", + "pt": "senhoridade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "84b53cf0-9e32-4ddc-8b83-8519e95b495d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "42083ae6-df49-4ae6-bfc8-48aef6b280d0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db9ba81b-986d-42a4-bc1c-92ada161a70c", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphandu" + }, + "CitationForm": { + "seh": "umphandu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4a4ca0ac-1ed7-4dd5-baa8-b61eaf61553e", + "Order": 1, + "DeletedAt": null, + "EntryId": "db9ba81b-986d-42a4-bc1c-92ada161a70c", + "Definition": {}, + "Gloss": { + "en": "criminality", + "pt": "criminalidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "81546036-9a1a-45a7-b4a6-e84116decdc3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "4a4ca0ac-1ed7-4dd5-baa8-b61eaf61553e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "39914391-d63c-4281-babb-b34704546c1a", + "DeletedAt": null, + "LexemeForm": { + "seh": "umu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "747b38ab-bfc8-4062-b430-2958e4d2490f", + "Order": 1, + "DeletedAt": null, + "EntryId": "39914391-d63c-4281-babb-b34704546c1a", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "feac681b-018d-42c6-8d9f-eb02a68621d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "mulopa" + }, + "CitationForm": { + "seh": "umulopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c5f58059-dd3b-4770-a432-4ac43c2a8668", + "Order": 1, + "DeletedAt": null, + "EntryId": "feac681b-018d-42c6-8d9f-eb02a68621d2", + "Definition": {}, + "Gloss": { + "en": "consanguinity", + "pt": "consanguinidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1be2de7e-12fd-4b56-b940-6d5ea9561392", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "c5f58059-dd3b-4770-a432-4ac43c2a8668", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8f676777-1560-484d-bbc8-ef872fb99b6e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nai" + }, + "CitationForm": { + "seh": "unai" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1aa877de-615f-46be-a264-9b91635662f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "8f676777-1560-484d-bbc8-ef872fb99b6e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to have the quality of four", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ter qualidade de quarto", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "quartette", + "pt": "quarteto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "979c143c-e829-4692-91ca-f678beb48288", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "1aa877de-615f-46be-a264-9b91635662f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "de836ca8-f975-4b40-835a-6a798cf1ecd6", + "DeletedAt": null, + "LexemeForm": { + "seh": "ungui" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09aabb85-a312-493f-8800-86735acf18fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "de836ca8-f975-4b40-835a-6a798cf1ecd6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fowl louse (species)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "louse", + "pt": "piolho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e921377-358e-4586-877b-6d7986671a7a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "09aabb85-a312-493f-8800-86735acf18fb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6274f082-272f-4360-921e-8e5d2db837c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "unowu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7f5d1092-935d-4df3-9956-68fbbd6fee2a", + "Order": 1, + "DeletedAt": null, + "EntryId": "6274f082-272f-4360-921e-8e5d2db837c0", + "Definition": {}, + "Gloss": { + "en": "this very one", + "pt": "este mesmo" + }, + "PartOfSpeech": { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e93e722-8246-4a90-91e5-93aafc129c11", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthaka" + }, + "CitationForm": { + "seh": "unthaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ee0c1ccb-2141-41f8-aeea-f2830dba0dfb", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e93e722-8246-4a90-91e5-93aafc129c11", + "Definition": {}, + "Gloss": { + "en": "inheritance", + "pt": "heranc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9b8c787-1658-488f-a370-954a0fe3f349", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ee0c1ccb-2141-41f8-aeea-f2830dba0dfb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d862954f-aafe-487d-9223-853733ee1d88", + "DeletedAt": null, + "LexemeForm": { + "seh": "upfumi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bf71bf48-b8d3-455b-bc29-4a7b4ce04870", + "Order": 1, + "DeletedAt": null, + "EntryId": "d862954f-aafe-487d-9223-853733ee1d88", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riquezas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f883fff8-9eee-4c7d-a8b3-0daa0da028de", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "bf71bf48-b8d3-455b-bc29-4a7b4ce04870", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "58b7555d-9b6f-4606-8a23-b33199a7e329", + "DeletedAt": null, + "LexemeForm": { + "seh": "phale" + }, + "CitationForm": { + "seh": "uphale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24ed647a-dafd-4897-bd4a-1914c517f2c8", + "Order": 1, + "DeletedAt": null, + "EntryId": "58b7555d-9b6f-4606-8a23-b33199a7e329", + "Definition": {}, + "Gloss": { + "en": "youth", + "pt": "juventude" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "69d12281-08e0-445c-8d46-8780af67dcb5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "24ed647a-dafd-4897-bd4a-1914c517f2c8", + "DeletedAt": null + } + ] + }, + { + "Id": "5deb9301-9b9c-4e6a-8f46-aa6653c0e987", + "Order": 2, + "DeletedAt": null, + "EntryId": "58b7555d-9b6f-4606-8a23-b33199a7e329", + "Definition": { + "en": { + "Spans": [ + { + "Text": "child\u0027s play", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "brincadieras de crianc\u0327a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "child\u0027s play", + "pt": "brincos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9750c1ad-3434-4b63-876e-f62bcadb8f62", + "DeletedAt": null, + "LexemeForm": { + "seh": "upsipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bbb4c1c3-fa11-47cd-8150-e0d73818da0c", + "Order": 1, + "DeletedAt": null, + "EntryId": "9750c1ad-3434-4b63-876e-f62bcadb8f62", + "Definition": {}, + "Gloss": { + "en": "blackness", + "pt": "cor escura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4c064139-a757-499e-9b43-45d1c373f9f0", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "bbb4c1c3-fa11-47cd-8150-e0d73818da0c", + "DeletedAt": null + } + ] + }, + { + "Id": "2ab4c07f-c6c3-400a-bf12-4bdede2672ff", + "Order": 2, + "DeletedAt": null, + "EntryId": "9750c1ad-3434-4b63-876e-f62bcadb8f62", + "Definition": { + "en": { + "Spans": [ + { + "Text": "state or quality of darkness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "darkness", + "pt": "escurida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72eee253-6013-448a-a7c8-0719aa95ef2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "upumbuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c658fc3b-450b-4488-a2b7-fcefd7d38652", + "Order": 1, + "DeletedAt": null, + "EntryId": "72eee253-6013-448a-a7c8-0719aa95ef2c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a type of small flying insect that likes to get into one\u0027s eyes", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "um ti\u0301po de bichinho pequeno, voador, que gosta de entrar nos olhos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "gnat", + "pt": "bichinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23946911-57e8-4420-8eb6-acad95203dab", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "c658fc3b-450b-4488-a2b7-fcefd7d38652", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bdb4c77c-55a2-4da1-9d66-5d3ba82579ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "usimbu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c63b0bac-a53f-4029-8fb1-6fc0af61f894", + "Order": 1, + "DeletedAt": null, + "EntryId": "bdb4c77c-55a2-4da1-9d66-5d3ba82579ed", + "Definition": { + "en": { + "Spans": [ + { + "Text": "shoal of small fish", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cardum de peixe pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "shoal", + "pt": "cardum" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dc7c0ad-5cff-4730-b034-99b012ed0d82", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c63b0bac-a53f-4029-8fb1-6fc0af61f894", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47a68b80-fae0-479b-89f5-4da609f5037e", + "DeletedAt": null, + "LexemeForm": { + "seh": "ut" + }, + "CitationForm": { + "seh": "uta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "718eb928-04fd-4cd9-862e-9fd86ee62a56", + "Order": 1, + "DeletedAt": null, + "EntryId": "47a68b80-fae0-479b-89f5-4da609f5037e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "dog bark", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ladrar de ca\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bark", + "pt": "ladrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "720e1fa4-3660-4325-947a-4e1d4e984315", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "718eb928-04fd-4cd9-862e-9fd86ee62a56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a65be28-75e0-4d24-bdde-2aca37ca0e68", + "DeletedAt": null, + "LexemeForm": { + "seh": "utali" + }, + "CitationForm": { + "seh": "utali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e81c7af1-aa5c-4fcd-8971-36e4bfc4500d", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a65be28-75e0-4d24-bdde-2aca37ca0e68", + "Definition": {}, + "Gloss": { + "en": "iron", + "pt": "ferro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f8c5ff6b-4b63-4c85-9784-502123de8de3", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "e81c7af1-aa5c-4fcd-8971-36e4bfc4500d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea419f67-0441-402a-ab00-f420657b9167", + "DeletedAt": null, + "LexemeForm": { + "seh": "tatu" + }, + "CitationForm": { + "seh": "utatu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae460c9e-400a-4e70-b9e1-cd27313bf09f", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea419f67-0441-402a-ab00-f420657b9167", + "Definition": {}, + "Gloss": { + "en": "trinity", + "pt": "trinidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "300c759c-f2d9-4a5f-9add-ab498713fa9e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "ae460c9e-400a-4e70-b9e1-cd27313bf09f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c411483-e3ea-4192-bb66-b609e7f93818", + "DeletedAt": null, + "LexemeForm": { + "seh": "utenda" + }, + "CitationForm": { + "seh": "utenda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "509975b3-3a61-48be-b929-d47adaf4a2ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c411483-e3ea-4192-bb66-b609e7f93818", + "Definition": {}, + "Gloss": { + "en": "illness", + "pt": "doenc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f784a7b-6915-489d-b15f-b3063dfbd572", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21", + "Ws": "en" + } + ] + }, + "SenseId": "509975b3-3a61-48be-b929-d47adaf4a2ec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c8086036-6530-45ab-82ef-034f7fad0a95", + "DeletedAt": null, + "LexemeForm": { + "seh": "utende" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c68f1e7-423b-4ba3-93e4-f2748477abca", + "Order": 1, + "DeletedAt": null, + "EntryId": "c8086036-6530-45ab-82ef-034f7fad0a95", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riqueza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f4edf555-95df-4f38-957a-9744e9d2bd9d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21", + "Ws": "en" + } + ] + }, + "SenseId": "0c68f1e7-423b-4ba3-93e4-f2748477abca", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6a14de2b-f757-4aa1-91b4-0e7090976dd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "thambi" + }, + "CitationForm": { + "seh": "uthambi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ca24aef-ba6a-4288-903a-66d7bf45158c", + "Order": 1, + "DeletedAt": null, + "EntryId": "6a14de2b-f757-4aa1-91b4-0e7090976dd8", + "Definition": {}, + "Gloss": { + "en": "lie", + "pt": "mentira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f0b1f6ff-580d-4678-8e9c-f8fe02999725", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0ca24aef-ba6a-4288-903a-66d7bf45158c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "DeletedAt": null, + "LexemeForm": { + "seh": "utongi" + }, + "CitationForm": { + "seh": "utongi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8bad9278-024a-46c0-b0b9-8fed75472d38", + "Order": 1, + "DeletedAt": null, + "EntryId": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "Definition": {}, + "Gloss": { + "en": "justice", + "pt": "jutic\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "17eee64f-d7b4-4ad2-b735-1edb1275acdc", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "8bad9278-024a-46c0-b0b9-8fed75472d38", + "DeletedAt": null + } + ] + }, + { + "Id": "16e9b698-06c4-49a8-bd83-b8d5a36f8589", + "Order": 2, + "DeletedAt": null, + "EntryId": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "Definition": {}, + "Gloss": { + "en": "authority", + "pt": "authoridade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "db214e78-7505-4899-b49a-0637749e2d13", + "Order": 3, + "DeletedAt": null, + "EntryId": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area adminstrated by an appointed official", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "province", + "pt": "provi\u0301nicia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9", + "Name": { + "en": "Country" + }, + "Code": "4.6.7.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "efcdc82b-d042-46a8-9909-4692313ac0b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "utumbo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5179d490-ee47-45a5-b49d-cdb783960229", + "Order": 1, + "DeletedAt": null, + "EntryId": "efcdc82b-d042-46a8-9909-4692313ac0b2", + "Definition": {}, + "Gloss": { + "en": "intestine", + "pt": "intestinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5ebf2130-71fa-4933-bc62-503835360965", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "5179d490-ee47-45a5-b49d-cdb783960229", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d435ed1-1b08-4c71-a5ea-e45f859d2838", + "DeletedAt": null, + "LexemeForm": { + "seh": "wana" + }, + "CitationForm": { + "seh": "uwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "177fe980-b229-4630-aaf9-8522bc6e3d8b", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d435ed1-1b08-4c71-a5ea-e45f859d2838", + "Definition": {}, + "Gloss": { + "en": "childhood", + "pt": "infa\u0302ncia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "933fb486-3798-473d-92f6-1b5a87dd222e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21,32", + "Ws": "en" + } + ] + }, + "SenseId": "177fe980-b229-4630-aaf9-8522bc6e3d8b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "096e696f-e0c9-46d5-a6d5-e92c076331c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "weya" + }, + "CitationForm": { + "seh": "uweya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3b3016f-337d-4ea6-a6d2-9bc3ebc9a2ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "096e696f-e0c9-46d5-a6d5-e92c076331c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "animal hair", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pelos dos animais", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hair", + "pt": "pelos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "933886bf-ec65-4946-b80e-a904b437cd38", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b3b3016f-337d-4ea6-a6d2-9bc3ebc9a2ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f1ef0bc6-a6e9-4a05-97c1-bddc54e495b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "wiri" + }, + "CitationForm": { + "seh": "uwiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5918398-1bfb-4cfb-85b3-c0b6972fac0d", + "Order": 1, + "DeletedAt": null, + "EntryId": "f1ef0bc6-a6e9-4a05-97c1-bddc54e495b1", + "Definition": {}, + "Gloss": { + "en": "duality", + "pt": "dualidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0943cb26-7b85-4514-b8e8-d932cd60714e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "a5918398-1bfb-4cfb-85b3-c0b6972fac0d", + "DeletedAt": null + } + ] + }, + { + "Id": "8780309e-9d9a-4afe-9424-c239c3b77b09", + "Order": 2, + "DeletedAt": null, + "EntryId": "f1ef0bc6-a6e9-4a05-97c1-bddc54e495b1", + "Definition": {}, + "Gloss": { + "en": "dual", + "pt": "dual" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "842e978a-f6a7-40ed-960d-d5170f4b3218", + "DeletedAt": null, + "LexemeForm": { + "seh": "uwu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "35b071f9-e0b1-4612-a43c-bf8d8a236be3", + "Order": 1, + "DeletedAt": null, + "EntryId": "842e978a-f6a7-40ed-960d-d5170f4b3218", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c8b716ec-f5fa-4c95-9c1b-8596be5b9925", + "DeletedAt": null, + "LexemeForm": { + "seh": "xamwali" + }, + "CitationForm": { + "seh": "uxamwali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a1062067-0b74-4f5b-b8a0-df0698229773", + "Order": 1, + "DeletedAt": null, + "EntryId": "c8b716ec-f5fa-4c95-9c1b-8596be5b9925", + "Definition": {}, + "Gloss": { + "en": "friendship", + "pt": "amizade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "932674de-1016-4788-8d16-add26eae81b2", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Sulo2:43", + "Ws": "en" + } + ] + }, + "SenseId": "a1062067-0b74-4f5b-b8a0-df0698229773", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "58db3e6a-dd24-4b91-afcd-d3cf3e4dba57", + "DeletedAt": null, + "LexemeForm": { + "seh": "xanu" + }, + "CitationForm": { + "seh": "uxanu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f75bf8c-4b92-46fd-a51f-b2cf2f60c732", + "Order": 1, + "DeletedAt": null, + "EntryId": "58db3e6a-dd24-4b91-afcd-d3cf3e4dba57", + "Definition": { + "en": { + "Spans": [ + { + "Text": "quintette; quality of fiveness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "quintette", + "pt": "quintete" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "33d30770-2844-4eb8-8653-760eff42f19d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "2f75bf8c-4b92-46fd-a51f-b2cf2f60c732", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a1095120-e054-40ba-abe0-ec85c7446242", + "DeletedAt": null, + "LexemeForm": { + "seh": "yetimi" + }, + "CitationForm": { + "seh": "uyetimi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae62dd24-2425-4d9c-bf98-12f9af6e7573", + "Order": 1, + "DeletedAt": null, + "EntryId": "a1095120-e054-40ba-abe0-ec85c7446242", + "Definition": {}, + "Gloss": { + "en": "brilliancy", + "pt": "brilho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9bd565ae-a790-4457-b064-cff805eb8b7a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "ae62dd24-2425-4d9c-bf98-12f9af6e7573", + "DeletedAt": null + } + ] + }, + { + "Id": "56914d82-0650-4b31-bb28-a77197eca5ac", + "Order": 2, + "DeletedAt": null, + "EntryId": "a1095120-e054-40ba-abe0-ec85c7446242", + "Definition": {}, + "Gloss": { + "en": "splendour", + "pt": "esplendor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b86b15a7-c37f-4dfd-954f-3c499b713fd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "uyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a97dad97-0fe4-46d7-aaa4-d2f892439cf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "b86b15a7-c37f-4dfd-954f-3c499b713fd8", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "37bfd451-1c70-4a94-8f9b-2561363a54c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "vik" + }, + "CitationForm": { + "seh": "vika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5cec45e-99e3-4c49-82f9-08602426527b", + "Order": 1, + "DeletedAt": null, + "EntryId": "37bfd451-1c70-4a94-8f9b-2561363a54c2", + "Definition": {}, + "Gloss": { + "en": "dip in liquid", + "pt": "mergulhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "40ea6907-8962-49d5-9526-e910b271cd6a", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "a5cec45e-99e3-4c49-82f9-08602426527b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b763ec45-38bd-449b-bb9f-a76eda4fd5ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "vinyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "435e2d57-8d6f-4c27-97a1-12affa2d82a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "b763ec45-38bd-449b-bb9f-a76eda4fd5ac", + "Definition": {}, + "Gloss": { + "en": "wine", + "pt": "vinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4883351-21b2-4594-910b-4f597ccf0b3c", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "435e2d57-8d6f-4c27-97a1-12affa2d82a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a22f840-67a6-4210-86f4-c1cb5d89acd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "vund" + }, + "CitationForm": { + "seh": "vunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f93f82cc-9b40-4c81-b3c7-3001a88166e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a22f840-67a6-4210-86f4-c1cb5d89acd8", + "Definition": {}, + "Gloss": { + "en": "rot", + "pt": "podrecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dacf2ec5-def6-48dc-a4d3-b376982b8f63", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f93f82cc-9b40-4c81-b3c7-3001a88166e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc6f6883-38a9-434c-b87a-1176e733aa09", + "DeletedAt": null, + "LexemeForm": { + "seh": "wadz" + }, + "CitationForm": { + "seh": "wadza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ebd1836-16c2-4bc8-a232-5785ffb40d66", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc6f6883-38a9-434c-b87a-1176e733aa09", + "Definition": { + "en": { + "Spans": [ + { + "Text": "throw seeds", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "lanc\u0327ar semente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "plant", + "pt": "semear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7b5b1d96-9ab9-4de8-b209-f9a8dfc88261", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1ebd1836-16c2-4bc8-a232-5785ffb40d66", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a0b0cd3e-9564-42a5-b7d4-56e7e2a36118", + "DeletedAt": null, + "LexemeForm": { + "seh": "akudza" + }, + "CitationForm": { + "seh": "wakudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "552b7e9b-d424-47a8-866c-82f290bd2c7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a0b0cd3e-9564-42a5-b7d4-56e7e2a36118", + "Definition": {}, + "Gloss": { + "en": "foreigner", + "pt": "estrangeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cef46d47-6a30-4ed9-85e2-64dccd641918", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "552b7e9b-d424-47a8-866c-82f290bd2c7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ee0fa68b-7be0-4df4-b9f2-25209beff25b", + "DeletedAt": null, + "LexemeForm": { + "seh": "wang" + }, + "CitationForm": { + "seh": "wanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4145d3ff-05ab-40d4-9211-ab3874f5aeb9", + "Order": 1, + "DeletedAt": null, + "EntryId": "ee0fa68b-7be0-4df4-b9f2-25209beff25b", + "Definition": {}, + "Gloss": { + "en": "be healthy", + "pt": "ter sau\u0301de" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21cbdf88-7ca0-4bc5-a3ab-27eb57b0decf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Munawangisa kunyumba.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Seja que todos tem sau\u0301de em casa.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4145d3ff-05ab-40d4-9211-ab3874f5aeb9", + "DeletedAt": null + } + ] + }, + { + "Id": "3db9a9fe-2081-41be-9949-3c7789ccff52", + "Order": 2, + "DeletedAt": null, + "EntryId": "ee0fa68b-7be0-4df4-b9f2-25209beff25b", + "Definition": {}, + "Gloss": { + "en": "be strong", + "pt": "estar forte" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f39516b0-70eb-44b3-9e5b-c501be0a14ea", + "DeletedAt": null, + "LexemeForm": { + "seh": "waw" + }, + "CitationForm": { + "seh": "wawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cf11d0dd-67c4-4564-a4d4-c05dd5bbd1a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "f39516b0-70eb-44b3-9e5b-c501be0a14ea", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bitter, sour, spicy, salty", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "strong taste", + "pt": "sabor forte" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9622d6a9-f3f0-48df-b609-09e794304c87", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "cf11d0dd-67c4-4564-a4d4-c05dd5bbd1a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b91a29f-7033-4c72-a032-540b171619f0", + "DeletedAt": null, + "LexemeForm": { + "seh": "waz" + }, + "CitationForm": { + "seh": "waza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdc37e88-cc8d-40eb-b8a7-d41715ff2201", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b91a29f-7033-4c72-a032-540b171619f0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "drizzle, a light rairn", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "drizzle", + "pt": "chuviscar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a03812c-144d-4c4c-aee8-c4916bd8f1e2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu asawadza", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Est chuviscar (chuva).", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bdc37e88-cc8d-40eb-b8a7-d41715ff2201", + "DeletedAt": null + } + ] + }, + { + "Id": "5f0ee744-8b92-46cb-8fee-0cd0fa449a5f", + "Order": 2, + "DeletedAt": null, + "EntryId": "9b91a29f-7033-4c72-a032-540b171619f0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the action of spreading seed, sand etc with a throwing action", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spread", + "pt": "espalhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebc5126a-9d84-4460-84df-c0586287322f", + "DeletedAt": null, + "LexemeForm": { + "seh": "wiri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "610bd39c-d07d-4f3a-8dcf-6a1c45858f94", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebc5126a-9d84-4460-84df-c0586287322f", + "Definition": {}, + "Gloss": { + "en": "two", + "pt": "dois" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "50eb916e-8dee-4309-8ce9-6cee8601fcac", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:33", + "Ws": "en" + } + ] + }, + "SenseId": "610bd39c-d07d-4f3a-8dcf-6a1c45858f94", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0fa817f-c0ca-4ccc-9920-16a99ee014bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "wo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94d56b46-19b2-4ecb-aa89-c971ff0e51cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0fa817f-c0ca-4ccc-9920-16a99ee014bb", + "Definition": {}, + "Gloss": { + "en": "theirs", + "pt": "d\u0027eles" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a91df117-0fcb-41b4-82a0-dcabee2cac31", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "wawayo", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "94d56b46-19b2-4ecb-aa89-c971ff0e51cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "90021413-9eb7-478a-9285-e75872f730bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "xamwali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "896de921-857b-416f-9b2f-2530d6878a3e", + "Order": 1, + "DeletedAt": null, + "EntryId": "90021413-9eb7-478a-9285-e75872f730bc", + "Definition": {}, + "Gloss": { + "en": "friend", + "pt": "amigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7205294e-d580-4f19-8fbe-04c815ddfcb4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "896de921-857b-416f-9b2f-2530d6878a3e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7e46646e-47d0-4bac-8ef8-290beacd8090", + "DeletedAt": null, + "LexemeForm": { + "seh": "xanu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6582a79f-77d9-498b-9d3d-13aefb6c2187", + "Order": 1, + "DeletedAt": null, + "EntryId": "7e46646e-47d0-4bac-8ef8-290beacd8090", + "Definition": {}, + "Gloss": { + "en": "five", + "pt": "cinco" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "198b7aea-c6eb-40a6-811c-1adee9c5fd32", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:33; Wordlist; Nyacinco", + "Ws": "en" + } + ] + }, + "SenseId": "6582a79f-77d9-498b-9d3d-13aefb6c2187", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eeadb656-6249-46b5-8f2d-afc6decfc42c", + "DeletedAt": null, + "LexemeForm": { + "seh": "xii" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "12fb344a-78ae-4185-96d8-448329aaac16", + "Order": 1, + "DeletedAt": null, + "EntryId": "eeadb656-6249-46b5-8f2d-afc6decfc42c", + "Definition": {}, + "Gloss": { + "en": "wow!", + "pt": "irra!" + }, + "PartOfSpeech": { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "527d95ec-f83a-430d-bbd1-d8f3805c8605", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "12fb344a-78ae-4185-96d8-448329aaac16", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "806a16e8-d471-4719-ab4c-12944facc995", + "DeletedAt": null, + "LexemeForm": { + "seh": "xikola" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3659edd6-3d10-4629-8da4-8c9a9555e552", + "Order": 1, + "DeletedAt": null, + "EntryId": "806a16e8-d471-4719-ab4c-12944facc995", + "Definition": {}, + "Gloss": { + "en": "school", + "pt": "escola" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f50d9bb1-056f-4ff1-80f5-a83c216ececc", + "DeletedAt": null, + "LexemeForm": { + "seh": "xoko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c19b8053-71d1-4d12-ae64-ba1e3e5725c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "f50d9bb1-056f-4ff1-80f5-a83c216ececc", + "Definition": {}, + "Gloss": { + "en": "fist", + "pt": "punho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "686eb994-5789-4762-86d8-8ab7eff1ee4e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "c19b8053-71d1-4d12-ae64-ba1e3e5725c2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "909fdc18-b099-4ce2-82fd-594ef6d0ce19", + "DeletedAt": null, + "LexemeForm": { + "seh": "xol" + }, + "CitationForm": { + "seh": "xola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e636329-5e53-4a16-8383-d26a31811711", + "Order": 1, + "DeletedAt": null, + "EntryId": "909fdc18-b099-4ce2-82fd-594ef6d0ce19", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lack of respect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "falta de respeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "disrespectful", + "pt": "falta de respeito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "088a2ec2-efd3-479f-8416-b35891f030c4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1e636329-5e53-4a16-8383-d26a31811711", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6a3d7c1c-c699-4274-a2cf-f1d70be82345", + "DeletedAt": null, + "LexemeForm": { + "seh": "yemba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6de663de-116b-405f-b3a2-3415c5f276f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "6a3d7c1c-c699-4274-a2cf-f1d70be82345", + "Definition": {}, + "Gloss": { + "en": "bean", + "pt": "feija\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68c4d977-1eeb-4e7d-96b6-f89aee7594f1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira:16 (says type of); Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "6de663de-116b-405f-b3a2-3415c5f276f9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "564fffa0-0aec-46ab-8d41-cbd30be82be1", + "DeletedAt": null, + "LexemeForm": { + "seh": "yenda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "46cc0a0a-9f6e-4b00-9674-998b9238f32a", + "Order": 1, + "DeletedAt": null, + "EntryId": "564fffa0-0aec-46ab-8d41-cbd30be82be1", + "Definition": {}, + "Gloss": { + "en": "go", + "pt": "ir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3dcf17de-6e0b-48c3-9046-b5e28bdaddae", + "DeletedAt": null, + "LexemeForm": { + "seh": "yetim" + }, + "CitationForm": { + "seh": "yetima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "586ad21a-8694-415b-afb2-5843bcb03885", + "Order": 1, + "DeletedAt": null, + "EntryId": "3dcf17de-6e0b-48c3-9046-b5e28bdaddae", + "Definition": {}, + "Gloss": { + "en": "shine", + "pt": "brilhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "18061ba3-78e0-469b-8556-4ee06155ea48", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "586ad21a-8694-415b-afb2-5843bcb03885", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "48c206c1-8d09-41ee-82a1-43a9bb3d19a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "yo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4040429d-129b-4421-8325-f3ac51270407", + "Order": 1, + "DeletedAt": null, + "EntryId": "48c206c1-8d09-41ee-82a1-43a9bb3d19a4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "his", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "d\u0027ele", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "9", + "pt": "9" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ad41f63-c5f6-4a34-8e7c-7160d30f206d", + "DeletedAt": null, + "LexemeForm": { + "seh": "yokha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1b7e5eae-e787-4201-bd5d-54355fe1da19", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ad41f63-c5f6-4a34-8e7c-7160d30f206d", + "Definition": {}, + "Gloss": { + "en": "only", + "pt": "somente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b5dfcbbe-cb44-46a8-b8e8-db77276782b2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ini ndinena kuloja ndikheni", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Eu vou a loja sozinho", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "1b7e5eae-e787-4201-bd5d-54355fe1da19", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c6c48809-7c78-4abb-b8a6-154c03d809f3", + "DeletedAt": null, + "LexemeForm": { + "seh": "zaz" + }, + "CitationForm": { + "seh": "zaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d79e67f4-9836-4e45-a2cb-02574110442f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c6c48809-7c78-4abb-b8a6-154c03d809f3", + "Definition": {}, + "Gloss": { + "en": "complete", + "pt": "completar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1a07460f-4699-4e4a-8d58-fa960b2d2c45", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d79e67f4-9836-4e45-a2cb-02574110442f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09406061-101b-43d3-9ffa-3e5211d2f90b", + "DeletedAt": null, + "LexemeForm": { + "seh": "zazamir" + }, + "CitationForm": { + "seh": "zazamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ada56c3e-c584-4f09-8914-978ad628ecbe", + "Order": 1, + "DeletedAt": null, + "EntryId": "09406061-101b-43d3-9ffa-3e5211d2f90b", + "Definition": {}, + "Gloss": { + "en": "shake", + "pt": "tremer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "52974907-a11a-4693-8ddf-5836eb2047e1", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "ada56c3e-c584-4f09-8914-978ad628ecbe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1fbdd15b-3107-40f1-a970-7be1c116c622", + "DeletedAt": null, + "LexemeForm": { + "seh": "zazis" + }, + "CitationForm": { + "seh": "zazisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38c76c00-9ab7-487d-bb63-2e355f82f7c1", + "Order": 1, + "DeletedAt": null, + "EntryId": "1fbdd15b-3107-40f1-a970-7be1c116c622", + "Definition": {}, + "Gloss": { + "en": "complete", + "pt": "completar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8f8ac27c-b2f7-4582-a11c-5f5e856c3ae4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "38c76c00-9ab7-487d-bb63-2e355f82f7c1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "DeletedAt": null, + "LexemeForm": { + "seh": "zi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "33361573-23f9-41c6-8038-ef5b11e85460", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "098fb96c-aaff-447e-9620-7463d45a2a2b", + "Order": 2, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c86e5e35-bb32-40b6-aaae-d17dea00c907", + "Order": 3, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "098bb9a9-ead5-4fdb-80d9-41054d1151f8", + "Order": 4, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "1e72e29e-1e83-4754-a073-e5edbf7da6bb", + "Order": 5, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4031c181-7952-47b5-82f2-3322f080ee8e", + "DeletedAt": null, + "LexemeForm": { + "seh": "zinji" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4031c181-7952-47b5-82f2-3322f080ee8e", + "Definition": {}, + "Gloss": { + "en": "many", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "af6a4f9e-68ea-4f53-a16a-4570f7391df9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Pinthu pizinji", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "en": { + "Spans": [ + { + "Text": "Many things", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Muitas coisas", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": { + "Spans": [ + { + "Text": "sulo2; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", + "DeletedAt": null + }, + { + "Id": "82e1dce1-539b-4ee4-a321-fc4eccbd3656", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nyama yanga njii.", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "3dce1982-8e93-44f1-b92c-e9c7bdf72801", + "Text": { + "pt": { + "Spans": [ + { + "Text": "Minha carne e\u0301 esta.", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e101f5ba-1812-4c89-b69a-c05d2b931d56", + "DeletedAt": null, + "LexemeForm": { + "seh": "zirim" + }, + "CitationForm": { + "seh": "zirima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0383e271-64d7-43ef-93c0-bd43385dfa6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "e101f5ba-1812-4c89-b69a-c05d2b931d56", + "Definition": { + "en": { + "Spans": [ + { + "Text": "smooth a clay floor by putting fresh wet clay down and rubbing it", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "smooth", + "pt": "alisar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1bd8dfa1-bb72-42b4-8edb-f0d4c2a552b6", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0383e271-64d7-43ef-93c0-bd43385dfa6f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31b94a4a-5224-4bf3-af8b-50e1a41dc437", + "DeletedAt": null, + "LexemeForm": { + "seh": "zond" + }, + "CitationForm": { + "seh": "zonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0be25da3-89e3-4991-a1fa-318fcdf6d736", + "Order": 1, + "DeletedAt": null, + "EntryId": "31b94a4a-5224-4bf3-af8b-50e1a41dc437", + "Definition": {}, + "Gloss": { + "en": "hate", + "pt": "odiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "78dc54c1-942e-4ef9-be29-da5f16544ce5", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "0be25da3-89e3-4991-a1fa-318fcdf6d736", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a705b51e-e8c6-48cd-9d93-6b191ce9f7af", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungulir" + }, + "CitationForm": { + "seh": "zungulira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88ea6f68-239a-43d3-a2fc-3cd209661132", + "Order": 1, + "DeletedAt": null, + "EntryId": "a705b51e-e8c6-48cd-9d93-6b191ce9f7af", + "Definition": {}, + "Gloss": { + "en": "surround", + "pt": "rodear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0e33aac-269a-4fc1-8ec6-28ebba45e219", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "88ea6f68-239a-43d3-a2fc-3cd209661132", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9bd1dbad-08ca-4993-bdda-d568fb93b7eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungunuk" + }, + "CitationForm": { + "seh": "zungunuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86618e0a-35d0-4abd-b1ef-3bccb313c9b4", + "Order": 1, + "DeletedAt": null, + "EntryId": "9bd1dbad-08ca-4993-bdda-d568fb93b7eb", + "Definition": {}, + "Gloss": { + "en": "turn", + "pt": "virar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ab96245-1872-4068-abdf-2a1beeb73b2e", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "86618e0a-35d0-4abd-b1ef-3bccb313c9b4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6fac4249-4a72-47d2-b767-9d677530a59e", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungunus" + }, + "CitationForm": { + "seh": "zungunusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1458ae34-3a2e-45f5-b334-391ba0448c43", + "Order": 1, + "DeletedAt": null, + "EntryId": "6fac4249-4a72-47d2-b767-9d677530a59e", + "Definition": {}, + "Gloss": { + "en": "turn", + "pt": "virar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "533915a2-3831-42c4-a48d-b28d1e997153", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "1458ae34-3a2e-45f5-b334-391ba0448c43", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + } + ], + "PartsOfSpeech": [ + { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "7fbf785b-73d5-4827-b102-f8d33d9ecf98", + "Name": { + "en": "Derived Adjective", + "pt": "Adjectivo derivado" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "b1bcdc90-4ee0-44f5-9c2d-3043b84394a7", + "Name": { + "en": "Auxiliary Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "a5311f3b-ff98-47d2-8ece-b1aca03a8bbd", + "Name": { + "en": "Cardinal numeral" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "748af620-8cd0-4364-a951-c234306f5b9f", + "Name": { + "en": "Copula Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "093264d7-06c3-42e1-bc4d-5a965ce63887", + "Name": { + "en": "Demonstrative", + "pt": "Demonstrativo" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "730528ca-6a9b-4424-9839-a58bf66db779", + "Name": { + "en": "Demonstrative2", + "pt": "Demonstrativo2" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "6eb02b74-d776-4c26-987e-bd99dd3520ca", + "Name": { + "en": "Demonstrative3", + "pt": "Demonstrativo3" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "Name": { + "en": "Demonstrative6", + "pt": "Demonstrativo6" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "6df1c8ee-5530-4180-99e8-be2afab0f60d", + "Name": { + "en": "Determiner" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "Name": { + "en": "Irregular Verb - li" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "dbf8cf00-ef63-466a-bfb1-472e1fdae57d", + "Name": { + "en": "Irregular Verb - na" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "ae52e28d-f653-4f8e-821a-04940a1d7074", + "Name": { + "en": "Irregular Verb - ti" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "1c030229-affa-4729-9773-878100c1fd28", + "Name": { + "en": "Multiplicative numeral" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "Name": { + "en": "Nominalizer", + "pt": "Nominalizador" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "3d9d43d6-527c-4e79-be00-82cf2d0fd9bd", + "Name": { + "en": "Ordinal numeral" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8aa1f669-4dad-411e-adeb-6ef50ce9aa0a", + "Name": { + "en": "Orienter", + "pt": "Orientador" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "a511495e-48fa-46fe-a9db-fd5d31e585b3", + "Name": { + "en": "Prepositional phrase" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "a4fc78d6-7591-4fb3-8edd-82f10ae3739d", + "Name": { + "en": "Pro-form" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c90d669-cc98-49ea-8c9c-a739253336ed", + "Name": { + "en": "Subjunctive Verb", + "pt": "Verbo Conjuntivo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "c36e1ddc-d24b-42d5-9660-49766bda6555", + "Name": { + "en": "Relative Verb", + "pt": "Verbo Relativo" + }, + "DeletedAt": null, + "Predefined": false + } + ], + "Publications": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ], + "SemanticDomains": [ + { + "Id": "00041516-72d1-4e56-9ed8-fe235a9b1a68", + "Name": { + "en": "Series" + }, + "Code": "8.4.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "00269021-e1c4-474d-9dba-341d296bdac7", + "Name": { + "en": "Order, sequence" + }, + "Code": "8.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "00364f0c-9a3a-4910-a82e-1ffbc4d4137f", + "Name": { + "en": "Excited" + }, + "Code": "3.4.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0037693a-ae42-4e5c-85f5-10a05482d4ee", + "Name": { + "en": "Thing" + }, + "Code": "9.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0049664f-0931-487b-ab3c-ce11e134ce7a", + "Name": { + "en": "Verb affixes" + }, + "Code": "9.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0066f0f7-02dd-4f8e-afa5-59b8cb5a434a", + "Name": { + "en": "Betray" + }, + "Code": "4.8.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "00dde3be-e53d-42c3-b3ff-717e25cbffb6", + "Name": { + "en": "Pray" + }, + "Code": "4.9.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0105615f-0a96-4d08-ab00-ca4b4473de39", + "Name": { + "en": "Stingy" + }, + "Code": "6.8.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "01441207-4935-49a5-a192-16d949f5606c", + "Name": { + "en": "Sports" + }, + "Code": "4.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "01459db0-bf2a-422b-8d55-0ab505aea2b4", + "Name": { + "en": "Trouble" + }, + "Code": "4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "016e3f5b-b527-446e-9da6-49af34870001", + "Name": { + "en": "Expose falsehood" + }, + "Code": "3.5.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "019e3b64-c68a-4b19-bec5-a22f4eb88f48", + "Name": { + "en": "Weaving baskets and mats" + }, + "Code": "6.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0205145d-23b6-4c3c-bf2d-bf866bb010e7", + "Name": { + "en": "Conveying water" + }, + "Code": "6.6.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "025da6f4-b1b6-423a-8c0f-b324f531a6f1", + "Name": { + "en": "Plant" + }, + "Code": "1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0281fb1d-ab12-41b9-a3dc-09ef6b1e4733", + "Name": { + "en": "Life after death" + }, + "Code": "2.6.6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0296465a-25de-4af6-a122-376956b4b452", + "Name": { + "en": "Pronouns" + }, + "Code": "9.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "029e0760-3306-41cc-b032-40befb22303e", + "Name": { + "en": "Stimulant" + }, + "Code": "5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "02b6da2b-fae3-49f4-83f0-fd014024e117", + "Name": { + "en": "Contradict" + }, + "Code": "3.5.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "02d404d7-f3d7-492c-92a0-c6c9ff1a1908", + "Name": { + "en": "Meal" + }, + "Code": "5.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "03352940-c220-4a32-a9a5-fc08d1d0dc71", + "Name": { + "en": "Garbage" + }, + "Code": "8.3.7.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "03d65d0c-aafb-40c0-9cd2-3e5ced66ad03", + "Name": { + "en": "All the time" + }, + "Code": "8.4.6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "03e22b05-8505-442d-9c3b-7e691bd525e0", + "Name": { + "en": "Anoint the body" + }, + "Code": "5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "040e4b3e-2f36-430a-ab09-1917f96a09de", + "Name": { + "en": "Animal products" + }, + "Code": "6.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "041b5ac9-99be-4281-a17e-654eff33d793", + "Name": { + "en": "Hairstyle" + }, + "Code": "5.4.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04370e1f-25aa-4d9e-97c5-de9b59156666", + "Name": { + "en": "Widow, widower" + }, + "Code": "4.1.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "043d12ac-c76d-4b4c-813b-4ef7758c8085", + "Name": { + "en": "Hide" + }, + "Code": "7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0448c78b-dbb7-417c-afc5-b227a1475825", + "Name": { + "en": "Arrest" + }, + "Code": "4.6.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "044f740b-94f3-4096-aa3a-c07f5e708346", + "Name": { + "en": "Collect" + }, + "Code": "6.8.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04543543-4c3d-4d71-aa87-53191ef3b7b0", + "Name": { + "en": "Immediately" + }, + "Code": "8.4.6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04582a28-b94a-4e7f-8cc4-5cdefa8a39f0", + "Name": { + "en": "Man" + }, + "Code": "2.6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04752883-aa3e-42a2-bd42-454e9cd99b11", + "Name": { + "en": "Evidentials" + }, + "Code": "9.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05371057-2fe4-49ef-b203-f5bd6727645e", + "Name": { + "en": "Shake" + }, + "Code": "7.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0539de86-f407-4b3d-b1b8-028822fb9f26", + "Name": { + "en": "Repeat" + }, + "Code": "3.5.1.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05472990-3f51-40b3-bca8-df3cf383328b", + "Name": { + "en": "Make speech" + }, + "Code": "3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "054e81ce-abd8-4069-989d-13e2fa58851c", + "Name": { + "en": "Show off" + }, + "Code": "4.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05811fbe-2361-4219-a5d3-be3dc487f6fa", + "Name": { + "en": "Solve a problem" + }, + "Code": "4.4.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05a7bbdc-7cf5-47d3-830b-84e1591b11cc", + "Name": { + "en": "Pass laws" + }, + "Code": "4.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05e20a72-9496-4bba-8097-5605692e83a1", + "Name": { + "en": "Limitation of topic" + }, + "Code": "9.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05f95abb-163a-4927-83c5-8c81ef7b769c", + "Name": { + "en": "Tendency" + }, + "Code": "3.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "061749a8-e28a-461c-bf2d-052ab3e157d5", + "Name": { + "en": "Interval, space" + }, + "Code": "8.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0622d3f7-1ab2-482b-9f9c-9c101cd35182", + "Name": { + "en": "Season" + }, + "Code": "8.4.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06341e45-c407-49d0-98d8-74ecc303fb02", + "Name": { + "en": "End a relationship" + }, + "Code": "4.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "063e0810-8e49-44ef-aa8f-bb9e63bb66dd", + "Name": { + "en": "Buy" + }, + "Code": "6.8.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0644f4da-c9fe-4239-bbe5-6efc85f98968", + "Name": { + "en": "Working with land" + }, + "Code": "6.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0656cd5e-641f-46f3-bcad-6f643727a344", + "Name": { + "en": "Recently" + }, + "Code": "8.4.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0656f6a7-9a88-4c03-a8ab-ace8c0f52ebf", + "Name": { + "en": "Illegitimate child" + }, + "Code": "4.1.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06905a7e-47f4-4c86-afea-a4175295b566", + "Name": { + "en": "Knock over" + }, + "Code": "7.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0698b0f4-0a31-4a70-9262-8d36677d8faa", + "Name": { + "en": "Neglect plants" + }, + "Code": "6.2.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06a44085-cbcf-4217-ae5e-56c51899c99a", + "Name": { + "en": "Common" + }, + "Code": "8.3.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06a89652-70e0-40ac-b929-ed42f011c9fc", + "Name": { + "en": "Dead things" + }, + "Code": "1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06ac577a-4d61-4898-ac9d-e3f18b7504af", + "Name": { + "en": "Save from trouble" + }, + "Code": "4.4.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06b23bcd-69df-471a-b5a5-4ca8cab7f0d9", + "Name": { + "en": "Be about, subject" + }, + "Code": "3.5.1.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06be473e-c2f3-45fe-8522-3a0c033b5067", + "Name": { + "en": "Mark" + }, + "Code": "7.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06cb2024-5f7b-467c-b32c-ef4c56030ac0", + "Name": { + "en": "Telling time" + }, + "Code": "8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "07476166-c5e5-4701-97d3-d97de8b5be6f", + "Name": { + "en": "Know" + }, + "Code": "3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0772919e-eb4c-45e3-b705-73007f5e5583", + "Name": { + "en": "Monetary units" + }, + "Code": "6.8.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "07cf5182-d090-4432-817b-037895b5cd1d", + "Name": { + "en": "Lose wealth" + }, + "Code": "6.8.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "07e97f87-68ca-4d18-9f86-a326e0400947", + "Name": { + "en": "Line" + }, + "Code": "8.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "080bf07b-e58b-4a75-bb97-84d980a143f0", + "Name": { + "en": "Shape" + }, + "Code": "8.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08239f53-daa5-47a6-9f39-29a9064b0c27", + "Name": { + "en": "Join, attach" + }, + "Code": "7.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08244b88-bfba-487a-96bc-ca3771d1fa7c", + "Name": { + "en": "Start again" + }, + "Code": "8.4.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "084e2568-3f54-4eab-b436-8a87fb466659", + "Name": { + "en": "Working with stone" + }, + "Code": "6.6.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08788e9a-93b8-4a2e-ab01-dea177f061e8", + "Name": { + "en": "Feast" + }, + "Code": "5.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08c05e00-9660-4491-af2f-a05fab27ef39", + "Name": { + "en": "Thin person" + }, + "Code": "8.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08d5e632-0aed-4924-b3bb-d43de3420385", + "Name": { + "en": "Funeral" + }, + "Code": "2.6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "093eeea2-4ff6-4ee8-ad05-8af1702b7246", + "Name": { + "en": "Become, change state" + }, + "Code": "9.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "095c36bd-b74a-44f5-987b-85909e3f4c1d", + "Name": { + "en": "Forward" + }, + "Code": "8.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "09ac3709-0b0e-4046-b6b2-7869d574aa0d", + "Name": { + "en": "Names of continents" + }, + "Code": "9.7.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a1ad4c9-8bf3-448b-a27f-611813b305de", + "Name": { + "en": "Under, below" + }, + "Code": "8.5.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a1b26b2-2152-45e2-9b63-4a68fca73a90", + "Name": { + "en": "Musician" + }, + "Code": "4.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a27d9d1-0f1f-475a-92a2-bbccf5b15f41", + "Name": { + "en": "Hungry, thirsty" + }, + "Code": "5.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a37e7d5-b10e-4f1d-baf0-e71668425b3e", + "Name": { + "en": "Parts of an insect" + }, + "Code": "1.6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a42fd83-3b30-4c85-bb68-f5132e9ffeee", + "Name": { + "en": "Protect" + }, + "Code": "4.4.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a85ee64-e466-4295-8e2c-5b06c8e3054f", + "Name": { + "en": "Press" + }, + "Code": "7.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e", + "Name": { + "en": "Most, least" + }, + "Code": "8.1.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0aae0254-dc06-4906-8ecf-2d8450fb83f1", + "Name": { + "en": "Lie down" + }, + "Code": "7.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0aae1951-4d5b-45a0-853c-1839764c9862", + "Name": { + "en": "Short, not tall" + }, + "Code": "8.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae", + "Name": { + "en": "Mountain" + }, + "Code": "1.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ac81210-20ff-4a89-948f-5d154668f05c", + "Name": { + "en": "Independent person" + }, + "Code": "4.1.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0add0775-0ed0-46be-ba4a-76310e63a036", + "Name": { + "en": "Leaning, sloping" + }, + "Code": "8.3.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b0801a3-8a0c-40ea-bf41-07df80bd0d5f", + "Name": { + "en": "Dry" + }, + "Code": "1.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b7b9a1c-588b-475a-ac14-00f0999cbfe9", + "Name": { + "en": "Peace" + }, + "Code": "4.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b7bfd0a-249c-45b6-9427-2c17ae00bf37", + "Name": { + "en": "Cordage" + }, + "Code": "6.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b98fb79-222f-418c-8107-5d4e791d329c", + "Name": { + "en": "Management" + }, + "Code": "6.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0bbe1739-e0b4-442e-b69c-02a0ea20d790", + "Name": { + "en": "Dive" + }, + "Code": "7.2.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0bc02285-8e70-442a-8d08-e04d922507c8", + "Name": { + "en": "Art" + }, + "Code": "6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84", + "Name": { + "en": "Acquit" + }, + "Code": "4.7.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0c21ae3d-10b1-481f-8d8f-66e2590c4578", + "Name": { + "en": "Lazy" + }, + "Code": "6.1.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0c7c33f2-4cfa-42df-84bb-19fc915a72bd", + "Name": { + "en": "Copy" + }, + "Code": "8.3.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ca05184-08b9-4dc7-a4c7-ff762380b111", + "Name": { + "en": "Pay" + }, + "Code": "6.8.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a", + "Name": { + "en": "Time of the day" + }, + "Code": "8.4.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ce61f27-9de8-49b2-9189-6f6efe488f6d", + "Name": { + "en": "Search" + }, + "Code": "7.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d38c343-9c51-47fe-a367-ffadfc92c507", + "Name": { + "en": "Young" + }, + "Code": "8.4.6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d427d55-d63e-4a35-a66a-5e4dce0a963e", + "Name": { + "en": "Different" + }, + "Code": "8.3.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d63adce-41dd-4873-b0bf-331d0205e65d", + "Name": { + "en": "Exist" + }, + "Code": "9.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d7409ab-fc1f-4680-b040-d91d7004084f", + "Name": { + "en": "Interrupt" + }, + "Code": "8.4.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d935e77-e437-426f-acff-dccfb516ec8c", + "Name": { + "en": "Busy" + }, + "Code": "6.1.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d972590-5947-4983-a092-443697baec24", + "Name": { + "en": "Agricultural tool" + }, + "Code": "6.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0db5817e-05bf-4703-a6b9-e239ac44f857", + "Name": { + "en": "Male, female" + }, + "Code": "2.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0de28f92-c851-413c-bb6c-3ad21f5e267f", + "Name": { + "en": "Listen" + }, + "Code": "2.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e250e72-6c3f-424f-9e62-2dcc9729d817", + "Name": { + "en": "Number series" + }, + "Code": "8.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e590da7-c027-42e0-b580-f65686cee461", + "Name": { + "en": "Surprise" + }, + "Code": "3.4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e5a6bd0-470f-4231-9f57-a73b725807f4", + "Name": { + "en": "First fruits" + }, + "Code": "6.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e79435b-f5ff-4061-81ff-49557ba2aed4", + "Name": { + "en": "Relationships" + }, + "Code": "4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ebf9fcc-ee38-4f5f-ab5e-c76e199ef7ae", + "Name": { + "en": "Plural" + }, + "Code": "8.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0eda983b-633e-4b11-b5c8-28be60067782", + "Name": { + "en": "Risk" + }, + "Code": "4.4.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ede51d2-69bd-411e-97f9-da0d5118bbff", + "Name": { + "en": "Condemn, find guilty" + }, + "Code": "4.7.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ee5b933-f1ab-485f-894a-51fe239cb726", + "Name": { + "en": "Tree" + }, + "Code": "1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0eefa07a-e0a3-49e3-aeb4-62f1eafd8e23", + "Name": { + "en": "Semantically similar events" + }, + "Code": "9.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0efe342d-4969-4bd1-95be-556f6c62adfc", + "Name": { + "en": "Conform" + }, + "Code": "4.3.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f07adb7-4387-4723-9800-8362e825ad45", + "Name": { + "en": "Rock" + }, + "Code": "1.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f323bee-0d8a-4564-9691-87880f55d910", + "Name": { + "en": "Provide for, support" + }, + "Code": "4.3.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f46cb61-7bb5-410d-abc5-4a75dc80a24f", + "Name": { + "en": "Disbelief" + }, + "Code": "3.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f568473-880d-43bd-b5ce-590100fdcaf6", + "Name": { + "en": "Eat" + }, + "Code": "5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f7c4d2f-ed94-49ba-a91c-fba36193f35a", + "Name": { + "en": "Price" + }, + "Code": "6.8.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f883eb0-00a1-44cc-b719-97fb6ec145d4", + "Name": { + "en": "Daily life" + }, + "Code": "5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f983449-1c43-4974-b388-7695b1af4bfa", + "Name": { + "en": "Countryside" + }, + "Code": "4.6.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0fa0be21-2246-40b2-86b1-ca572fe8c16c", + "Name": { + "en": "Uninterested, bored" + }, + "Code": "3.4.1.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0fabc72a-ce97-41f3-8a2d-2f27eae09499", + "Name": { + "en": "Square" + }, + "Code": "8.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0fef044a-c822-450d-b54a-eac8621e50c2", + "Name": { + "en": "Wood" + }, + "Code": "6.6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "100e62a6-b6f4-4b30-b317-0517d6b102a9", + "Name": { + "en": "Shy, timid" + }, + "Code": "3.4.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1017cbc3-0dfb-4930-9881-28f96784035c", + "Name": { + "en": "Move quickly" + }, + "Code": "7.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "101c16f8-ec76-4ec7-895a-fd814fef51dd", + "Name": { + "en": "Treat disease" + }, + "Code": "2.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "104d40c9-2a4f-4696-ad99-5cf0eb86ab2e", + "Name": { + "en": "Recover from sickness" + }, + "Code": "2.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "106c2c42-36fd-4b0a-94f7-e998f6eae6f5", + "Name": { + "en": "Curse" + }, + "Code": "4.9.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1082c52b-490a-4eec-acf1-7016796dafd9", + "Name": { + "en": "To a small degree" + }, + "Code": "9.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1088cc2f-83ae-4911-8018-401a745dcfd5", + "Name": { + "en": "Night" + }, + "Code": "8.4.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "10a82711-8829-461a-b172-fc8fff3d555c", + "Name": { + "en": "Dog" + }, + "Code": "6.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "10b6c417-d020-4318-a44a-ae69ea3eec5a", + "Name": { + "en": "Change something" + }, + "Code": "9.1.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1133ad78-9ce9-46aa-b181-bb6f7a84a07b", + "Name": { + "en": "Near" + }, + "Code": "8.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1137590c-6f2f-4b69-b04e-f6a890a335a2", + "Name": { + "en": "Refuse to do something" + }, + "Code": "3.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1148684a-0f44-4b5a-9e3e-3823163cd4a1", + "Name": { + "en": "Announce" + }, + "Code": "3.5.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "11665f1d-aca9-4699-afb2-bcdea69c6645", + "Name": { + "en": "Important" + }, + "Code": "8.3.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "116bef13-e80f-4a15-bb0a-bb7b3794ffac", + "Name": { + "en": "Patient-related cases" + }, + "Code": "9.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "11cf45ec-f9d6-4c99-8782-738e26a342c8", + "Name": { + "en": "Take something from somewhere" + }, + "Code": "7.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1229dd8f-5cfc-4644-93c3-d256fc34d054", + "Name": { + "en": "Christianity" + }, + "Code": "4.9.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12781062-ee36-4703-9bc0-cee4ed467ee5", + "Name": { + "en": "Newspaper" + }, + "Code": "3.5.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12a028d1-d910-4011-ab9d-59be69daaf65", + "Name": { + "en": "React, respond" + }, + "Code": "9.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12b6934d-3a4a-4623-995f-865f401349ab", + "Name": { + "en": "Manner of eating" + }, + "Code": "5.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12d752d5-53a9-46f6-9e81-3153401cc760", + "Name": { + "en": "Plan a time" + }, + "Code": "8.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12f12bf3-f232-4477-bf39-d91b7f55c2c3", + "Name": { + "en": "Often" + }, + "Code": "8.4.6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12fe5f6c-7f98-47ba-936a-bcd1065c2db3", + "Name": { + "en": "Move in a direction" + }, + "Code": "7.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "130e2cbb-7e51-4f6f-a1cf-7a053a44c9b7", + "Name": { + "en": "Decorated" + }, + "Code": "8.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "134c68a9-ac3f-4b7e-8fca-63642d796a75", + "Name": { + "en": "Citizen" + }, + "Code": "4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "139409c3-7860-4586-897f-85ba3226046c", + "Name": { + "en": "Without result " + }, + "Code": "9.6.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "139cd00c-429c-465a-a227-512af0c48039", + "Name": { + "en": "Growing cassava" + }, + "Code": "6.2.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13df6ee2-4189-4faa-b54d-768588d03978", + "Name": { + "en": "Reflexive pronouns" + }, + "Code": "9.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13e67cc9-055b-4f9b-9217-a16b18db0329", + "Name": { + "en": "Think so" + }, + "Code": "9.4.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13edbeff-8913-49ef-8f02-777f86fb512d", + "Name": { + "en": "Association" + }, + "Code": "9.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13f62fa1-589c-4a46-9bbc-b0fd1001e21f", + "Name": { + "en": "Imprison" + }, + "Code": "4.7.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1438c623-c4ce-4559-b71b-cfb86a71e6d7", + "Name": { + "en": "Light a fire" + }, + "Code": "5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1447278f-efff-4807-b9ea-c487dea1ba5e", + "Name": { + "en": "Food from seeds" + }, + "Code": "5.2.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1461c106-d9e0-417d-9487-a57e6d0cced0", + "Name": { + "en": "Below standard" + }, + "Code": "4.3.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "147c2e58-9ae8-460f-8cab-bf04a668945d", + "Name": { + "en": "Prophecy" + }, + "Code": "4.9.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14954a0f-5c8a-4680-90b0-53398bd3a2a7", + "Name": { + "en": "Known, unknown" + }, + "Code": "3.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14a32765-81b0-411e-89fa-91e092a70818", + "Name": { + "en": "Call" + }, + "Code": "3.5.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14ad95ad-50fc-450f-b44d-4273df0b1e8b", + "Name": { + "en": "Period of time" + }, + "Code": "8.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "15947464-997a-4f44-9a4b-ac4916e7e19b", + "Name": { + "en": "Adornment" + }, + "Code": "5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "15e0b54b-bb7c-4900-b048-20b718d05f79", + "Name": { + "en": "Markers of focus" + }, + "Code": "9.6.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "15fb022e-1b45-41e9-bd8a-09ddc9dc6acd", + "Name": { + "en": "Determined" + }, + "Code": "3.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16081dd6-72e5-4826-b86d-958dd82a01c0", + "Name": { + "en": "Move down" + }, + "Code": "7.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "161cae07-d1cb-467c-920f-62ba9039584c", + "Name": { + "en": "Travel in space" + }, + "Code": "7.2.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1621aac3-4ea9-4373-bf1b-40fce0ca7b5e", + "Name": { + "en": "Lack" + }, + "Code": "8.1.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "167a5bae-f06f-424c-bfcb-ec547a076c8d", + "Name": { + "en": "Tend herds in fields" + }, + "Code": "6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "167bfba5-0785-4bb5-a083-3ffbefa57897", + "Name": { + "en": "Evaluate, test" + }, + "Code": "3.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1688280e-27c4-47a8-87b7-8fe31b174ab8", + "Name": { + "en": "Test" + }, + "Code": "3.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1689ac96-1159-4575-bf5f-d16345f9496c", + "Name": { + "en": "Era" + }, + "Code": "8.4.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16d2c60a-52d7-4ec5-a5b1-c559dc078bf3", + "Name": { + "en": "Police" + }, + "Code": "4.6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16dbd62c-f60d-4530-ba4e-0e74221e4681", + "Name": { + "en": "Hide your thoughts" + }, + "Code": "3.5.1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16de6eab-afab-4ba4-a279-cf0ba4d7c9e6", + "Name": { + "en": "Animal color, marking" + }, + "Code": "8.3.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16ee1e09-27ad-48c5-aa07-6933ecbbc716", + "Name": { + "en": "Hard, firm" + }, + "Code": "8.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "17102138-b97a-4f1d-81bc-9be4af90889e", + "Name": { + "en": "Lose a fight" + }, + "Code": "4.8.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "17851b86-f8fb-4850-9b33-c1a9fcb0aec1", + "Name": { + "en": "Show hospitality" + }, + "Code": "4.2.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "17d5f429-6550-4a3a-a755-5ac3c3d7e04f", + "Name": { + "en": "Animal home" + }, + "Code": "1.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18043b8c-3ff0-46a5-87cc-626f62f967cc", + "Name": { + "en": "Growing coconuts" + }, + "Code": "6.2.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "180a2220-942c-4e17-96ee-cd4f63a4c715", + "Name": { + "en": "Soil, dirt" + }, + "Code": "1.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18595df7-1c69-40db-a7c1-74d490115c0c", + "Name": { + "en": "Blow air" + }, + "Code": "1.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1886ffc9-0a18-41ea-b2f6-c17c297f1681", + "Name": { + "en": "Science" + }, + "Code": "3.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "189f8c29-f0ff-44b6-a0db-5b287c412a75", + "Name": { + "en": "Hostility" + }, + "Code": "4.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18a6684f-d324-45ee-855c-44d473916b14", + "Name": { + "en": "Aspectual time" + }, + "Code": "8.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18b3ca02-18fe-4ab5-8709-c20957a0a2fb", + "Name": { + "en": "Proud" + }, + "Code": "4.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18bf6c79-6399-4977-be3d-93135302d8c4", + "Name": { + "en": "Purpose " + }, + "Code": "9.6.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "191ca5a5-0a67-426e-adfc-6fdf7c2aaa2c", + "Name": { + "en": "House" + }, + "Code": "6.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "196bf7b1-54a1-4a78-8d10-c61585849c63", + "Name": { + "en": "Accompany" + }, + "Code": "7.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "196f81d0-6a1a-4cc0-936a-367423ff485c", + "Name": { + "en": "Trap" + }, + "Code": "6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "198436ae-c3c6-4f3c-8fe0-ea10c867f1c6", + "Name": { + "en": "Growing grass" + }, + "Code": "6.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "19d54c2f-ae03-4cbc-9b7e-57292f92fbc1", + "Name": { + "en": "Pursue" + }, + "Code": "7.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "19fea936-30d1-482f-a103-1c5549b19745", + "Name": { + "en": "Twist, wring" + }, + "Code": "8.3.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1a28d255-8f58-428c-9641-59f17f8b1e08", + "Name": { + "en": "Tear down" + }, + "Code": "7.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1a635032-6e13-4a56-aa03-6c6a015c502e", + "Name": { + "en": "Unsure" + }, + "Code": "9.4.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1a8322d7-cda9-41e5-a14b-f41274cb7157", + "Name": { + "en": "Right, left" + }, + "Code": "8.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b0270a5-babf-4151-99f5-279ba5a4b044", + "Name": { + "en": "Body" + }, + "Code": "2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b3dccfe-29e4-478e-8443-17be9454a05a", + "Name": { + "en": "Leave something" + }, + "Code": "7.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b4f987d-3eaa-46dd-95ee-e0cb1f30cfbb", + "Name": { + "en": "In general" + }, + "Code": "9.6.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf", + "Name": { + "en": "Many, much" + }, + "Code": "8.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b73b2bf-9582-4f8a-822a-e0d020272c7c", + "Name": { + "en": "Follow" + }, + "Code": "7.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1bd42665-0610-4442-8d8d-7c666fee3a6d", + "Name": { + "en": "Moon" + }, + "Code": "1.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c0c4951-03b6-49b8-8a8e-724397cfd5a7", + "Name": { + "en": "Obsessed" + }, + "Code": "3.4.1.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c3c8af0-56b9-4617-862e-21f39b388606", + "Name": { + "en": "Die" + }, + "Code": "2.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c3f8996-362e-4ee0-af02-0dd02887f6aa", + "Name": { + "en": "Heaven, hell" + }, + "Code": "4.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c512719-6ecb-48cb-980e-4ff20e8b5f9b", + "Name": { + "en": "Spirits of things" + }, + "Code": "1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c8da3aa-3c74-4188-8949-5ab82fc1f99c", + "Name": { + "en": "Every time" + }, + "Code": "8.4.6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1ca26512-75f6-4a7a-a7cc-07d08aa799d9", + "Name": { + "en": "Repent" + }, + "Code": "4.8.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1cb79293-d4f7-4990-9f50-3bb595744f61", + "Name": { + "en": "Soul, spirit" + }, + "Code": "3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1d34380d-61bf-4247-9145-ba318a14a97e", + "Name": { + "en": "Piece" + }, + "Code": "8.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1d5c798b-0f2d-49f2-bde6-cbcf2ef8fd02", + "Name": { + "en": "Disagree" + }, + "Code": "3.2.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1d8633e0-4279-4ddc-826e-16aa08a977e5", + "Name": { + "en": "Bone, joint" + }, + "Code": "2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1da9c4f4-8ae2-47d9-8068-ff65fa3848a9", + "Name": { + "en": "Repay debt" + }, + "Code": "6.8.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1dc717b9-c5e8-4482-b076-22102da9d553", + "Name": { + "en": "Break the law" + }, + "Code": "4.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1de2cef5-3a2d-45c1-8cb6-06b2ac087907", + "Name": { + "en": "Subordinating particles" + }, + "Code": "9.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1e102423-6167-486a-bfef-dad1c9cdf1eb", + "Name": { + "en": "Vehicle" + }, + "Code": "7.2.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1e419f7a-7363-46bc-8044-157ed0b40ccd", + "Name": { + "en": "Hold" + }, + "Code": "7.3.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1e9a0881-f715-4057-9af8-251cb8eec9da", + "Name": { + "en": "Voice" + }, + "Code": "3.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1ec85151-eba0-48f4-b56d-4f8040602a4b", + "Name": { + "en": "Inherit" + }, + "Code": "2.6.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1f3519f8-d946-4857-a1fd-553d98dddf6d", + "Name": { + "en": "Stupid" + }, + "Code": "3.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1f4efae7-1029-4b66-80ee-802459a7baf5", + "Name": { + "en": "Relative time" + }, + "Code": "8.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1f608e18-958e-4bb3-a977-04879fb5acd5", + "Name": { + "en": "Food from animals" + }, + "Code": "5.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1fa683b9-78fd-4feb-9978-55d5953f38ec", + "Name": { + "en": "Subject of teaching" + }, + "Code": "3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1fd8a8d6-6795-4a5b-90e0-342e8b0975a1", + "Name": { + "en": "Explode" + }, + "Code": "6.6.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1fda68d4-5941-4695-b656-090d603a3344", + "Name": { + "en": "Food preparation" + }, + "Code": "5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1ff743cb-49e0-483d-8a1d-4603a7d6c395", + "Name": { + "en": "Decrease" + }, + "Code": "8.1.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "203f46d2-f0d0-4dda-8d1a-ddc15065b005", + "Name": { + "en": "Parts of a reptile" + }, + "Code": "1.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "20baa5e7-4f02-4782-a292-c6281d7b5f3a", + "Name": { + "en": "Push" + }, + "Code": "7.3.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "20e7d987-0d55-46d4-ab69-0b0cce2f1e24", + "Name": { + "en": "Leave" + }, + "Code": "7.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "20fadd54-6cec-4bb3-a47c-66c29aaff227", + "Name": { + "en": "Avoid" + }, + "Code": "4.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21167445-f1b1-49b4-b147-bc792616c432", + "Name": { + "en": "Time" + }, + "Code": "8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21461d78-02f9-4be6-80e3-6a4498ce8f4c", + "Name": { + "en": "Prisoner of war" + }, + "Code": "4.8.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2158eb7d-eb59-4740-9628-9080d7f51a97", + "Name": { + "en": "Wake up" + }, + "Code": "5.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "218c1d59-0ebb-4936-b9cf-0a93e88aa729", + "Name": { + "en": "Hopeless" + }, + "Code": "3.2.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21a284ab-b9a3-42c8-8fb9-96aff1e1fe8f", + "Name": { + "en": "Towards" + }, + "Code": "8.5.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21bcc306-13cb-4162-98b3-2ba319ba14ea", + "Name": { + "en": "Jewel" + }, + "Code": "1.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21ebc64a-a1b8-45bd-b7f6-143a053f1d31", + "Name": { + "en": "Basketball" + }, + "Code": "4.2.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21f21658-a69a-491c-a37b-156a8f4ad3fb", + "Name": { + "en": "Wrong, unsuitable" + }, + "Code": "8.3.7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "22300e2c-3d7d-4c36-a2b7-e2bbb247f793", + "Name": { + "en": "Growing coffee" + }, + "Code": "6.2.1.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "225c48dd-9fc2-4467-944f-16a098b4e518", + "Name": { + "en": "Defeat" + }, + "Code": "4.8.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2265a4bd-379d-4a9d-80d5-2318e6c8c683", + "Name": { + "en": "Inside" + }, + "Code": "8.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "22acd714-b11e-462a-bd8e-6ff50843c103", + "Name": { + "en": "Parts of a building" + }, + "Code": "6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "22e8f542-0ab1-4f25-af50-fd0d02917fda", + "Name": { + "en": "Figurative" + }, + "Code": "3.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23190f9e-2db2-4ef9-8c0e-495dbef05571", + "Name": { + "en": "Attract sexually" + }, + "Code": "2.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2330813b-7413-41a8-8eb2-ae138511c953", + "Name": { + "en": "Bright" + }, + "Code": "8.3.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2351f52a-8822-46ad-99c4-7ef526e94a6f", + "Name": { + "en": "Again" + }, + "Code": "8.4.6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23b1a6b4-8d91-425c-b8c2-52d06b1c1d23", + "Name": { + "en": "Break" + }, + "Code": "7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23bc906d-c15a-4368-b0ca-7443d5e37b83", + "Name": { + "en": "Cause" + }, + "Code": "9.6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23fa2115-3979-472c-8939-4db8d54e4c98", + "Name": { + "en": "Opposite" + }, + "Code": "8.3.5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23fb1571-c04e-4850-b499-f170bc45247f", + "Name": { + "en": "Poor eyesight" + }, + "Code": "2.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "24361be2-49be-4860-bb56-4e46dd1e8b0c", + "Name": { + "en": "Taboo" + }, + "Code": "4.9.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "24398eec-edd1-449a-ad36-d609be24a79e", + "Name": { + "en": "Have, be with" + }, + "Code": "7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "243d8a57-d5ed-4d7f-bd5e-f2605634f0fc", + "Name": { + "en": "Defend" + }, + "Code": "4.8.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2470ad05-636e-4c85-96ab-cd880da58741", + "Name": { + "en": "Religious organization" + }, + "Code": "4.9.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "24d3d7f9-0fda-4759-930b-6b721d3e9115", + "Name": { + "en": "Adverbs" + }, + "Code": "9.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "250a52e4-ede0-427d-8382-46a5742d4f96", + "Name": { + "en": "Hospital" + }, + "Code": "2.5.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "250baab9-5a31-493c-95ea-9fee8baf9fd5", + "Name": { + "en": "Graceful" + }, + "Code": "7.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "251b17bd-5796-43ce-ba10-54140a99a1e0", + "Name": { + "en": "Equivalence" + }, + "Code": "9.6.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "252886c4-9317-4c6b-a69e-13520eb89736", + "Name": { + "en": "Welcome, receive" + }, + "Code": "4.2.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "25763563-5ad6-4b4d-9073-3fc88f6dd44e", + "Name": { + "en": "Nature, character" + }, + "Code": "8.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2594fe01-4d20-4a20-b093-2df70bced18f", + "Name": { + "en": "Stretch" + }, + "Code": "8.3.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "25bf6690-6ed1-42e9-8a4a-3518f9cf382c", + "Name": { + "en": "Theology" + }, + "Code": "4.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2608bcf8-ed20-4501-8510-4ecacf922dd4", + "Name": { + "en": "Wrap" + }, + "Code": "7.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2621e605-3ecc-4f3d-b28c-f8c92b3c4584", + "Name": { + "en": "Texture" + }, + "Code": "8.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2629943b-3a69-4c6b-9956-2aa59ebd03d3", + "Name": { + "en": "History" + }, + "Code": "3.5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "262fc4ae-7735-465b-934b-2125d95de147", + "Name": { + "en": "Jealous" + }, + "Code": "3.4.2.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "265f5645-94cb-485c-8bf9-0a3ab2354f63", + "Name": { + "en": "Coordinate relations" + }, + "Code": "9.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "267b98aa-e17c-4ebb-a752-ed4210701867", + "Name": { + "en": "Notice" + }, + "Code": "3.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26b97047-edb1-44e9-8c7b-463de9cfbe78", + "Name": { + "en": "Sheep" + }, + "Code": "6.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26bc089a-a989-4763-be6c-05d127d1c0e8", + "Name": { + "en": "Deliberately" + }, + "Code": "3.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26d32f3e-ced6-45fc-afd0-7e017fa252c6", + "Name": { + "en": "Riddle" + }, + "Code": "3.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26fb2e94-b8fe-4216-9057-ca17a71df83b", + "Name": { + "en": "Relaxed" + }, + "Code": "3.4.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "27048124-c204-4585-9997-c51728f085d6", + "Name": { + "en": "Thank" + }, + "Code": "3.5.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "273f4956-f79f-4b1e-b552-466280a65e60", + "Name": { + "en": "Show, let someone see" + }, + "Code": "2.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2810998c-d6cc-47a3-a946-66d0986a2767", + "Name": { + "en": "Move something" + }, + "Code": "7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "284433df-7b37-4e63-a614-78520c483213", + "Name": { + "en": "Animal movement" + }, + "Code": "1.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2854734e-834a-42cb-8812-d9e7028916dc", + "Name": { + "en": "Growing vegetables" + }, + "Code": "6.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2855cda6-a031-46aa-bf3f-718d94374d46", + "Name": { + "en": "Protest" + }, + "Code": "3.2.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "286ee16c-a218-43d5-bbac-ab15f80c3fcf", + "Name": { + "en": "Enough" + }, + "Code": "8.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28a37d39-8347-4254-99bf-8e3c37dbf8a8", + "Name": { + "en": "Set upright" + }, + "Code": "7.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28a68cea-9128-4d5c-8542-8df38c907310", + "Name": { + "en": "Set free" + }, + "Code": "7.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28ba8f5c-5baa-4500-a6f5-be292caa673f", + "Name": { + "en": "Disobey" + }, + "Code": "4.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28e874fb-b2e7-4afa-a4d7-600306ad2583", + "Name": { + "en": "Exercise" + }, + "Code": "4.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "290f0994-ce8e-4922-975f-fa091f566823", + "Name": { + "en": "Relief" + }, + "Code": "4.4.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2933a9c1-aa62-46fb-a03c-68aed7fae9b7", + "Name": { + "en": "Burn" + }, + "Code": "5.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "295dc021-5b50-47b3-8340-1631c6d6fadc", + "Name": { + "en": "Comfortable" + }, + "Code": "2.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "29a8ebbe-ebc4-4295-b6af-84331d019361", + "Name": { + "en": "Word" + }, + "Code": "3.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "29d131d2-5e52-49e3-83b1-c872d331cf03", + "Name": { + "en": "Useless" + }, + "Code": "6.1.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2a2af155-9db9-41c5-860a-fe0a3a09d6de", + "Name": { + "en": "Think about" + }, + "Code": "3.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2a62f8e4-7da3-4f37-bf44-e24033c99c00", + "Name": { + "en": "Angry" + }, + "Code": "3.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2aabd548-5ee2-4962-8f10-84d1b0427c41", + "Name": { + "en": "Endure" + }, + "Code": "4.4.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b27b8ca-188e-44ad-aa86-ffa1f99106e3", + "Name": { + "en": "Add to something" + }, + "Code": "7.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b2bedd5-3f9c-4c18-a256-aa65ee19f15c", + "Name": { + "en": "Compatible" + }, + "Code": "8.3.7.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b6f9af7-04ee-4030-a2cd-87d55959caa8", + "Name": { + "en": "Afraid" + }, + "Code": "3.4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b846476-00cf-4d82-97a1-26e1eda880ca", + "Name": { + "en": "Immature in behavior" + }, + "Code": "4.3.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b893d04-3450-4862-b046-7df6f87272f6", + "Name": { + "en": "Finance" + }, + "Code": "6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c04fa05-eebf-4331-b392-23f795c32382", + "Name": { + "en": "One" + }, + "Code": "8.1.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c143278-3ea0-49c6-9e50-e0bf7c8cf4e2", + "Name": { + "en": "Indefinite location" + }, + "Code": "8.5.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c322d8b-d762-43ce-b905-aab41f9c7bbb", + "Name": { + "en": "Bat" + }, + "Code": "1.6.1.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c401e7f-6ce9-470f-b6b6-fadf7a798536", + "Name": { + "en": "Rest" + }, + "Code": "2.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c42f822-2079-440c-b3b7-7725b6a8db8b", + "Name": { + "en": "Stop something" + }, + "Code": "8.4.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c576c40-17ae-45a7-9ec8-6c16e02ab9c3", + "Name": { + "en": "Clause conjunctions" + }, + "Code": "9.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2cc624fa-76cb-46ab-87c8-c13c6adb1c72", + "Name": { + "en": "Go" + }, + "Code": "7.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2ccab97a-fb98-4054-a29b-e5ceac8ca1b4", + "Name": { + "en": "Worship" + }, + "Code": "4.9.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2cccfd92-de45-42c2-83f7-1e0ef7dfddc1", + "Name": { + "en": "Unique" + }, + "Code": "8.3.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2cd48908-8f12-4e0f-a22e-87237618ce9f", + "Name": { + "en": "Vindicate" + }, + "Code": "4.7.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d0b3058-d8bb-4110-a54a-e507b0d3a0e4", + "Name": { + "en": "Heart" + }, + "Code": "2.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d563d27-8ac3-41c9-b326-856c9e1f6401", + "Name": { + "en": "Concave" + }, + "Code": "8.3.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d5d634e-75b5-4921-922e-573a809a49f8", + "Name": { + "en": "Make" + }, + "Code": "9.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d894eca-8f6c-4b63-b265-0914a65d9be9", + "Name": { + "en": "Alcoholic beverage" + }, + "Code": "5.2.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d92e248-1512-4e89-b886-425814c6dd32", + "Name": { + "en": "Chess" + }, + "Code": "4.2.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2daede19-ce5f-46b6-ae68-32d6092441f1", + "Name": { + "en": "Energetic" + }, + "Code": "2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2dca9338-85cb-4f58-b40d-d2d759e8edd6", + "Name": { + "en": "Location" + }, + "Code": "8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e09535f-f61f-4ff5-8d56-23c2916cbb7f", + "Name": { + "en": "Rough" + }, + "Code": "8.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e2a17ba-9d81-4a3d-8af5-96c8f0e39e7e", + "Name": { + "en": "Store wealth" + }, + "Code": "6.8.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819", + "Name": { + "en": "Disappointed" + }, + "Code": "3.4.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e5a80f9-35ae-4850-9627-be530832a781", + "Name": { + "en": "Honorifics " + }, + "Code": "9.6.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e5acfd2-3009-4496-9cc2-58d2a0088994", + "Name": { + "en": "Hair" + }, + "Code": "2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180", + "Name": { + "en": "Arrange a marriage" + }, + "Code": "2.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e97b83d-1152-473f-9cbe-347f0655041a", + "Name": { + "en": "Ear" + }, + "Code": "2.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e9f06f3-c986-43da-a035-e3cc9aef13d4", + "Name": { + "en": "Job satisfaction" + }, + "Code": "6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2eba12c6-7817-4dfd-9e7c-94c8b8b389ef", + "Name": { + "en": "Prohibited food" + }, + "Code": "5.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2f151c35-72e1-4665-bc05-6fc70a3ecff2", + "Name": { + "en": "Ugly" + }, + "Code": "2.3.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2f28f1ab-476e-4317-8787-124d95d6b9d2", + "Name": { + "en": "Concession" + }, + "Code": "9.6.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2f98291a-47a7-4b7b-9256-2c0249105be1", + "Name": { + "en": "Various" + }, + "Code": "8.3.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2fc69f71-e9f1-45f9-b88e-bdaf97457fc3", + "Name": { + "en": "Quick" + }, + "Code": "8.4.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3005971d-de4d-401f-8400-b25de5e052ad", + "Name": { + "en": "Middle" + }, + "Code": "8.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3014de03-88e5-4330-9682-51963a41ca50", + "Name": { + "en": "Shark, ray" + }, + "Code": "1.6.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3022c764-ba88-41d0-94db-393312214f4e", + "Name": { + "en": "Possession, property" + }, + "Code": "6.8.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "303539ba-7253-4590-b8c4-7751caa52c65", + "Name": { + "en": "Power, force" + }, + "Code": "6.1.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30b3faa8-747e-465f-833a-a9957a259be2", + "Name": { + "en": "Separate, scatter" + }, + "Code": "7.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce", + "Name": { + "en": "Good, moral" + }, + "Code": "4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30ea3057-753d-4c4c-9b1f-ed30e569feea", + "Name": { + "en": "Court of law" + }, + "Code": "4.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30fff450-1aa5-4993-9c14-c8019a5f072e", + "Name": { + "en": "But" + }, + "Code": "9.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31171aa9-e243-4b46-abd8-f3e52843cdfc", + "Name": { + "en": "Marsupial" + }, + "Code": "1.6.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "312ce7a7-8c7c-416d-bf93-73376f1f16d8", + "Name": { + "en": "Glory" + }, + "Code": "8.3.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "313a65bf-450f-48da-8903-a43247f1a5f8", + "Name": { + "en": "Make hole, opening" + }, + "Code": "7.8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "313ca832-ce91-44c9-bb35-bd130c39d924", + "Name": { + "en": "Sharp" + }, + "Code": "8.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31426c31-9439-406c-9867-bc98c6ca0565", + "Name": { + "en": "Growing sugarcane" + }, + "Code": "6.2.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "314c8fea-4bdb-4bc8-ab67-a26a9c5abbd4", + "Name": { + "en": "Stiff, flexible" + }, + "Code": "8.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3160b7ad-e4e8-4a46-8e2e-d5e601969547", + "Name": { + "en": "Story" + }, + "Code": "3.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "316f27aa-ed6d-4bc3-9d14-840946a6f4e9", + "Name": { + "en": "General adjectives" + }, + "Code": "9.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31777669-e37b-4b77-9cce-0d8c33f6ebb9", + "Name": { + "en": "Swamp" + }, + "Code": "1.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3180b6aa-3ad9-4bd3-96f7-ae72264406fb", + "Name": { + "en": "Return something" + }, + "Code": "7.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31ccb9e3-d434-4430-ac84-486cc5a1c53d", + "Name": { + "en": "Difficult, impossible" + }, + "Code": "6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31dc3d15-c6f8-4405-a33b-8f3a52f8671a", + "Name": { + "en": "Beverage" + }, + "Code": "5.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31e0fde8-b3ab-47ae-b791-54309e6ed0bd", + "Name": { + "en": "Modern" + }, + "Code": "8.4.6.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32125c5f-d69a-442f-ba66-6277ec0a3b15", + "Name": { + "en": "Food from plants" + }, + "Code": "5.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "321d0a74-705f-40bf-8d24-809f65bee895", + "Name": { + "en": "Aspect--stative verbs" + }, + "Code": "9.4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32bebe7e-bdcc-4e40-8f0a-894cd6b26f25", + "Name": { + "en": "Healthy" + }, + "Code": "2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32bf055a-d666-4d6e-a3c6-6c984e2c9868", + "Name": { + "en": "Telephone" + }, + "Code": "3.5.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32cf3835-bced-4ea1-9c7a-f7ff653e59fe", + "Name": { + "en": "Grave" + }, + "Code": "2.6.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32d5b3de-0500-4ad6-b94e-20b8001d0a91", + "Name": { + "en": "Move noisily" + }, + "Code": "7.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32f868e0-54a7-4d04-8689-ac10e13396e5", + "Name": { + "en": "Cut grass" + }, + "Code": "6.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32fc19fd-a04e-4b69-9442-f7d57348ec55", + "Name": { + "en": "Cattle" + }, + "Code": "6.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "33037a4d-3454-4c59-9a61-c5fb747f107a", + "Name": { + "en": "Working with bricks" + }, + "Code": "6.6.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3389561c-f264-48b9-b94c-86c33fc3c423", + "Name": { + "en": "Average" + }, + "Code": "8.1.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3393b3b2-b324-408d-9c59-057a0de9c3bd", + "Name": { + "en": "Try, attempt" + }, + "Code": "6.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "339ee46b-d69a-4f2e-8fba-d1b2adff763b", + "Name": { + "en": "Generous" + }, + "Code": "6.8.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "339f54a5-125b-435f-bf37-cfc2a2bd26d3", + "Name": { + "en": "Facial expression" + }, + "Code": "3.5.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3420b36a-a033-4af9-a8c4-53f8221ee56e", + "Name": { + "en": "Away from" + }, + "Code": "8.5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3445e61b-61a3-4ede-93f5-402ebe9ca51c", + "Name": { + "en": "Warn" + }, + "Code": "3.3.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "345e019f-87d2-415d-ba37-9fb85460f7e1", + "Name": { + "en": "Lumbering" + }, + "Code": "6.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "349937e3-a2fd-41f8-b7c4-bd6fa106add4", + "Name": { + "en": "Flood" + }, + "Code": "1.1.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "349f0278-7998-422a-9c3b-6053989cbb20", + "Name": { + "en": "Grammar" + }, + "Code": "9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34a02a17-23fb-4260-9f97-c125842a3594", + "Name": { + "en": "Birth ceremony" + }, + "Code": "2.6.3.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34c3edad-a158-44e7-989b-5b74401e6945", + "Name": { + "en": "Gas" + }, + "Code": "1.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34c9408c-c3f7-49db-8bce-de7fa7da03d7", + "Name": { + "en": "Catch, capture" + }, + "Code": "7.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34dd26b6-d081-42f5-8be9-c5fe7a7253b2", + "Name": { + "en": "Available" + }, + "Code": "6.1.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34e92ff1-32aa-49c7-b4da-d161bedc5adc", + "Name": { + "en": "Working with minerals" + }, + "Code": "6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34fe8676-7bda-493d-a012-bc5748e87823", + "Name": { + "en": "Pointed" + }, + "Code": "8.3.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "350667ee-592b-47af-adca-14e820ec58cf", + "Name": { + "en": "No, not" + }, + "Code": "9.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35624f3a-2029-43b3-b70a-83e63ac9052f", + "Name": { + "en": "Affixes" + }, + "Code": "9.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35a9da32-53ee-44fa-9c65-5a15f88ad283", + "Name": { + "en": "Names of streets" + }, + "Code": "9.7.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35e61ec4-0542-4583-b5da-0aa5e31a35aa", + "Name": { + "en": "Birth" + }, + "Code": "2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35faefb3-7498-4735-9b05-e7035dd368fc", + "Name": { + "en": "Crop failure" + }, + "Code": "6.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36123ffe-14d8-4198-b32c-eabd0b23e0dd", + "Name": { + "en": "Bargain" + }, + "Code": "6.8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3615c3d1-fd5b-40c5-80ad-80bfd6451d56", + "Name": { + "en": "Plunder" + }, + "Code": "4.8.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36176d59-171b-4a0a-a0f7-a8f9857536a1", + "Name": { + "en": "Move straight without turning" + }, + "Code": "7.2.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "362a2bdd-985e-4bc0-a41c-358bd1babb12", + "Name": { + "en": "Spy" + }, + "Code": "4.8.3.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36934fab-c0ed-4f25-a387-e1cca26b2401", + "Name": { + "en": "Few, little" + }, + "Code": "8.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36a2c83f-f7aa-41b0-9b17-f801f3720e4f", + "Name": { + "en": "Growing grain" + }, + "Code": "6.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36ad58e3-ade7-49b9-9922-de0b5c3f13c3", + "Name": { + "en": "Cooking ingredients" + }, + "Code": "5.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36b3cfb6-0fea-4628-aa8d-f9b7af48f436", + "Name": { + "en": "Lizard" + }, + "Code": "1.6.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3710e019-46c9-44db-a0aa-9054d3126161", + "Name": { + "en": "Narcotic" + }, + "Code": "5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3759bdda-2b52-43dc-8995-8379e3129dce", + "Name": { + "en": "Relations involving correspondences" + }, + "Code": "9.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3785d9f3-0922-4d79-a0fa-b97c4a26fe17", + "Name": { + "en": "Spatial relations" + }, + "Code": "8.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "37a08f65-5a79-4e17-8e19-0975d6531d64", + "Name": { + "en": "Serious" + }, + "Code": "4.2.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "37e6c8b5-f63c-4f5b-8c16-eccd727d6618", + "Name": { + "en": "Fight against something bad" + }, + "Code": "4.8.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "37f6a1d9-985d-465e-b62d-37c1f9bf855b", + "Name": { + "en": "Growing maize" + }, + "Code": "6.2.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "380b0d15-77a1-49ba-ad83-a508e7ffb83d", + "Name": { + "en": "Storm" + }, + "Code": "1.1.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38473463-4b92-4681-8fd0-0aca0342e88a", + "Name": { + "en": "Small animals" + }, + "Code": "1.6.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3885231e-8b18-4da3-af76-c75e8b731ed8", + "Name": { + "en": "Pick up" + }, + "Code": "7.3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38ab2681-fcc7-4a75-bb0b-29c5cd2e3a8f", + "Name": { + "en": "Send someone" + }, + "Code": "7.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9", + "Name": { + "en": "Sense, perceive" + }, + "Code": "2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38bdff04-c7a9-41fa-a6a2-7aa214de308c", + "Name": { + "en": "Impartial" + }, + "Code": "4.7.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38d1a6fe-0811-4eb0-a1d8-f69b6ad978e0", + "Name": { + "en": "Bless" + }, + "Code": "4.9.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "390ad7fc-8360-4eae-8736-3aedc15ae659", + "Name": { + "en": "Map" + }, + "Code": "7.2.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "39611e8d-cc67-4c84-977c-094c5cbe9dbc", + "Name": { + "en": "Lonely" + }, + "Code": "3.4.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "396a2a1b-832f-4180-b26a-c606550541d7", + "Name": { + "en": "Blunt" + }, + "Code": "8.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "398ffed0-bfa7-452c-8521-7d37b3082dcf", + "Name": { + "en": "Work hard" + }, + "Code": "6.1.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "39dcb6b9-94df-45be-a128-c14c7a9dcdbd", + "Name": { + "en": "Stomach illness" + }, + "Code": "2.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a0dc521-f028-4c17-945c-b121e2d3dc0b", + "Name": { + "en": "Yesterday, today, tomorrow" + }, + "Code": "8.4.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a28ab73-2847-44a4-97ed-7129269f1366", + "Name": { + "en": "Kneel" + }, + "Code": "7.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4", + "Name": { + "en": "General words" + }, + "Code": "9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a545732-145a-4034-8f72-e08d752cb4d4", + "Name": { + "en": "With, be with" + }, + "Code": "9.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a568f98-8446-4327-876b-7c5ec78d9084", + "Name": { + "en": "Floor" + }, + "Code": "6.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3aab9c42-b696-4440-8e28-8380f5d25199", + "Name": { + "en": "Extreme belief" + }, + "Code": "3.2.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3acf5e20-b626-4f0a-a582-d386a0e30792", + "Name": { + "en": "Sheath" + }, + "Code": "6.7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ae3a1be-cfb5-4953-b65b-68f0c51b1d40", + "Name": { + "en": "Sculpture" + }, + "Code": "6.6.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3aec74e5-6cfd-46d2-b26f-503fad761583", + "Name": { + "en": "Parts of tools" + }, + "Code": "6.7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3b4b947a-f223-4c87-8839-9f6237cda9f6", + "Name": { + "en": "Handle something" + }, + "Code": "7.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3b69f6b6-d64a-43aa-99dc-05e34f81e07f", + "Name": { + "en": "Hire, rent" + }, + "Code": "6.8.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3bc961d1-9f4f-4f1b-ada7-b1e9a2928ea4", + "Name": { + "en": "Tell the truth" + }, + "Code": "3.5.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3be7e3fe-89d4-471a-92bd-8c70fcb146bb", + "Name": { + "en": "Deaf" + }, + "Code": "2.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3c9fe647-2647-4f43-8bac-7facc054f7ff", + "Name": { + "en": "Move back and forth" + }, + "Code": "7.2.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3", + "Name": { + "en": "Pregnancy" + }, + "Code": "2.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ccc3a21-07c8-4983-a044-e3c74b538135", + "Name": { + "en": "Short, not long" + }, + "Code": "8.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3d10e03a-7902-458d-9c45-938da103d639", + "Name": { + "en": "Hollow" + }, + "Code": "8.3.1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3d5d93ce-00e0-46ff-b220-553c12c38381", + "Name": { + "en": "Female organs" + }, + "Code": "2.1.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3dba39bc-48f2-4bcb-9357-c8fbed6922ca", + "Name": { + "en": "Promise" + }, + "Code": "3.5.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400", + "Name": { + "en": "Respond to someone in trouble" + }, + "Code": "4.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3df7d174-83d1-4e17-890e-1272e171ca41", + "Name": { + "en": "Metal" + }, + "Code": "1.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3e546c11-bcb6-4024-b2f3-c15be40e257f", + "Name": { + "en": "Lack self-control" + }, + "Code": "4.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ea4c495-b837-4310-8741-38d89fa63e0b", + "Name": { + "en": "Epistemic moods" + }, + "Code": "9.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ea52505-aa6c-4f28-b475-f15ac1820ec1", + "Name": { + "en": "Demon possession" + }, + "Code": "4.9.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3edb307f-be46-40b6-a6a4-ae075b40258c", + "Name": { + "en": "Since, from" + }, + "Code": "8.4.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f069313-4827-4fc5-b73b-b9fbd42ca38c", + "Name": { + "en": "Reconcile" + }, + "Code": "4.8.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f37bb6f-cd32-4430-aa35-700acabbee15", + "Name": { + "en": "Start something" + }, + "Code": "8.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f4c559f-ab4f-411f-a23b-d2396c977005", + "Name": { + "en": "Visible" + }, + "Code": "2.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f535689-944a-4e9c-8f64-ec6395b7c8d7", + "Name": { + "en": "Slip, slide" + }, + "Code": "7.2.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f6dc9af-0c50-44d5-99f0-4aa67c668186", + "Name": { + "en": "Working with oil and gas" + }, + "Code": "6.6.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fae9066-eb66-444e-bd41-818b9f7b3bae", + "Name": { + "en": "Put" + }, + "Code": "7.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fbe3ea6-3ad3-430f-ab67-2d9c9f852c61", + "Name": { + "en": "Now" + }, + "Code": "8.4.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fd34185-19a1-44bd-8555-bc76e2847bee", + "Name": { + "en": "Instinct" + }, + "Code": "3.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c", + "Name": { + "en": "School" + }, + "Code": "3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "400d318e-a9ef-40b4-92be-0d7e96e51d8a", + "Name": { + "en": "Source (of movement)" + }, + "Code": "9.5.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "401bbbe4-a33a-4a1e-b26a-18a756e002c4", + "Name": { + "en": "Cowardice" + }, + "Code": "4.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40248a12-1809-4561-b786-e4e274c14d82", + "Name": { + "en": "Primate" + }, + "Code": "1.6.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40516af2-d413-418e-8b68-8443847ee169", + "Name": { + "en": "Parts of clothing" + }, + "Code": "5.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40590157-9412-4558-b0f7-311867b649cc", + "Name": { + "en": "Turn something" + }, + "Code": "7.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4068488f-59e9-47d1-8884-a1d6dcc10c36", + "Name": { + "en": "Load, pile" + }, + "Code": "7.5.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4093bfe8-54b3-4ffc-bfe3-3999279840b5", + "Name": { + "en": "Show, explain" + }, + "Code": "3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5", + "Name": { + "en": "Food" + }, + "Code": "5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40ff5cee-31d8-4c89-a212-877347212a0e", + "Name": { + "en": "Satiated, full" + }, + "Code": "5.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "410a3d81-290f-416b-8012-3aa16eaa9e55", + "Name": { + "en": "Women\u0027s clothing" + }, + "Code": "5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4153416a-784d-4f7c-a664-2640f7979a14", + "Name": { + "en": "River" + }, + "Code": "1.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "41837400-bdc5-4cbc-a1dc-d793f713f883", + "Name": { + "en": "Hesitation fillers" + }, + "Code": "9.6.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "41b80f5d-0298-4d3c-b1a3-6d5e6c3985b1", + "Name": { + "en": "Lust" + }, + "Code": "3.3.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "41cac849-613d-4be4-a3bc-389412b7f653", + "Name": { + "en": "Repair" + }, + "Code": "7.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "42133f78-9860-4bb7-8083-5559083f0714", + "Name": { + "en": "Gambling" + }, + "Code": "4.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4223d3ba-5560-4c30-b013-4e31fee36329", + "Name": { + "en": "Names of buildings" + }, + "Code": "9.7.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "424ced39-d801-419a-86fe-265942a9b74b", + "Name": { + "en": "Take care of something" + }, + "Code": "6.1.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4260e110-7b04-4d40-9391-486a57aa3031", + "Name": { + "en": "Mature in behavior" + }, + "Code": "4.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4275df2e-d4f6-461a-9279-39e0712dc082", + "Name": { + "en": "Appearance" + }, + "Code": "2.3.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "42b21a6e-e2f3-4468-9e92-49ee4de6909a", + "Name": { + "en": "Together" + }, + "Code": "9.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "42be1634-72ca-4a20-80a1-ba726e5cd1d2", + "Name": { + "en": "Cut" + }, + "Code": "7.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "430ce279-1464-4d55-8483-5525a3c3094d", + "Name": { + "en": "Serve" + }, + "Code": "4.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "43282de6-51e1-4e52-99fc-d54e2043fb6c", + "Name": { + "en": "Money" + }, + "Code": "6.8.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "434ec34f-e7ca-44f8-9252-dff5b9b2b62f", + "Name": { + "en": "Better" + }, + "Code": "8.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b", + "Name": { + "en": "Ashamed" + }, + "Code": "3.4.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4405e74c-f64c-4609-8f7b-99ba563d659a", + "Name": { + "en": "Adopt" + }, + "Code": "4.1.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "440608df-3c98-4dc8-9fd3-fad08afe7aef", + "Name": { + "en": "Limit" + }, + "Code": "7.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4415aff1-4d74-463e-a25d-9832c7477329", + "Name": { + "en": "Instrument" + }, + "Code": "9.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "444407f2-0c75-4bb9-a84c-cbd52d0fa9c9", + "Name": { + "en": "Stage of life" + }, + "Code": "2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4445cccd-e9b9-4f25-9e8c-2ef58408297d", + "Name": { + "en": "Wear clothing" + }, + "Code": "5.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "445f3084-f250-40fa-87ba-ebd233f9018f", + "Name": { + "en": "Anteater, aardvark" + }, + "Code": "1.6.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "447f258b-2160-42c7-9431-ffeeb86edcb8", + "Name": { + "en": "Fertile, infertile" + }, + "Code": "2.6.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "44bf22fd-3725-4c49-bd3c-434402c33493", + "Name": { + "en": "Furniture" + }, + "Code": "5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "44dc42e4-e9c7-4aa9-ac9b-1008385244b1", + "Name": { + "en": "Father, mother" + }, + "Code": "4.1.9.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4526b41d-6f3c-494f-93a2-ea3e9705269d", + "Name": { + "en": "Delay" + }, + "Code": "8.4.5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "457231c8-4eb6-4460-aa45-3e9f2c4e8975", + "Name": { + "en": "Once" + }, + "Code": "8.4.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45993c48-3893-4d9e-96a3-b6b1ad160538", + "Name": { + "en": "Poor" + }, + "Code": "6.8.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45b7dcce-21d5-4738-a64d-e8b0be8a1824", + "Name": { + "en": "Symmetrical" + }, + "Code": "8.3.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45b9bf61-3138-4206-9478-b4d3f082358b", + "Name": { + "en": "Speak in unison" + }, + "Code": "3.5.1.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45d867c7-8496-4c92-bb41-b7db5db47717", + "Name": { + "en": "Fat person" + }, + "Code": "8.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45e90d41-a462-4671-968f-92166378b3f0", + "Name": { + "en": "Remind" + }, + "Code": "3.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45f7b003-ade3-4efc-8dee-259dcbf80a4a", + "Name": { + "en": "Request" + }, + "Code": "3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "462f5606-5bd8-4543-aa35-26b0cffd7163", + "Name": { + "en": "Food from roots" + }, + "Code": "5.2.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4651aef1-e18f-481e-9c3e-d9dfff4a6b51", + "Name": { + "en": "Alone" + }, + "Code": "4.1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "467dd680-ac64-4dc4-8a17-1cfe297d3392", + "Name": { + "en": "Simple, complicated" + }, + "Code": "7.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "469b0a30-3c26-4cfd-b948-7bb952eeff41", + "Name": { + "en": "Know someone" + }, + "Code": "4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46ad1505-9049-41d8-831b-768f46f12500", + "Name": { + "en": "Clean, dirty" + }, + "Code": "5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46b13a77-fe12-49fb-afbe-826480ec97f4", + "Name": { + "en": "Pleased with" + }, + "Code": "3.4.1.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46dbda42-fe21-4e52-8eeb-4263ded7031b", + "Name": { + "en": "Months of the year" + }, + "Code": "8.4.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "474aa982-8350-47e2-a983-e1e2bce9d928", + "Name": { + "en": "Feel good" + }, + "Code": "3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "47ed6c39-b728-4ae7-be7c-c45c714c3153", + "Name": { + "en": "Thresh" + }, + "Code": "6.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "47f170eb-5f1d-49a5-85bb-240047f392c0", + "Name": { + "en": "Soft, flimsy" + }, + "Code": "8.3.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "47feee3e-80e1-469a-911c-0c550b37a2f8", + "Name": { + "en": "Necessary " + }, + "Code": "9.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "48380d5d-bd54-48a9-92bc-7c8a93de0567", + "Name": { + "en": "Lend" + }, + "Code": "6.8.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "48ac206f-2706-4500-bb63-2e499b790259", + "Name": { + "en": "Intelligent" + }, + "Code": "3.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "48d3de9f-3619-4785-b50b-6921ba7eecd6", + "Name": { + "en": "Result" + }, + "Code": "9.6.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49471924-2458-4cb0-9430-f38cfc2fb63b", + "Name": { + "en": "Working with bone" + }, + "Code": "6.6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49aa89f2-2022-4213-845e-dbbb4b53476c", + "Name": { + "en": "Last" + }, + "Code": "8.4.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49bc0d75-4f07-44b4-a50f-bc9a557dc15e", + "Name": { + "en": "Related by marriage" + }, + "Code": "4.1.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49c525b3-2163-48e1-b3bd-57e5cdc486a4", + "Name": { + "en": "Flesh" + }, + "Code": "2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49c878dd-277f-4bc9-b8ad-9ba192709108", + "Name": { + "en": "Cat" + }, + "Code": "6.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49cd2c20-098a-46d9-9e47-6bf109308793", + "Name": { + "en": "Emphasize" + }, + "Code": "3.5.1.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49ee84ff-eb2b-4ba3-b193-3018d34599c2", + "Name": { + "en": "Borrow" + }, + "Code": "6.8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49f45f97-95f8-4a53-8952-f90147af2ba9", + "Name": { + "en": "Except" + }, + "Code": "9.6.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a388000-d5c6-4127-91cd-f4e0c9fac6f1", + "Name": { + "en": "Information" + }, + "Code": "3.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a44ac87-5ad5-44de-8170-9fd88b056010", + "Name": { + "en": "Building equipment and maintenance" + }, + "Code": "6.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a5c8fdb-c8a0-49d2-a0d6-342428682d65", + "Name": { + "en": "Birth defect" + }, + "Code": "2.5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9", + "Name": { + "en": "Honor" + }, + "Code": "4.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4acc430b-9c98-4a49-a8b4-15edc0f6d19b", + "Name": { + "en": "Tidy" + }, + "Code": "4.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4aedd6d3-8f4b-4986-8d51-b0ace0137bf0", + "Name": { + "en": "Happy for" + }, + "Code": "3.4.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4b3a9b5a-df7d-4ec2-9576-2c07fe396021", + "Name": { + "en": "Dance" + }, + "Code": "4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4b669bed-ba46-41cc-bcba-c2ef8e129c85", + "Name": { + "en": "Request forgiveness" + }, + "Code": "4.8.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4bedae6a-1df4-40e5-8a2f-ab0a1f41997e", + "Name": { + "en": "Plant product" + }, + "Code": "6.2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4bf411b7-2b5b-4673-b116-0e6c31fbd08a", + "Name": { + "en": "Light" + }, + "Code": "8.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4bfe53d2-fb85-4397-98a8-97d59b907064", + "Name": { + "en": "Boat" + }, + "Code": "7.2.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c31ac6a-3197-4762-9937-2fdea90784b7", + "Name": { + "en": "Sudden" + }, + "Code": "8.4.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c823e93-3966-461f-bd64-3a9303966338", + "Name": { + "en": "Problem" + }, + "Code": "4.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c862416-f7c4-4a3c-82ac-fe81e1efb879", + "Name": { + "en": "Internal organs" + }, + "Code": "2.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4cb8b433-4efa-4698-8ebd-0f00f8fc3f66", + "Name": { + "en": "Devout" + }, + "Code": "4.9.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4ce22ed0-6fe3-47ae-83e4-e7c7310cb1d4", + "Name": { + "en": "Hinduism" + }, + "Code": "4.9.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d19f09f-035b-477e-862c-a4157acdfe81", + "Name": { + "en": "Water quality" + }, + "Code": "1.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d1ac5e6-dfe3-4643-b6e5-21649a01cce9", + "Name": { + "en": "Railroad" + }, + "Code": "7.2.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d2a247e-4925-4750-8c39-e2d78665d33c", + "Name": { + "en": "Inner part" + }, + "Code": "8.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d2a67fb-91c8-4436-87f4-f4eab6cb0828", + "Name": { + "en": "Skin disease" + }, + "Code": "2.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d3412e3-85a0-4f81-9dad-efd6101b4945", + "Name": { + "en": "Bag" + }, + "Code": "6.7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d61f524-7213-4c2c-8c14-f8eff3aed813", + "Name": { + "en": "Tight" + }, + "Code": "8.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e0992cd-c04c-4b55-beab-6b0a3c98a994", + "Name": { + "en": "Hunting birds" + }, + "Code": "6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e23b037-0547-4650-89c3-2b259b637fb6", + "Name": { + "en": "Month" + }, + "Code": "8.4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e2adaed-145e-45fc-8448-81c0bd47c414", + "Name": { + "en": "Never" + }, + "Code": "8.4.6.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e791773-94c8-4667-93f8-92dc0100ddfe", + "Name": { + "en": "Holiday" + }, + "Code": "4.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e7a6dfe-3654-4ca1-874d-02424581b774", + "Name": { + "en": "Deep, shallow" + }, + "Code": "8.2.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4eb41e40-4115-435a-934a-5d91022a29dc", + "Name": { + "en": "Owe" + }, + "Code": "6.8.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f19ab95-428a-4a0b-a069-ca8be6b72b08", + "Name": { + "en": "Visit" + }, + "Code": "4.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f22ebdb-01db-432a-9d7a-41cd44010265", + "Name": { + "en": "Accumulate wealth" + }, + "Code": "6.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f485a60-e3ba-42e6-9d59-185305c5d1f2", + "Name": { + "en": "Direction" + }, + "Code": "8.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f516445-e044-4d9c-ac9b-a3178f72b405", + "Name": { + "en": "Movie" + }, + "Code": "3.5.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f587b2b-60a6-4ea0-9fe5-89e5a502d380", + "Name": { + "en": "Means" + }, + "Code": "9.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f80a620-30db-4529-94e8-f0cd9d0b0e96", + "Name": { + "en": "Castrate animal" + }, + "Code": "6.3.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4fb79b12-3bd1-46ed-8698-7d27052a5dc7", + "Name": { + "en": "Plain, plateau" + }, + "Code": "1.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4fdf3cf1-0808-4f11-acdd-9db71550baab", + "Name": { + "en": "Without purpose " + }, + "Code": "9.6.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50903b35-5606-4727-8474-01c06bf588da", + "Name": { + "en": "Wall" + }, + "Code": "6.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50ab3705-a81e-4fcc-b3ae-95c075966f69", + "Name": { + "en": "Movement of water" + }, + "Code": "1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50ac28ab-7385-408f-b5eb-3e27b191fcf4", + "Name": { + "en": "Publish" + }, + "Code": "3.5.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50c1a392-2928-407a-8306-3c70141e375e", + "Name": { + "en": "Future" + }, + "Code": "8.4.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50db27b5-89eb-4ffb-af82-566f51c8ec0b", + "Name": { + "en": "Life" + }, + "Code": "2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50dfffe4-dfe8-445f-bdde-4cc8d83ebd6b", + "Name": { + "en": "Cooperate with" + }, + "Code": "4.3.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50e28fa7-f6c3-45bc-871d-12ef771d532c", + "Name": { + "en": "Care for" + }, + "Code": "4.3.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc", + "Name": { + "en": "Enjoy doing something" + }, + "Code": "3.4.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "513771eb-8467-468a-8bc8-e52567e66df9", + "Name": { + "en": "Working relationship" + }, + "Code": "4.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "514974a2-c2fd-4b25-a24d-2ff52fa3d798", + "Name": { + "en": "Extinguish a fire" + }, + "Code": "5.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "515f9b40-0637-4ce3-b343-2d99de3f723b", + "Name": { + "en": "Plumber" + }, + "Code": "6.6.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "51c2e2e4-438c-414b-bd15-773b664dd289", + "Name": { + "en": "Mercy" + }, + "Code": "4.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "51d4e258-430c-4032-94e3-ee53095e7045", + "Name": { + "en": "Answer in a test" + }, + "Code": "3.6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "51d9d243-35cc-4a1e-bcdd-f2749975f5fd", + "Name": { + "en": "Real" + }, + "Code": "3.5.1.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5238fe9c-4bbe-444c-b5f6-18f946b3d6aa", + "Name": { + "en": "Fever" + }, + "Code": "2.5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5261497b-6beb-4db1-9de2-10b5f6f8ec69", + "Name": { + "en": "Beginning" + }, + "Code": "8.4.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "529140d1-6e8e-44fe-99f0-95289e933607", + "Name": { + "en": "Related by birth" + }, + "Code": "4.1.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "52b04e15-7062-4fb2-9eaa-4fe8726f302a", + "Name": { + "en": "Greet" + }, + "Code": "3.5.1.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "52f9a8f0-d97d-4aa1-8c2c-d907d7cb83fc", + "Name": { + "en": "In groups" + }, + "Code": "9.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8", + "Name": { + "en": "Revenge" + }, + "Code": "4.8.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "531af868-b5fb-41c2-ba50-764458f9102f", + "Name": { + "en": "Bush, shrub" + }, + "Code": "1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "532245e7-8f46-4394-9045-240475ee62e8", + "Name": { + "en": "Indefinite time" + }, + "Code": "8.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "536a2d3e-2303-43bc-bf53-379131eb5730", + "Name": { + "en": "Colors of the spectrum" + }, + "Code": "8.3.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "538a4c20-01d7-40b9-b462-ae279ff3dc27", + "Name": { + "en": "Gray" + }, + "Code": "8.3.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "53ba3b61-4f4e-4749-8a7f-0d2b327a113d", + "Name": { + "en": "Plan" + }, + "Code": "6.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "53d34f16-2f94-4afa-9530-7ac75e05b8d4", + "Name": { + "en": "Flatter" + }, + "Code": "3.5.1.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "541dfa10-bf97-4713-a534-9cbcc7f66bc9", + "Name": { + "en": "Opinion" + }, + "Code": "3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5422d4ba-8af4-4767-912e-43b60ef28eab", + "Name": { + "en": "Very" + }, + "Code": "9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5446b5cf-f05a-4bb2-89eb-ce63e27040f3", + "Name": { + "en": "Music" + }, + "Code": "4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5450043d-907b-4884-a9e5-35cfd5935947", + "Name": { + "en": "Naked" + }, + "Code": "5.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "547f1151-5816-4d89-b0bc-ece2a86c92eb", + "Name": { + "en": "Move to a new house" + }, + "Code": "7.2.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5489f4ae-34a7-4f8b-9086-4247b0d8b3de", + "Name": { + "en": "Ambush" + }, + "Code": "4.8.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "54b6dff4-a21d-490d-8279-69f36a179c93", + "Name": { + "en": "Meeting, assembly" + }, + "Code": "4.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "54f59b23-a2e8-4bfc-9da2-7dd7c37d2a47", + "Name": { + "en": "Relational tenses" + }, + "Code": "9.4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "55201761-fe2e-40d5-a2a7-8079e00a2c32", + "Name": { + "en": "Fight" + }, + "Code": "4.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "55a7b809-4196-4c5a-a6d6-09b586ce71e7", + "Name": { + "en": "Ostracize" + }, + "Code": "4.7.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "55b93f1c-6ce0-4d13-ae1e-f06360e4689c", + "Name": { + "en": "With (a patient)" + }, + "Code": "9.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5627904e-59c7-4dd5-aeb5-c6fe0c0a0571", + "Name": { + "en": "Frugal" + }, + "Code": "6.8.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "562f55de-efc7-41a7-b450-6f9dea2813e2", + "Name": { + "en": "Government organization" + }, + "Code": "4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5658ae3d-ea15-44db-bae4-47df792da12e", + "Name": { + "en": "Dishonest" + }, + "Code": "4.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "566be8c1-3e42-4f8b-87eb-e70e8c13c6f8", + "Name": { + "en": "Lean" + }, + "Code": "7.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56984b2b-3417-49b4-a082-1a383551a9e9", + "Name": { + "en": "Labor and birth pains" + }, + "Code": "2.6.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56c9c38c-728a-42fe-b93c-6ca67fdf2a9a", + "Name": { + "en": "Mineral" + }, + "Code": "1.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56d1a950-8798-45fb-bccd-d8b1eb37c071", + "Name": { + "en": "Give, hand to" + }, + "Code": "7.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56ef3f06-7fb9-462e-a7d0-517f3ce1623f", + "Name": { + "en": "Carnivore" + }, + "Code": "1.6.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5718fcc8-1eba-4b8d-9b6b-0c8349f53f80", + "Name": { + "en": "Aim at a target" + }, + "Code": "7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57225f57-ba51-45d7-b6d2-b22052877ea4", + "Name": { + "en": "Social activity" + }, + "Code": "4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57237095-23cf-43ba-aa6c-89cecdd35ff8", + "Name": { + "en": "Orphan" + }, + "Code": "4.1.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5737714d-49e4-4eb4-8e46-03203ee5340b", + "Name": { + "en": "Deserve" + }, + "Code": "4.7.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "573bf23a-3fde-4552-9263-62b7c71cad02", + "Name": { + "en": "Fish with net" + }, + "Code": "6.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "577017b0-ae87-4fa2-a51b-4f430497be75", + "Name": { + "en": "Exercise authority" + }, + "Code": "4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5771f3a1-fda3-4111-9abc-7a0d76c60a79", + "Name": { + "en": "Tribal names" + }, + "Code": "9.7.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "577a9f51-263a-4c80-a439-84ce45b9c7cc", + "Name": { + "en": "Markers of direct address " + }, + "Code": "9.6.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57c9a370-0f46-4475-98fd-c7a8b3f5074c", + "Name": { + "en": "Spoil" + }, + "Code": "4.3.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57e367f4-7029-4916-a700-791db32b4745", + "Name": { + "en": "Spend" + }, + "Code": "6.8.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57ed66ee-f82b-4e80-955f-7492d85372b0", + "Name": { + "en": "Represent" + }, + "Code": "4.6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57f07b5f-75bf-4565-b969-ce0adc0b50d4", + "Name": { + "en": "Multiply numbers" + }, + "Code": "8.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5832eb32-8a90-42a7-b2bc-a9bb575b1b7c", + "Name": { + "en": "Move away" + }, + "Code": "7.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "583c98ff-1cc8-4b05-9086-974d13a78894", + "Name": { + "en": "Disorganized" + }, + "Code": "7.5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "58be5db0-c648-4522-bad0-02cd9cc15f37", + "Name": { + "en": "Foundation" + }, + "Code": "6.5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "58de3766-8729-48e2-97fe-937a441eb722", + "Name": { + "en": "Fertilize a field" + }, + "Code": "6.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "58eeb55b-c57d-4f59-a7d6-9bf663fbf831", + "Name": { + "en": "Succeed" + }, + "Code": "6.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "590570c5-3267-4966-b0db-2af7a5105c83", + "Name": { + "en": "Until" + }, + "Code": "8.4.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "591fd489-36e6-4ffd-a976-58876d851829", + "Name": { + "en": "Mucus" + }, + "Code": "2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "593073d6-9893-4670-98fb-c485406a950b", + "Name": { + "en": "Intercede" + }, + "Code": "3.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "596ab399-e442-4afe-8796-633a49de65a7", + "Name": { + "en": "Justice" + }, + "Code": "4.7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "59a95939-44d7-4396-9ef7-3a80c17e9fb1", + "Name": { + "en": "Obscenity" + }, + "Code": "3.5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "59d19623-0f3b-484d-96eb-a9093b020c8d", + "Name": { + "en": "Take oath" + }, + "Code": "4.7.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "59d936f3-dffb-4585-80e0-eaf6cd6a8026", + "Name": { + "en": "Can" + }, + "Code": "9.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a021f98-2efb-4baf-9384-a553dc3df86c", + "Name": { + "en": "Return" + }, + "Code": "7.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a2355b4-c295-4b94-86da-6ac18198bae4", + "Name": { + "en": "Credit" + }, + "Code": "6.8.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a39edae-1ace-4889-b636-1dfd2a1bcc3c", + "Name": { + "en": "Take something out of something" + }, + "Code": "7.3.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a4a8ae5-a209-4946-8fa1-3c3bd5083e0d", + "Name": { + "en": "Religious ceremony" + }, + "Code": "4.9.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a585789-2ef6-42c5-9c5a-34ff716059b7", + "Name": { + "en": "Working with glass" + }, + "Code": "6.6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5abd1270-261a-4980-93e5-e10eacea99ad", + "Name": { + "en": "Jump" + }, + "Code": "7.2.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b12ea7b-790f-4f3e-8d07-893fc267773e", + "Name": { + "en": "Cloud" + }, + "Code": "1.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b3c7b4d-d5bb-488e-8f3f-fe8206fb0e55", + "Name": { + "en": "Careful" + }, + "Code": "6.1.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b41c1ed-95bb-4cca-8cff-87361acb5683", + "Name": { + "en": "Traditional clothing" + }, + "Code": "5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac", + "Name": { + "en": "Attention" + }, + "Code": "3.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b7666bd-c6c1-45e7-aa2e-1799fcb16d97", + "Name": { + "en": "Name" + }, + "Code": "9.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b925ee1-82ef-4692-bba2-9ce3cb41c7bb", + "Name": { + "en": "Uncover" + }, + "Code": "7.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bb29704-fe0f-4594-9622-ce0aa42b93c8", + "Name": { + "en": "Agriculture" + }, + "Code": "6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bb495a5-ab5b-4409-8cd1-e48b56401fad", + "Name": { + "en": "A short time" + }, + "Code": "8.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bcd08a6-cb46-41bb-a732-0d690b5ea596", + "Name": { + "en": "Types of food" + }, + "Code": "5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bdb3c06-fbee-4f5f-991a-e2128f65bb86", + "Name": { + "en": "Cosmetics" + }, + "Code": "5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c091d8d-5bc4-40c3-8a30-2a08fb0794b8", + "Name": { + "en": "Vision, hallucination" + }, + "Code": "2.5.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c31bdf6-901f-4f14-ab64-7a99524710fc", + "Name": { + "en": "Indifferent" + }, + "Code": "3.4.1.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c348090-12f4-4c83-8331-e10971bbc8d3", + "Name": { + "en": "Meat" + }, + "Code": "5.2.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c35c2f8-d17c-42a3-aa12-a4c29b6603e8", + "Name": { + "en": "Bend" + }, + "Code": "8.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c468a85-e45f-4ea0-a3ba-68feda7e85a1", + "Name": { + "en": "Help to give birth" + }, + "Code": "2.6.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c770098-2c91-4a9c-bfa0-a7ffaa871a7f", + "Name": { + "en": "Work for someone" + }, + "Code": "6.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5cc64831-c14a-4dbe-beba-214e725ad041", + "Name": { + "en": "Manner of movement" + }, + "Code": "7.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5cd2f365-2d84-451e-9f2d-bc2561eff909", + "Name": { + "en": "Fastening tool" + }, + "Code": "6.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d21b3f1-85d5-4999-af64-c4d0101050c0", + "Name": { + "en": "Humble" + }, + "Code": "4.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d72af95-facd-4be2-80e9-37528f0f34b5", + "Name": { + "en": "Parts of small animals" + }, + "Code": "1.6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d92b4a7-baf7-495e-bb43-4f733cc55935", + "Name": { + "en": "Experienced" + }, + "Code": "6.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d9ef67a-e4ba-47ca-8c8c-ea0f512a66cd", + "Name": { + "en": "Entrust to the care of" + }, + "Code": "4.3.4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5db1b502-7c36-44fb-a7b4-50744e9ec286", + "Name": { + "en": "Actions of the hand" + }, + "Code": "7.3.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5dcf3ce8-aa00-4478-b00e-691549fa29e8", + "Name": { + "en": "Selfish" + }, + "Code": "4.3.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5df53b87-7f59-4f5c-991e-5ae007b68fa9", + "Name": { + "en": "Names of animals" + }, + "Code": "9.7.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5e3bb9e5-fd70-4c5a-95a0-938bc4876a47", + "Name": { + "en": "Expect" + }, + "Code": "3.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5e7a5899-df78-4aa7-bec9-b354acfe087f", + "Name": { + "en": "Government functions" + }, + "Code": "4.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5e9f361d-17dc-4ada-a312-8da269d22a64", + "Name": { + "en": "Mammal" + }, + "Code": "1.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5ea9301a-9906-4e81-97cf-48ee95a54c63", + "Name": { + "en": "Influence" + }, + "Code": "3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5ee64d88-c462-4505-b14a-5d36e357a024", + "Name": { + "en": "Top" + }, + "Code": "8.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5f3e44b8-e94c-49b4-9e2d-1acd93dddf75", + "Name": { + "en": "Government official" + }, + "Code": "4.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5f63805f-1c8e-440a-a13c-222c5d81eb9c", + "Name": { + "en": "Ambitious" + }, + "Code": "6.1.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5f791daf-98a2-4787-93cc-8813aea93c4d", + "Name": { + "en": "Tangle" + }, + "Code": "7.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5fcadae4-b4a8-4600-8d30-c4f67986d619", + "Name": { + "en": "Amputate" + }, + "Code": "2.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5fdf3946-7e47-4fd2-906f-4da7ce5fa490", + "Name": { + "en": "Answer" + }, + "Code": "3.5.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60364974-a005-4567-82e9-7aaeff894ab0", + "Name": { + "en": "Water" + }, + "Code": "1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6045c6eb-efea-4586-95f8-840d32578d66", + "Name": { + "en": "Arrange" + }, + "Code": "7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60595d09-4a15-4499-b6e1-d36a704bcbe9", + "Name": { + "en": "Flow" + }, + "Code": "1.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60a5fa58-45b1-41ae-9430-5200e8bfbcb8", + "Name": { + "en": "Turn" + }, + "Code": "7.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60b8dcfd-49a0-4ab4-82a7-2c5058b325ae", + "Name": { + "en": "Remain, remainder" + }, + "Code": "8.1.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e", + "Name": { + "en": "Feel bad" + }, + "Code": "3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60e63d4a-702e-4238-a42b-d97f6be09c29", + "Name": { + "en": "Hinder" + }, + "Code": "4.3.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6105a207-4311-4920-8c19-63259424bfaf", + "Name": { + "en": "Salvation" + }, + "Code": "4.9.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "611aa361-4ddd-450b-a152-94984a274575", + "Name": { + "en": "Abandon" + }, + "Code": "4.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "612424b8-997e-4661-a452-772e14a3c4a0", + "Name": { + "en": "Reject" + }, + "Code": "3.3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6137239a-b469-46be-b7cb-b9ac22fcc195", + "Name": { + "en": "Teach" + }, + "Code": "3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6142c173-161a-47d5-bdec-c827518fd67c", + "Name": { + "en": "Sad" + }, + "Code": "3.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "615674ac-8158-4089-ae70-b55472fd279b", + "Name": { + "en": "Age" + }, + "Code": "8.4.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6187e620-89bd-4b9d-9896-0c0c788e7740", + "Name": { + "en": "Football, soccer" + }, + "Code": "4.2.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "61a28bdc-c05c-49d8-b47e-d54a9082156c", + "Name": { + "en": "Semantic constituents related to verbs" + }, + "Code": "9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "61f40376-729d-4d99-894f-06c5689a06ac", + "Name": { + "en": "Flat" + }, + "Code": "8.3.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "61f52196-a8b2-496d-96ea-8c15dc7d377a", + "Name": { + "en": "Miracle, supernatural power" + }, + "Code": "4.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62030451-c0f2-4e80-8085-05c6400fc914", + "Name": { + "en": "Plow a field" + }, + "Code": "6.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "627280f0-4f98-4b31-ad23-eabe37b002ad", + "Name": { + "en": "Thin thing" + }, + "Code": "8.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62964baf-fea6-4d8e-8509-d312bff8761a", + "Name": { + "en": "Carrying tool" + }, + "Code": "6.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62b40326-f74c-4d80-9b1c-4dae0fc07026", + "Name": { + "en": "Track an animal" + }, + "Code": "6.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62b4ae33-f3c2-447a-9ef7-7e41805b6a02", + "Name": { + "en": "Social behavior" + }, + "Code": "4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62ed8254-e53a-4781-935e-79869619e40a", + "Name": { + "en": "Dedicate to religious use" + }, + "Code": "4.9.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62efa729-0920-4933-93f3-b6a48519a5c7", + "Name": { + "en": "Atone, restitution" + }, + "Code": "4.7.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6330871b-6008-490e-bfff-e28e17ebce7e", + "Name": { + "en": "Not moving" + }, + "Code": "7.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "63403699-07c1-43f3-a47c-069d6e4316e5", + "Name": { + "en": "Universe, creation" + }, + "Code": "1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6342c8bf-55b5-400f-af7e-63055fe6813b", + "Name": { + "en": "Tool" + }, + "Code": "6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "638679c7-1c7c-41da-ab60-0ac7e98fcd72", + "Name": { + "en": "Markers of transition " + }, + "Code": "9.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba", + "Name": { + "en": "Dishonest financial practices" + }, + "Code": "6.8.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "63c69d11-1101-4870-aeb8-43ee364381b0", + "Name": { + "en": "Lightning, thunder" + }, + "Code": "1.1.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "642ff468-e6c8-4fd0-8f52-262efa8f7774", + "Name": { + "en": "Hate, ill will" + }, + "Code": "4.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6430b89c-7077-418a-a558-51f0e3f2c1a6", + "Name": { + "en": "Carry" + }, + "Code": "7.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "643cc712-b3b3-42d0-971e-7a4c8a6cbf1e", + "Name": { + "en": "Walk" + }, + "Code": "7.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64493789-1c2c-4b24-a7e6-f00ff9be923e", + "Name": { + "en": "Use" + }, + "Code": "6.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "646dab64-5c2f-4f45-8e28-4d13437639d4", + "Name": { + "en": "Friend" + }, + "Code": "4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "647603c2-6f32-48f3-91fa-1f7f0e44b539", + "Name": { + "en": "Pour" + }, + "Code": "1.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64e3d6b1-1d61-454c-97ab-e1d7cb0a8917", + "Name": { + "en": "Nervous" + }, + "Code": "3.4.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64e41545-3a0a-4524-a8d4-8e5e0f0e2391", + "Name": { + "en": "Light source" + }, + "Code": "8.3.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64e6c0db-6dd6-4b80-bbe9-c96bb161674b", + "Name": { + "en": "Fraction" + }, + "Code": "8.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64f39297-426b-45a8-b5d2-097cf71d688c", + "Name": { + "en": "Adjectives" + }, + "Code": "9.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64fa0ba7-73cb-40e9-a8d2-3e61fff146c9", + "Name": { + "en": "Dye hair" + }, + "Code": "5.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65926a7a-bc46-4a40-a2c9-bf84696a3903", + "Name": { + "en": "Gentle" + }, + "Code": "4.4.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "659ccabf-f978-4852-a1a6-c225f1d76b97", + "Name": { + "en": "Special days" + }, + "Code": "8.4.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65a928b8-8587-48be-8f23-41f85549c547", + "Name": { + "en": "Memorize" + }, + "Code": "3.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65bb0844-9a71-4eec-9b86-bf4b4b508a28", + "Name": { + "en": "Respond to trouble" + }, + "Code": "4.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65c68427-2e20-42b2-8f49-623055ea9246", + "Name": { + "en": "Pounding tool" + }, + "Code": "6.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65ef6aae-019f-4980-b6d9-5b7ad2c8e68f", + "Name": { + "en": "Saying, proverb" + }, + "Code": "3.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6681f03b-06c4-4509-9253-e4739c9c1614", + "Name": { + "en": "Beg" + }, + "Code": "6.8.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66abfbe5-e011-48de-8773-905f1b1ce215", + "Name": { + "en": "Working with clay" + }, + "Code": "6.6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66d8b546-92f5-4e94-b992-08be81c3d30c", + "Name": { + "en": "Physical impact" + }, + "Code": "7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66dedb31-dd2a-4e94-825e-331590ac59a9", + "Name": { + "en": "Derivation " + }, + "Code": "9.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66e2806d-3e16-4fb2-a158-7f3b4dd5d9af", + "Name": { + "en": "Origin (of a person)" + }, + "Code": "9.5.1.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66fc9a08-3661-4dd5-94b0-1eea41fb4554", + "Name": { + "en": "Prevent" + }, + "Code": "3.3.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6709cc78-cb0b-493e-b3e6-8590a2f20c95", + "Name": { + "en": "Encounter" + }, + "Code": "4.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6712385a-6740-4f28-8bbe-8615ea17116b", + "Name": { + "en": "Regular" + }, + "Code": "8.4.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67247ab3-7b3a-4035-a0d0-a05c8e615c71", + "Name": { + "en": "Made by hand" + }, + "Code": "6.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6736dafe-2916-40f6-b6b7-b6300100933b", + "Name": { + "en": "Dream" + }, + "Code": "5.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6745c89d-1fcd-44b8-be4b-9fd9d62f64e7", + "Name": { + "en": "Entertainment, recreation" + }, + "Code": "4.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "675d67bb-da64-456e-8825-bdf074bb82be", + "Name": { + "en": "Begin a relationship" + }, + "Code": "4.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "675eccbb-9858-4cd4-8405-5f0d0faa792c", + "Name": { + "en": "Negotiate" + }, + "Code": "4.8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "678a3319-a12b-4f92-857d-167def8ef583", + "Name": { + "en": "Move together" + }, + "Code": "7.2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67931f1c-9a0c-4d18-9762-e553c132256c", + "Name": { + "en": "Financial transaction" + }, + "Code": "6.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67d10a00-fda8-4a3a-becd-f3ae3b00fcca", + "Name": { + "en": "Shock" + }, + "Code": "3.4.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67d282f8-151d-429b-8183-6a7d2f5ac98d", + "Name": { + "en": "Introduce" + }, + "Code": "3.5.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67d74de1-33f9-4d39-8fa5-5dd27e7cd1d1", + "Name": { + "en": "Suspect" + }, + "Code": "4.7.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67e57493-d286-4271-b877-f63f962dddf1", + "Name": { + "en": "Big area" + }, + "Code": "8.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6804db44-b71b-4452-98b1-b726bc7cf022", + "Name": { + "en": "Loud" + }, + "Code": "2.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "683f570a-0bfe-4a97-b55d-4319b328508b", + "Name": { + "en": "Working with water" + }, + "Code": "6.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "685d474d-3b84-4339-98c6-2aac28b9870c", + "Name": { + "en": "Clear a field" + }, + "Code": "6.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6866ee4c-78cd-47d1-ba4a-8461fdcc5e2a", + "Name": { + "en": "Logical" + }, + "Code": "3.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "68ed3e51-ddc4-4cec-89ff-605259ac9fcf", + "Name": { + "en": "Nose" + }, + "Code": "2.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6903b844-79be-4e9d-a3c8-1ca2a385bf4f", + "Name": { + "en": "With, do with someone" + }, + "Code": "9.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "691bdba3-c216-4b42-877c-674bbdb517a7", + "Name": { + "en": "Trust" + }, + "Code": "3.2.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69455770-fca7-4f41-9e7d-236e8f094ce6", + "Name": { + "en": "Covenant" + }, + "Code": "4.7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69541573-f845-4e77-91f6-1e3551fc6c82", + "Name": { + "en": "Name of a place" + }, + "Code": "9.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69d039e6-f669-4d54-8b67-89b19ff0a19c", + "Name": { + "en": "During" + }, + "Code": "8.4.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69d0a37d-f5b3-48a5-9486-5654d37b030b", + "Name": { + "en": "Mill grain" + }, + "Code": "6.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69d366d2-9735-4a1b-b938-7b212932b568", + "Name": { + "en": "Names of heavenly bodies" + }, + "Code": "9.7.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6a4f5638-388e-4c8e-9bb7-8e742dac43db", + "Name": { + "en": "Bottom" + }, + "Code": "8.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6a6bbf65-b521-4b74-bf35-dede87217d3c", + "Name": { + "en": "Habit" + }, + "Code": "4.3.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6a6f0748-a6e9-4d64-b14e-543bb6ec2ec8", + "Name": { + "en": "Strange" + }, + "Code": "8.3.5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6aa8133a-2578-4617-bd9c-6428e897a4f1", + "Name": { + "en": "Break a contract" + }, + "Code": "4.7.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ab060ca-ecfc-4a46-accb-42b0473998cd", + "Name": { + "en": "Link, connect" + }, + "Code": "7.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b19e828-f597-4d0d-b7a6-f52f3bbd041f", + "Name": { + "en": "Willing" + }, + "Code": "3.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a", + "Name": { + "en": "North, south, east, west" + }, + "Code": "8.5.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b208fda-544c-4cba-b8cc-887b1018837f", + "Name": { + "en": "Photography" + }, + "Code": "6.6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b8366b9-b5e8-42b8-991c-c568d4442a81", + "Name": { + "en": "Care for hair" + }, + "Code": "5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b921117-47e9-4717-b3b3-4e170d26b6d9", + "Name": { + "en": "Personal names" + }, + "Code": "9.7.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bc8e911-36f2-4d45-b237-2bdb6c03cc11", + "Name": { + "en": "Around" + }, + "Code": "8.5.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bd023f6-730e-44c2-ae8f-78df967e2e18", + "Name": { + "en": "Pull" + }, + "Code": "7.3.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bf7569e-dc79-49da-9ce1-e2e03303828a", + "Name": { + "en": "Punish" + }, + "Code": "4.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b", + "Name": { + "en": "Right time" + }, + "Code": "8.4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bfb7813-3a7d-47e2-88e1-d54034c07e5d", + "Name": { + "en": "Advise" + }, + "Code": "3.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c282031-f1ca-492a-b94c-b48e74e6f25d", + "Name": { + "en": "Free from bondage" + }, + "Code": "4.4.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c305af5-cff5-4f7f-bd89-040d4c265355", + "Name": { + "en": "Dense" + }, + "Code": "8.3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c32038c-adf3-4085-bde3-cd2f21a421ba", + "Name": { + "en": "Throw away" + }, + "Code": "7.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6", + "Name": { + "en": "Round" + }, + "Code": "8.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c54f0b0-b056-4090-b3f0-d5ec6710d4ab", + "Name": { + "en": "Low" + }, + "Code": "8.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c6259f0-eca6-4a30-8662-eedbaf293527", + "Name": { + "en": "Change your mind" + }, + "Code": "3.2.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6cbdaf94-8e2c-4b26-936a-d2f86d158250", + "Name": { + "en": "Race" + }, + "Code": "4.1.9.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6dd16e6e-fbdb-4df1-9730-4877651e68f3", + "Name": { + "en": "Efficient" + }, + "Code": "6.1.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6de42a33-35b2-49c6-b2c4-fa9c0c5094f0", + "Name": { + "en": "Drink" + }, + "Code": "5.2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6de4e99b-2b5a-493a-a208-f024d1eabdf3", + "Name": { + "en": "Move back" + }, + "Code": "7.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e04a3e2-3b3a-4d0b-bf71-1596ca0aa211", + "Name": { + "en": "Careless, irresponsible" + }, + "Code": "6.1.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e7d10f8-6da5-4a8a-a06d-952511194105", + "Name": { + "en": "Light in weight" + }, + "Code": "8.2.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ea13b69-b2a8-41f9-b0bc-14316ebc5118", + "Name": { + "en": "Mysterious" + }, + "Code": "3.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ea9bfc6-723c-466f-9efc-0992879ae47d", + "Name": { + "en": "Ritual scar" + }, + "Code": "5.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6eaba0c3-cdfe-435d-8811-7f2ddf6facbd", + "Name": { + "en": "Swell" + }, + "Code": "2.5.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6eafbb5a-26ba-44b5-a0d5-21b9e7750ece", + "Name": { + "en": "Rebuke" + }, + "Code": "4.8.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6eb2ef50-7e6b-41b8-a82e-6eb307c908ca", + "Name": { + "en": "Effective" + }, + "Code": "6.1.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6f01b67c-33a0-4ed3-8205-f868e97a1a3a", + "Name": { + "en": "Travel" + }, + "Code": "7.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6f83b918-dc9f-4053-90a4-a6b9e750db29", + "Name": { + "en": "Controlling water" + }, + "Code": "6.6.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fa33de6-00f4-44d5-b6b3-b3c4a4f671e5", + "Name": { + "en": "Interrogative " + }, + "Code": "9.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fb1d03c-b0fe-49b7-a473-168f12a54a36", + "Name": { + "en": "Late" + }, + "Code": "8.4.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fbe39fb-a4cb-4fcf-830b-8875fd4324e0", + "Name": { + "en": "Compel" + }, + "Code": "3.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fc8ae4d-9fad-462e-9ea0-c613c3c1cb5e", + "Name": { + "en": "Doubt" + }, + "Code": "3.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fceec81-1967-4fe5-81f3-86bcaf3f1c2f", + "Name": { + "en": "Cancel an event" + }, + "Code": "6.1.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fe11b6a-8d01-4a0b-bdeb-e4e6f420340a", + "Name": { + "en": "Personality" + }, + "Code": "3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ffe33fe-b49c-45c8-a50b-cd0065c0c869", + "Name": { + "en": "Point, dot" + }, + "Code": "8.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70164474-a65b-4506-9953-f26afb6b497a", + "Name": { + "en": "Fireplace" + }, + "Code": "5.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "706cb38c-9aca-4e2f-9653-d9562f07331c", + "Name": { + "en": "Pattern, design" + }, + "Code": "8.3.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70953222-5bc5-4fa2-a85a-01827f7bc537", + "Name": { + "en": "Way, route" + }, + "Code": "7.2.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70963c34-dd34-40c2-bb21-e9cea73c7923", + "Name": { + "en": "Drop charges" + }, + "Code": "4.7.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "709d43dd-ce94-4df1-91b1-edb0b12fdaea", + "Name": { + "en": "Rub" + }, + "Code": "7.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70eac6be-66e8-4827-8f2f-d15427efff60", + "Name": { + "en": "Reading and writing" + }, + "Code": "3.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70f80041-af88-4521-9ebd-21d8f0b0d131", + "Name": { + "en": "In front of" + }, + "Code": "8.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "710828bc-5dfb-4685-b1a5-156700ab08f1", + "Name": { + "en": "Read" + }, + "Code": "3.5.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7110adbe-a4ce-47b0-8c2f-6b41edaf2fcb", + "Name": { + "en": "Stop moving" + }, + "Code": "7.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71430132-f2ea-40fe-b3f5-b6775741cc56", + "Name": { + "en": "Working with cloth" + }, + "Code": "6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7158c621-c46e-4173-80c1-188f514a920f", + "Name": { + "en": "Admit" + }, + "Code": "3.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7162885d-1d35-4baf-97d6-7368fff7c723", + "Name": { + "en": "Loose" + }, + "Code": "8.2.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "716b3e9d-9bb9-42a6-ba56-829b1c018b28", + "Name": { + "en": "Manage a house" + }, + "Code": "5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71757ff0-d698-426d-a791-50c4bde6f735", + "Name": { + "en": "Spatial location of an event" + }, + "Code": "9.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7185bd93-5281-46de-80af-767f0ec40ff6", + "Name": { + "en": "Mind" + }, + "Code": "3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71a2cc77-f968-4341-84c1-6c16d007a093", + "Name": { + "en": "Butcher, slaughter" + }, + "Code": "6.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71b19b9e-231c-4196-a7d7-aa56a5079782", + "Name": { + "en": "Include" + }, + "Code": "7.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71cbefc3-e0a5-4b97-9672-fa0cb34c59e4", + "Name": { + "en": "Ceremony" + }, + "Code": "4.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71dbaf5f-2afa-4282-b9b8-8a50d8c8e5e9", + "Name": { + "en": "Veterinary science" + }, + "Code": "6.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71f89512-17f0-484c-aca8-ddd226e3c794", + "Name": { + "en": "Leg" + }, + "Code": "2.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "721e2ee8-7ea5-4d17-94cc-d77d8e92bd27", + "Name": { + "en": "Polite" + }, + "Code": "4.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "721e7782-9add-41fa-a7cf-659d5ca33926", + "Name": { + "en": "Game" + }, + "Code": "4.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "72274e9d-5d3c-4ae7-93ab-db3617cdda1e", + "Name": { + "en": "Sense of touch" + }, + "Code": "2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d", + "Name": { + "en": "Irreligion" + }, + "Code": "4.9.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "726923d4-b25c-46eb-8ab0-427207177ae3", + "Name": { + "en": "Steps in food preparation" + }, + "Code": "5.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "728bbc7c-e5b3-47d8-8532-72239e5c88bb", + "Name": { + "en": "Summarize" + }, + "Code": "3.5.1.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "72d9b7cd-aa06-4f7b-a66b-b992171d2cd4", + "Name": { + "en": "Style of clothing" + }, + "Code": "5.3.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7337b2dd-b574-4a41-affa-2dfad7f6cdbc", + "Name": { + "en": "Cast lots" + }, + "Code": "3.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73499b8b-76fc-4121-8bfa-1bdebe537259", + "Name": { + "en": "Types of animals" + }, + "Code": "1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73726931-ef12-4d39-a76e-7742f4b7c9cd", + "Name": { + "en": "Economics" + }, + "Code": "6.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "738a09a5-59df-40f9-8a4e-176e00d03bbf", + "Name": { + "en": "Weapon, shoot" + }, + "Code": "4.8.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73a59333-134f-4a1d-aba7-e134bdefe059", + "Name": { + "en": "Culture" + }, + "Code": "4.3.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73adcfbe-8a74-4fda-969f-616964226b9b", + "Name": { + "en": "Boundary" + }, + "Code": "6.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73b959ab-0229-4710-af99-dfc9b5370540", + "Name": { + "en": "To a larger degree" + }, + "Code": "9.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73d580ac-dc89-474c-8048-3453ebdda807", + "Name": { + "en": "Distance" + }, + "Code": "8.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73ea23c2-db45-49fa-a72b-0fc6eff4ce30", + "Name": { + "en": "Eventually" + }, + "Code": "8.4.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73f3bd83-c9a5-4613-aeb1-0c5076d4850e", + "Name": { + "en": "Parts of a fish" + }, + "Code": "1.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "741c417a-11e9-460c-9ab3-51b8220df016", + "Name": { + "en": "Wave" + }, + "Code": "1.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "742996cd-b87f-40a8-bdb3-dba74219bd73", + "Name": { + "en": "Hot" + }, + "Code": "8.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "744d1402-05f5-4491-9c15-a5af03595edb", + "Name": { + "en": "Bad, immoral" + }, + "Code": "4.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7459c0d8-4da1-4944-a95e-bc64cde860f5", + "Name": { + "en": "Invite" + }, + "Code": "4.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "749ad6fe-5509-4e45-b236-84ea12de102e", + "Name": { + "en": "Share wealth" + }, + "Code": "6.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "74cd7314-5ef6-4505-a35a-81468b5a3f3a", + "Name": { + "en": "Situation" + }, + "Code": "9.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "751bd45c-abfb-443f-ac55-aad3472c20de", + "Name": { + "en": "Unintelligible" + }, + "Code": "3.5.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "751f726b-b7cd-470e-a9fd-f2f1b460dd0d", + "Name": { + "en": "Derivational affixes" + }, + "Code": "9.2.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "75202262-cdba-4c43-9343-764c84138797", + "Name": { + "en": "Uncle, aunt" + }, + "Code": "4.1.9.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7524887a-5cf0-4459-96d1-fd8262bef7d4", + "Name": { + "en": "Growing roots" + }, + "Code": "6.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "754ac437-2841-48c3-bbb0-7d6dff52605e", + "Name": { + "en": "Event propositions" + }, + "Code": "9.1.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7556a257-3703-40d3-91d3-c891fb250947", + "Name": { + "en": "Religion" + }, + "Code": "4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7558d071-a885-447b-9aa2-604c29669492", + "Name": { + "en": "Government" + }, + "Code": "4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "755a7462-1d87-48b0-939c-08be5b5ea002", + "Name": { + "en": "Extra" + }, + "Code": "8.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "756728a8-9eb8-4329-aee2-d6a3d64585f2", + "Name": { + "en": "Solid, liquid, gas" + }, + "Code": "1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "756f67e9-2b22-4c43-913c-ceff0e781545", + "Name": { + "en": "Put in" + }, + "Code": "7.3.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7575d654-e528-4fe0-85eb-481b0e6654bb", + "Name": { + "en": "Machine" + }, + "Code": "6.7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "75825d72-695b-4e92-9f33-0f3ab4d7dd11", + "Name": { + "en": "Spit, saliva" + }, + "Code": "2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "75eb23c7-28b5-4c98-937a-1d8f371b24cf", + "Name": { + "en": "Fly" + }, + "Code": "7.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "761706fe-d289-4ace-b2c3-ab15d80dba7f", + "Name": { + "en": "Rope, string" + }, + "Code": "7.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "763fa2e0-c119-4f50-a307-81ed8c3497ed", + "Name": { + "en": "Oppose" + }, + "Code": "4.8.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7648040b-0aa5-4d9a-8f13-ffd066b81602", + "Name": { + "en": "Long" + }, + "Code": "8.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76795fdd-55dc-4fb7-a9ad-d1423c31df50", + "Name": { + "en": "Question words" + }, + "Code": "9.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "767aa167-af3d-4e11-a68b-ec31f9d2ef1a", + "Name": { + "en": "Sign, symbol" + }, + "Code": "3.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "768aed05-dbc9-4caf-9461-76cb3720f908", + "Name": { + "en": "Pain" + }, + "Code": "2.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76a06e45-99f7-446f-a2e8-e23edf6064bd", + "Name": { + "en": "Decay" + }, + "Code": "8.3.7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76a4a286-1c8a-4c4a-9eaf-dca040be574a", + "Name": { + "en": "Brave" + }, + "Code": "4.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76d4c718-a84d-4b7b-9767-1c350c3bc124", + "Name": { + "en": "Interval" + }, + "Code": "8.4.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "771e3882-f672-4e67-8580-edd82d7e5090", + "Name": { + "en": "Do good to" + }, + "Code": "4.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "774cdff1-8cba-4f94-a519-c66abd3b5f49", + "Name": { + "en": "Clan names" + }, + "Code": "9.7.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "775b53f1-bfcf-4270-a60d-b5affc9d6a99", + "Name": { + "en": "Behind" + }, + "Code": "8.5.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "776de0c6-fdd7-46df-b33f-b1e4af6ee099", + "Name": { + "en": "Sometimes" + }, + "Code": "8.4.6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "779e4547-dee6-4780-a180-30a740f9574c", + "Name": { + "en": "Basis" + }, + "Code": "9.6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77b4d6c1-87bf-4839-b4be-6a45119b700a", + "Name": { + "en": "Ask" + }, + "Code": "3.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77bcdcab-e9fd-48ba-8dcd-63f425367735", + "Name": { + "en": "Easy, possible" + }, + "Code": "6.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77d1610f-4757-46de-b5f8-e127dc270dfd", + "Name": { + "en": "Weaving cloth" + }, + "Code": "6.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77f0d0dc-61ee-4373-9879-35a7059bd892", + "Name": { + "en": "Tooth decay" + }, + "Code": "2.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77f27500-aad8-409c-a28e-92df73794dce", + "Name": { + "en": "Enemy" + }, + "Code": "4.8.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "780fbf89-f2ba-404c-b288-f6ca637bbc90", + "Name": { + "en": "Continue, persevere" + }, + "Code": "8.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7831223b-e5ed-4186-a321-94e9ae72a27d", + "Name": { + "en": "Throw" + }, + "Code": "7.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "785e7f1f-21ed-46b6-8599-c6ced4fd26d8", + "Name": { + "en": "Status" + }, + "Code": "4.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "78b0ad1b-0766-41ba-b788-d176addd5e9f", + "Name": { + "en": "Speak little" + }, + "Code": "3.5.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "793993ac-20c1-49f0-9716-e4cdc7da4439", + "Name": { + "en": "Tense and aspect" + }, + "Code": "9.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "793d3124-8b77-4ff0-82ec-09a3a9d8d865", + "Name": { + "en": "Unfair" + }, + "Code": "4.7.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7981a8e1-cf0b-44a0-9de4-12160b2f201d", + "Name": { + "en": "Land, property" + }, + "Code": "6.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7988974c-99fd-40dd-9b5e-2d81ec603ddc", + "Name": { + "en": "Forest, grassland, desert" + }, + "Code": "1.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7992958d-fd36-469e-a94b-f8a9eb26af64", + "Name": { + "en": "Block, dam up" + }, + "Code": "7.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79a33505-0c33-4e92-89b9-6a42e6ff2228", + "Name": { + "en": "Appear" + }, + "Code": "2.3.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79b580ff-64a7-445b-abcb-b49b9093779c", + "Name": { + "en": "Animal husbandry" + }, + "Code": "6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d", + "Name": { + "en": "Baby" + }, + "Code": "2.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b", + "Name": { + "en": "Bodies of water" + }, + "Code": "1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79f3b53a-eb56-4188-87f8-48317f76e7ce", + "Name": { + "en": "Fasting" + }, + "Code": "4.9.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7a8cb8d3-797d-478d-b7dd-265a1eedc0c1", + "Name": { + "en": "Fence, wall" + }, + "Code": "6.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ad54364-ca8c-4b7c-9748-f83efb44d0ea", + "Name": { + "en": "Mention" + }, + "Code": "3.5.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7adf468c-b93a-4b04-8af6-4c691122a4eb", + "Name": { + "en": "White" + }, + "Code": "8.3.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7b17e304-9a3f-463f-8216-cd1e1e119e0e", + "Name": { + "en": "Divide numbers" + }, + "Code": "8.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7b513a02-c3ae-4243-9410-16854d911258", + "Name": { + "en": "Name of a person" + }, + "Code": "9.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7b816f6a-4b46-403d-a1a2-2914ee070568", + "Name": { + "en": "Present" + }, + "Code": "8.4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7babf463-5e62-4a82-96d3-ef5989803c41", + "Name": { + "en": "Survive" + }, + "Code": "4.4.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7bca1201-31f8-4f65-8da9-af0eff36b388", + "Name": { + "en": "Gossip" + }, + "Code": "3.5.1.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7beca90c-3671-4b3c-bf9a-fb8f08ff914b", + "Name": { + "en": "Salt" + }, + "Code": "5.2.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7bf05f4e-909f-40ca-b742-9be21eba9fbb", + "Name": { + "en": "Agent-oriented modalities" + }, + "Code": "9.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7bf77556-64df-428e-bfdd-095af5bfeeda", + "Name": { + "en": "Intend" + }, + "Code": "3.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c022751-a9f9-412d-8b27-8cd03b797e2d", + "Name": { + "en": "Just, almost not" + }, + "Code": "9.4.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c1c3730-3b35-4150-b54e-bf6d344546b3", + "Name": { + "en": "Markers of emphasis " + }, + "Code": "9.6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c234ccc-0dbe-42b0-a377-db99ebd2b51e", + "Name": { + "en": "Things done to animals" + }, + "Code": "6.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c64f65b-2889-4f90-ba61-6b5f7634d4bc", + "Name": { + "en": "Male and female animals" + }, + "Code": "1.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c6ba6e5-d81e-4a50-a111-c946a0793378", + "Name": { + "en": "Advantage" + }, + "Code": "6.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c6cad26-79c3-403a-a3aa-59babdfcd46f", + "Name": { + "en": "Sick" + }, + "Code": "2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c7f62d8-0293-45ba-8658-956c38bafc66", + "Name": { + "en": "Destiny" + }, + "Code": "4.9.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c7fc1b6-3775-4881-bbe0-9d0ce50e42a9", + "Name": { + "en": "Lift" + }, + "Code": "7.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c80f6ee-e76d-4903-aee6-7a33d1da3f75", + "Name": { + "en": "Cover" + }, + "Code": "7.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c9c6263-9f7d-472c-a4c9-1767015d41fe", + "Name": { + "en": "Offer" + }, + "Code": "3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7cf6312e-f9f0-49e8-ae60-7677fac86c3f", + "Name": { + "en": "Subtract numbers" + }, + "Code": "8.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7cfc8b3c-ad67-4928-ae6a-74afd47ced89", + "Name": { + "en": "Whole, complete" + }, + "Code": "8.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d111356-e04e-4891-960c-2f35147eba82", + "Name": { + "en": "Name of a thing" + }, + "Code": "9.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d472317-b5e8-4cae-a03f-913ecdaf4c29", + "Name": { + "en": "Snake" + }, + "Code": "1.6.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d472dd5-636d-4499-bf66-83cf23c0dbe1", + "Name": { + "en": "Child" + }, + "Code": "2.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d54d3dd-5fb2-4640-9bcf-c234696af894", + "Name": { + "en": "Honest" + }, + "Code": "4.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d629c80-e5c2-409f-a592-39c56e9ace6d", + "Name": { + "en": "Navy" + }, + "Code": "4.8.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d7bc686-faf5-484b-8519-b2529ac581bf", + "Name": { + "en": "Growing rice" + }, + "Code": "6.2.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d7c81d5-9713-423f-b12e-8e11e451f0a7", + "Name": { + "en": "Forgive" + }, + "Code": "4.8.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d8898d6-6296-4d4d-b8dd-2f48c49f9e98", + "Name": { + "en": "High" + }, + "Code": "8.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d9f48f5-aba3-486f-b49d-cd2cb0ac03f8", + "Name": { + "en": "Growing grapes" + }, + "Code": "6.2.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7dbd7f43-4291-47f8-a392-6fdf3c98d522", + "Name": { + "en": "Male organs" + }, + "Code": "2.1.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7df3078c-f681-4123-a712-4b83e438ea1d", + "Name": { + "en": "Keep something" + }, + "Code": "7.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7e0bc050-5298-4808-af22-5e284526c652", + "Name": { + "en": "Exchange, trade" + }, + "Code": "6.8.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7e2b6218-0837-4b16-a982-c9535cccdb21", + "Name": { + "en": "Corpse" + }, + "Code": "2.6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ea946fb-6469-4f21-a5a4-7963878e6fe2", + "Name": { + "en": "A long time" + }, + "Code": "8.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ec98665-275f-4d57-8022-2740b9e90059", + "Name": { + "en": "Show sympathy, support" + }, + "Code": "4.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7edf9e7c-3e32-4307-b5e3-b0d704df7803", + "Name": { + "en": "Spinning thread" + }, + "Code": "6.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ee3ccb5-e6cb-4028-9af5-62ae782967b5", + "Name": { + "en": "Working with metal" + }, + "Code": "6.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ee92ca4-19aa-4abd-9f88-508766acc39c", + "Name": { + "en": "Roll up" + }, + "Code": "8.3.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ee96f62-7c8e-4c27-a373-d7a534844612", + "Name": { + "en": "Working with leather" + }, + "Code": "6.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f1dfb68-bf07-472d-a481-b802d2591ca6", + "Name": { + "en": "Circumcision" + }, + "Code": "5.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f6c81fb-02a4-415f-a363-fb11cc6b9254", + "Name": { + "en": "Supernatural being" + }, + "Code": "4.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f7fc197-5064-43c0-af51-2919fb7355c9", + "Name": { + "en": "Connected with, related " + }, + "Code": "9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f91aa6d-f342-4fb9-9448-69d694cda9c5", + "Name": { + "en": "To a large degree" + }, + "Code": "9.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7fe69c4c-2603-4949-afca-f39c010ad24e", + "Name": { + "en": "Body functions" + }, + "Code": "2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7fed6281-326a-4a15-8cbf-dc574594da19", + "Name": { + "en": "Play music" + }, + "Code": "4.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8", + "Name": { + "en": "Boast" + }, + "Code": "3.5.1.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8052744f-7a9a-49da-89e3-4c518126180b", + "Name": { + "en": "Confused" + }, + "Code": "3.4.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80563285-4de7-4040-8080-a5b22208e7d5", + "Name": { + "en": "Attack" + }, + "Code": "4.8.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8080c7ed-e69a-4a8a-bd8d-bf3447b13630", + "Name": { + "en": "Process harvest" + }, + "Code": "6.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80b48f92-0a83-4eeb-bfe0-6980285feb65", + "Name": { + "en": "Cruel" + }, + "Code": "4.3.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80bcbc99-3c85-46d6-b15c-895367231747", + "Name": { + "en": "Be at a place" + }, + "Code": "8.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80dc5ca1-44ce-4406-add8-2bbe19c122ab", + "Name": { + "en": "Recorded music" + }, + "Code": "3.5.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80de758c-537d-4c8c-8308-4babfb2c787a", + "Name": { + "en": "Occupy an area" + }, + "Code": "8.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80f26fbc-ca89-4789-996d-4c09547f2504", + "Name": { + "en": "Complete, finish" + }, + "Code": "6.1.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "811a2abc-4bf3-44e4-9ff4-e33ff4470ce6", + "Name": { + "en": "Prepositions, postpositions" + }, + "Code": "9.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "811e8c93-d97a-4aab-bd67-268b7783ff11", + "Name": { + "en": "Tend a field" + }, + "Code": "6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "816490a4-2cac-472a-bbb0-eafbb9bbe4a8", + "Name": { + "en": "Ordinal numbers" + }, + "Code": "8.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81855f47-aa24-435d-a123-7dfe61c80702", + "Name": { + "en": "Unreliable" + }, + "Code": "4.3.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "818e33ff-590e-4d0e-b84e-67771324a545", + "Name": { + "en": "Digging tool" + }, + "Code": "6.7.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81b62078-984c-4e82-94c4-39fa44dd3e56", + "Name": { + "en": "Insult" + }, + "Code": "3.5.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81e03df2-33a8-4735-aa23-80ef1c63679e", + "Name": { + "en": "Dazed, confused" + }, + "Code": "2.5.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81e366fa-450b-42ad-b23f-7074dc7823e2", + "Name": { + "en": "Attitude" + }, + "Code": "3.2.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8206415e-a915-4842-a46a-fbea64f1a0e3", + "Name": { + "en": "Idiophones" + }, + "Code": "9.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8216627d-9d20-4a5c-8bfd-0709c16e7a08", + "Name": { + "en": "More" + }, + "Code": "8.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8225de87-35a3-4c7a-b35c-f45b152caebe", + "Name": { + "en": "Show, indicate" + }, + "Code": "3.5.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8242fc85-a703-4efa-a78a-0556a84e811e", + "Name": { + "en": "Bite, chew" + }, + "Code": "5.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f", + "Name": { + "en": "Horizontal" + }, + "Code": "8.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82e4394a-2f58-4356-8d9c-1ad9dbe95293", + "Name": { + "en": "Cold" + }, + "Code": "8.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82eb3050-d382-48f6-a049-22a5f8a3b25a", + "Name": { + "en": "Stay, remain" + }, + "Code": "7.2.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82ecb5b3-9128-4b38-b9c5-612857417ceb", + "Name": { + "en": "Dislike" + }, + "Code": "3.4.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8383b4cb-e14a-4d04-a8c3-9c5276384953", + "Name": { + "en": "Ask permission" + }, + "Code": "3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "83899b19-8b39-4bf0-b124-4c6188569ec8", + "Name": { + "en": "Add numbers" + }, + "Code": "8.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "83adeb9d-c0be-4073-894d-913014420280", + "Name": { + "en": "Good" + }, + "Code": "8.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84084e67-b321-4b6a-a436-29ead0bee586", + "Name": { + "en": "Down" + }, + "Code": "8.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8411fa09-b1a5-4b62-aa47-f28bee9f6616", + "Name": { + "en": "Useful" + }, + "Code": "6.1.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "844f922b-6fb6-49aa-864b-b1c49edaa1ae", + "Name": { + "en": "Jewelry" + }, + "Code": "5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8497fb66-8b91-46b9-a0d5-fb9385319561", + "Name": { + "en": "Taste" + }, + "Code": "2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84a8d541-9571-4ce9-abea-bd9cccb8dbf0", + "Name": { + "en": "Floor, story" + }, + "Code": "6.5.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84d67c87-86ff-4e71-8a26-abe048132f8f", + "Name": { + "en": "Shave" + }, + "Code": "5.4.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84eb31d3-b932-4b3b-b945-85884ea856c7", + "Name": { + "en": "Probably " + }, + "Code": "9.4.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8503660c-03af-49ee-86b6-525aab4da828", + "Name": { + "en": "Hear" + }, + "Code": "2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85188748-1919-4210-a9e9-91171d9d6454", + "Name": { + "en": "Fish" + }, + "Code": "1.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85214614-ab45-4805-9014-092750d47511", + "Name": { + "en": "Trial" + }, + "Code": "4.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85646774-8145-4553-b8a7-6927cd077908", + "Name": { + "en": "Animal group" + }, + "Code": "1.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8570f05c-a152-4117-9f54-4edfa9c06a32", + "Name": { + "en": "Fault" + }, + "Code": "4.7.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "858af232-b570-4153-b4c0-f60930df9ced", + "Name": { + "en": "Seem" + }, + "Code": "9.4.4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85912845-21b0-41eb-8b8c-1f5c3d53df08", + "Name": { + "en": "Enthusiastic" + }, + "Code": "3.4.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8594cb26-9f3c-48f5-b00b-f055eb5a5e61", + "Name": { + "en": "Riot" + }, + "Code": "4.8.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8596f086-ee46-4245-8d45-2171a60e19e4", + "Name": { + "en": "Touching, contact" + }, + "Code": "8.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85b9908f-4f57-4baa-9ed2-bc4705b12e72", + "Name": { + "en": "Straight posture" + }, + "Code": "7.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85c5b8f7-8086-493d-b70d-a361bfa56f09", + "Name": { + "en": "Possible" + }, + "Code": "9.4.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85cb1e3c-62ba-4a77-a838-0237707fb0cb", + "Name": { + "en": "Names of regions" + }, + "Code": "9.7.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85dfc6a3-6c70-41f2-a869-32e2fb3c40ee", + "Name": { + "en": "Bend down" + }, + "Code": "7.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85f211ae-cc16-4042-8c27-e99ff8f01f61", + "Name": { + "en": "Give, donate" + }, + "Code": "6.8.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86287a4c-0d64-4f28-9a5c-17fb9df37ab6", + "Name": { + "en": "On" + }, + "Code": "8.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86615235-8cdd-413d-b722-11bc5a4653d6", + "Name": { + "en": "End" + }, + "Code": "8.4.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "867f515b-ed0f-431e-a84a-6c562e1bdbb7", + "Name": { + "en": "Smooth" + }, + "Code": "8.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "869d0c7b-d792-45ab-bf31-fd9f6fea3107", + "Name": { + "en": "Store, marketplace" + }, + "Code": "6.8.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86c065ea-2420-4619-82d4-1d43527b3371", + "Name": { + "en": "Distribute" + }, + "Code": "7.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86e5c062-d90f-476c-a363-264adfafedfa", + "Name": { + "en": "Move a part of the body" + }, + "Code": "7.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86f90eff-158b-4f6d-82e9-fab136dfd141", + "Name": { + "en": "Organization" + }, + "Code": "4.2.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "878a313b-a201-444e-8bdb-67048d60c63e", + "Name": { + "en": "Ignore" + }, + "Code": "3.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "879e66bc-af29-4fe4-86e0-0047973a57d6", + "Name": { + "en": "Walk with difficulty" + }, + "Code": "7.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87bd0d45-8a94-41cb-9864-90d53a11a4b9", + "Name": { + "en": "Law" + }, + "Code": "4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87c499b3-5fab-45e0-9999-9c4fcbba1e2b", + "Name": { + "en": "Son, daughter" + }, + "Code": "4.1.9.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87c55aea-2c3f-44ce-81ec-18a153c5deb2", + "Name": { + "en": "Send" + }, + "Code": "7.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87d344ac-94cc-49d6-9878-ebc86a933033", + "Name": { + "en": "Help" + }, + "Code": "4.3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87dd09b8-689c-4a56-b3f6-846a849f71b8", + "Name": { + "en": "Correct" + }, + "Code": "3.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87eb572c-bae2-45d8-a36a-919561b55d0d", + "Name": { + "en": "Crowd, group" + }, + "Code": "4.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "880647e5-6543-46dd-9178-8edae9272add", + "Name": { + "en": "Willing to learn" + }, + "Code": "3.2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "88269184-d033-454e-b750-559d5f53287c", + "Name": { + "en": "Move in" + }, + "Code": "7.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8841af5e-74e6-4c5d-a313-ba9aa7fdb78b", + "Name": { + "en": "Stand" + }, + "Code": "7.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8894cac9-c82a-4616-856e-0516d2ed1df7", + "Name": { + "en": "Meaning" + }, + "Code": "3.5.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "889de305-82ad-4d1a-9a97-63733ed27bfc", + "Name": { + "en": "Prepare" + }, + "Code": "6.1.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "892b66f4-5dfd-4451-a491-4c4fd2179081", + "Name": { + "en": "Bribe" + }, + "Code": "6.8.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8938e132-6534-4428-9b03-cb1f459b7cbe", + "Name": { + "en": "Basic" + }, + "Code": "8.3.7.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "896d57d4-4c25-4f0b-9985-a30974f64704", + "Name": { + "en": "Follow, be a disciple" + }, + "Code": "4.5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "89944377-8694-4394-bced-153cc22a0e30", + "Name": { + "en": "Birth order" + }, + "Code": "4.1.9.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "89ad4e41-bf08-4d93-a4f3-f72e8cc62bed", + "Name": { + "en": "In-law" + }, + "Code": "4.1.9.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "89ba59d4-b314-4070-83bb-f9f868bcd363", + "Name": { + "en": "Draw, paint" + }, + "Code": "6.6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a0c5ed9-0041-4af5-a193-329e6c9f2717", + "Name": { + "en": "Big" + }, + "Code": "8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a11e609-e88d-4247-8c5f-224ddb20de10", + "Name": { + "en": "Clothing" + }, + "Code": "5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a5c87ad-2d15-40c2-9f15-d7942ac80261", + "Name": { + "en": "Surrender" + }, + "Code": "4.8.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a7fdd75-01dc-4d40-84ff-fa0484da3abb", + "Name": { + "en": "Violent" + }, + "Code": "4.8.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a81b9bc-9c66-4d57-a2d1-2e592604c4b1", + "Name": { + "en": "Full" + }, + "Code": "8.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a9b5484-eda8-4194-95ca-c2e76e83ae67", + "Name": { + "en": "Pound in mortar and pestle" + }, + "Code": "5.2.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8add7f4d-333b-4b2c-9999-48a14162152b", + "Name": { + "en": "Self-controlled" + }, + "Code": "4.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8affe94d-a396-4404-a0d7-c65046e617e6", + "Name": { + "en": "Absent" + }, + "Code": "8.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b52a9d6-a07e-4ac8-8f84-6eb5ba578d97", + "Name": { + "en": "Cough, sneeze" + }, + "Code": "2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b5f9519-7301-4400-b93d-ebde4ea3def8", + "Name": { + "en": "Or, either" + }, + "Code": "9.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b6aecfb-071d-439d-9ee0-efa3c57967a0", + "Name": { + "en": "Diplomacy" + }, + "Code": "4.6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b76f4a2-9926-4c76-8d4f-563371683219", + "Name": { + "en": "Working with chemicals" + }, + "Code": "6.6.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b9f23f4-a147-4ea8-a13a-c5b1edc7f5e4", + "Name": { + "en": "Open" + }, + "Code": "7.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8bcc3b3d-dd0c-4838-a33a-b395f354c86f", + "Name": { + "en": "Move in a circle" + }, + "Code": "7.2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8bdf4847-903b-4af6-9553-3cfab65de516", + "Name": { + "en": "Mathematics" + }, + "Code": "8.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8be94377-a3cc-4187-a6e2-51523e953503", + "Name": { + "en": "Worker" + }, + "Code": "6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8c28c640-db5b-43e2-a1e6-b0e381962129", + "Name": { + "en": "Domesticated animal" + }, + "Code": "6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8c41d2d1-6da6-4ab8-8b29-7e226192d64e", + "Name": { + "en": "Bleed, blood" + }, + "Code": "2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8c7da1d1-d7d7-470c-b6a3-edefb0e9a4d2", + "Name": { + "en": "Shout" + }, + "Code": "3.5.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8ce6709f-f772-4638-a1aa-c132666f3563", + "Name": { + "en": "Annoyed" + }, + "Code": "3.4.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d266c98-9db3-4d3e-b204-956aa848ffa5", + "Name": { + "en": "Communication devices" + }, + "Code": "3.5.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d47c9ec-80c4-4309-9848-c453dcd71182", + "Name": { + "en": "Living things" + }, + "Code": "1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d490e91-6383-45ea-a3d7-b9c950822f98", + "Name": { + "en": "Impatient" + }, + "Code": "4.3.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d5c28b8-91be-40b0-b6c2-4d5adbb495a3", + "Name": { + "en": "Disgusted" + }, + "Code": "3.4.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d8a7656-8f8e-467e-b72e-535db6a17c6a", + "Name": { + "en": "Amphibian" + }, + "Code": "1.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8db17eef-6c42-4ba0-9f07-a3b0e7c8f1e1", + "Name": { + "en": "Relative pronouns" + }, + "Code": "9.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8db7c016-bdc9-410b-9523-3197602358f4", + "Name": { + "en": "Written material" + }, + "Code": "3.5.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e11dd10-459b-4fb3-b876-7d80ec5f8a4d", + "Name": { + "en": "Behavior" + }, + "Code": "4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e59041e-660b-4f3e-9a11-83217417209e", + "Name": { + "en": "Move forward" + }, + "Code": "7.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e65904c-f9e9-4e12-b430-c1ddc540f1ae", + "Name": { + "en": "Relaxed posture" + }, + "Code": "7.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e88ed6a-000d-400a-8cd8-7b3cc7f1818c", + "Name": { + "en": "Traditional medicine" + }, + "Code": "2.5.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8ea4e0d4-71a2-4583-a1fe-f1a941af8478", + "Name": { + "en": "Suggest" + }, + "Code": "3.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f46496a-d5b2-411d-944d-9d4d4b6f2e31", + "Name": { + "en": "Refuse permission" + }, + "Code": "3.3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f4c9266-a025-4b7a-bd67-fe0c043bf6f5", + "Name": { + "en": "Exact" + }, + "Code": "8.1.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f68d85f-70f8-4662-9b4b-1dd2900a002a", + "Name": { + "en": "Animal eating" + }, + "Code": "1.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f779877-7d86-4683-8a8b-298c7fc62815", + "Name": { + "en": "Speak poorly" + }, + "Code": "3.5.1.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef", + "Name": { + "en": "Fold" + }, + "Code": "8.3.1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8fb9a1a6-844d-45a5-86c7-977d3e420149", + "Name": { + "en": "Winnow grain" + }, + "Code": "6.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8fbed974-7d25-44c3-80cb-7d02e4069007", + "Name": { + "en": "Contain" + }, + "Code": "8.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8fff393a-23c2-42bb-8da8-9b151e790904", + "Name": { + "en": "Old person" + }, + "Code": "2.6.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "902cfcbe-6e42-4e55-b2a5-9146702fc16b", + "Name": { + "en": "Guide" + }, + "Code": "7.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9060339e-d697-4c35-bc83-ced6bebfee63", + "Name": { + "en": "Enter by force" + }, + "Code": "4.3.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "909a3113-88bc-470b-8d48-7c0d37966982", + "Name": { + "en": "Solve" + }, + "Code": "3.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "90c06635-a12c-4cd4-a190-46925ff0f43e", + "Name": { + "en": "Examine" + }, + "Code": "2.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91913920-8a6a-4ba0-9361-d6cc9e1f3639", + "Name": { + "en": "Parts of things" + }, + "Code": "8.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91cc7e8f-522e-4ff1-b545-5a5b72f4e953", + "Name": { + "en": "Worse" + }, + "Code": "8.3.7.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91ddf495-a28b-4a32-90dc-6f997d0cd069", + "Name": { + "en": "Musical instrument" + }, + "Code": "4.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91e95825-677a-4221-9e55-78a73bbac6ee", + "Name": { + "en": "Simple, plain" + }, + "Code": "8.3.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "928741b5-bff6-4dd1-be37-ec6e7a4eb6ca", + "Name": { + "en": "Island, shore" + }, + "Code": "1.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "929720f5-c264-49fd-b817-3e1ebff6e1de", + "Name": { + "en": "Food from vegetables" + }, + "Code": "5.2.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "92e441df-7e56-4e2c-b205-79a95800f567", + "Name": { + "en": "Compete with" + }, + "Code": "4.3.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "92ef1096-bae2-4bc5-b4b8-c16f429c4867", + "Name": { + "en": "Belong to an organization" + }, + "Code": "4.2.1.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93489181-ad8c-4a18-8dbc-fd7a9c871126", + "Name": { + "en": "Bad-tempered" + }, + "Code": "4.3.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9351d5b6-5a87-422a-9e82-ca6a0bacd3e9", + "Name": { + "en": "Calm" + }, + "Code": "3.4.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "935da513-126e-4cab-8e07-625458821181", + "Name": { + "en": "Come together, form a group" + }, + "Code": "4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4", + "Name": { + "en": "Wind" + }, + "Code": "1.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93de2257-8303-490d-b2fe-6d1d838b08c6", + "Name": { + "en": "Care for the fingernails" + }, + "Code": "5.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93df663c-9a5e-48aa-984f-fdf413079bc2", + "Name": { + "en": "Beneficiary of an event" + }, + "Code": "9.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "943eb131-2761-4c98-90a0-0bdfb0f8584d", + "Name": { + "en": "Bed" + }, + "Code": "5.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "944cf5af-469e-4b03-878f-a05d34b0d9f6", + "Name": { + "en": "Animal" + }, + "Code": "1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94af09fa-ff23-433b-a881-ceaca87d9d18", + "Name": { + "en": "Weak" + }, + "Code": "2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94cad4ca-c2ec-4ff3-b9b1-11107549941d", + "Name": { + "en": "Attribution" + }, + "Code": "9.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94f50cb8-9a59-42cc-9891-247cc3de7428", + "Name": { + "en": "Rust" + }, + "Code": "8.3.7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94f573ff-29f0-42ae-b1d9-f882823b2935", + "Name": { + "en": "Nickname" + }, + "Code": "9.7.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94f919c2-bf8b-4ae5-a611-8c0cd4d7a5d2", + "Name": { + "en": "Command" + }, + "Code": "4.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "95a8d932-9554-439f-afb5-ab158f2eed96", + "Name": { + "en": "Alternate" + }, + "Code": "8.4.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9612bdd6-15cb-4269-aaf9-481c7b35b5dd", + "Name": { + "en": "Speak quietly" + }, + "Code": "3.5.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "962941b2-66bd-437f-aadc-b1921bcae5b4", + "Name": { + "en": "Poison" + }, + "Code": "2.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "962cb994-0183-4ac5-94b2-82a33f1d64e4", + "Name": { + "en": "Oil" + }, + "Code": "1.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "965c6a0b-3034-4e2f-a00b-ed2eb3119a5d", + "Name": { + "en": "Imperative " + }, + "Code": "9.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "96a1ad48-1a70-425b-bd20-59294902581f", + "Name": { + "en": "Gesture" + }, + "Code": "3.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97393c87-07e2-4633-88f9-c8bf4d9b935c", + "Name": { + "en": "Hate, detest" + }, + "Code": "3.4.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "975d0109-1bba-4b0e-85b8-2c6b51c8e074", + "Name": { + "en": "Sit" + }, + "Code": "7.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97885cab-cd96-4d34-a62a-3e3daac0c165", + "Name": { + "en": "Separate, alone" + }, + "Code": "4.4.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97e1aba5-2ac1-44a3-8f18-59b2347a54a1", + "Name": { + "en": "Building materials" + }, + "Code": "6.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97ed5af8-29ca-428d-8ac5-c61b61a963fd", + "Name": { + "en": "Multicolored" + }, + "Code": "8.3.3.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97f40359-f4e8-4545-9ba5-980b47487540", + "Name": { + "en": "Artificial" + }, + "Code": "6.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "984dc2b7-6fdd-4257-abdc-5873abb7bb70", + "Name": { + "en": "To a smaller degree" + }, + "Code": "9.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "985f099d-f38c-4957-907a-769d1a45ca10", + "Name": { + "en": "Steady, unsteady" + }, + "Code": "7.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "98830eda-3997-4f4a-9ba4-664df669e7e2", + "Name": { + "en": "Fort" + }, + "Code": "4.8.3.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "98f9ceff-e8a2-4e24-abc4-561b80bb5889", + "Name": { + "en": "Preserve" + }, + "Code": "8.3.7.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "991357dc-9f56-47ed-8790-85cbd5f9b06f", + "Name": { + "en": "Transport" + }, + "Code": "7.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "993b8955-52db-4b2a-8e9a-405a155e7b60", + "Name": { + "en": "Smelting" + }, + "Code": "6.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "995751ef-d71b-429c-a4ee-032f5b309bd7", + "Name": { + "en": "Types of people" + }, + "Code": "4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "995ee828-2393-462b-be82-47f5b5439aaf", + "Name": { + "en": "Convex" + }, + "Code": "8.3.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99861dcb-c6ca-4e50-a19a-efadbb10c2cf", + "Name": { + "en": "Old, not new" + }, + "Code": "8.4.6.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99988f94-3aa4-4984-88df-ae228f01d3b7", + "Name": { + "en": "Other" + }, + "Code": "8.3.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99b40843-54bf-4c59-ae1d-d7146cebec48", + "Name": { + "en": "Lucky" + }, + "Code": "4.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99b5b80a-a2d6-4820-adfc-1da72528c272", + "Name": { + "en": "Same" + }, + "Code": "8.3.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99c51a2c-ad49-48a6-bb0b-f059da745ec4", + "Name": { + "en": "Recipient (of a patient)" + }, + "Code": "9.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99d0d129-b427-4468-b4c6-91005be63e18", + "Name": { + "en": "Growing tobacco" + }, + "Code": "6.2.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99e38da1-91ad-4dff-a68f-972607936e50", + "Name": { + "en": "Not yet" + }, + "Code": "8.4.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99ee1558-34b2-4a1b-bfd2-eb4ccbfe7728", + "Name": { + "en": "Reliable" + }, + "Code": "4.3.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a456463-3c71-4f9a-8117-dc2fcb087bd3", + "Name": { + "en": "Tend a fire" + }, + "Code": "5.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a7604b4-d42f-44b7-9aef-47847dc93f0b", + "Name": { + "en": "Suffer" + }, + "Code": "4.4.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a8f2f6a-a039-45dd-80d3-d1e0911907b2", + "Name": { + "en": "Tax" + }, + "Code": "6.8.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a9c7174-4148-43c2-875c-0d2f884a5fe3", + "Name": { + "en": "Untidy" + }, + "Code": "4.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ac6dec6-1b8f-463c-8239-e2acb93586b1", + "Name": { + "en": "Unity" + }, + "Code": "4.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9afb64d6-feae-4490-9b7e-95768627f643", + "Name": { + "en": "Make an appeal" + }, + "Code": "4.8.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b0fef63-5935-447d-801a-bb02dd6212bb", + "Name": { + "en": "Admire someone" + }, + "Code": "4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b158c9e-9ba5-4be2-a9a1-77ef888a3b06", + "Name": { + "en": "Pure, unmixed" + }, + "Code": "7.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b267cc1-983c-407a-98d2-1e27add6292c", + "Name": { + "en": "Tie" + }, + "Code": "7.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b476afd-58c2-46a2-8294-449ac4aad3a9", + "Name": { + "en": "Place of worship" + }, + "Code": "4.9.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b9ccd76-76d6-457b-93d2-c4d242a395f8", + "Name": { + "en": "Renounce claim, concede" + }, + "Code": "4.8.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bab95c4-9773-4894-9cb9-d7ad39378b45", + "Name": { + "en": "Occupation" + }, + "Code": "6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bb173c6-cf38-47cd-803f-ebdf964ca2fc", + "Name": { + "en": "Prosperity, trouble" + }, + "Code": "4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bb6f1ed-7170-4caa-a14c-747fd95ca30e", + "Name": { + "en": "Sugar" + }, + "Code": "5.2.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bf21458-0acc-4d8d-ba9a-7b9fb6b8ee0b", + "Name": { + "en": "Hypocrite" + }, + "Code": "4.3.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9c21f9bd-a7e0-4989-99f1-7fa2853ab73c", + "Name": { + "en": "Cut hair" + }, + "Code": "5.4.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9cae4ee3-03cf-46f7-9475-21d66c93ae04", + "Name": { + "en": "Food from fruit" + }, + "Code": "5.2.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c", + "Name": { + "en": "Finger, toe" + }, + "Code": "2.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d428e57-e125-4575-b165-9bc6fd4ec507", + "Name": { + "en": "Persuade" + }, + "Code": "3.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d6cbe74-93d6-41fb-b7e2-cc30adb28187", + "Name": { + "en": "Move up" + }, + "Code": "7.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d79be9a-f21e-4189-be39-779db79da027", + "Name": { + "en": "Wash dishes" + }, + "Code": "5.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d865347-6656-4ab7-8613-bf2e8bc53aa7", + "Name": { + "en": "Injure" + }, + "Code": "2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e2b0c61-304e-4cad-9708-792bfde880b4", + "Name": { + "en": "Stop fighting" + }, + "Code": "4.8.4.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e587127-4f2c-4796-9c67-d37332b57303", + "Name": { + "en": "Peer group" + }, + "Code": "2.6.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e6d7c69-788c-4d40-8584-32f185e91932", + "Name": { + "en": "Hunt and fish" + }, + "Code": "6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e775794-3dda-4942-b6af-087ffd57f342", + "Name": { + "en": "Side" + }, + "Code": "8.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e98c76f-6c1c-4b7d-8f71-38f9f0e8750e", + "Name": { + "en": "Uproot plants" + }, + "Code": "6.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ec62ffe-69be-4b9b-944c-29a0f4f133db", + "Name": { + "en": "Accident" + }, + "Code": "4.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ed42115-8532-4f99-b0c0-36abfe9db652", + "Name": { + "en": "Low status" + }, + "Code": "4.5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ed66151-c144-4e5e-a3a2-f5d08b0c9bb8", + "Name": { + "en": "Backward" + }, + "Code": "8.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9efa7949-de15-499a-b382-4560e06c4fb4", + "Name": { + "en": "Say" + }, + "Code": "3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f0bcab1-8256-47a1-853c-408f025e04e7", + "Name": { + "en": "Tell a lie" + }, + "Code": "3.5.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f3b4cab-dc8a-430e-88f3-d3002df64fb8", + "Name": { + "en": "Posture" + }, + "Code": "7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f6754ae-a429-4bba-8f6f-2cd4ea0cbe45", + "Name": { + "en": "Virginity" + }, + "Code": "2.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f792202-8023-4ef3-b269-5ae4b6908a0b", + "Name": { + "en": "Offering, sacrifice" + }, + "Code": "4.9.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f868391-f1df-4682-bdcb-2c2c799006cf", + "Name": { + "en": "Remember" + }, + "Code": "3.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f8b8c01-f790-469f-bc37-dece6227e276", + "Name": { + "en": "At the same time" + }, + "Code": "8.4.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f91cd53-8b9e-4d76-82e4-5ede39112322", + "Name": { + "en": "Goal (of movement)" + }, + "Code": "9.5.1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9fc25175-3b4a-4248-bc7f-b86012ec584f", + "Name": { + "en": "Fuel" + }, + "Code": "5.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9fcae400-ce8f-4e30-9516-97ab794c30a9", + "Name": { + "en": "Pardon, release" + }, + "Code": "4.7.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a01a1900-fc1f-462e-ba3d-ae822711b034", + "Name": { + "en": "Mental illness" + }, + "Code": "2.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a03663ca-0c66-4570-be2d-b40105cc4400", + "Name": { + "en": "Yes" + }, + "Code": "9.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a0d073df-d413-4dfd-9ba1-c3c68f126d90", + "Name": { + "en": "Planet" + }, + "Code": "1.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a105e31c-1268-4fc2-8655-838d34860ece", + "Name": { + "en": "Names of oceans and lakes" + }, + "Code": "9.7.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a139558a-8df9-4fc9-bd3e-816a1408ba7f", + "Name": { + "en": "Personally" + }, + "Code": "9.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a1959b00-9702-4b45-ac46-93f18d3bc5e6", + "Name": { + "en": "Breathe, breath" + }, + "Code": "2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a197dbfb-20e4-40c2-9c76-6abbeb1a9b12", + "Name": { + "en": "Insurance" + }, + "Code": "6.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a19e219a-6cc1-4057-a8d9-18554ae88de1", + "Name": { + "en": "Care for a baby" + }, + "Code": "2.6.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a1ce19c4-d12c-46da-a718-6d03949b3db1", + "Name": { + "en": "Hunt" + }, + "Code": "6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a1dd1d94-fa8e-4325-9f72-b39bcac69755", + "Name": { + "en": "Make peace" + }, + "Code": "4.8.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a220a734-af03-4de3-8d05-369a3cad14cf", + "Name": { + "en": "Household decoration" + }, + "Code": "5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2240259-608b-40f1-990a-7f8e00ef1d07", + "Name": { + "en": "Spread, smear" + }, + "Code": "7.3.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a22d5c1c-daed-4e7a-8243-493f2d841314", + "Name": { + "en": "Do intensely" + }, + "Code": "9.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2508183-7ea5-434e-a773-00d53087d27b", + "Name": { + "en": "Mental state" + }, + "Code": "3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3", + "Name": { + "en": "Despise someone" + }, + "Code": "4.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2ae0c29-df1c-486d-a44b-96fcc4e0aa8c", + "Name": { + "en": "Give up" + }, + "Code": "6.1.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2bbf179-8d38-4d2e-84cd-0e00bb6c74f3", + "Name": { + "en": "Crawl" + }, + "Code": "7.2.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2ce1453-9832-447c-9481-70c9e2da4227", + "Name": { + "en": "Irrigate" + }, + "Code": "6.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a30e0391-ea64-4938-9eca-023c351d60af", + "Name": { + "en": "Disclose" + }, + "Code": "3.5.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a31c85df-02a9-4dd8-a094-0f07a0afbcca", + "Name": { + "en": "Remove, take apart" + }, + "Code": "7.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a345d090-14e2-4897-9186-debcb05ab27c", + "Name": { + "en": "Next" + }, + "Code": "8.4.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a36b3354-8598-4228-b779-c7c922b1e61d", + "Name": { + "en": "Smuggle" + }, + "Code": "6.8.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3ba10f3-66e3-4ad5-8057-453b8941e497", + "Name": { + "en": "War" + }, + "Code": "4.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3ba23d2-618e-4618-af18-9befae2f888b", + "Name": { + "en": "Grind" + }, + "Code": "7.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3bc1fbd-9f2f-4a9d-ae6e-7b02da8a05b4", + "Name": { + "en": "Poking tool" + }, + "Code": "6.7.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3ca2a31-259e-4e15-9696-75b0c81886e9", + "Name": { + "en": "Straight" + }, + "Code": "8.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3d95c6a-4b0b-4af0-aca8-addd042becd2", + "Name": { + "en": "Play, fun" + }, + "Code": "4.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3e905b8-107b-4311-bb50-0abe151131b3", + "Name": { + "en": "Give permission" + }, + "Code": "3.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3f1d702-8ca1-457a-a569-eb6fdf696bbe", + "Name": { + "en": "Approve of something" + }, + "Code": "3.2.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3fb18fd-befb-493f-8a19-760883ed9697", + "Name": { + "en": "Wedged in, stuck" + }, + "Code": "8.2.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3fe0ca2-64fe-44db-ac3f-14513385bc25", + "Name": { + "en": "Go to sleep" + }, + "Code": "5.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a42aa891-e4fd-489e-b573-b9d20dfc5c2a", + "Name": { + "en": "Phrase conjunctions" + }, + "Code": "9.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a42db5b4-6317-4d3f-beff-cb92dbaca914", + "Name": { + "en": "Learn" + }, + "Code": "3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4627ca8-f27b-44ce-91f5-cc992332bc86", + "Name": { + "en": "Husband, wife" + }, + "Code": "4.1.9.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4958dd9-03cc-4863-ab76-cd0682060cb0", + "Name": { + "en": "Praise" + }, + "Code": "3.5.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4b03891-c2df-4d72-bbdc-13bc8d4eceba", + "Name": { + "en": "Area" + }, + "Code": "8.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4f4943f-ad94-4736-bf5d-f8a3cb15919f", + "Name": { + "en": "Noun affixes" + }, + "Code": "9.2.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4fa9f98-73c6-4c3e-9dad-d73d2634be3b", + "Name": { + "en": "Verbal tradition" + }, + "Code": "3.5.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a57185c3-0cb5-41fa-94bf-da0c9edac600", + "Name": { + "en": "Multiples" + }, + "Code": "8.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a6616a09-df51-4ca6-850f-733ee73c8750", + "Name": { + "en": "Working in the sea" + }, + "Code": "6.6.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a6797fd1-e368-422b-9710-96e0af39552d", + "Name": { + "en": "Meet a standard" + }, + "Code": "4.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a72515ec-998d-4b48-bd69-c67cf9245abc", + "Name": { + "en": "Waste" + }, + "Code": "6.1.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a72ca6f7-e389-408a-8276-fec4d60a3a56", + "Name": { + "en": "Be" + }, + "Code": "9.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb", + "Name": { + "en": "Deceive" + }, + "Code": "4.3.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a755eaba-fce9-4a8b-b9cf-b3970a49f464", + "Name": { + "en": "Expensive" + }, + "Code": "6.8.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7568031-43e3-4cf9-b162-ac2fe74125f1", + "Name": { + "en": "Opportunity" + }, + "Code": "6.1.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a758718d-6e90-471d-acde-a637ba9ff9eb", + "Name": { + "en": "Sell" + }, + "Code": "6.8.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a764174f-ccb7-48b1-add7-158bc89a5e81", + "Name": { + "en": "Fail" + }, + "Code": "6.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a781d57d-174d-47a6-b6a1-ae635a13df84", + "Name": { + "en": "Family, clan" + }, + "Code": "4.1.9.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7824686-a3f3-4c8a-907e-5d841cf846c8", + "Name": { + "en": "Shine" + }, + "Code": "8.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7b32d1b-1be7-43ec-94a1-fc7bdd826168", + "Name": { + "en": "Particles" + }, + "Code": "9.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9", + "Name": { + "en": "Country" + }, + "Code": "4.6.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7e4f8a8-3fe3-4c86-85df-059f8983df26", + "Name": { + "en": "Use a person" + }, + "Code": "4.3.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a80f12aa-c30d-4892-978a-b076985742d5", + "Name": { + "en": "Torso" + }, + "Code": "2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a84a5ffc-006c-4d29-b71f-5215cc40a5a8", + "Name": { + "en": "Discipline, train" + }, + "Code": "4.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f", + "Name": { + "en": "See" + }, + "Code": "2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a86b2e14-1299-4f59-842c-c4c5a401aace", + "Name": { + "en": "Recognize" + }, + "Code": "3.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a894d991-d5da-45a6-9c62-009133257f36", + "Name": { + "en": "Symptom of disease" + }, + "Code": "2.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8ae0ee7-56ca-4bdf-bd9a-c56da3ff9254", + "Name": { + "en": "Extort money" + }, + "Code": "6.8.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8b2abb3-d09f-4ff1-89ce-6ae99f16401c", + "Name": { + "en": "Set self apart" + }, + "Code": "4.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4", + "Name": { + "en": "Change color" + }, + "Code": "8.3.3.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8b9e892-df3e-44c4-8c68-7a0f7f4468bb", + "Name": { + "en": "Rodent" + }, + "Code": "1.6.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8bfd196-8b54-4084-b11a-fe6e8bc5da4c", + "Name": { + "en": "Gather wild plants" + }, + "Code": "6.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a90e47fb-667c-46f7-beab-5ec4e9e6edb5", + "Name": { + "en": "Caution" + }, + "Code": "4.4.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9470e53-ee43-4c87-9cce-09cc4fa6b1c1", + "Name": { + "en": "Path (of movement)" + }, + "Code": "9.5.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9625460-7162-447c-b400-84fbc5744f1b", + "Name": { + "en": "Say farewell" + }, + "Code": "3.5.1.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a977c4b6-1004-448f-b6b0-daf5ce87d76d", + "Name": { + "en": "High status" + }, + "Code": "4.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9fbc056-3134-41af-baf4-9f63fa5bd5ae", + "Name": { + "en": "Drip" + }, + "Code": "1.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9fe3347-12ae-4624-b55e-45ea42cdbf9b", + "Name": { + "en": "Trim plants" + }, + "Code": "6.2.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa0f165d-3013-4a0c-b68c-14ea317013f9", + "Name": { + "en": "Compose music" + }, + "Code": "4.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa2b547c-2c82-4ce0-a1b3-35fa809d666c", + "Name": { + "en": "Narrow" + }, + "Code": "8.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa5658da-8926-4519-83a5-d451dc5a6b49", + "Name": { + "en": "Egg dishes" + }, + "Code": "5.2.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa57936d-f8a9-4603-8c3d-27abccd13531", + "Name": { + "en": "Nature, environment" + }, + "Code": "1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa8d812b-7c13-414a-ad02-a4240d2cef68", + "Name": { + "en": "Come" + }, + "Code": "7.2.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aab82dc7-de9f-44b3-845e-0c926f47cfb6", + "Name": { + "en": "Case" + }, + "Code": "9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aabc32ee-46e4-469f-93ad-673373cb2e8d", + "Name": { + "en": "Attendant circumstances" + }, + "Code": "9.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aad7c9b0-aff3-4684-86d5-657a20e39288", + "Name": { + "en": "Authority" + }, + "Code": "4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aadefee4-ed14-4753-952e-e945f2972e37", + "Name": { + "en": "Part" + }, + "Code": "8.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aaf63abd-c8a5-4546-8fc1-a51c6e607683", + "Name": { + "en": "Hope" + }, + "Code": "3.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52", + "Name": { + "en": "Degree" + }, + "Code": "9.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab127348-7f98-43e5-801d-01241ecdb517", + "Name": { + "en": "Lower something" + }, + "Code": "7.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8ca07c-b23c-43dc-b705-7fe34ddf6d4d", + "Name": { + "en": "Exaggerate" + }, + "Code": "3.5.1.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8d8dc9-eeb7-41ff-93a9-cbbd50b89a73", + "Name": { + "en": "Can\u0027t" + }, + "Code": "9.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8f12fb-57b0-4d61-8ae0-50d7cbc412df", + "Name": { + "en": "Snow, ice" + }, + "Code": "1.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8f5391-ad8b-42dc-a43c-22590a09ce77", + "Name": { + "en": "Islam" + }, + "Code": "4.9.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8", + "Name": { + "en": "Weigh" + }, + "Code": "8.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac187298-85e8-43ed-ba85-cc06a62c08ba", + "Name": { + "en": "Animal life cycle" + }, + "Code": "1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac2e424b-6aee-4031-8864-7b3f4a6fb5a3", + "Name": { + "en": "True" + }, + "Code": "3.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac4a936e-6c05-4e73-8d40-dfe4223b47fa", + "Name": { + "en": "Card game" + }, + "Code": "4.2.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac527685-f31d-42f3-81bd-97221a01c7ef", + "Name": { + "en": "Pattern, model" + }, + "Code": "8.3.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac550d1f-ec74-46a8-bf81-7832ace533ee", + "Name": { + "en": "Popular" + }, + "Code": "3.4.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac7de73d-0059-4f35-9317-462a1813edba", + "Name": { + "en": "Grind flour" + }, + "Code": "5.2.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac9ee84f-f0c7-48b3-8e5a-b4c967112394", + "Name": { + "en": "Quality" + }, + "Code": "8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "acddd447-bf8a-4d74-8501-7defb0525cc0", + "Name": { + "en": "Animal diseases" + }, + "Code": "6.3.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "acf5e294-d169-45c1-a9d3-960536e018cc", + "Name": { + "en": "Sound" + }, + "Code": "2.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ad4d28f0-5cbb-4b82-b736-9b41860a248c", + "Name": { + "en": "Demonstrative pronouns" + }, + "Code": "9.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ad56dc48-9c39-43f6-9386-f7df80d93cd4", + "Name": { + "en": "Insist" + }, + "Code": "3.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da", + "Name": { + "en": "Certainly, definitely" + }, + "Code": "9.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "adde4a66-9040-47a9-91ab-327934a2e97e", + "Name": { + "en": "Working with wood" + }, + "Code": "6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d", + "Name": { + "en": "Initiation" + }, + "Code": "2.6.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "adfc2bcd-6b8e-486c-b105-29b286b61cc0", + "Name": { + "en": "Get" + }, + "Code": "7.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ae04020a-3bb2-4672-ad75-71ce72d461ea", + "Name": { + "en": "Sentence conjunctions" + }, + "Code": "9.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ae6f73ab-432d-42e8-aa1a-c848652a13f0", + "Name": { + "en": "Woman" + }, + "Code": "2.6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aeb20093-26ba-492b-a69d-af18d5ba51eb", + "Name": { + "en": "Show affection" + }, + "Code": "4.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aec8c246-0ef7-414a-94a6-b9fdd6812a7c", + "Name": { + "en": "Social class" + }, + "Code": "4.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aecf2aad-b7a4-444f-9b13-64bc534126d2", + "Name": { + "en": "Bad" + }, + "Code": "8.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aed6c1ec-abbe-47e3-a6cc-a99ecff3b825", + "Name": { + "en": "Shiny" + }, + "Code": "8.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af0909a5-928a-4421-baaa-f33b14302714", + "Name": { + "en": "Part of speech" + }, + "Code": "9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af399519-5d7c-4100-9c79-8162cb4641cb", + "Name": { + "en": "Slow" + }, + "Code": "8.4.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af4ac058-d4b3-4c7a-ade8-6af762d0486d", + "Name": { + "en": "Decide, plan" + }, + "Code": "3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af5bcf27-56e2-4072-b321-30a31b58af78", + "Name": { + "en": "Growing fruit" + }, + "Code": "6.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af62c8f6-43c7-4c44-a0d1-ab9bcff8e26f", + "Name": { + "en": "Imitate" + }, + "Code": "8.3.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af6fe2d6-576d-473f-8a32-583779d95d1d", + "Name": { + "en": "Sure" + }, + "Code": "9.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af700054-258a-458a-9e38-e90397833e51", + "Name": { + "en": "Write" + }, + "Code": "3.5.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afa77a2a-8b0f-4a39-91bc-040e90ffbb3a", + "Name": { + "en": "Happy" + }, + "Code": "3.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afc25fbb-9060-4af2-8225-3fddbab2227d", + "Name": { + "en": "Patient" + }, + "Code": "4.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afdd8b8e-9502-4d06-94ee-e79815b65750", + "Name": { + "en": "Almost" + }, + "Code": "8.1.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afe7cc92-e0ad-40d9-be56-aa12d2693a3f", + "Name": { + "en": "Day" + }, + "Code": "8.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aff720bd-fb3d-4f85-bbc4-41d5fc5b83f8", + "Name": { + "en": "Celebrate" + }, + "Code": "4.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0156a7c-928a-4cc8-a021-4af4dc74fead", + "Name": { + "en": "Unusual" + }, + "Code": "8.3.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b015f460-faeb-4aa5-b453-9e5e9ae061fe", + "Name": { + "en": "Old fashioned" + }, + "Code": "8.4.6.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b035dcf9-1dd0-4fb3-bd04-7c8945e92cdf", + "Name": { + "en": "Put in back" + }, + "Code": "7.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b044e890-ce30-455c-aede-7e9d5569396e", + "Name": { + "en": "Star" + }, + "Code": "1.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b08424b7-a2f1-4a0e-82d1-665249e12cfc", + "Name": { + "en": "Arrive" + }, + "Code": "7.2.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0905fa9-2f90-410b-8eb5-7c7944c4f0f9", + "Name": { + "en": "Sexual immorality" + }, + "Code": "2.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b09205d4-fbb4-4bcd-94ef-f8d83e298462", + "Name": { + "en": "Calm, rough" + }, + "Code": "1.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0a9a631-e0dc-47d4-a762-e9a627732218", + "Name": { + "en": "Submit to authority" + }, + "Code": "4.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0b161b2-e773-4b04-99eb-23778fd2aa80", + "Name": { + "en": "Tear, rip" + }, + "Code": "7.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0e2635e-47c4-4995-942b-07f6635faf6f", + "Name": { + "en": "Beekeeping" + }, + "Code": "6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0e3486c-bd3d-4b5c-be9a-40cd2c0ce2a1", + "Name": { + "en": "Plait hair" + }, + "Code": "5.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0e5042d-1ade-4fb1-a6fd-9a165f5c4763", + "Name": { + "en": "Kidnap" + }, + "Code": "4.3.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31", + "Name": { + "en": "Fall" + }, + "Code": "7.2.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b158fe11-5af2-4467-bbc0-cc1aee766592", + "Name": { + "en": "Happen" + }, + "Code": "9.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b1688009-474d-4e2e-a137-acc1e32a435f", + "Name": { + "en": "Thick" + }, + "Code": "8.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b16de6a0-71dd-448c-9ffa-49f6646a5219", + "Name": { + "en": "Run" + }, + "Code": "7.2.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b1756402-83c4-476d-8f55-010a0a10b5d9", + "Name": { + "en": "Make profit" + }, + "Code": "6.8.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b21ace5f-9307-4bdc-b103-9fdf14a5655e", + "Name": { + "en": "Week" + }, + "Code": "8.4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2830b72-c642-484f-9485-24682aa11ed8", + "Name": { + "en": "Omen, divination" + }, + "Code": "4.9.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b285bc3b-ba9f-4160-8e79-81dd43dfdbaa", + "Name": { + "en": "Unemployed, not working" + }, + "Code": "6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2bb077a-92c8-4e54-8dfa-c89efd60b82d", + "Name": { + "en": "Poultry raising" + }, + "Code": "6.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2fa4109-1165-4c1f-9613-c5b2d349d2d4", + "Name": { + "en": "Speak a lot" + }, + "Code": "3.5.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2fd2d29-1389-4114-91a8-15b8d9742794", + "Name": { + "en": "Dependency relations" + }, + "Code": "9.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2fee662-c451-4d32-aca5-a913ca0b2164", + "Name": { + "en": "Holding tool" + }, + "Code": "6.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b33da469-fefa-44f3-b35c-d70411bfe7e1", + "Name": { + "en": "Marketing" + }, + "Code": "6.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b34dc5c9-3367-4bfc-b077-cd014250dc5c", + "Name": { + "en": "Interjections" + }, + "Code": "9.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3745f13-3632-4f13-b0cc-a74c51f8f2a1", + "Name": { + "en": "Earthquake" + }, + "Code": "1.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3be00a9-41a4-42ae-ba51-320b5000a563", + "Name": { + "en": "Underground" + }, + "Code": "1.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3d3dd7d-0cb1-4c25-bcae-cc402fcfa3ea", + "Name": { + "en": "Fast, not eat" + }, + "Code": "5.2.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3fb9960-8f42-43bc-9595-dfb3e04f5bfd", + "Name": { + "en": "Substitute" + }, + "Code": "7.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b40637e5-be76-4a82-96bb-c55306ee293d", + "Name": { + "en": "Girlfriend, boyfriend" + }, + "Code": "4.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b43fae8e-6b19-42ed-98cd-d363174b9cf8", + "Name": { + "en": "Small" + }, + "Code": "8.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b47d2604-8b23-41e9-9158-01526dd83894", + "Name": { + "en": "World" + }, + "Code": "1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4aa4bbd-8abf-4503-96e4-05c75efd23d5", + "Name": { + "en": "Weather" + }, + "Code": "1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4c1e05f-f741-45cc-8d13-a1f60f474325", + "Name": { + "en": "Markers expecting an affirmative answer" + }, + "Code": "9.4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4dc89dc-3811-4d45-b0ee-0b71e28305cc", + "Name": { + "en": "Use up" + }, + "Code": "6.1.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4e6c077-4f5e-44f3-8868-1f7ae3486585", + "Name": { + "en": "Eating utensil" + }, + "Code": "5.2.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4fc91fe-68f7-45a6-8863-75bba1029bef", + "Name": { + "en": "Take by force" + }, + "Code": "6.8.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4fe4698-54a2-4bcd-9490-e07ee1ee97af", + "Name": { + "en": "Cry, tear" + }, + "Code": "3.5.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b50f39cb-3152-4d56-9ddc-4b98f763e76a", + "Name": { + "en": "Want" + }, + "Code": "3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b536622c-80a3-4b31-9d22-4ed2fb76324d", + "Name": { + "en": "City" + }, + "Code": "4.6.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b53deac1-26c7-4fe9-9109-8496e248e8c7", + "Name": { + "en": "Election" + }, + "Code": "4.6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5499348-b8ca-4fae-8486-b23863560ae5", + "Name": { + "en": "Chance" + }, + "Code": "4.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b553e989-2b2a-4b1e-a987-ae75f3862501", + "Name": { + "en": "Not care" + }, + "Code": "4.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5700ad7-36a1-4608-8789-8f84007244f8", + "Name": { + "en": "Tired" + }, + "Code": "2.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b59f6fc4-629d-4e62-8673-cf62f8ad8197", + "Name": { + "en": "Mediocre" + }, + "Code": "8.3.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5aa5873-4c66-4d2d-935a-18e0ab231dbb", + "Name": { + "en": "Clumsy" + }, + "Code": "7.2.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5b36c31-c56d-44b9-933c-fe0e62d80c25", + "Name": { + "en": "Share with" + }, + "Code": "4.3.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5d679e3-506a-4994-81a2-be48a698d945", + "Name": { + "en": "Meet for the first time" + }, + "Code": "4.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b602c0e1-5398-4cc9-850b-7cfb5c592d13", + "Name": { + "en": "Blind" + }, + "Code": "2.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b60bf544-7774-4623-8c67-19b32b53dea2", + "Name": { + "en": "God" + }, + "Code": "4.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b62b5fc7-1b20-4f63-8459-8eb4991839ee", + "Name": { + "en": "Crack" + }, + "Code": "7.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b632b00b-b03f-4549-8e02-6402c05a4f06", + "Name": { + "en": "Obey" + }, + "Code": "4.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6686c7c-39de-40b5-adee-67fc7dc54374", + "Name": { + "en": "Cardinal numbers" + }, + "Code": "8.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6a40216-fe93-4b0f-b85b-5622327031d0", + "Name": { + "en": "Egg" + }, + "Code": "1.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6b73d41-e23f-4f22-b01e-7e75f4115fce", + "Name": { + "en": "Purpose, goal" + }, + "Code": "3.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6baa8bf-7691-431d-8715-3937372b9da0", + "Name": { + "en": "Exempt" + }, + "Code": "3.3.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6e45998-9f6a-4b19-9cda-62410a11afa2", + "Name": { + "en": "Sorcery" + }, + "Code": "4.9.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6e9b9c9-632b-48e7-99f7-fa53ebcb3bc5", + "Name": { + "en": "Knitting" + }, + "Code": "6.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6ead5e6-dab5-4941-9017-d03452182709", + "Name": { + "en": "Expert" + }, + "Code": "6.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b760a3a7-ea7f-4a4b-a4b5-81752f2ca158", + "Name": { + "en": "Work poorly" + }, + "Code": "6.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7662b2b-e57c-400b-8ef6-6fb612f5ee9f", + "Name": { + "en": "Growing bananas" + }, + "Code": "6.2.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7801f6e-683b-4d5d-9bab-57f6e593db8c", + "Name": { + "en": "List" + }, + "Code": "3.5.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b790470f-ed4e-42ac-932d-cd15ef701b03", + "Name": { + "en": "Religious purification" + }, + "Code": "4.9.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b79f8775-d8d0-4aa5-b4ab-917f6f3d6c13", + "Name": { + "en": "Chase away" + }, + "Code": "7.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7b0819b-eceb-4f16-ae6d-2298c4df1e6f", + "Name": { + "en": "On time" + }, + "Code": "8.4.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7ed2482-6883-4a02-a992-e86c2573cc74", + "Name": { + "en": "Put down" + }, + "Code": "7.3.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7f058af-9ce6-4dd0-b555-00526975300e", + "Name": { + "en": "Special" + }, + "Code": "7.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7f4fd44-fa17-46a8-bdaf-d3399d6cb0ac", + "Name": { + "en": "Lose, misplace" + }, + "Code": "7.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b82c7ba0-9f4e-44da-bcd0-d30f5b224de5", + "Name": { + "en": "Medicine" + }, + "Code": "2.5.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b844d2f8-d3ef-4605-b038-8bc0a2cff0af", + "Name": { + "en": "Tall" + }, + "Code": "8.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8d2fdb9-22ea-4040-8abb-aeeff0399f23", + "Name": { + "en": "Kill" + }, + "Code": "2.6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8df8589-d03c-4e6d-bbeb-4f24fbf6a1dc", + "Name": { + "en": "Vertical" + }, + "Code": "8.3.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8e633f7-ca67-40cb-84e7-8b42887d161b", + "Name": { + "en": "Philosophy" + }, + "Code": "3.2.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8e66bb4-140c-45b4-89ce-d9a77b9e5d21", + "Name": { + "en": "Names of cities" + }, + "Code": "9.7.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8f59ddd-48de-4b3d-af47-687c9237ccd9", + "Name": { + "en": "Have authority" + }, + "Code": "4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8fc54d8-afd2-4ef8-b811-efb8aa7064db", + "Name": { + "en": "Beside" + }, + "Code": "8.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b917ffec-ab7e-496a-bfe4-35c567fa0785", + "Name": { + "en": "Working with electricity" + }, + "Code": "6.6.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b93bdfa4-486c-44a0-8266-557ccdc78b31", + "Name": { + "en": "What fires produce" + }, + "Code": "5.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b97531df-8256-4796-8335-f69753a8f2e3", + "Name": { + "en": "Idol" + }, + "Code": "4.9.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b9a4b336-080a-4973-a7e3-a9af10fc347c", + "Name": { + "en": "Stomach" + }, + "Code": "2.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b9c752a4-66be-493c-8955-cfa5324a54c1", + "Name": { + "en": "Practice religion" + }, + "Code": "4.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba06de9e-63e1-43e6-ae94-77bea498379a", + "Name": { + "en": "Person" + }, + "Code": "2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796", + "Name": { + "en": "Worried" + }, + "Code": "3.4.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba8d18bd-2556-47a0-aa33-3ebef3e90814", + "Name": { + "en": "Record" + }, + "Code": "3.5.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba98f891-77df-4910-8657-38f4ba79d3a5", + "Name": { + "en": "Reward" + }, + "Code": "4.7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bafa274e-8bf0-4cf7-8ce7-2c28293db809", + "Name": { + "en": "Door" + }, + "Code": "6.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb29001e-97f3-4bb4-8946-7c33b9835fcb", + "Name": { + "en": "Brother, sister" + }, + "Code": "4.1.9.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb2a112f-af6f-4a54-bbf0-ba7b8289e58b", + "Name": { + "en": "Attract" + }, + "Code": "3.4.1.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb4e0a69-db20-4757-beff-5dcb1c5e0f92", + "Name": { + "en": "Oppress" + }, + "Code": "4.7.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb8ddf5f-707d-46c0-aff4-45683d26fd68", + "Name": { + "en": "Primary cases" + }, + "Code": "9.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bba30b56-6cd8-4542-81ab-f983cf1354bd", + "Name": { + "en": "Far" + }, + "Code": "8.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbb21324-089d-4368-a2ac-37c6bbfcbffc", + "Name": { + "en": "Both" + }, + "Code": "8.1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbb897b5-f09b-4263-9f81-826ca61084f1", + "Name": { + "en": "Cleaning" + }, + "Code": "5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbc5b3a2-4c6e-4d07-849b-4d616615a794", + "Name": { + "en": "Past" + }, + "Code": "8.4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbd3c3f1-7387-4ec6-a75d-66c1355a94ef", + "Name": { + "en": "Hoofed animals" + }, + "Code": "1.6.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc61bd8d-295b-4965-a183-703d21a56996", + "Name": { + "en": "Title, name of honor" + }, + "Code": "4.5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db", + "Name": { + "en": "Eye" + }, + "Code": "2.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc96b3e3-6185-4925-b79e-8f0f9555bfb7", + "Name": { + "en": "Language" + }, + "Code": "3.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc9d763c-e4fe-48ab-ad44-87a36f6cc06f", + "Name": { + "en": "Criticize" + }, + "Code": "3.5.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bca1af45-7621-43c0-9152-fac0018e5319", + "Name": { + "en": "Drive along" + }, + "Code": "7.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb", + "Name": { + "en": "Next to" + }, + "Code": "8.5.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bce3f390-452c-4ca9-8c36-5fbcfd6b4755", + "Name": { + "en": "Change behavior" + }, + "Code": "4.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd002dfa-e842-47d6-b11b-3c213cbf133a", + "Name": { + "en": "Fetus" + }, + "Code": "2.6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd31529c-ab67-419b-89a4-949aee8b3b11", + "Name": { + "en": "Act harshly" + }, + "Code": "4.7.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd4a2527-f66c-4f48-922e-8b180bba8ef6", + "Name": { + "en": "Household equipment" + }, + "Code": "5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd7d0c9c-791e-4c34-b9ed-ebddad8f9724", + "Name": { + "en": "Judge, render a verdict" + }, + "Code": "4.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd9bb361-3c12-4c70-8098-40b0df9824ce", + "Name": { + "en": "Lack respect" + }, + "Code": "4.5.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd9de99f-6a92-47ee-b6bc-e9877ea21202", + "Name": { + "en": "Find" + }, + "Code": "7.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bdaecf2f-d0fa-49f7-891e-bcb0a31ae630", + "Name": { + "en": "After" + }, + "Code": "8.4.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bddc70ea-d46f-4e4b-83a1-a47bea858dd6", + "Name": { + "en": "Front" + }, + "Code": "8.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be280123-dda6-49a0-bd8c-5e2855b56159", + "Name": { + "en": "Plant a field" + }, + "Code": "6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be2f2785-7219-4a35-b8d3-aa56b9b78514", + "Name": { + "en": "Multiple things moving" + }, + "Code": "7.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be3559d9-d69f-4e06-8184-071c35aa2e10", + "Name": { + "en": "Without cause" + }, + "Code": "9.6.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be4a63e7-f4ba-4de2-be69-d26219d99cb6", + "Name": { + "en": "Kick" + }, + "Code": "7.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be4ab208-1fa0-463f-9ca0-4c7e3e03aafd", + "Name": { + "en": "Lifting tool" + }, + "Code": "6.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be89e0ba-4c6a-4986-ac0d-859a901b89a1", + "Name": { + "en": "Imagine" + }, + "Code": "3.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf007cd9-925d-4073-a1d6-16d64a45ca25", + "Name": { + "en": "Subjugate" + }, + "Code": "4.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf0b24d2-4bd6-4e9c-8775-a623ace8db56", + "Name": { + "en": "Spice" + }, + "Code": "5.2.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf0bdeeb-564d-407b-8bdf-31221aff7364", + "Name": { + "en": "Appoint, delegate" + }, + "Code": "4.5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf1f9360-6dd4-4ee3-b9f8-a5539baeb53b", + "Name": { + "en": "Growing flowers" + }, + "Code": "6.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf25931d-4760-4c66-abe8-c05a6dc5adbe", + "Name": { + "en": "Be in water" + }, + "Code": "1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf5175f6-fbe4-4ac6-9041-f8aa78b7ac78", + "Name": { + "en": "Execute" + }, + "Code": "4.7.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf6e1719-11ee-4ace-9c84-72019c01aabc", + "Name": { + "en": "Spring, well" + }, + "Code": "1.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf9606ec-9a8e-4822-8bfd-d5eebc58c65b", + "Name": { + "en": "Dark" + }, + "Code": "8.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1", + "Name": { + "en": "Rain" + }, + "Code": "1.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfbfb9b5-363d-4767-a5cb-1b11b348efd6", + "Name": { + "en": "None, nothing" + }, + "Code": "8.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfe8902a-32a7-4092-93b2-9dcf3dce205f", + "Name": { + "en": "Upset" + }, + "Code": "3.4.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfeba2a4-4479-49e9-838c-3baa2ad0fcae", + "Name": { + "en": "Type, kind" + }, + "Code": "8.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c01bbcef-7d89-4753-bafd-3a7f23648982", + "Name": { + "en": "Doctor, nurse" + }, + "Code": "2.5.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c029eed8-2ec0-4f6f-aa22-3a066bb23ea6", + "Name": { + "en": "And, also" + }, + "Code": "9.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c05bf8c3-78f2-4ec5-b0d7-32d4963a5794", + "Name": { + "en": "Made of, material" + }, + "Code": "8.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c09eedd3-c4e1-4cf9-b6d1-a01624c6426a", + "Name": { + "en": "Wipe, erase" + }, + "Code": "5.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c0b7f354-a75c-41d5-a489-ae2df6364d02", + "Name": { + "en": "Travel by land" + }, + "Code": "7.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c0d903bf-6502-45dd-9dd8-cff7f022c696", + "Name": { + "en": "Count" + }, + "Code": "8.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c0f4715e-55c9-4379-ab6f-ad561a5e7151", + "Name": { + "en": "Believe" + }, + "Code": "3.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c103d339-24f2-45c6-8539-d3c445e15c49", + "Name": { + "en": "Prompters of attention " + }, + "Code": "9.6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1144a6e-3fce-4084-93d6-6f305eda8b1f", + "Name": { + "en": "Prosperity" + }, + "Code": "4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c13ca251-6103-4475-85af-933311923f2c", + "Name": { + "en": "Above" + }, + "Code": "8.5.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c16334a0-be29-4a1e-a870-4cb3f1df984d", + "Name": { + "en": "Gather" + }, + "Code": "7.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1a63ba2-1db6-410d-a4ed-5f64d1798bc1", + "Name": { + "en": "Tide" + }, + "Code": "1.3.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1a70060-ba04-4f16-879e-5563492aee02", + "Name": { + "en": "Rich" + }, + "Code": "6.8.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1c1dcb4-8fe5-43ac-9b91-b2b2bc33de5b", + "Name": { + "en": "Threaten" + }, + "Code": "3.3.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1ceebe1-1274-40c1-a932-696265d9d412", + "Name": { + "en": "Yard" + }, + "Code": "6.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c21c28e8-9731-4ee0-acbb-32501bf8abd1", + "Name": { + "en": "Crocodile" + }, + "Code": "1.6.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c223335b-4803-4f1b-bf4d-f1ee077513cf", + "Name": { + "en": "Private, public" + }, + "Code": "4.1.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2630384-2f72-4a96-baed-3fff03383362", + "Name": { + "en": "Harvest" + }, + "Code": "6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c27b87cf-1211-4df2-96b1-12c416edabbe", + "Name": { + "en": "Humor" + }, + "Code": "4.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2b720f5-1123-446e-9f60-088a3272b889", + "Name": { + "en": "Take time" + }, + "Code": "8.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2dbe83a-d638-45ac-a6d5-5f041b9dde71", + "Name": { + "en": "Disabled" + }, + "Code": "2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2ec9cee-7fe3-44f2-9008-c8b42f6f78dd", + "Name": { + "en": "Family names" + }, + "Code": "9.7.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2f01aa8-9f94-43c9-9ada-b1e4a60aba07", + "Name": { + "en": "Arm" + }, + "Code": "2.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c345f278-91ff-463d-b9a6-8abac8a267eb", + "Name": { + "en": "Grass, herb, vine" + }, + "Code": "1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c358b041-7a1a-43d6-8e61-26b9507f559f", + "Name": { + "en": "Meet together" + }, + "Code": "4.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c35cba91-742c-4b98-b848-dfd520d959cf", + "Name": { + "en": "Touch" + }, + "Code": "7.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74", + "Name": { + "en": "Goat" + }, + "Code": "6.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c3b808d4-d94e-4c8e-b7b2-87b4f4a83198", + "Name": { + "en": "Clothes for special occasions" + }, + "Code": "5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c3ddfc77-e3a6-450e-a853-111f5595df87", + "Name": { + "en": "Moods" + }, + "Code": "9.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c3f20ce7-d30e-40fd-af8a-713a65c46cd0", + "Name": { + "en": "Bow" + }, + "Code": "7.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c4330001-83ca-485d-8b9b-09f7e1be60cc", + "Name": { + "en": "Interpreting messages" + }, + "Code": "3.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c4b110cf-d968-4bc6-ac0c-7e70cbad2756", + "Name": { + "en": "Social event" + }, + "Code": "4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c4fdb9ce-93cc-405b-b673-4058821bf794", + "Name": { + "en": "Clock, watch" + }, + "Code": "8.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c5282457-be5f-4ce9-a802-91140cb0a22b", + "Name": { + "en": "Limb" + }, + "Code": "2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc", + "Name": { + "en": "Mining" + }, + "Code": "6.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c5b8c936-1e01-4e86-9145-a2b721ec9e39", + "Name": { + "en": "Dig" + }, + "Code": "7.8.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c60cf6a1-7868-4536-ac73-387bfa26e04b", + "Name": { + "en": "Rebel against authority" + }, + "Code": "4.5.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6132280-d2aa-46f8-9e94-b087dbda09cb", + "Name": { + "en": "Balance" + }, + "Code": "7.2.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6688928-6694-4264-8048-a60b665b5793", + "Name": { + "en": "Tobacco" + }, + "Code": "5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6b62d63-b355-46c9-a8c7-e0a0bf112a9e", + "Name": { + "en": "Infrastructure" + }, + "Code": "6.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6c772af-7b6b-4393-b0da-5b4a329d3426", + "Name": { + "en": "Quantity" + }, + "Code": "8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c72985cf-b07f-4ed5-873a-a2209929667e", + "Name": { + "en": "States" + }, + "Code": "8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c753fc8b-22ae-4e71-807f-56fb3ebd3cdd", + "Name": { + "en": "Sexual relations" + }, + "Code": "2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7990233-ef2e-4ea6-8d1e-ccf56e540394", + "Name": { + "en": "Farmland" + }, + "Code": "6.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c79d49f1-74ec-4dba-a5aa-5e861af63d05", + "Name": { + "en": "Blame" + }, + "Code": "3.5.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c1c25a-d89d-4720-846c-d6e1dd723a17", + "Name": { + "en": "Cooking oil" + }, + "Code": "5.2.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c2d82e-d86c-4bf3-81a1-82772e87d709", + "Name": { + "en": "Between" + }, + "Code": "8.5.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c3aa7d-a4b5-45af-9a31-a640179e8fa4", + "Name": { + "en": "Attribution of an attribute" + }, + "Code": "9.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c85346-158d-4881-839d-9a6a8e47209b", + "Name": { + "en": "Move" + }, + "Code": "7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7ccc5bb-181d-420f-8665-64793fefb37b", + "Name": { + "en": "Perfect" + }, + "Code": "8.3.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7dbd50e-0ff5-42af-a7a9-9eaf03671c49", + "Name": { + "en": "Convenient" + }, + "Code": "8.3.7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c81004a7-499e-4e05-84c8-3d74a17e97fd", + "Name": { + "en": "Care for the teeth" + }, + "Code": "5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c817af65-7cc8-4105-a8ed-47067d97b73b", + "Name": { + "en": "Clothes for special people" + }, + "Code": "5.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8185ca6-567a-40ef-939f-ffefdd9a4770", + "Name": { + "en": "Forever" + }, + "Code": "8.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c82fa28f-7e26-489e-a244-4d69cea87b94", + "Name": { + "en": "Work and occupation" + }, + "Code": "6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8595a5f-4dde-4260-b8d8-265d0554ce93", + "Name": { + "en": "Win" + }, + "Code": "4.8.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8602dc5-5c91-480a-b5ce-1c82fe3da83a", + "Name": { + "en": "Tooth" + }, + "Code": "2.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c880c81f-65dc-4d93-8c39-22920fdbe4c7", + "Name": { + "en": "Wool production" + }, + "Code": "6.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c888c7ac-8cf4-49d2-a33e-20d19d84c47b", + "Name": { + "en": "Pig" + }, + "Code": "6.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8aea8b2-4088-4d20-a0d2-45c2ad974ee1", + "Name": { + "en": "Furrow" + }, + "Code": "8.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8c74ec6-3f7a-4b45-b0e9-399b97c4a800", + "Name": { + "en": "Free to do what you want" + }, + "Code": "3.3.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8c8b1f6-a898-4d5b-a1ce-fa7284915e8f", + "Name": { + "en": "Disaster" + }, + "Code": "4.4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8d94c8f-db0b-4016-bdd2-e41a2eae4288", + "Name": { + "en": "Region" + }, + "Code": "4.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8e3c39c-d895-4e42-8e1e-1574137ba016", + "Name": { + "en": "Types of houses" + }, + "Code": "6.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c956a98a-4c85-4c85-868d-f27f44bd6422", + "Name": { + "en": "Predict" + }, + "Code": "3.2.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c96ac1eb-12f2-47af-9e96-9d99fce7e8f5", + "Name": { + "en": "Receive" + }, + "Code": "7.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c9741b97-ad50-465c-a4ca-b21d488f45fe", + "Name": { + "en": "Physical, non-physical" + }, + "Code": "9.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c982941c-0cff-47aa-9e08-5234a8e0d6e8", + "Name": { + "en": "Growing potatoes" + }, + "Code": "6.2.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c9aee4df-ac3e-4159-bd1a-060db1a5f070", + "Name": { + "en": "Communication" + }, + "Code": "3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c9b5f83e-529d-45af-949f-4cc6b0591b66", + "Name": { + "en": "Improve" + }, + "Code": "8.3.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca0f9b9b-31fc-4ae6-9563-abedc4a5af98", + "Name": { + "en": "Beneficiary (of a patient)" + }, + "Code": "9.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca495e57-a8e0-4294-bfe3-7b7995dc96c7", + "Name": { + "en": "Don\u0027t think so, doubt it" + }, + "Code": "9.4.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca511a0c-5628-4726-8a6e-aa9fa3b73bfc", + "Name": { + "en": "Witness, testify" + }, + "Code": "4.7.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca752706-1c9e-43e7-bd17-845c4736ccd8", + "Name": { + "en": "Approximate" + }, + "Code": "8.1.5.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca91e41a-81c3-4c96-87e6-f67477fcd686", + "Name": { + "en": "Rear a child" + }, + "Code": "2.6.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d", + "Name": { + "en": "Destroy" + }, + "Code": "7.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca9c215a-e568-4d09-b3a9-b5727cd831d6", + "Name": { + "en": "Bury" + }, + "Code": "2.6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cab8e9dc-5e4f-4a12-8b3d-4acbb7ad2059", + "Name": { + "en": "Misunderstand" + }, + "Code": "3.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cac1d7a8-7382-466e-ba4a-ba2bfe50f13b", + "Name": { + "en": "Mass communication" + }, + "Code": "3.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe", + "Name": { + "en": "Growing crops" + }, + "Code": "6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb783ad9-4650-416e-bf63-88c4ca43fe6a", + "Name": { + "en": "Reputation" + }, + "Code": "4.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb95189c-8c74-465b-af07-48e08dbf7c39", + "Name": { + "en": "Emotion" + }, + "Code": "3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb99a086-8c6d-4f90-81db-6afa69ae5455", + "Name": { + "en": "Animal sounds" + }, + "Code": "1.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cba1f6cc-58ac-4d09-aa6a-1661f5945787", + "Name": { + "en": "Understandable" + }, + "Code": "3.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cba6876c-5b48-42f4-ae0a-7fbe9bb971ef", + "Name": { + "en": "Shadow" + }, + "Code": "8.3.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4", + "Name": { + "en": "Laugh" + }, + "Code": "3.5.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cbc24a98-1c64-467e-98aa-251a28e4c0b8", + "Name": { + "en": "Defecate, feces" + }, + "Code": "2.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cbcff912-e1c2-4d9b-9938-85d73e7e7265", + "Name": { + "en": "Some" + }, + "Code": "8.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cc121082-2d07-484e-8a6f-7382f7d71f39", + "Name": { + "en": "Stubborn" + }, + "Code": "3.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cc3f1dc8-a31e-4459-ba13-f82b45df37b5", + "Name": { + "en": "Report" + }, + "Code": "3.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cc6f100a-5220-4f53-801c-b1fdcc619608", + "Name": { + "en": "Old, not young" + }, + "Code": "8.4.6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cca44b46-437c-42ee-93d7-a8820d61d0c8", + "Name": { + "en": "Legal personnel" + }, + "Code": "4.7.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ccbbd16f-58c5-45c1-bfff-1fba64d9740e", + "Name": { + "en": "Aspect--dynamic verbs" + }, + "Code": "9.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cce98603-ff8f-4213-945a-bd6746716139", + "Name": { + "en": "Land" + }, + "Code": "1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd01db6c-8aa6-42d1-93ac-05e81a8be523", + "Name": { + "en": "Serve food" + }, + "Code": "5.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd403434-a5a1-4700-8ad3-b7c9aabd99d9", + "Name": { + "en": "Valley" + }, + "Code": "1.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd4300c9-265e-4457-8e33-4e0c9a4d4ba8", + "Name": { + "en": "Value" + }, + "Code": "8.3.7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd436263-30a3-498c-93f6-3d5682f7f7c0", + "Name": { + "en": "Commerce" + }, + "Code": "6.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd6f1b37-5bdd-4237-8827-b1c947c8e1b4", + "Name": { + "en": "Transparent" + }, + "Code": "2.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd8b2a8b-687b-42e9-91e7-cfb8812b64ee", + "Name": { + "en": "Mistake" + }, + "Code": "4.3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cde96694-79e5-44af-8d38-d988d1938e5f", + "Name": { + "en": "Working with buildings" + }, + "Code": "6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ce30eb9c-8260-476b-878c-0a078d596955", + "Name": { + "en": "Forget" + }, + "Code": "3.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ce6a862d-a4bb-4378-b14d-439806870c41", + "Name": { + "en": "Unlucky" + }, + "Code": "4.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a", + "Name": { + "en": "Self-esteem" + }, + "Code": "3.4.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ceedce41-cdef-4766-9c5e-8ff5608c5464", + "Name": { + "en": "Store the harvest" + }, + "Code": "6.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cf337287-c9fa-43d2-93c4-284f45e262c0", + "Name": { + "en": "Disease" + }, + "Code": "2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cf5f83be-2c19-4cf8-8cc5-53bd32b50530", + "Name": { + "en": "Evaluator" + }, + "Code": "9.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cf93b8e0-9f28-4485-b9d6-22293ccd73ce", + "Name": { + "en": "Lose your way" + }, + "Code": "7.2.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cfb159f7-82f6-4789-b9b4-8f611820f350", + "Name": { + "en": "Spider" + }, + "Code": "1.6.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d01f1c51-522e-4b35-81b3-00577dbfa3bd", + "Name": { + "en": "Color" + }, + "Code": "8.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d030f0c7-31a3-47da-be35-46f1eba63ae9", + "Name": { + "en": "Like, love" + }, + "Code": "3.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d067b555-e53c-4c16-bb09-5314862d8bae", + "Name": { + "en": "Drunk" + }, + "Code": "5.2.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d06dae77-134a-403f-ba88-52ecd66c0522", + "Name": { + "en": "Moss, fungus, algae" + }, + "Code": "1.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d086c2ad-2d11-4250-a25a-dc6538439db6", + "Name": { + "en": "Two" + }, + "Code": "8.1.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d0b14231-1471-41b3-aeb5-69199acaaefb", + "Name": { + "en": "Way, manner" + }, + "Code": "9.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d0dee676-f3ae-43cc-96f1-7e3bb65870f5", + "Name": { + "en": "Fit, size" + }, + "Code": "8.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d10301f3-573c-4005-ad65-1c73fb80b3b6", + "Name": { + "en": "Understand" + }, + "Code": "3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d117aa22-3f18-47c4-9683-51ecf1dc7134", + "Name": { + "en": "Parts of a plant" + }, + "Code": "1.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1687857-0f1d-4098-affb-b283a6677b6b", + "Name": { + "en": "Most, almost all" + }, + "Code": "8.1.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1aecdba-3938-4b0c-a2e6-7dc3b7cc5cde", + "Name": { + "en": "Produce wealth" + }, + "Code": "6.8.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1b3d0f0-5319-4a6a-8a70-2179a8e76d22", + "Name": { + "en": "Need" + }, + "Code": "8.1.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1e58469-52e3-4b50-b0de-00bf9f09f8d4", + "Name": { + "en": "Grandfather, grandmother" + }, + "Code": "4.1.9.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2001c9c-3c37-4910-8b8a-adcffc6fbf26", + "Name": { + "en": "Across" + }, + "Code": "8.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d21db541-4122-465f-9db5-4c76f5e84426", + "Name": { + "en": "Earn" + }, + "Code": "6.8.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d25f7907-091e-4cf7-bd8c-bdb97278b616", + "Name": { + "en": "Hit" + }, + "Code": "7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d27a5602-ece1-452e-9ed6-7261082dc8b8", + "Name": { + "en": "Soon" + }, + "Code": "8.4.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2b61570-af54-44f3-846e-6d7ec9d3737f", + "Name": { + "en": "Room" + }, + "Code": "6.5.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2ca3194-e393-480e-ae1d-dd67bed55227", + "Name": { + "en": "Growth of plants" + }, + "Code": "1.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2e73238-ff99-4ba3-8ce6-d8ae98721710", + "Name": { + "en": "Agree to do something" + }, + "Code": "3.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2f05cc8-1a3f-4bc2-9a2b-38174bb84091", + "Name": { + "en": "Mute" + }, + "Code": "2.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2f516f4-df1c-44f6-8704-76dd52201317", + "Name": { + "en": "Foreigner" + }, + "Code": "4.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d345142f-d51e-4023-a25a-2a4c0f1fbcbf", + "Name": { + "en": "Land preparation" + }, + "Code": "6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d395edc8-fb58-4ba4-8446-dacf8ea0477a", + "Name": { + "en": "Sweat" + }, + "Code": "2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d39b2432-87d5-4f3e-8101-de06001b42d6", + "Name": { + "en": "Each other" + }, + "Code": "9.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d4521b0f-0703-48cc-94a0-f42ccc09959c", + "Name": { + "en": "Indefinite pronouns" + }, + "Code": "9.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d4769748-7c4e-4359-9da5-2ea64d5948d9", + "Name": { + "en": "Milk products" + }, + "Code": "5.2.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d47b69e0-ab4a-4111-aec3-2c889a4e70b3", + "Name": { + "en": "Create" + }, + "Code": "9.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d49f2c9d-1b4a-4370-b107-71f9b9fbdc8e", + "Name": { + "en": "Neighbor" + }, + "Code": "4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d502512c-966b-4752-8636-716fb29facfe", + "Name": { + "en": "Sleep" + }, + "Code": "5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d50f3921-fcea-4ac9-b64a-25bf47dc3292", + "Name": { + "en": "Volcano" + }, + "Code": "1.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d574c970-6834-4566-ae37-f42c7e95483b", + "Name": { + "en": "Heavy" + }, + "Code": "8.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d586a164-ac8f-4356-8aa8-07721c2b5e09", + "Name": { + "en": "Letter" + }, + "Code": "3.5.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d59a84e1-5e12-4cb7-b72b-15c51810ad48", + "Name": { + "en": "Disunity" + }, + "Code": "4.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d60faf11-cc6e-48db-8a13-82f86d78ab00", + "Name": { + "en": "Physical actions" + }, + "Code": "7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d68911f6-6507-483a-b015-44726fdf868a", + "Name": { + "en": "Work" + }, + "Code": "6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d6c29733-beeb-4fc9-975f-5e78a8acc273", + "Name": { + "en": "Work well" + }, + "Code": "6.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7140538-fb99-4af9-8398-8c31a1b79fb5", + "Name": { + "en": "Prevent from moving" + }, + "Code": "7.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7349bac-efc0-41ba-ba60-f23d38e97a36", + "Name": { + "en": "Informal justice" + }, + "Code": "4.6.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d74914e7-e329-49d4-8513-ec8d850241e4", + "Name": { + "en": "Partly" + }, + "Code": "9.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7861def-70c1-470f-bca6-8230cbbaa3e9", + "Name": { + "en": "Look" + }, + "Code": "2.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7ae7208-7869-46e3-90c1-676342c3d7af", + "Name": { + "en": "Cheat" + }, + "Code": "6.8.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7e0ed88-6d5a-44cc-a0fe-070a5aab3e60", + "Name": { + "en": "Fish with hooks" + }, + "Code": "6.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7e4bf3e-e539-43bc-bb43-3ae0980ffb86", + "Name": { + "en": "Shut, close" + }, + "Code": "7.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7e4e538-039f-47bb-aa42-a2cf455668cc", + "Name": { + "en": "Growing wheat" + }, + "Code": "6.2.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d80360f9-7319-40a7-a2bc-fd8718711ba4", + "Name": { + "en": "Before" + }, + "Code": "8.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8366daf-ae1d-4b2c-a447-478c73580639", + "Name": { + "en": "Method" + }, + "Code": "6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8389a63-8b39-4e23-8528-cd756dae2f5c", + "Name": { + "en": "Working with paper" + }, + "Code": "6.6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d83ebe2c-c1d6-49ec-a4a9-1cdced843387", + "Name": { + "en": "Lose consciousness" + }, + "Code": "2.5.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d853597b-f3ed-470b-b6dd-8fe93b8e43eb", + "Name": { + "en": "Quiet" + }, + "Code": "2.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d85391fa-680a-4715-81ac-c0835acac8c5", + "Name": { + "en": "Milk" + }, + "Code": "6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d85d0838-a9e4-4787-8fce-7d0466bc24b9", + "Name": { + "en": "Number of times" + }, + "Code": "8.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8631167-08bd-4571-bc7c-57a4407da51c", + "Name": { + "en": "Politics" + }, + "Code": "4.6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d88d862c-01d4-4b43-9fbe-59208922e022", + "Name": { + "en": "Wait" + }, + "Code": "7.2.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8dfa6fc-84ea-4178-b4f5-95e0c113140a", + "Name": { + "en": "Dissociation" + }, + "Code": "9.6.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f", + "Name": { + "en": "Group of things" + }, + "Code": "8.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d90db6d4-6c78-4ac8-9764-0cafa79b8b31", + "Name": { + "en": "Army" + }, + "Code": "4.8.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d90e71bf-2898-4501-9d09-c518999f83e2", + "Name": { + "en": "Names of mountains" + }, + "Code": "9.7.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d95ed463-ac64-4004-9c3b-0fce2f7639be", + "Name": { + "en": "Move out" + }, + "Code": "7.2.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d975a233-1e48-4313-8bed-aada7460487e", + "Name": { + "en": "Put aside" + }, + "Code": "7.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d98c1c67-b70e-4a35-89db-2e744bd5197f", + "Name": { + "en": "Head" + }, + "Code": "2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d9b9db39-d87e-4d04-8298-1f1b969dbda1", + "Name": { + "en": "General adverbs" + }, + "Code": "9.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d9cb2e69-133d-4525-bca5-50b0f3402cbb", + "Name": { + "en": "Own, possess" + }, + "Code": "6.8.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d9f336cf-0682-4702-ab94-5ade755ddc64", + "Name": { + "en": "Move something in a direction" + }, + "Code": "7.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da203891-90a2-48f0-955a-8a80b6c62af9", + "Name": { + "en": "Arrange an event" + }, + "Code": "6.1.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da39c0d9-a5c1-4f10-bd3b-4e988abcab5a", + "Name": { + "en": "Sorry" + }, + "Code": "3.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da41ea1f-dd09-421d-a1a5-174ff43f4eff", + "Name": { + "en": "Classifiers" + }, + "Code": "9.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da988f73-fc9d-4a23-b70d-22299a7c6097", + "Name": { + "en": "Have, of" + }, + "Code": "9.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dae6488c-7fea-4fa3-84c9-b611d017b6a5", + "Name": { + "en": "Wash clothes" + }, + "Code": "5.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "daefd275-98e3-4534-a991-c7d396b54c69", + "Name": { + "en": "Postpone" + }, + "Code": "8.4.5.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dafc4b97-2b70-4986-b2b4-c05eb060786d", + "Name": { + "en": "Accept" + }, + "Code": "3.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "db2232d9-8b17-4920-936f-2b6249c6f7fa", + "Name": { + "en": "Steal" + }, + "Code": "6.8.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dbebc3bd-2d01-4d62-a009-866c18ee3527", + "Name": { + "en": "Miscarriage" + }, + "Code": "2.6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc177f3c-d0fd-4232-adf1-a77b339cdbb2", + "Name": { + "en": "Building" + }, + "Code": "6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "Name": { + "en": "Sun" + }, + "Code": "1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc1ab28c-3e1e-474c-8359-2548b7ad5595", + "Name": { + "en": "Describe" + }, + "Code": "3.5.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc71598d-21a2-4598-9c12-13978796d2c9", + "Name": { + "en": "Sweep, rake" + }, + "Code": "5.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dd12ac0f-55cc-4c79-a50c-d23cc7ea60b3", + "Name": { + "en": "Bathe" + }, + "Code": "5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dd3e872a-fb50-4204-9646-7a24c644013b", + "Name": { + "en": "Names of languages" + }, + "Code": "9.7.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dd830047-d7f5-4010-a8ea-ae20468a0cbf", + "Name": { + "en": "Greedy" + }, + "Code": "6.8.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ddc96103-4bc5-44d3-9412-c57569d2a9f5", + "Name": { + "en": "Festival, show" + }, + "Code": "4.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ddef260e-b183-47f7-837e-165ffbd1af2c", + "Name": { + "en": "Put in front" + }, + "Code": "7.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de1ffd73-af3b-47a2-8e98-ac1659a84cac", + "Name": { + "en": "Sensible" + }, + "Code": "4.3.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de544ebd-9f94-4831-8887-944c3bbbc254", + "Name": { + "en": "Days of the week" + }, + "Code": "8.4.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de6b15d3-6409-4998-b03d-903133f4ad70", + "Name": { + "en": "Sing" + }, + "Code": "4.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de7b8df5-83a7-4456-a63a-1075ff17dbaf", + "Name": { + "en": "Blemish" + }, + "Code": "8.3.7.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ded0e58d-8ad7-4909-b0f1-b9ab9c10bb0d", + "Name": { + "en": "King\u0027s family" + }, + "Code": "4.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "deff977c-a664-4456-9d44-a5127dd2a7d1", + "Name": { + "en": "Wander" + }, + "Code": "7.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df149819-608f-46cd-ba0f-55f1d9d2e8ec", + "Name": { + "en": "Speed" + }, + "Code": "8.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df2b9d7a-9b90-4704-8bc3-11dcffe985f4", + "Name": { + "en": "Skin" + }, + "Code": "2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df2ee830-0668-43d7-8a32-e2fd3e7b31d8", + "Name": { + "en": "Tense" + }, + "Code": "9.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df47f55d-b15d-4261-881e-3c4b0dc6d9be", + "Name": { + "en": "Extend" + }, + "Code": "7.3.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df647b1a-ed79-4a8e-b781-56ed25fe4405", + "Name": { + "en": "Buddhism" + }, + "Code": "4.9.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df9ee372-e92e-4f73-aac5-d36908497698", + "Name": { + "en": "Think" + }, + "Code": "3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dfdcfa24-b013-4566-af4a-28ef1dfd4742", + "Name": { + "en": "Measure" + }, + "Code": "8.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dfe59469-d1bf-4ed2-9faa-6d5af52eefdd", + "Name": { + "en": "Fill, cover" + }, + "Code": "7.5.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e033ca92-ee8c-4ab9-9368-5f6f4e942987", + "Name": { + "en": "Contact" + }, + "Code": "3.5.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e072bd42-eb0f-48c8-97fd-ae9ca8bc3a75", + "Name": { + "en": "Fight for something good" + }, + "Code": "4.8.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e080687b-0900-4dd0-9677-e3aaa3eae641", + "Name": { + "en": "Explain" + }, + "Code": "3.5.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e08e252a-9227-42e4-bcb8-b803d25071b6", + "Name": { + "en": "Embarrassed" + }, + "Code": "3.4.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0a8e1d9-c43e-4092-a8dc-476a3417924e", + "Name": { + "en": "Confident" + }, + "Code": "3.4.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0ad6bb1-d422-408a-83f8-f1a7661ed225", + "Name": { + "en": "Up" + }, + "Code": "8.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0b00a13-8648-4635-afe5-0be3c0b6a05c", + "Name": { + "en": "Maybe" + }, + "Code": "9.4.4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0c32642-7c51-4e23-a776-f63f2f2f936d", + "Name": { + "en": "Uncertain" + }, + "Code": "9.4.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0e83cc9-b876-47f6-8e66-60c9c505b927", + "Name": { + "en": "Danger" + }, + "Code": "4.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0e8af5a-04c1-49a1-9955-9a2af7879068", + "Name": { + "en": "Secret" + }, + "Code": "3.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e10b9449-08a3-4c13-aff2-31486749b62f", + "Name": { + "en": "Investigate a crime" + }, + "Code": "4.7.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e11d6360-6fa9-45a9-a23e-2252a301cf86", + "Name": { + "en": "Leaven" + }, + "Code": "5.2.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e173ea34-c216-4702-aa24-ca9ab40d48dd", + "Name": { + "en": "Reason" + }, + "Code": "9.6.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e173f481-ec57-4d1c-b517-be38ccb038f5", + "Name": { + "en": "Leave an organization" + }, + "Code": "4.2.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e1ac83c2-352f-4a2e-9612-99e66d6d3d0c", + "Name": { + "en": "Slave" + }, + "Code": "4.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e1dd83dd-955a-4bc7-a761-fc91555da1f8", + "Name": { + "en": "Completely" + }, + "Code": "9.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e1e0b800-85ad-4886-abe5-9f67c022a5ed", + "Name": { + "en": "End, point" + }, + "Code": "8.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e22d860a-d207-4649-8ab5-4592b838febb", + "Name": { + "en": "Sea mammal" + }, + "Code": "1.6.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e27adda9-0761-4b7f-abbf-24938ce1c01a", + "Name": { + "en": "Drama" + }, + "Code": "4.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e2806bed-b450-4469-900a-1afa7ded2224", + "Name": { + "en": "Outer part" + }, + "Code": "8.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e28f3f79-d4a5-402c-8a70-196856791078", + "Name": { + "en": "Do" + }, + "Code": "9.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e2d3294b-4463-48bb-95e4-8c9b5238ecec", + "Name": { + "en": "Mock" + }, + "Code": "3.5.1.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e311cc3a-a387-449e-a05a-07ed9678411d", + "Name": { + "en": "Religious things" + }, + "Code": "4.9.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e3300171-d7b2-4fb4-a103-e8fdcf3ff2ed", + "Name": { + "en": "Area of knowledge" + }, + "Code": "3.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e3a6f918-4b0f-4515-bd6c-4f3370bcbf67", + "Name": { + "en": "Join an organization" + }, + "Code": "4.2.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e43c9905-ae67-4627-8b10-bd7a453828b4", + "Name": { + "en": "Stick together" + }, + "Code": "7.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e442afe1-e7cd-4ab2-b456-963e2e041a1e", + "Name": { + "en": "Move slowly" + }, + "Code": "7.2.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e4517880-aa2d-4977-b55a-dcb0b6d1f533", + "Name": { + "en": "Beautiful" + }, + "Code": "2.3.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e45b8bac-9623-4f84-a113-9dec13a8db64", + "Name": { + "en": "Talk about a subject" + }, + "Code": "3.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e482bb5a-5a32-4bc5-a0de-32cbe0aa7908", + "Name": { + "en": "Speech style" + }, + "Code": "3.5.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e496a6d3-a00c-470e-81c3-314f3f97840e", + "Name": { + "en": "Food from leaves" + }, + "Code": "5.2.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e4bacc52-dcaa-4e68-b736-f0b5d9aeca41", + "Name": { + "en": "Class, lesson" + }, + "Code": "3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e4e05724-01ec-4c61-90f0-b8658cc8ca51", + "Name": { + "en": "Something used to see" + }, + "Code": "2.3.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e5020b79-6fb0-4be4-a359-d4f899da5c7e", + "Name": { + "en": "Quarrel" + }, + "Code": "3.5.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e545baab-581d-4af8-81f2-5a884e272349", + "Name": { + "en": "Beast of burden" + }, + "Code": "6.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e54cd744-d106-4bcf-bd07-b8783c075c21", + "Name": { + "en": "Fashionable" + }, + "Code": "3.4.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00", + "Name": { + "en": "Divide into pieces" + }, + "Code": "7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6221c7a-4608-4114-ba9f-532a3b943113", + "Name": { + "en": "Parts of a bird" + }, + "Code": "1.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e626c65e-eb79-4230-b07a-a6d975d3fe3d", + "Name": { + "en": "Mouth" + }, + "Code": "2.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e64e647e-a5fb-463c-8eef-44879e2e70b2", + "Name": { + "en": "Markers expecting a negative answer" + }, + "Code": "9.4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6b21531-b7d0-4e37-b01b-3ca49a285168", + "Name": { + "en": "Drought" + }, + "Code": "1.1.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6c9fe4c-199e-4934-b622-739a85b0830d", + "Name": { + "en": "Organize" + }, + "Code": "7.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6cf2c28-7630-41d7-835d-bd171ab67378", + "Name": { + "en": "Altruistic, selfless" + }, + "Code": "4.3.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6ec43ef-0100-4cf4-a047-c575ee8613b4", + "Name": { + "en": "Control" + }, + "Code": "3.3.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7119442-3063-422a-a03e-d02e570ccd0f", + "Name": { + "en": "Not have" + }, + "Code": "7.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e76227e8-4a04-4fbd-a16e-5baa3d9e97a9", + "Name": { + "en": "Animal actions" + }, + "Code": "1.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e791df50-8880-4080-a5ee-d4e58bb7b8ca", + "Name": { + "en": "Free time" + }, + "Code": "4.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7c58c11-2911-446a-96b0-2113247f3792", + "Name": { + "en": "Kinship" + }, + "Code": "4.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7caa24f-155d-47cd-946d-cc0d06dfc764", + "Name": { + "en": "Love" + }, + "Code": "4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7e5dbf2-6d5b-4869-b357-8a7860c29002", + "Name": { + "en": "Solutions of water" + }, + "Code": "1.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7f94aea-ba50-481d-b640-d5cd8bdedc72", + "Name": { + "en": "Urinate, urine" + }, + "Code": "2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e83586c6-8d8e-4a23-bdda-a1731a5ece22", + "Name": { + "en": "Defend against accusation" + }, + "Code": "4.7.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e836b01b-6c1a-4d41-b90a-ea5f349f88d4", + "Name": { + "en": "Air" + }, + "Code": "1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e86364ac-6fa1-4aad-a6c1-068d56b6a1f1", + "Name": { + "en": "Strong, brittle" + }, + "Code": "8.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e8ec3885-c692-4b90-a5b3-4c86da642666", + "Name": { + "en": "Names of rivers" + }, + "Code": "9.7.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e931da8a-efc1-46cb-836a-72fba4a1eb4f", + "Name": { + "en": "Take somewhere" + }, + "Code": "7.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e949f393-2a5b-4792-af8f-75138322ceee", + "Name": { + "en": "Strong" + }, + "Code": "2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e94a5cf3-1fd4-4b52-902f-bbf0ad6bac2b", + "Name": { + "en": "Only" + }, + "Code": "8.1.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e96f6860-0914-4324-9c49-48f24a0ff7f1", + "Name": { + "en": "Speak well" + }, + "Code": "3.5.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9947962-a243-4a44-a94d-64d68718d88c", + "Name": { + "en": "Independent" + }, + "Code": "4.5.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c", + "Name": { + "en": "Empty" + }, + "Code": "8.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9ef98d9-8844-4804-88a5-614493d150f5", + "Name": { + "en": "Alert" + }, + "Code": "3.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9fdc131-addb-4db6-8f79-ae0044e1eb81", + "Name": { + "en": "Sacred writings" + }, + "Code": "4.9.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea17aba7-6d4e-4dbf-89ea-84a1b1c47647", + "Name": { + "en": "Big container, volume" + }, + "Code": "8.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea2d0dc5-2cdb-4686-9f48-abe65ed295a4", + "Name": { + "en": "Move past, over, through" + }, + "Code": "7.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea46de30-a1a9-4828-84a8-9165f61f8b20", + "Name": { + "en": "Fishing" + }, + "Code": "6.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea7c06d0-5e33-4702-b6a0-51582b216fe8", + "Name": { + "en": "Distribution" + }, + "Code": "9.6.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea839451-f89e-4432-b361-3086ca4f13fd", + "Name": { + "en": "Accustomed to" + }, + "Code": "6.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eac4b58e-1fd7-4ce1-9a68-c7516470e876", + "Name": { + "en": "Realize" + }, + "Code": "3.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eaed8c63-9f97-4116-927c-19f364a99e72", + "Name": { + "en": "Unfriendly" + }, + "Code": "4.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eafdea8e-521e-4614-8fd5-e8446adf9203", + "Name": { + "en": "Debate" + }, + "Code": "3.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb00b4c2-5b87-4ef8-9548-800fc5c9b524", + "Name": { + "en": "Damage" + }, + "Code": "7.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb07e333-38d2-4ddb-9bc9-5990403600b4", + "Name": { + "en": "Fishing equipment" + }, + "Code": "6.4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb0c9e02-e4c1-4e5e-84b6-be63aaf439d5", + "Name": { + "en": "Nephew, niece" + }, + "Code": "4.1.9.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb662979-604c-455e-a2c6-a84b03a2ee3a", + "Name": { + "en": "Early" + }, + "Code": "8.4.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb821083-3fb0-441a-9f1d-ad2a9ed918d8", + "Name": { + "en": "Support" + }, + "Code": "7.3.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb842dc1-ad9c-4c1a-9eb2-a48b7f3092be", + "Name": { + "en": "Air force" + }, + "Code": "4.8.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ebac5ec8-dc4c-4b2b-a727-3ca82404cdbb", + "Name": { + "en": "Demonstrate" + }, + "Code": "3.5.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ebb5f3e5-bfe5-4a40-986a-938c1bdb9c76", + "Name": { + "en": "Terms of endearment" + }, + "Code": "9.7.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec118a28-fd23-48b3-8819-bfe1329f028d", + "Name": { + "en": "Reflect, mirror" + }, + "Code": "2.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec1bcace-fc10-45df-8e1f-29bce1ef786a", + "Name": { + "en": "Speak with others" + }, + "Code": "3.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec6f626c-e7a0-4ec7-a541-d683f20c9271", + "Name": { + "en": "Vicinity" + }, + "Code": "8.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec79e90e-ecd3-497f-bc14-ac64181f53d7", + "Name": { + "en": "Do evil to" + }, + "Code": "4.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec8e1481-827c-4554-bf50-0d3f592f3702", + "Name": { + "en": "Cloth" + }, + "Code": "6.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec90e061-e6a0-435f-8784-7269a24c670a", + "Name": { + "en": "Give pledge, bond" + }, + "Code": "6.8.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec998dc6-d509-4832-8434-d2abac34ba70", + "Name": { + "en": "Community" + }, + "Code": "4.6.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecaff061-6a12-4ad6-b818-9b140a9a3e11", + "Name": { + "en": "Design" + }, + "Code": "9.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecbdf1c5-9d7f-4446-b6a1-644a379a480b", + "Name": { + "en": "Cheap" + }, + "Code": "6.8.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecc39bc2-6336-48ca-be46-cf5e49a3c267", + "Name": { + "en": "Insect" + }, + "Code": "1.6.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecf1cce7-ed58-44bf-870a-e8579b309c54", + "Name": { + "en": "Combinative relation" + }, + "Code": "9.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecf9ebd7-f991-41df-98cd-bcf1254d5d0b", + "Name": { + "en": "Go first" + }, + "Code": "7.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed2113c8-1784-4808-ab1a-fd269f86fa99", + "Name": { + "en": "Accounting" + }, + "Code": "6.8.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed4a2ca6-c03c-4c72-9431-b72fb7294b8f", + "Name": { + "en": "Wedding" + }, + "Code": "2.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed7930df-e7b4-43c9-a11a-b09521276b57", + "Name": { + "en": "Smell" + }, + "Code": "2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed976bbe-4fb2-4365-b136-d2fce077a73f", + "Name": { + "en": "Back" + }, + "Code": "8.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "edbfc928-049c-4cb7-8c88-8e8af38287c7", + "Name": { + "en": "Romantic love" + }, + "Code": "2.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "edeb9458-3bdb-4d14-aaa1-6eb457307b9c", + "Name": { + "en": "Hortative" + }, + "Code": "9.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "edf17f72-7e7a-4f8d-a5ee-f4889492d73a", + "Name": { + "en": "Meaningless" + }, + "Code": "3.5.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee0585b1-627a-4a71-888d-b5d82619431e", + "Name": { + "en": "Names of countries" + }, + "Code": "9.7.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee446395-781b-4651-afef-cad78b71f843", + "Name": { + "en": "Reptile" + }, + "Code": "1.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee6e993c-5551-42ae-b35e-26bc6aeeb3a4", + "Name": { + "en": "Men\u0027s clothing" + }, + "Code": "5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee8a20b7-4202-489a-b8cd-bdebaf770313", + "Name": { + "en": "Alcohol preparation" + }, + "Code": "5.2.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eea7c79b-6150-4aba-8105-a94b7e6aeab7", + "Name": { + "en": "Faithful" + }, + "Code": "4.3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eec72226-106c-4825-b245-6e18110ee917", + "Name": { + "en": "Roof" + }, + "Code": "6.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eeee02e1-157e-4786-ab92-80c92e5023b8", + "Name": { + "en": "Window" + }, + "Code": "6.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eef8c50e-c391-482c-9f60-1bba2d8892b3", + "Name": { + "en": "Radio, television" + }, + "Code": "3.5.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef025cd9-dd92-442b-a8f9-fe7ac944ccec", + "Name": { + "en": "Catch" + }, + "Code": "7.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef409fc6-bd89-4cc6-ade5-abb882272313", + "Name": { + "en": "Prefer" + }, + "Code": "3.4.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef5ee2be-8a32-452a-818b-80191edb8e41", + "Name": { + "en": "Growing trees" + }, + "Code": "6.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef6d136e-ac1d-48b9-819d-252485534557", + "Name": { + "en": "Legal contract" + }, + "Code": "4.7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef860ee3-a4a5-4a42-b810-fdf41e35d151", + "Name": { + "en": "Religious person" + }, + "Code": "4.9.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef876104-eb3e-420d-9c7b-124538a7b2a6", + "Name": { + "en": "Point at" + }, + "Code": "3.5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "efd03c89-bf8b-4d46-a921-06cc06f28356", + "Name": { + "en": "Participate" + }, + "Code": "4.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "efe8e7b5-e008-4a3a-b3e1-23ae03a0083e", + "Name": { + "en": "Cutting tool" + }, + "Code": "6.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "efef45bd-26be-46f8-b85b-424be55bcdac", + "Name": { + "en": "New" + }, + "Code": "8.4.6.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "effc49dd-6322-4302-899c-4cf540f0e2e4", + "Name": { + "en": "Prepared food" + }, + "Code": "5.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f02ae505-d6b7-4b30-9d97-8505d0d1a0c7", + "Name": { + "en": "Discourse markers" + }, + "Code": "9.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0404b23-db91-46c7-87e1-9f1be0712980", + "Name": { + "en": "Fable, myth" + }, + "Code": "3.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f07f867d-808f-4750-92ca-859aea59e58c", + "Name": { + "en": "Live, stay" + }, + "Code": "5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0de6c5a-3df6-4483-8c63-2d8fcd6c97be", + "Name": { + "en": "Malnutrition, starvation" + }, + "Code": "2.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4", + "Name": { + "en": "Study" + }, + "Code": "3.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0f3c371-166e-4a66-849f-60d6fa7ad889", + "Name": { + "en": "Poetry" + }, + "Code": "3.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0fdbdfa-094e-4bec-ae19-af23d2c02ed6", + "Name": { + "en": "Contentment" + }, + "Code": "3.4.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f1373316-7917-4dca-9d33-c6b520bd4034", + "Name": { + "en": "Working with machines" + }, + "Code": "6.6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f1af3f4c-6e0e-4cfa-adcf-9dcddf05feab", + "Name": { + "en": "Guess" + }, + "Code": "3.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f2022802-4f43-4fa2-8c58-33a8b9e75895", + "Name": { + "en": "Increase" + }, + "Code": "8.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f211defe-d80f-4e40-9842-af19cb0719e7", + "Name": { + "en": "Judaism" + }, + "Code": "4.9.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f2342d42-bdc4-449c-9891-58f90318b9f1", + "Name": { + "en": "News, message" + }, + "Code": "3.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f29dccae-1654-4eb7-8aae-04f7df4fe90c", + "Name": { + "en": "Right, proper" + }, + "Code": "8.3.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f2d0f288-5bbe-4fa0-9e8f-ddcc74891701", + "Name": { + "en": "Mourn" + }, + "Code": "2.6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f352a437-58f2-4920-aec3-eda8041f7447", + "Name": { + "en": "First" + }, + "Code": "8.4.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3627c41-5daf-4f73-ac42-8a0522035e0b", + "Name": { + "en": "Medicinal plants" + }, + "Code": "2.5.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3654a7f-d16e-4870-9ef0-4b4268faeffb", + "Name": { + "en": "Discontent" + }, + "Code": "3.4.2.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f38f8344-838f-44ba-b103-22289c2d2793", + "Name": { + "en": "Wet" + }, + "Code": "1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f39b14c4-52cf-4afa-956c-f0f5815ef6ac", + "Name": { + "en": "Check" + }, + "Code": "3.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3a26e0a-727f-43ab-9310-88b8cec8f6d7", + "Name": { + "en": "Temporary" + }, + "Code": "8.4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3d162d7-da79-4ce4-9610-040f03b57d9d", + "Name": { + "en": "Unusual birth" + }, + "Code": "2.6.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3dbb078-6265-4861-a6e3-46cc151c5d72", + "Name": { + "en": "Complain" + }, + "Code": "3.5.1.8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4491f9b-3c5e-42ab-afc0-f22e19d0fff5", + "Name": { + "en": "Language and thought" + }, + "Code": "3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4580c19-ba9e-4f71-a46a-6f3c4b19c36c", + "Name": { + "en": "Travel by water" + }, + "Code": "7.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f45a456e-8e23-4364-8842-047cc73f529b", + "Name": { + "en": "Space, room" + }, + "Code": "8.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f472b2d2-b4d3-4852-914d-71b66bdb6f26", + "Name": { + "en": "Hang" + }, + "Code": "7.3.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f47d681b-4f0d-43ca-a465-2e1724825752", + "Name": { + "en": "Grandson, granddaughter" + }, + "Code": "4.1.9.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4829d9d-a93f-4fc5-918c-6d4c501a6573", + "Name": { + "en": "Out, outside" + }, + "Code": "8.5.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4b18e9c-b465-4763-ba79-d7eed2cebcfa", + "Name": { + "en": "Move sideways" + }, + "Code": "7.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4b77866-c607-43f0-b816-95459c269525", + "Name": { + "en": "Foolish talk" + }, + "Code": "3.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4ec8f2e-f89e-40c1-ae50-900927d20af6", + "Name": { + "en": "Impolite" + }, + "Code": "4.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4ed1712-c072-4213-b89d-eb3a9be233b2", + "Name": { + "en": "Natural" + }, + "Code": "1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4f99472-0b23-42b9-8b51-1d56fe24715b", + "Name": { + "en": "Multiple births" + }, + "Code": "2.6.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5156cde-9735-4249-920d-597fb0a7a8e3", + "Name": { + "en": "Break, wear out" + }, + "Code": "7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f51bcafa-e624-4555-b8f1-b5726d74734d", + "Name": { + "en": "Laws" + }, + "Code": "4.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5567550-e3c9-4589-8f88-8159eadcd194", + "Name": { + "en": "Custom" + }, + "Code": "4.3.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5642647-9b9c-499b-a66e-349593c863f1", + "Name": { + "en": "Say nothing" + }, + "Code": "3.5.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f56a2511-10cc-4829-940d-49051429bfba", + "Name": { + "en": "Liquid" + }, + "Code": "1.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f595deab-1838-4ddb-9ebe-55fb3007b309", + "Name": { + "en": "Military organization" + }, + "Code": "4.8.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5e2ad18-5ad4-4186-9572-b1542096759e", + "Name": { + "en": "Soldier" + }, + "Code": "4.8.3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6134be5-3f96-4750-a03e-fca381a42db1", + "Name": { + "en": "Animism " + }, + "Code": "4.9.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6896060-4d5c-45e2-b89a-f9f6328a479c", + "Name": { + "en": "Usual" + }, + "Code": "8.3.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6e416b3-50b1-4e48-8a39-2998725b1c79", + "Name": { + "en": "Divorce" + }, + "Code": "2.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6eb81d5-caba-4735-be6f-ae038656b555", + "Name": { + "en": "Crafts" + }, + "Code": "6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f70907c6-a064-425a-830f-e669319c38da", + "Name": { + "en": "Lead" + }, + "Code": "4.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f718fc15-59b2-4b6a-a9e3-39b3e8d487d7", + "Name": { + "en": "Grow, get bigger" + }, + "Code": "2.6.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f726d9bb-ae80-4c01-bdef-b600cb27736e", + "Name": { + "en": "Business organization" + }, + "Code": "6.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f732bdb5-9a04-468a-b50b-510f94d20fb4", + "Name": { + "en": "Table" + }, + "Code": "5.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f74f28d1-8742-4c9f-95dc-d08336e91249", + "Name": { + "en": "Youth" + }, + "Code": "2.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f76c3803-1c7a-4181-9a87-64ae7231a67d", + "Name": { + "en": "Here, there" + }, + "Code": "8.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f77053f4-ed5a-4376-bcba-17552ea447ba", + "Name": { + "en": "Prepare something for use" + }, + "Code": "6.1.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7706644-542f-4fcb-b8e1-e91d04c8032a", + "Name": { + "en": "Body condition" + }, + "Code": "2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7960e84-5af9-4999-9028-783058aa8c5c", + "Name": { + "en": "All" + }, + "Code": "8.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7b7eb3c-b784-4ba5-8dac-a68fd27ce0ea", + "Name": { + "en": "Plant diseases" + }, + "Code": "1.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7da1907-e6c5-4d21-a8e8-81376f3467df", + "Name": { + "en": "Conflict" + }, + "Code": "4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7e625a6-53e3-4f9b-8764-119e3906f5cf", + "Name": { + "en": "Unmarried" + }, + "Code": "2.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f81b7632-3e5a-4a2d-8a93-648872a6616b", + "Name": { + "en": "Social group" + }, + "Code": "4.2.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f858278a-2727-4403-9cf0-565cdececb1e", + "Name": { + "en": "Condition" + }, + "Code": "9.6.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f883266a-146a-41c7-b1db-85120840c3a8", + "Name": { + "en": "Impossible" + }, + "Code": "9.4.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f8863b67-b911-4334-a1b6-6eb913bd14af", + "Name": { + "en": "Wide" + }, + "Code": "8.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f899802d-bd32-427f-a101-c84219f7e14e", + "Name": { + "en": "Substance, matter" + }, + "Code": "1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f8c6a6a9-49f0-408a-9237-a66e852da7d3", + "Name": { + "en": "Calendar" + }, + "Code": "8.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f94e9041-49b0-4d25-aa54-9446c5ab45f4", + "Name": { + "en": "Instead" + }, + "Code": "9.6.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f950b7cc-fb85-4dbb-b8ca-934d38cae7fc", + "Name": { + "en": "Conjunctions" + }, + "Code": "9.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f9516c66-ac2c-49dd-951a-0d3606450463", + "Name": { + "en": "Discriminate, be unfair" + }, + "Code": "4.7.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f957a4aa-d3d4-4dad-93d1-20565b5158d4", + "Name": { + "en": "Cousin" + }, + "Code": "4.1.9.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f9935962-9a14-485d-9bef-bd4a52dd92c1", + "Name": { + "en": "Governing body" + }, + "Code": "4.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f9d020d6-b129-4bb8-9509-3b4a6c27482e", + "Name": { + "en": "Interested" + }, + "Code": "3.4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa32115e-e389-47bd-91e1-61779172ccf2", + "Name": { + "en": "Cause of disease" + }, + "Code": "2.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa41dbc5-adbb-4ad0-9fd2-0278d4689a28", + "Name": { + "en": "Non-relative" + }, + "Code": "4.1.9.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa660c9d-8787-4335-8744-3dbc139b2df1", + "Name": { + "en": "Accuse, confront" + }, + "Code": "4.7.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa8e72a0-1bfe-4b49-a287-293b44213960", + "Name": { + "en": "Adverbial clauses" + }, + "Code": "9.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "faf0ae24-6584-4766-a93b-389c1cb06d8d", + "Name": { + "en": "Turtle" + }, + "Code": "1.6.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fb84538a-17a8-4adc-8d50-e2b66f8e4099", + "Name": { + "en": "Number" + }, + "Code": "8.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fba27833-d6f1-4c36-ac39-28902b29261b", + "Name": { + "en": "Like, similar" + }, + "Code": "8.3.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fbf40f2e-e743-479d-80b2-63325407d5d1", + "Name": { + "en": "Markers of identificational and explanatory clauses " + }, + "Code": "9.6.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc0afb69-a4d4-439a-91cd-ed0ce67677b5", + "Name": { + "en": "Cooking methods" + }, + "Code": "5.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc170f70-520e-4f3e-b8b8-98e4b898fd24", + "Name": { + "en": "Edge" + }, + "Code": "8.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc193988-26ca-49e9-849a-b12456d98792", + "Name": { + "en": "Crazy" + }, + "Code": "4.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc1e4ea7-15fa-4bbf-8697-f312762504ba", + "Name": { + "en": "Comb hair" + }, + "Code": "5.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc82fcec-d03c-4fb0-bf62-714c71754402", + "Name": { + "en": "Adult" + }, + "Code": "2.6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fcc204a3-eae4-46d1-a9dc-08864fde1772", + "Name": { + "en": "Less" + }, + "Code": "8.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fcd22c85-7ee1-4d31-8633-9dbd32344211", + "Name": { + "en": "Move toward something" + }, + "Code": "7.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fcf16495-5226-4192-afdb-e748192efc3a", + "Name": { + "en": "Year" + }, + "Code": "8.4.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fd33670e-ef16-4566-a62e-aa077e58407b", + "Name": { + "en": "Types of sounds" + }, + "Code": "2.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fd7e03f8-61c9-47e9-afa4-ab8917db03a5", + "Name": { + "en": "Appease" + }, + "Code": "4.8.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fd9b8618-1f62-419b-85c3-365a12e85523", + "Name": { + "en": "Agree with someone" + }, + "Code": "3.2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fda0c1ac-5728-4ba2-9f8e-827f161b5bb1", + "Name": { + "en": "Watch" + }, + "Code": "2.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe58ae61-ab0b-43a4-86fb-d9aedd199932", + "Name": { + "en": "Mix" + }, + "Code": "7.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe66d433-5135-498e-a29d-b42bf0317252", + "Name": { + "en": "Meddle" + }, + "Code": "4.3.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe89a0f4-2155-424b-bf90-c1133dc41c8d", + "Name": { + "en": "Cabinet" + }, + "Code": "5.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe9253f4-d063-4d63-91af-85273d61337f", + "Name": { + "en": "Compare" + }, + "Code": "8.3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "feca6b23-1ca1-4d99-ac79-3672d1d1f7db", + "Name": { + "en": "Fine" + }, + "Code": "4.7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fed2b7bd-2315-4085-b0a7-2ced988120f3", + "Name": { + "en": "Choose" + }, + "Code": "3.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff0a16f2-c44d-4ed4-9520-c214acfb68e5", + "Name": { + "en": "Rule" + }, + "Code": "4.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff505092-6d88-4b5e-8095-04e471d7ad4c", + "Name": { + "en": "Resurrection" + }, + "Code": "4.9.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff736f67-197b-46b9-bc14-edbeb1fb3d5a", + "Name": { + "en": "Have wealth" + }, + "Code": "6.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff73fb69-7dac-43e2-876b-0ead264c3f2d", + "Name": { + "en": "Black" + }, + "Code": "8.3.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff7e3abd-6810-4128-83c9-701b4925c2fe", + "Name": { + "en": "Fire" + }, + "Code": "5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff9dfc70-526d-405e-b613-5a2a21c1b2d8", + "Name": { + "en": "Farm worker" + }, + "Code": "6.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffa13b7d-5eaa-43be-8518-51d9aa08f321", + "Name": { + "en": "Numbered group" + }, + "Code": "8.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffcc57f8-6c6d-4bf4-85be-9220ca7c739d", + "Name": { + "en": "Marriage" + }, + "Code": "2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffe84c4f-8c38-4b84-ac36-e79ffadbd426", + "Name": { + "en": "Free of charge" + }, + "Code": "6.8.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fffa74fb-5b5c-453f-9120-94686033d894", + "Name": { + "en": "Swim" + }, + "Code": "7.2.4.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + }, + { + "Id": "98c273c4-f723-4fb0-80df-eede2204dfca", + "Name": { + "en": "Derivative", + "pt": "Derivado" + }, + "DeletedAt": null + }, + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + }, + { + "Id": "7d3b1116-4489-4cc1-bc17-1734198e044f", + "Name": { + "en": "Abstract", + "pt": "Substantivo Abstrato" + }, + "DeletedAt": null + }, + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + }, + { + "Id": "6fcdabd6-a74f-47b1-b36d-bd40eaebed36", + "Name": { + "en": "Benefactive", + "pt": "Aplicativa" + }, + "DeletedAt": null + }, + { + "Id": "b2276dec-b1a6-4d82-b121-fd114c009c59", + "Name": { + "en": "Idiom", + "pt": "Palavra idioma\u0301tica" + }, + "DeletedAt": null + }, + { + "Id": "cce519d8-a9c5-4f28-9c7d-5370788bfbd5", + "Name": { + "en": "Keyterm Phrase", + "pt": "Frase de Palavra Chave" + }, + "DeletedAt": null + }, + { + "Id": "aa8efd98-0f8d-4276-89f5-65e012d6b9d8", + "Name": { + "en": "Phrasal Adjective", + "pt": "Frase Adjetival" + }, + "DeletedAt": null + }, + { + "Id": "35cee792-74c8-444e-a9b7-ed0461d4d3b7", + "Name": { + "en": "Phrasal Verb", + "pt": "Frase Verbal" + }, + "DeletedAt": null + }, + { + "Id": "9466d126-246e-400b-8bba-0703e09bc567", + "Name": { + "en": "Saying", + "pt": "Rifa\u0303o" + }, + "DeletedAt": null + }, + { + "Id": "73266a3a-48e8-4bd7-8c84-91c730340b7d", + "Name": { + "en": "Contraction" + }, + "DeletedAt": null + }, + { + "Id": "fec038ed-6a8c-4fa5-bc96-a4f515a98c50", + "Name": { + "en": "Unspecified Complex Form" + }, + "DeletedAt": null + } + ], + "MorphTypes": [ + { + "Id": "0cc8c35a-cee9-434d-be58-5d29130fba5b", + "Kind": "DiscontiguousPhrase", + "Name": { + "en": "discontiguous phrase" + }, + "Abbreviation": { + "en": "dis phr" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A discontiguous phrase has discontiguous constituents which (a) are separated from each other by one or more intervening constituents, and (b) are considered either (i) syntactically contiguous and unitary, or (ii) realizing the same, single meaning. An example is French ne...pas.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "18d9b1c3-b5b6-4c07-b92c-2fe1d2281bd4", + "Kind": "InfixingInterfix", + "Name": { + "en": "infixing interfix" + }, + "Abbreviation": { + "en": "ifxnfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "An infixing interfix is an infix that can occur between two roots or stems.", + "Ws": "en" + } + ] + } + }, + "Prefix": "-", + "Postfix": "-", + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "3433683d-08a9-4bae-ae53-2a7798f64068", + "Kind": "SuffixingInterfix", + "Name": { + "en": "suffixing interfix" + }, + "Abbreviation": { + "en": "sfxnfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A suffixing interfix is an suffix that can occur between two roots or stems.", + "Ws": "en" + } + ] + } + }, + "Prefix": "-", + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "56db04bf-3d58-44cc-b292-4c8aa68538f4", + "Kind": "Particle", + "Name": { + "en": "particle" + }, + "Abbreviation": { + "en": "part" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A particle is a word that does not belong to one of the main classes of words, is invariable in form, and typically has grammatical or pragmatic meaning.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "a23b6faa-1052-4f4d-984b-4b338bdaf95f", + "Kind": "Phrase", + "Name": { + "en": "phrase" + }, + "Abbreviation": { + "en": "phr" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A phrase is a syntactic structure that consists of more than one word but lacks the subject-predicate organization of a clause.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "af6537b0-7175-4387-ba6a-36547d37fb13", + "Kind": "PrefixingInterfix", + "Name": { + "en": "prefixing interfix" + }, + "Abbreviation": { + "en": "pfxnfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A prefixing interfix is a prefix that can occur between two roots or stems.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": "-", + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "c2d140e5-7ca9-41f4-a69a-22fc7049dd2c", + "Kind": "Clitic", + "Name": { + "en": "clitic" + }, + "Abbreviation": { + "en": "clit" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A clitic is a morpheme that has syntactic characteristics of a word, but shows evidence of being phonologically bound to another word. Orthographically, it stands alone.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "d7f713da-e8cf-11d3-9764-00c04f186933", + "Kind": "Infix", + "Name": { + "en": "infix" + }, + "Abbreviation": { + "en": "ifx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "An infix is an affix that is inserted within a root or stem.", + "Ws": "en" + } + ] + } + }, + "Prefix": "-", + "Postfix": "-", + "SecondaryOrder": 40, + "DeletedAt": null + }, + { + "Id": "d7f713db-e8cf-11d3-9764-00c04f186933", + "Kind": "Prefix", + "Name": { + "en": "prefix" + }, + "Abbreviation": { + "en": "pfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A prefix is an affix that is joined before a root or stem.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": "-", + "SecondaryOrder": 20, + "DeletedAt": null + }, + { + "Id": "d7f713dc-e8cf-11d3-9764-00c04f186933", + "Kind": "Simulfix", + "Name": { + "en": "simulfix" + }, + "Abbreviation": { + "en": "smfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A simulfix is a change or replacement of vowels or consonants (usually vowels) which changes the meaning of a word. (Note: the parser does not currently handle simulfixes.)", + "Ws": "en" + } + ] + } + }, + "Prefix": "=", + "Postfix": "=", + "SecondaryOrder": 60, + "DeletedAt": null + }, + { + "Id": "d7f713dd-e8cf-11d3-9764-00c04f186933", + "Kind": "Suffix", + "Name": { + "en": "suffix" + }, + "Abbreviation": { + "en": "sfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A suffix is an affix that is attached to the end of a root or stem.", + "Ws": "en" + } + ] + } + }, + "Prefix": "-", + "Postfix": null, + "SecondaryOrder": 70, + "DeletedAt": null + }, + { + "Id": "d7f713de-e8cf-11d3-9764-00c04f186933", + "Kind": "Suprafix", + "Name": { + "en": "suprafix" + }, + "Abbreviation": { + "en": "spfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A suprafix is a kind of affix in which a suprasegmental is superimposed on one or more syllables of the root or stem, signalling a particular morphosyntactic operation. (Note: the parser does not currently handle suprafixes.)", + "Ws": "en" + } + ] + } + }, + "Prefix": "~", + "Postfix": "~", + "SecondaryOrder": 50, + "DeletedAt": null + }, + { + "Id": "d7f713df-e8cf-11d3-9764-00c04f186933", + "Kind": "Circumfix", + "Name": { + "en": "circumfix" + }, + "Abbreviation": { + "en": "cfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A circumfix is an affix made up of two separate parts which surround and attach to a root or stem.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "d7f713e1-e8cf-11d3-9764-00c04f186933", + "Kind": "Enclitic", + "Name": { + "en": "enclitic" + }, + "Abbreviation": { + "en": "enclit" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "An enclitic is a clitic that is phonologically joined at the end of a preceding word to form a single unit.", + "Ws": "en" + } + ] + } + }, + "Prefix": "=", + "Postfix": null, + "SecondaryOrder": 80, + "DeletedAt": null + }, + { + "Id": "d7f713e2-e8cf-11d3-9764-00c04f186933", + "Kind": "Proclitic", + "Name": { + "en": "proclitic" + }, + "Abbreviation": { + "en": "proclit" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A proclitic is a clitic that precedes the word to which it is phonologically joined.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": "=", + "SecondaryOrder": 30, + "DeletedAt": null + }, + { + "Id": "d7f713e4-e8cf-11d3-9764-00c04f186933", + "Kind": "BoundRoot", + "Name": { + "en": "bound root" + }, + "Abbreviation": { + "en": "bd root" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A bound root is a root which cannot occur as a separate word apart from any other morpheme.", + "Ws": "en" + } + ] + } + }, + "Prefix": "*", + "Postfix": null, + "SecondaryOrder": 10, + "DeletedAt": null + }, + { + "Id": "d7f713e5-e8cf-11d3-9764-00c04f186933", + "Kind": "Root", + "Name": { + "en": "root" + }, + "Abbreviation": { + "en": "ubd root" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A root is the portion of a word that (i) is common to a set of derived or inflected forms, if any, when all affixes are removed, (ii) is not further analyzable into meaningful elements, being morphologically simple, and, (iii) carries the principle portion of meaning of the words in which it functions.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "d7f713e7-e8cf-11d3-9764-00c04f186933", + "Kind": "BoundStem", + "Name": { + "en": "bound stem" + }, + "Abbreviation": { + "en": "bd stem" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A bound stem is a stem which cannot occur as a separate word apart from any other morpheme.", + "Ws": "en" + } + ] + } + }, + "Prefix": "*", + "Postfix": null, + "SecondaryOrder": 10, + "DeletedAt": null + }, + { + "Id": "d7f713e8-e8cf-11d3-9764-00c04f186933", + "Kind": "Stem", + "Name": { + "en": "stem" + }, + "Abbreviation": { + "en": "ubd stem" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A stem is the root or roots of a word, together with any derivational affixes, to which inflectional affixes are added.\u0022 (LinguaLinks Library). A stem \u0022may consist solely of a single root morpheme (i.e. a \u0027simple\u0027 stem as in \u0027man\u0027), or of two root morphemes (e.g. a \u0027compound\u0027 stem, as in \u0027blackbird\u0027), or of a root morpheme plus a derivational affix (i.e. a \u0027complex\u0027 stem, as in \u0027manly\u0027, \u0027unmanly\u0027, \u0027manliness\u0027). All have in common the notion that it is to the stem that inflectional affixes are attached.\u0022 (Crystal, 1997:362)", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + } + ], + "WritingSystems": { + "Analysis": [ + { + "Id": "1c2fb918-c838-4fc8-a81e-71496199c5cf", + "MaybeId": "1c2fb918-c838-4fc8-a81e-71496199c5cf", + "WsId": "pt", + "IsAudio": false, + "Name": "pt", + "Abbreviation": "Por", + "Font": "Times New Roman", + "DeletedAt": null, + "Type": 1, + "Exemplars": [], + "Order": 1 + }, + { + "Id": "5321a0c0-23b7-43ba-855f-05a88af8c96c", + "MaybeId": "5321a0c0-23b7-43ba-855f-05a88af8c96c", + "WsId": "en", + "IsAudio": false, + "Name": "en", + "Abbreviation": "Eng", + "Font": "Times New Roman", + "DeletedAt": null, + "Type": 1, + "Exemplars": [], + "Order": 2 + } + ], + "Vernacular": [ + { + "Id": "9d7dc727-b9bd-487c-be2f-5bfb59d105b2", + "MaybeId": "9d7dc727-b9bd-487c-be2f-5bfb59d105b2", + "WsId": "seh", + "IsAudio": false, + "Name": "seh", + "Abbreviation": "Sen", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "-", + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 1 + }, + { + "Id": "7052c1e3-ee94-4e3e-a842-d2755ffba41c", + "MaybeId": "7052c1e3-ee94-4e3e-a842-d2755ffba41c", + "WsId": "seh-fonipa-x-etic", + "IsAudio": false, + "Name": "seh-fonipa-x-etic", + "Abbreviation": "Sen", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 0, + "Exemplars": [], + "Order": 2 + } + ] + } +} \ No newline at end of file diff --git a/backend/FwLite/FwLiteProjectSync.Tests/SyncTestHelpers.cs b/backend/FwLite/FwLiteProjectSync.Tests/SyncTestHelpers.cs new file mode 100644 index 0000000000..183fb63e0c --- /dev/null +++ b/backend/FwLite/FwLiteProjectSync.Tests/SyncTestHelpers.cs @@ -0,0 +1,34 @@ +using FwDataMiniLcmBridge.Api; +using MiniLcm.Models; + +namespace FwLiteProjectSync.Tests; + +public static class SyncTestHelpers +{ + public static MorphType CreateMorphType(MorphTypeKind kind, string? prefix = null, string? postfix = null, int secondaryOrder = 0) + { + var guid = LcmHelpers.ToLcmMorphTypeId(kind) ?? Guid.NewGuid(); + var name = $"Test {kind}"; + var abbr = $"Tst {kind}"; + var desc = $"Test morph type {kind}"; + return new MorphType + { + Id = guid, + Kind = kind, + Name = new MultiString() { { "en", name } }, + Abbreviation = new MultiString() { { "en", abbr } }, + Description = new RichMultiString() { { "en", new RichString(desc) } }, + Prefix = prefix, + Postfix = postfix, + SecondaryOrder = secondaryOrder, + }; + } + + public static MorphType UpdateMorphType(MorphType orig, string? newName = null, string? newAbbreviation = null) + { + var newby = orig.Copy(); + if (newName is not null) newby.Name["en"] = newName; + if (newAbbreviation is not null) newby.Abbreviation["en"] = newAbbreviation; + return newby; + } +} diff --git a/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs index fc97d7b265..b37237d59f 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs @@ -106,6 +106,7 @@ internal static void AssertSnapshotsAreEquivalent(ProjectSnapshot expected, Proj .WithoutStrictOrderingFor(x => x.Publications) .WithoutStrictOrderingFor(x => x.SemanticDomains) .WithoutStrictOrderingFor(x => x.ComplexFormTypes) + .WithoutStrictOrderingFor(x => x.MorphTypes) //when excluding properties consider https://github.com/sillsdev/languageforge-lexbox/issues/1912 .Using(Exclude) .When(info => info.RuntimeType == typeof(double) && info.Path.EndsWith(".Order") && excludeOrderTypes.Contains(info.ParentType)) @@ -453,6 +454,102 @@ await crdtApi.CreateEntry(new Entry() AssertSnapshotsAreEquivalent(await fwdataApi.TakeProjectSnapshot(), await crdtApi.TakeProjectSnapshot()); } + [Fact] + [Trait("Category", "Integration")] + public async Task MorphTypesSyncFwToCrdtAtProjectImport() + { + var crdtApi = _fixture.CrdtApi; + var fwdataApi = _fixture.FwDataApi; + await _syncService.Import(crdtApi, fwdataApi); + var fwdataMorphTypes = await fwdataApi.GetMorphTypes().ToArrayAsync(); + var crdtMorphTypes = await crdtApi.GetMorphTypes().ToArrayAsync(); + crdtMorphTypes.Length.Should().Be(fwdataMorphTypes.Length); + crdtMorphTypes.Should().BeEquivalentTo(fwdataMorphTypes); + // Should be one of each kind + var allKinds = Enum.GetValues().Where(kind => kind != MorphTypeKind.Unknown); + crdtMorphTypes.Select(mt => mt.Kind).Should().BeEquivalentTo(allKinds, config => config.WithoutStrictOrdering()); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task MorphTypeUpdatesSyncBothWays() + { + var crdtApi = _fixture.CrdtApi; + var fwdataApi = _fixture.FwDataApi; + await _syncService.Import(crdtApi, fwdataApi); + var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); + var fwdataStem = await fwdataApi.GetMorphType(MorphTypeKind.Stem); + fwdataStem.Should().NotBeNull(); + var crdtStem = await crdtApi.GetMorphType(MorphTypeKind.Stem); + crdtStem.Should().NotBeNull(); + + var newName = "new name for test"; + var newAbbr = "new abbr fr tst"; + var editedfwdataStem = SyncTestHelpers.UpdateMorphType(fwdataStem, newAbbreviation: newAbbr); + var editedCrdtStem = SyncTestHelpers.UpdateMorphType(crdtStem, newName: newName); + await fwdataApi.UpdateMorphType(fwdataStem, editedfwdataStem); + await crdtApi.UpdateMorphType(crdtStem, editedCrdtStem); + var syncResult = await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); + syncResult.CrdtChanges.Should().Be(1); + syncResult.FwdataChanges.Should().Be(1); + + var fwdataStemAfterSync = await fwdataApi.GetMorphType(MorphTypeKind.Stem); + var crdtStemAfterSync = await crdtApi.GetMorphType(MorphTypeKind.Stem); + fwdataStemAfterSync.Should().NotBeNull(); + crdtStemAfterSync.Should().NotBeNull(); + crdtStemAfterSync.Should().BeEquivalentTo(fwdataStemAfterSync); + + crdtStemAfterSync.Name["en"].Should().Be(newName); + crdtStemAfterSync.Abbreviation["en"].Should().Be(newAbbr); + fwdataStemAfterSync.Name["en"].Should().Be(newName); + fwdataStemAfterSync.Abbreviation["en"].Should().Be(newAbbr); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task MorphTypeCreationDoesNotSyncCrdtToFw() + { + // FwDataMiniLcmApi.CreateMorphType is a no-op because FLEx forbids morph type creation or deletion + var crdtApi = _fixture.CrdtApi; + var fwdataApi = _fixture.FwDataApi; + await _syncService.Import(crdtApi, fwdataApi); + var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); + + var newMorphType = SyncTestHelpers.CreateMorphType(MorphTypeKind.Unknown, prefix: "!", postfix: "!"); + await crdtApi.CreateMorphType(newMorphType); + var syncResult = await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); + + var fwdataMorphTypes = await fwdataApi.GetMorphTypes().ToArrayAsync(); + var crdtMorphTypes = await crdtApi.GetMorphTypes().ToArrayAsync(); + crdtMorphTypes.Should().ContainEquivalentOf(newMorphType); + fwdataMorphTypes.Should().NotContainEquivalentOf(newMorphType); + crdtMorphTypes.Length.Should().Be(fwdataMorphTypes.Length + 1); + crdtMorphTypes.Where(m => m.Kind != MorphTypeKind.Unknown).Should().BeEquivalentTo(fwdataMorphTypes); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task MorphTypeDeletionDoesNotSyncCrdtToFw() + { + // FwDataMiniLcmApi.DeleteMorphType is a no-op because FLEx forbids morph type creation or deletion + var crdtApi = _fixture.CrdtApi; + var fwdataApi = _fixture.FwDataApi; + await _syncService.Import(crdtApi, fwdataApi); + var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); + + var prefixingInterfix = await crdtApi.GetMorphType(MorphTypeKind.PrefixingInterfix); + prefixingInterfix.Should().NotBeNull(); + await crdtApi.DeleteMorphType(prefixingInterfix.Id); + var syncResult = await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); + + var fwdataMorphTypes = await fwdataApi.GetMorphTypes().ToArrayAsync(); + var crdtMorphTypes = await crdtApi.GetMorphTypes().ToArrayAsync(); + fwdataMorphTypes.Should().ContainEquivalentOf(prefixingInterfix); + crdtMorphTypes.Should().NotContainEquivalentOf(prefixingInterfix); + crdtMorphTypes.Length.Should().Be(fwdataMorphTypes.Length - 1); + crdtMorphTypes.Should().BeEquivalentTo(fwdataMorphTypes.Where(m => m.Kind != MorphTypeKind.PrefixingInterfix)); + } + [Fact] [Trait("Category", "Integration")] public async Task UpdatingAnEntryInEachProjectSyncsAcrossBoth() diff --git a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live.verified.sqlite b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live.verified.sqlite index 57622016e48a2bb0e719147ac45e68471416c4cc..17aafa3f7afe1b11ee2bfde9e030ff87c1fce87d 100644 GIT binary patch delta 467913 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

vt!*>3wdP_z%|>3}_$E-}005ogtih%;25x;v6p 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 T`A>RsalI-$qZ*n2*0`lOTiO)ePj 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%0A*0nfvhISC&V^E+xMnxvoehH;!eaLBVgAsMQ8 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/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%0DVOJu|Mn``zxy=r}&^>qOUZff-vQ$d6A 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 UM(RKL6MB07ns?6px#PnB015}HasU7T delta 341883 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

dlN@VlGMA#QF$M{#r}K zOLyz7+ehmNYt40Td8QYp)NtFiMKi-L(ODsf48av!N(Z?fe@*vKN+8KIKhJyY1$uP*ft7ihAO|nt$OSVST60MUC&JH()li zAzet`_Xi3lvmVRHM4hJ0iywgCh;e!4m;3qK*?hs*F%|?QKsmZ>)bt z%>g!gGT!Vu^|d^EiwcZ!^Glww9gVU)OfjSIPBpZnTOrKIos@)C+_TF~t8H~#J7PRC zlg6gF1#=@=oQm5_?Hmx&Zf#sZ6q3Zwl5fU1CZwfPyPCZ~*dK(Fzjo$EFY2eOWJxN> z8qF=(d;qk9q=aSgBaccYp)uXwQ#`u-u67ncV2lE!SgA!o-A#yc(^^sz+SDWYg5i!K zV-Vw8vK@4VKT_!;-SpiFIYHb9d|+VeE|)N(Wns*P|^-{OzQk5i`4O2RP=$tRIIE|KO44X5gxSN{9aFy6B54` zu3~wbEEjIPwLT>qfOw$TZ_Y$ndvNynXxu^OjROZLY&E}zhG4-#w#~pLG#NUS1>ch1 zP_QN-ZYbp0-MBz83z@Uv#0;d3misYjoQ0ISvP2W`+wE?v;K$JrV$>x~rcS+e;V4B` zt@Wz4oTpG#cgYO0Skb}qj4-f#%zuDy|?pimsW_6)0)Phv+aU^rcuXY(} zCJOhD#5F#eqqmXx<_&}?tu5)(1&hmuFK<5Mm&G6j5gf^TX+i;5VFym{eBMrsQfxPM z+!5h+46*3gm^$_^PVn&3blau30=x=kO^PLf7!$H~Q-kbc>$b&4+jZQSHnF5EmqeZTSaB3?!TlCL*A;1uySG! zXHnSfII+&|x5BWN{V*yIywx*0P$*5k7iLbC?)H{KvPKk&)y8xfoej^0^FzHPPn;el z(CT3^9M6pPmBY-;ov!Pp@$_hQn2h<=v0~rk2kHEmg!8A{hTb+Gq`>tUg*bG%SV51b26{&c-KGMfvFLtlmG@|7_C8z;bDpX_gR+IE0s@mn9- zjM=Uq}Pnc@o4==;egvK z`d)FL!p?wW5NoYFJVP$6s{{Gw4R|g%AzgnDaPbK&u8Z`0$nl}NrSAZC+;E-by~0QgSGG0 z#IFg(uQxBWK?)cNA0u|@F%mEtW&zh;O*8Dq(HGZES|Le&utSksWK1mnTO?1X)EAj8 z#=Rc`uz@P@4+`g4rwLNc%Vkr>gOnsT*9u_enn|^N*bv@c^Eypv@y+!B8tuV-(Gmxg zE>vG^cTxH8q9@!&xWAlhNp_mbqGZW1J@?aoUBagem^R|Xx19oB+C-JHCkYND!-~wA z!L+nIJBcDKPA-=|ALMFONGI2hE7O$g69>+Jpr^1dt3sSHSH0sD3NH5!PL06~P_Vcq zq)`HC$>*d%3yr_!2UXW(0wJSe>o7XIm?0-_>!8&mQ59jY2b!Lj5Nvg&=C@C5x9V+XJMySL%s)_0qtcmTx&# zImdTXh%uKQ72HE$>HBDh^kb@!?Xp?WEXP<24vSjeRyaFzfZ9R!8IawlUQr~q5+!c_ zSO7{*>jzh^^judq0b)||$(?Fp5L}DnJq+f3AM=x$d15>L6>JU$XtvRQ7}U{Wpteqm3`F! zzV6{H#h_4^k!>USVzfziF_Jc!Sx9`3I$PDi-qlc(GZbECu8>nRWxJA7NHL$9pcd)^ zq-%a+2JzFbYS2eENRM*~H{6MhkOaT%936!Z`Q(pO$)EzV(~m+?OLj1m8&%hmb)HU% zhAarQM;*y7P}oc6JX;lJQn!TPj86#<(@^gT0~Mw`OF$5kh0CZ84X|F1)qil z+(~`F=*=>b+dhwRJ+-reto3iz!_er(kX}=jR22|%4_@MoYZ?LOVKQ+V1JlLF7x`&y zsJHQuPE5mqMU?`StGz*SUt&7hDQKkSZ6qep7TJ>zc?dr33xPu0?HZb#W#XQhe=*Zk z7b=hRCQJUE{1vIVa}i&NM=vKpyiSr?5dG=+1$Pn3_F*qqwz4!VL0}t%Ec$~b=Q)L{ zy6eilNw@?>=4*-sWaUC(gaYT?Br^$rpg5_YI>yVP@Xv3zKwEWuR|CuSi?l70r=b%a zeD)KHaf7E=yRb>*n)sd~d6UAjPADI6O#Eg);d)-!vw-w58O`caR(P&WozB+NEM0^J zX!X-~vZV9CT)fh)3HPKcjkG0jx2Vc^rWv2HPB+Jg@!zNb+JtKIz|JKzWbp7v*MEk4 zonrEGurLyGe{iR)2w%)(2u|-v-oT6IvfJy@=04&M>}W4Vw;JGD&~-^( z2U7x{(#W7?_$h$iz9dP8d+3=ku}5Z_yo@4uM)16;Q8F&n^H+-aiqkN-=rJ$#E%Mv6 zBn-60y50|?pJ0czv(m!(IZ8Ei!f%=Tp9XiC9CriieupOm0b3GP1r^%%z7f@oFZv|~ zRaaX}@x@m3rYMpQy*W`-P3*j^m zTg;d%f{L~vtJVL~+jQp-lE10=q;Hs#PYZ{K;Y99|25aZhXxl9) zarqR%=ehzGVy8No!z*PKi3%zDEC8@qV5yAp1Y~-=#^1sp8JHWh1P__t^OT-GiIg%x zs`c>E$3?bw42gF$1=|iuKbcX1RSBpo{I!6q+Zi~|45x&{`Ags)%J)mIdmetu@& z<;t7;l2$fEC^8OMB+w-C;k2w?pP)bb%;xPj8IQ0i88im6*-m2l%jtK9N?ELQg8e%) z55keFVZJjn8BTN39@c(l=EZC&44>4a#ZM;Q>Khs!I{ntv-LEU3M(+D+^}(B&_cPI0 zICQRelvI)*RaVlcx^lxMwgjZZa@bd$n#$rfxDsBTneLlO_e_t*u7FYH1gM=HX_RpS zoFgZ|2>z>`m93TrM_;$)OY`PS^95L*)?ap_Q|$qWKnE;=HWRw5`OAW&M_UIjA3^*0 zG&9h_CD1HafH;F&HhT!96(|S5_+}B-{iw~ zA8=;XM3VGig}*KpeN3M-84|6qQJQHp+9tg4NxfxUY9b!Sin%l_scYxk4I1zl+DRd7 zyOwyTMl>X&0cUyd@2CUI-WOeXMe$<&;3)eebx0MqR{w@O4j$yD&Ty3w9Tv4t=gipv zFc(`a3~@NKZ1`ke)TX6Kq4-imOCPZz2@_sc14*d^mRV#_0D#!Jz&ovdkCNOO9TG2&MbG5p`ok zT{D-7PnoiDRo%2eY#aewO(A$rIIoOQatm)8?xX(h9G{{$-9A3V4tY`c@6jRGl5D%K@KIc2$5E@{o{qcshPVnu6M;Svd<|dq;*~8qF2$LV?Y9& zaii8dP^G0wA#MHBO@UO}k9i*IcxYNM8uJb=qZKfIeETnL<$h53*i^o z)LPUmHt?Zr*7SvoFd8@=VW zL~qzKcTQJyTUF(p)HGXAtRlO8N($|J{FUB>Vw*?{{}XB|_fS`#s1ITRI%d_IQ6^*3 zDSM#nl%Qhv<|IV?4KU56nkXJ}zST{~4JOjbj^xAjFG8$nC~0{eha*QVM?G#(Bp{WCM`WePv zYnwL8+7n9f1O4B(HKp43yr#5EK8^O^Y%zHhxQIBPi)PY&+@6opT++%5TSx;1Ub0{> zAt-PWKuuy5En2a0)E2GytHB7XLrbQiRHoX{wqv->4$7UnX^B4CIReEz4H+{vABOY; z(JxS1xvamMKFbhkD#XwHDu1N;FVrcrHh8T!s@poB%FRh^%K0sxVo{UcOC+l6AM%I~ zSYS-X9Bz3L=_hg=3O#MRbUzk{t7HUt`dt@FF{Wk7R;fDr-RQL5e{PW3G8(;kf%>Ol zQf{mbvOV}sypS_5Fz2Ino=(d92<7k-^Fi63=J&D@o<`8Z*3VATG!rxh9T(sU{D-tfhP49)=WP!^qi=@M@>Gr z2u^A1!*Xl9E%`+C(kUz}31&A3K2w)E8>@6DX*(g4kz$Re09(`}=cuBs``|<Id! zt_89aiQ+mgw9au8E_S6UyoW~X>PhxC#dYS{4Sz$iq%WAg{oXKFmSIQuu=s#>Gk@UL z1UythvP&{Iy)9+}-es{M+lF9Ev)caTvf^Sz6cO|vK}rj%zE7xf7lGaqlIPw5RwdM~ zRndd+&iuQWFza;AXIHsf(n01Ahu=8fMso&Pr@Xu>I*eMOh@p_g^+4e(6|a=J%Lp$^LA# zOl2kS+>UcUC{);O=dOU8qBXXQyZ_wV-Ek2O_I@CUgXwBupEN zEwE9GSW8W2)dy!NyyX8RGxsw;(oZRbMy9-&dtXaI(b-?fWh0XC^pOlYEFLV0&5GV+ zRoA6&r~?@wsE=$lHU6Zhpvj#M@&B~d)z}SV%=4vFz1^UAO6=eU*rW%bd7zM%Ivffu z(u86|C6j^NQc5(y}#sqPo9sUwuUT@vz9dsBdYfHGB{ezmS z2pbK(qHlOE(G8_HGTc{I*hM6D73d}-5d&R-c`gYd14*MQOy5G>r32c*5QXMr z-aPqA_D^OUunJDYLN|>^JBV$UVosdIcL~rOJxVWiy8^Me2b`$_R4~+z(86MzHqZX}NZU7&?p`W0v z0!{+Bsn%ghSlAW{w(U5pFmX9$j+0CYj=?29T09*CXxM;4Uwr2cJ!>2%3Kze5M$Jhu zOfIxN%Qy(iJrmttL2rrz-Y7O%`^3kH^%rMjfMKi|uH$%Fty#pFQ~?A7ri@0OF?){* zS&6=*6A&oZYwy{UhsYnFg-z++hN&MPib`RZJ|Tw3?VWe{i=T6CQSt!QGd}erLI2%% zgrFs|)!zHPX`Q2296sLJ*IPV4Qt5glSIDIEh45syoX!mOoGj#e#?##_`_GjN zV}&C72?p346wVea<6)Q$?}e3oAz$t-d{ZpvvqR&gBB)fNk*=Olr;;wOCu_1>#o!hKh4{SYjE ztkc<2=fP94*0fS?;LZaX*Tn{smdb%i+^`(S!Q0dk#;LAtUG+V>nxd$pd_Z~*=)Ps@UMHdsexncC0=1X3OYVEo9OSV%Z9CTJY+bxN&a3$qbtL`9 zxRVi?dkv(a5Qh0r1ZUJlrmZgcRUjc(5MvrZ9!sVyUT9bO%3c+;>CcjKKO#{XxXa02 z5Pq~)dB~iv8ySc9XW&%{@&8IxH zwbkG)?pwOrTk6}K`ew^RIaDx<#Ij`EEkT*amDbODxh`~jUm2}zb;dmSOx>&2g7A+h zg6%p;?q(r|feK+1>ZukN1`Bg5?tWI@R_fzCy1loxI2 zw$l~w*7_Y022k9xP?(fF-H!V^i~7Dd>)t5^{hU5bj3qa-APlMJbwh@g!aRLJL%FOX z{UHU~W4(jhrsCKlnpVSOPd+Q2Or8dkY^yyAHV~3XAF;h@%3Ig~4Fqy&qLOI&CVbN+ z7=ta)nG!AD*UO0@j57179-Qa045!`FfGz&YB(oFcNVvnSakVlEXNZvnF`Q7&*{*x- zCEzzd3A=3U)wC9e%2vPw;JUJCI4-Lp{+PfDNQF|}-4t;5WxDI$0)5?}u84M+YyO^# zPf72f*c7RVb@38AiD5y4*P`R9jL4^C>+{#XoB4{@(i7ZKVnl<5hwH@&$bd+^+xB!8cTWzu%k4D#Z-IYez6ugt5hcX&FizQku`NbPVLX*1Juvx2pG z*%c=1%8rsW;7El zIm=9vc{Ana+5Mh-6VR6E*WcxJaTo>9>+dXobsv*AdSrqow!=rOVX(z?{3Vs%=b4vuJmO2fm=rlrS4t#GD9y z);&9nijVFcMa)dPjlx>wmi8rcPLP&7F%@M z4ZTGHnk-v-K)EvvRf-}kem#E0uuOrT_v9genab52o>*?U(RF=4Z6S-7 zK@KXoq~0q?gNG9$wn!zAtn5v;9vfXpXb#Y)}YcKu)rtmo)_X<;&4R{xW)}8!4)4-+!Se7 z>76{n`=*gFqGy8URW18zBBVJw<<@XB@6irS_hsuRF5o27yJkBhisL-5r^l()t)6MI z+hrFiK5OVo-}!8iVif)}zhqyU3W9SrJ|%4BB!(@nXsKQ^F3dpD9l2%sj&0E{ju#Tv zgk2OR2FfOW<^$Ji9M7QoW~HIF#G4`Q;2?g@ivaCBma@X3Wi&3D9}8g@E0_R#`HwtF zYor)#YpPcKI{xt#7AbvcJraS9p|x!BS4OWkiVICQ&Ql{}oAna%ANuZJIe0e3+${6h z>DE2TADY@~F$-p(F^RFn>ldrC%p8d+t}LTr@(foMCXndx*aWsrPsC2rff)uaj$~;* z%{vh1)tJydaV4xU%OYw1!O4Kz7^G)#draM@9x3W$+Eb6U}zB04+m?tPfmkNgf}9b8Ch8BVr97-r5bJmpSOo9~s= zZ~0~Xcg-A?wxMiRsTYKHpx@Id`Ab}Q18`fUuIt(0F;Z?rv?#}|4{`(6 zIoqQk)ZC!8YEA4)`~;ozMN9LGO1WBln>!W3(LyOLE-)7f8?FkD6=okNUIX6nf~&L4 z@SEoBR3wL+j&p{5LB){S^w}FnJ8f4qF69_Sf8;9n6-7oV{R13x>H+b;Bzo4x0gaA`8Tw)a!wEar>TW@;>$VTgu-!2vSy)R7fD~ zLQS=nt89+D)i2A(p={=Y#F`CVgBicfvourVjrE?s#g*m0p;72RC5d3cpZ1ZGrop1m z;%{n%s2ZD=4O6`8Q*IVYTmYp)VXU)~=^YIFtNCJjWh#>%%JuYA!}0MmVWEMGpm15I`Stfb?Crnv zW*ENx)#c&?Qv45wJ$(fBXT!6Fu+Wq4Er+A&t7GBWvthb7%*R?-DNJN;D{m5a1L6HZ36AB273;K^)8)_>|m|B3v6on1`-`{cha-hA|b z6&v#>{>h2rzbvj4dkgf%v|3Wx?LJN(@zk3MntUiTdSi-AAibGKf1A5MJy==RWC zue-t%eLa2A_tzh7Y}YrJx2%XS5C3h?pNBeXhySSO&kuW->dPxT_1e;EeQl?`d;dJa0`=?a;eYef+CO!7Usn!qeDmn8`|fr5@Pkt~zjN=t?mT?=(W7_W z((BUUzxazsOYW1`#lz=afBwXM{&b_ulLL;k|=L@9}!>@Y&SOyWGhh{`FsR z=i%$j;s4zG=ZEgI*Wuy+v9|V^yYo7IIQaFWJ6xo6F>?4Hmi|299=uK-e)|s|Jq%ta z4o@%K{DK?)@V|Yr_P~Af+8s{)<)d%h_pgJ)fA?39Mh3UH7)@<^>pA7)t(~R6{bzNC zv$L}KWN-EG|NZ#G3HR~qj>G@*)Xk6G`>#(Nem{BhefRD`e@ZGeDM3j|LFTi%kIO2pAVN#-~7;hdhqJd&D{LdJvn%J_*ctoPu#78 z7l*t5!J}L5i-YHf|K`=&7w-LoXNO`Ypb@nvr>O*{M!4 ze`bDn?e$yQm=tydAwspbdm#O54h>`d^)^>iaGwLQH&nybx?Leyw+`-bYgYS5tQJ2` z*Eauz4&&ZsowBj>8ZN{-jXPVbAE3KwL3Hy^r}#FqchBy;83bo*2l81BqM5u=JAje9 zFNmIUqj(=L)n0$hqH~b2f6_o=Z?OCVf07i?K0$<{JGWbVEoR3hz&Y5`B^wUw8wcY4 zT^L!lRcrc7H9aI12_+sl%;^^?~=Lg?Q!X(uv#rOK8?DQnEzFwO@kctKb&Kd+T66yzn ziP`%XX~}hu@zYOHXr=8ytXw(eeBU&Mg|S+G0$XYf$GKNPC|F9C*zz{TB{7TYEbqpW zO_w&K``J-$^>tCiqTv&+Dw900%xcn?Y$e$hP%gX@d^-8zm9Js>K%+*ER=DFeBsJdCNpZA)q2tMc`kTq>mK0r+tJz3LFNnFW3IIM-ds*8hV(5=1 zxAwZ9ZeM1qd~%0^TR*-Qpwj|s;s*UieL{9VeXW^BgIqt*f)ULKhJhwVQIAY4MMgM+ zMr1grTe2`d(^JH>&znGggDb5mx)~_p;11f$1nm<0z^%T^6bj!~%;MI;msC|$vb)QD zbz=JfCB}8%rs(UYsG?1{yI96Pr)f1eN}Ll>^?Fb0`xXkHEKnyDvTOZDp#SMl?^1>F z>>S+V&Lrx(Ps=xvvYALn;t$G{A4jq(HKZGr;)LsN_uvBe<2ZC{*m|r92({YAQobeo zV-K^w&j;NnnrAywE+ginjGyt0XQj}XZ778d6|4P#iP$?3)NH~n>yTwuOz1O7Sq}+y zxl@Xk1>8#Cb0v)~P?T+iN;okM{>QK{tH&0V{scYfKnhVZV&48g&fYvqt}Cze%#8OU zBVO#eXDU-tBfEc z-Q{~;4Rl;y_k;p{8vPiihji$@I{kk-R zbgxj=YTeK;zCgVMQ1H%>V{vT3mx;<1B#a!(2gF}X#$bD3UCxYVCykfp0eqs3Us9~Lp^+lPz?50i`|BDJCA`cBq zG$(t3EkKML2QcTtE`hn*ylREwcFjRdi&^I-JwOFnpNbX1pf%0shnVt`7+nXoY7=JG zpJi^u9_{|2>QM@@<0q`r)XrCKsUpEb%qMc5uZHAjTe-nch;-7Al3*b|U6s)b_oDOZeWM(0B32f|rY%SaeJNCu^;mv81#+FQCk7m_Kck-(aHT(-i%8T$ zUOt(v;YPl|CRU#nh_eVbw__u%?8KfVCZy{|khk*6!!7wKQM1BtDB|9fsZH1qP)*5t zf-FlF3yy|`-AZmE!vucl@QOQIzuen+249#>#|H>*iSw$alUOfz8bWB;(pu*;oVuxs> z^5HdyDAi%dFH0s{6h6v!Scks3`|PD_*Qe3;xkf@N0@pgxr6>%_xq{y<<+e8Z6K#xF z)GF^LERnRV&9~vY&El59xqYkPzf}_LIZD|nEo}ohCm|$9PF8M8YI7$X&>0#b)eEXQ zx%%FXwxQ%%JL6kNQ4;3R{RFgd(n9qV;VzYRp;FiV7EM0p%&jyH{w-B@Xj!}3I#9U2=?Vk#hVdoe;$5UA3^{2fb{I13r+elLgrFZob+DcZ z!k~cDXO)(On%uq!D1{Coa`oG*Fl_EBG1yTnVL*FhvM$gUr>pTPhAwtAQw`9Y!HD8u z`>Os?tjIA6OZNdux+w5;O1d@xb(2Thymf?6>Qje+-y)s&(l$~$%jz5#MV%8x$wR`~ zDh>_rnyTzqCqx!(q&wN6Q{-$*sY6j039GO8>hX!iyXe7$9M#xWbLvwr6faSMd(WJMR+v(15458^_bszOdTbkEo zlbEKwL^6TLN;0>mluafRtvOD-@VhtZtv!0`)t+7JdfU6a;Z1AXU+{Kcf2||4%S&uX zwzuN-l31HauUm&*YyaVOYc?KAB-Z3Jdxvmx$vxBIb@s38%d~o#gtxY%yD#mvo!U;U z%&mmTc>ieY#>LFDi9Roz_7cyPoy*(3&VA{w^a%`J@urha@jbDv7``_X*wiKPEFlv)lC1Tjc(ly92AyXHmf1#3$$To6j}7<+&ev5Pa{z z=D&2ySAXC^@STI3|97{%_wj?^{h`f2;eIs!&mVlUe|YmBa?4Qm%MU&o-nbbB{9*HV zKltR}rp-iN`TWU$ss=cA^Q9C|&uLEtsv84_)_#;mVWD1z_NO(7^--O`X3msjunT(x-G;X!jf zfr{@xnzG_H&o>H>P*`-Sa$H0yI-Po?`Yg0(y4ksxAA2;*Yjy+2YkNq*Y>Ug{ zbr$v?a=!jZWWQwxS+L~E}FYvUD^>s4Y*2Lhu#>iV=AZ525b#bmD_X=Zt~11JLb^Mz$3vu5hX zBQ?e%Z06BD5|Hz3P0WZHo3EWy0)iT^m6#go_!EzY$m6?PwbdB60#a+kS`9rfN9hMV zW4;C#VcD<8eja>&x5h8{uh?&)0dd{>2vl_mYf*%$UlJ)FG&GGmVYuzKEJ+C`~`z;DXGd{IVgOR^`^1tZ6*Z-tqG_eU041b|?;a~s-=a`mKp#BGgq{TVv}OLFuo#T z1Z$aD0b7-rTahTjP&U6Jl~rB@d>p=8TxpX@KEgLT2svI{5w3#1#r%qv1$;HSq9!rM zjIC&4!K6%CA&aSj*t%`M@EBTJsk=zpcK1pzUlHZGs212uj?5KTko{rLB&zIAFY8`u zEkBV<^D7{r3M{O!=+L&sL~+taW{paPHgkEz3e8&w^Qs-_EUd_i9x-z_?N1d}z+geL zxT5bMt@#yUCg^>?036W$sdQ;Y$~q<)elncp2&l$vco5R$ir4@|H*F2W z4`!@tXkgZI1XufhRFjCZwrIZwAvk+);X5pgr~-vsHl4ul&WeR!IiQcw_{NF`W`;Cx zCD0U@75wb*=!--qiZ%+n4T=_~>=$TKytPu-O(qKlG4iGsRuE)@!J@rv(RRJo1%fi9 zbH^H@mePAR5S^-*Vsfjnl0wO}TN7^BoEi9qM2?neE0`lB>u1C9rNJ02hVQSW8wkl{ z&svoVi0cf)R~HS6d^Ddo)awGLEXbnxCGfZSAUK+-3B6Gl!M$w;bNJANC2Trb%M&G$ z0y-ZyWoX83Q8)zy8ml=90;`2l13PZ|g%wzb01*-g6IHZQvbWt{X|K})C=~W~F>kG* z=q=?nU-~kn0>=N|)QaGQ+3I>>+LG2;uy$z$Jr(#xit{$cejTwT>=}f8y=Xao%E3ql zHB8MLCNRc@m69kHu{9r->R2T+kr0ENGhA+Mb|wpXn_P(ns}P;DxM-af_sCm0P<47` z^;R0=Afhj@Z>eZgM@2XCAqU9O6ecmyaSV21I*jDYt(B&_q?uXyX0;@gKLDHe4aG&6 zDs~-b`s}#IO20`D`WDg?CpIRG3osUj&HQnqh_Ye|c@RunA|evmap~s#+=>FP;Cad< zF3lQ0})RjnHG z#*Hzi&_pM#7<;Yrd7~(%rN9Rwf()yYNDR+q8gUsHS`^&`NN~Z%!bq$@OcJ2nC3jU! zE#!>?A)l}*i28>0JR{}=<5)BVDxn)J7K}z?^@9j}60%}MBt+hr8eQvWqm(;~mMZTR zjLz7@vc<+de%j38>p3-RGK50FaMi6vvGA;~Y(P&VEQIphfxzbpjmw%7cjhyAjoxw| znR!$R)-{t$hC(dZZWL_Nfz+Jw2r(Q)PTktHV4!6bcdQQ1)6Xp!p7JF_6`|N3sPF)% zH*E3wMXTA4^O@u_sENBvORz3Ot+U``-SPpeEYO|-yUxz1R@OY3lDU;nUH?*?wHi|5 zRY;mS8&9ja(-12$h|z33q53m-#4wTe=dBnkp4+fp(3cCXLZmuI-SQ0Rc3m7{$)S;p| zDk2Y_8*<>M1x^?Md`p}JFon{OZrp$twb&OHi3h?QfD0dIB;&MggsxhWNK~Xfy_n07 zTZ?S68$n4@OxgGt^KBao6EbgeZrn>BItpxvKT2h`aS!r!k20C8`by9Cq z1Z6? zIXL^PZyfq0{;O}iA8Y=xFIN7=kJR@5<{SLI`N`hjeCyv0HDCDl=-WHL{h7Dli@5P0 z|Dm_vjx?YDB)-xfL9{144P(VS}fF)IDkf6x23gI9Jv#`(#g z3;xrOmoD{{xA?Q3e5}gNcQ4J}TDo7*!xF*V_Q$=!vF(q$6Zx6Ktzv$1e(tU^*LCNw z7w+R{H9lV)=btAp2ma;UuyfR(3Hm;N^Qd#upAK&S-=&kz3;wO(D@Pu`;GFeu2Iu{o zXPsC4DU6zrUvVz_H-ec1k1x9A>;7c$)&IWq2hJ(~dQjZ`_>}XOUkv`_uS#z@m;H(F z70b&i|L4+8=Zb$ZxcRx8II8&;hc{m?X(>3` zbiFD2h0O0|UQho{`k$nqOZ|1~U!`73{&jLT*_Zga#Ag!wy}$K-)VuC=$G;x`w)pwj zpT)ipBl@4W{L7X%T5{2!jxIz;-Tw_|%7e}wXKUmuk>kz3-~2C{k2n1~72AKa{+f7G zZ*Mw%@6zn#rn%X<`m+$!Ha^~z#zk-mPsi!0#l`7j@U`zcJM7%>dxOj0TDn2sdxGEn z`_enkVZS@b`8N+|uK8W@ruO#qi|eVZ5Pav4GI8(voxyv5ReIN%_d9}zAKjdH&iL)Y z;DN_y-10HMEr|SO>1)8FHE7%X_&mVN1%JF3;GOfc!H;c!d=BKw1pnRc$0vD}4*HMq z>SaF_Z2W5`;dwt9cn@zr@0|7%!K+^>ohIQ0|L{|mhzCFWxtph%%vkW%zhg2_`7ObL zk8TRvqQTd`6>NLfcY|LZdHihVpzm0>JG(E=cY^+5=<22FQt&1JCcc=}#o)PrC_Rsx=tA%(KLi=vtgnREC$PS_x^S7s$<_pvHf6kvf`~1aI`NltI z^XJb7pa1TqVKC%iu>Y&2Q{dx)V9U_sm&w^56bFxCj^x%|6JMg1x)9tnP_SRAIKdxLLXDRpJ-*~z@OK73 z_LHRxaHbtWe(U42ZaL~d6_m?2t8lIDLDxaJ){HTa%~ z&`H7H608h7-qf{NoVh)hU!0mL<_pt{fX33n*FO5(FsyBJ(EgJp*z!nlDx084N>*e~clr3yoLgTA>x_n^OBz(nkka^t1is zq;+t%hgWFb&MT~ooRejl&oD7fR5nP#UEMgA3AR@&-St}Z#s;;l#doqp+VYz94NIlS ziK_+b-6*9R>aJE2wx45Xg7U4H99$jY%*kVx2o|)Y4X&Kbd{LR+G#s_I&K7IxGjHT9 z7@q!{)iS|}H5x*1HuqJ#K+BPXUXCIMjW z<}PU*KsP$r==kb;+j?3{sb;x6y3SMKs@&keOP?{JY#!9V*Wq^HPXqt;oG>{lteY$a zL#HM?ZKgSEcw7Jzs@DR?4a45irjr`uH+`C_gu6jUtzGSbsbkT6|LiV7XH5>!v`|(a zX9QUbI}FgtY5~>U9-YADG?f|Iya95|+q6^N*iCWgw3f8oDFgUo+yy|?4(%73|J~X8 z8tZQLQ;;bW=_D$V^-dQ4BbtbbDyAX=PaWyQjc8F?b4gj5m$C6u6_(ZvUh1M%QYve!OWUw z^ECHLNAHBjMjWD7?pq9L2PN+%A|;PecY6=i!--I+>~hFzeJR zfyiz)XHGR8`wh*@g(rBhV0ElJLmjNEm#U}qO4z1T{?+%$#!@h!|A_so5=hQ(i@$4o z!RCA%PMzE)H7re6PS|eFR(&9cI}C@xu~~0g;BuT@S1tBgRKyUKh0cDOxzdj9Da5K{ z?u=I0Y%$T2xP*nE?h|i2($WDNN%k-wadTL=I?R_|XUZ_rsyG!0xfy=ACY)pI9^9jArb$<~OwY#)W@7+sWmc`YsQm(-A> zn&g*xjat}KzDUjvA)0yWi5!N9cnl_`J0O!Sj$1BiBh1=!8-=s-S@v?bO7-cVtLzI0 z*AS*6H^-!qgs00a9Dq+Xw+MM!XuwUMAs-yg$g9(YKe*1cY6j=4i~}K~2eREZS#1Vz zw_NmJAqV_i0_+~Qa(m60baQhW-^=oAbSj!;46?;8SB;M5=9*#fpuL{SD4%yk#ILiwijy z!U~Hz@8zsl=}cKo#-&?tQgb@W?52d4iF4!`oyqGG$~md{B5MW(9Fa`rBnfk!wrET- zIn{+Rzwpk66Ko8LxOdrH7DFAk z`Ib%-X`f)BBHfyOkN5JGtJJmOA?lt}X2ZN_Ck9wl-^-hGt_6iG*$p8bgY*Cgv=I@= z-iKmuVAH6bjoYU$rA1-dzMro^hHg~OoX(5pB}m5${OB;e z531L&MSAl}L$BRcYJ9os*sA#0hE4(@j6n1~mcMQa5-RZR>LeLkwE5wK`f94c85|Z1 z5m*}nlEW_bA5*+$e#T9Cb#+w6nUoCk?CeNP+_N42J5d>HeDNuTGOX=Zb-jTZQD-Ok zqOXBHEK3?699H)!>Xx5r3~3|Hz*J`VQVh0i7i00&tjW*R0jprRQM!}@K#`Q(ry=$% zGp4glb2eH^&R0aNc7J!&NUFSt>Y2<1W7o*&xUp;WCE8r9EK#~wv1go%B4DBoa~$+3 zHGx&-4ydl)YeT4VfY)eDY=*X%!L;xymQ)8Wh>=Zu&XO^Bf^Rv_FlMJ!LAmkjZF0`O z$~%TXVc9Jf849$!UeRPo5~A;bKh6;`DG>&Y`dE3F^6UN@IdKF!GF_QL|C!xa-oCy( zH1zuV&g@q2dLn(GjQeeWu9pkv9$xV}o=t4q)Yp-1^V+i;GrQSNxVFa|^0sw)sXe3K zFWYleiM^vc2DN-GvAUqp8iJq6WH5tq{^wi$?s3To{T4cD)DY& zo%aLY)%gD!ug0H={ZZ^YV;2eL__HnNqrVcZa{Bz2+&k_L=a(^=jzs>aNHNmZ{0q%X z&23FzYr07!7W?nw@;c0>-M#69mu}xEaAcWd<2-H@f}j3BzWA*3^77i?!nOx555BY9 zAD(Q!s&b1ev1p0Vu#U|s_|L!l#kIkokF5+l7nb{ipZvv-FE}Tc*905B_VG#Q{Bm#b ztN-@n^Uj;gJ;8tck6(P#d1tvhSX0L6`r>j|kb3pOi_UAyoxwjFeXy=;VX`ovUo7&# zhIWI07H(tC3XTBb)H*J1z)d}o}+)s!2fyrcVama z6fQqF)$9fD|IQcBQb#=ajz1>x!g4HV{*jNd*(|pNg^>s6oe!6z!Ds*Ei`c%G-C*eB7v?415)3p(+=P@Kv?pP!hU-L#m$H9L1VKev>h zn-7lt;?o?~UTzM)@6`t{IH#AJg6&`Z__TArRtn<(*B8$_FV#K_elP#vCAS=_eI_`5 z;lbhH^A{d;53?OxFFKYqNkd!aCWM}RHdDPj}9Gf(>Ze6bi5)}0-W9IOTZ_NP8R zG_a_zd4K1s}itV7lY!+G2R}y!+B^P-f@e{La0>PyNsLhtpSU z3-+e>0&jx9`=c+Ob7pGu!PX!Cc;+iVGu4s{T5>o0N?*G2xi4L`L+HAAag;k3cDXw^ z315kb)ym2xCC1aC3)!Hwo@=rDFf2$`Qljs?1VEokAn|(+AW@#t255L)oX%{xJxEmN z+&WSg&1=LVWpRc3VX+Iw9XQc~8lkojfQxoyFH*i@0*np*yvgJg%7K#@<*^a*N!TxR zy>bM8A+>G`oekrwu@D%oY$7XT4wWVZ6fCSYCYjyA24-_}vN@thhNOdJCZ3F@WXpvqP5>9*f2!NDhjvCt-RaJmB#m04by+=PEI2Lui zOXat-h@YyUYP;T6J<6sMO6rKc?-%!0cw{ck;3p2RbCqNIC17O`dL=jg5-;8^%loEJ zk_HKlB%QCIz_=ErC1xSDcFI<8s{ti>wVA9%haIo1r5}SQ!2)MUqlum25!Er@^#ra= zFgDKWN|Xu}Iu(R4)B&Uml`vIax5N81I&F)RKBStn`3f(Q12dH!{7MvgM9ZA^adG&^!d;Giy4BMoyr1Z8OT zU<__ds+ZQN)e{UOVG=nZ5xednMX{I4ZPBDCGM?op&E%vrwsZ=-t$k7zqDh^xiQ~2~ zUG%m3+O38=2Y8S-JLRJwO1;ChrGc37HKBC{gMU`|XK`yhk(!+g#@~RX-L`0#-W(OG zTR~wDceeAXU@l$V0@X`>(^}3BSDVGhqUBgY%9x2SDP5{pny~Iy3r%Nc0MW|D^tny^4lhy?ymJOo)zl@du~^5U$w2SbdvFk7A3HS z$V2Hm_}ooYr6}PcQuL3J01d*^avWSJ%~W6toQ$WW_p;&F4JD8A*gVLawd$AQ+^`aM zV$argP5MmQm{dik>~>{e1NF)*dfd)8r~*^We07{(vXeO$e=8~_IRhLV#Y)BB6?Iwk zuuu`SiP6?Zi?FWO$%Yj!`NBb&Q;Rcpe@Jbm?>GvS?<;4%xso zAQ?(H5||KIGfR-26^}^aT1WfsQpH^z;%l+v!)L_-HS$)$U^q{z6P+y#eQoFYHiBEk zX64bLx^XL%$CBL`X*&Q;emB{yS&~8`A_UQ2R{Vy0I6O@mZ|+lfB722@(Q<*OmQ5B| zq53YrbQa%@zDPaT2y8v5cwWi&b?RrT{4{SBR$fGNuezNtJCx@fGwX~1IKZhu=Wv^D z19GNB(9feByD11n2Z2Y;?oFapsNSrva;GYQ+{wQ~v5aj5U=Cqk=BmdV^D2KaAJ8}_ z1f$m|m^jY^TgbFgq~f}H)fqTyzywCf8n0Yz82#%=>AYmCIgwAk zERt^%rj3wtt_cEy*Hg&fkgv6iX}6cP@WdT&DL>}FNfHEvy;E?P#=;EIjxc$fNOl8S zd=)IWz-#iap7KS4j&M^$_9gWh-d$U&Lv{BIEG#j$%~of_D-#F-lQ$cP3nZNlhV+{H zvPIU@bZ*aEIL68T8rv!zDK303{lKj z_Z@xsERVF%0Fs?3RCSak;t2DAL(w4F`w+a9X<)K?PbNmRDwfl8hA5O?@ZX~}i>CXP zi-wpMU65Mbc^gG&rL%><*pQZMRfE-2)S815+}K7Q#@_iLJlkweW=zRcRs7dNgE&_h z3@88G=v@^Dz-IfWn==ZH<2v`K?~;xaL*Klft(+z!Q|?M3PcXblQoJg^=IOzQ&q1~!z^3e=yYf5AV=2?u>}Tm+ZVv;#!~guCCwa1B*CME`LybnyHojX0nN3zlo_6CMje$x~ATFIFQy@hIrD&>h zKYT|BkhjQNn>fw~IopWWd^I_{g@aN2F}Ja}MenA2VZ z9f|V$CBh_nBRyWvrf%=%TkE>|vKzcaHz&LBbZz&xw03!GypE*Tfv+w;t{A^M%u{v% zH(;vDWqFRQ%k+6&TX~;d&wUG6y;_G4rSiDma$VzwjMu$kYp3_j)SBLumrIPEJe1vq zEi5&VPOl$GVB-4isVJs^+o36dGvHr(#jF8QtN|Ob253jZ-GNJ!MNr7;e6>h%R%)+v zMLe`ea|L6Iha1r6$X|n+o9^SHMV5#tF-w&8C zyl$X_#ZOeOAsd@zZbh{(8{vq+%PG}J3VNFKC1hM_+e;EtYa9H@;=*i~te&6%RnD8@ zncQWyi&rLY=u4Y_>QXce!u>F>_?hJrr-j*SS^bkRhD* zNvLn3Zd=rZ;9jvHBkC7=f|Js^T|38frmji&nxvGghU*IbUCBD##_L8m0q%0QG(kqX zWV>IiLhqOg#{wq#p1-SMc@Ey)ajT~^LQ&mGL)1{Y`RpQLA$MF;zM{xh^Mr7c0!3OP z6qprFlX0i`LMO$DxnfT#2r`62iyY$>AGBChuEy@2WT@dD$6Qt3P7wg}ev0jH?OIBu zuiC~oy)9OUsLoCu=55FfrBJ!_WUeMqn?e$t^k1TGzPVMM5Dg1)q~=^Pc00#A3eHq6 zJo$Fke;t^@L*~uuP-WE24P0>hO6u~D>?wz;J*ivDPem|vM+hjkF^`*V^en7K4%Fq=N zZ_sQ$cXe*Da;Gk}iWOHl4g-ZrPqEBFd?c{0aR4+wZfe;EA-gn#Ver>%J%H=BsiJno zrZP!`1uB3UZU67X4!<(q=5PK*gI`UrR(IPH|)nVRD z6e4cv<5^*ljjhwvWX9{HyU2_5OFzq%m20;JW3rM3$-D$2viU`X;(fxmS5=A4o85lc zr(I{PJ}oxj?GR%GVa4Gw@Kn@Rw>OztHPWS#+fHa?V3N8ldKM78Q@M%@jMK}7f@;f_ zOMtRKSS}Q>Y!V@cV5T z|4cCe!jr~4X?4oxvqhR`Oia;mj!I@Kwp*6cWP(8RS~)m<5;EE6d31vguHA?dGNv~e zr98KUIJ6w@iNRRRDkS_^GR7CtyucUk7`I@FawA{WXmcrQzg8}3T<-|eK>tzmH3QAV zRTZ5sR3OOEH3tKWjL>e66au@k(oGqOY$6}nd#i`T&x9=&D~JTA9X}JTKysZ8GKOTs z$Qu!uIQAiNPK&&lHs4NU?o?GoX)aCia@>L+pfVBs0CmW}9mt7?_#ij(m zs`im7!uz z_%hY$@{yu#lC;RQqc~WThE5x`R@Nmcif1)t-ac|4k`Q8(n!YBnFh)?%oUGvEy`y&Q z3M*QhF{|@HeJghNc1o3om`hwe_)@f!9#DC`@J^C-2oK_|qJTILC!uK%{W^vlv#~=j zm7h~RfO)ne0Uk*y*nMP^_68!!Q~FLGMrxv)AGUsvAOg6Fwc%)(ftaJuDDW*IJ1L8Q zOL`c-)`IaX5`)_~ISC4FTWNopg(`^?nAr@1s#!ck?0h{8+>OX73Qfeq;CHJL85;G* zVlQ5X_T0#n_^*Y#Ld9CBp!>QJM&umbpwvwso+_l~rK)b30}s5{$>`k3L&g|U#~q9A z7b!y>3Yc}*)ICm1W6%|8_lq60nxht+rD(JhF-wGO@VKDLdK7^y!;3B~;O-{Pt%Q&J zssVEoNlk$pDd=H+FEBsaFkzj9TQAw^+dPsZ_Q4w@kp)Y(9yW4|SZpFja?kh%NQ;Bj zkjCH6IHcH38FpBRy^Sfxa$P_Mi7*O5$fomic}!$!+*gl5&}lOY3>hy(Ww)soPjFS? zX3)(FQu8be%LYN;Z(xpQ%i|IvH=QjXqyC{wd=(MkbwQBmWx*ssOBv$uP>ehy%o9*C%7Fo2m2h0TBB1y*tI6Fk38iiS6Zjduj z7Eib>8S{*QLI<2RT|8jJv!&_>l!bxLsoPF;oJYIr8QRZ7J#b!>30KThBFhyq;SkEB zSN9BZ0|jtgB!Tj^VB;hb)?)QpuoWGklc{i?f13xGxl}z*1%r}!=vQ}r5Dfc(c*S$N z_0;4r+e`$`l`aHB#B@8r7Zy`=_*qiAB81}&JiIv`<{X^Rlv^siIYFA6_%JMM8{u${@a_wkXG|FL^An`AC)+-M-ut})( zz9Ia^#tLBa34YBPV>h=nXkosp+sFuZYfevbap#s;YsnjI%cT<=GVR`Am$yFG!7_WO zhkFaWbms6#7iU#D=*lV9wAbI=pKebldv_%}hd4V+EEmt)=k;tH?c1I|{A_AH*Bovj zOXq2`Pqk%O*L#QdZ^*1`%Ve|Jj{aURy@6^uW9#)~H@3IxxNc@}{P?7oI<&Sg>vfKd z_I7yL_Krl}>t5fB%SwC4mLBX09T{&ec7ZM|28n%MVpF1{y}usxWuU2PApOp_9qVM5 z-xl>PEb4c$sDIksF;Q5kt^r#4@=G9ZjQtrX_O5Sdp~FSVJwxB8nHXoUB%r6;pj_f+ z5dT&pg-MvITwyvCtp%qcxQ?SeQI^lVHII4QtHLM>70Kl5tjX|Zon!^Zc2=+Er`_07 zY?FA3W2uR%fD~XSseN(QH~IkDb~XyN;$qh4=r72oD7NH4m*G_=7RntfAPixUH;5$a z6c)8u?CDk+h)w*k`9SjaAKmVgmiO|WwXim zS#Y^pAO~_eQa#KUaPUG^{Kz)rA@MPzkP=*C+&@ljw2WY8g-022fT~zQ?jjFIGJ~pb z`4$@$fjv`&fZfFF0FA!N)v|U%G zeStG!yvT?(7Hmf9y7D44Li=c+M|joi@rbI84iUsT!EZn{K0M9@rV(EE&Hpm;@C9;N zj?5H|scn`LX_gfaWDNIP%-a;i*7hzB3pVPGliEd|8{4T0=q*~81WZm?zt&@&ip48U zhJs3?^iT?^xXmA6ro#2*k*WkZNKmK>CmH^@ssAJ8<9q?ug&K0|p|}7THCfTog4h6y zAEd~XSq7h)46C?R{V;?-Gvi+X-^A@_jCxoH&-p@93WV+^;{R?!a^CjQD7jeuOnt_d zs?&53kp=GEt=^(cO7^S*iVBLHN0nOi<(^_r@r8;!Qo{pR?gj{43A{v6p1fu8k6w7j`d>1yqmm3SF0ACU*m(ar`F z=xW&DHH;T*Ybtbt?`~Mcr9iH+E|*vL$X{%gzSj+#&VcCO zQAgy8?p%alxiMM`k7G!HIP$M?+VtQ^$ApggluTHKig_EubNYICD7dAwTUE8Q7wxn} zx0T+!XJyKQn%`U49CteK_k~Ibk4~kP~9%uvuTx+P-@61 zklNjBpXeYZXsjP1wO%A^146zyIWeQOpubLnmDN;RH$rm_+rFIza&?cHo7Grf*Rl(H z)=sIgS5;e)43iJv-X zp&+g|ZN1KLrVUeK5(^GX?HTjNb78C48#GW47Z46G2+&(%{Z+>~Iw=`?&N?gk? zdNF6}NRHt;z3X|bf0f4>^)so7$qn#0X^2K0IMwI{m|+Vo#frUMQ3H0bYo~hXp=`J< zG7N;bzPY5#;$+u$q&GvO&dKb~;B$0k;$3r~Mt04cyv~%j0w=lPXbLhyugg-#4^pM< z{f@kk%q7T;ONsEnY&QbLUAz0e17_{^Yp5a*N6t80fE;|~%TxK1Nd#NTw~8F>I7b-J zUK4NlD^149!N>`ePF|~oRut;8lQW^}q$@`2UT;jBGpwPv!wlRc4~|6WGtoNGbn}AY z25?5Mchc*0Ur&GU4qnN*QP+vyu>%rbxtX8lNZ-bi-zl3zqumdU%(z<>@LTj*W{|f# z_lV&49p`uAWl~gguX>HdHd}BYX;_x?*z*}4BbqZU_J|t^vN;}*)WNK6GnH=Reh<|X zRFds^6I@#(kpp>Ob)cCX$(yDYy-yJfdc+1pA#ZKXb&`FLi-sq6Ip4 zGg`$ugPJNBY-?>g@3Tz-R%jqeev@mD3tqmW-;tphPk_QYIF-HLZjPN%$$&>0O#g)fAPSFi9pMn9vQ~;5# zCt1RTg|?;E@?LGxkpM5ve1qBv_2To~f#_m-i2a^!5!X-PsEjdxO-eQ~^BnmxMO&^e_x|3P2H|7DUVuGfz zNUNX)<Me4gb-F8 z9erE6GKBETcRWR`D=*R6wJzJy^PVKs$g%AIejr*8w+{d!4ZDPI{T3j?0gInU@sh{qS;uOTg9KexG*|MvCW%hJi z-~nz%^B3FB!;ugI{ogY-+H;0qtqNA5S$-2_DY3I~bIx{7;G%dqX+;@nVPju7FVf%G zAON<0QCrDo7H_b`l@5zZebkl$r?gj~Tg*b_YS~Le(HabPF zd6cXJSQ0#31EJ%t&r&03=44-?il_w6VRaB_LVuUVsM6AmrZHfNr?o)K21qAH7qng) zG~WqCXt-yI{zSa9m-k$ok6 zE5j|2z9%r`EH9rpF&lakxH}L`=^`NO0D~sxaoK36ae3Y}BuAssx+ok|?bJh2Om76=m zgP-$$k%UFaK=pao_EH?Xq&{JX9M3aLW@HItQmoYk$XXE|u$AC))^8-wVAItZ>^*j5 zM@dk%03o`ErGBv@J15S5i@syFpB5+s$*O`X-L5+9^oqO>T-|Z(wuvd(a+h2FSg1(g zYI{pl$fe0x&=oRb7|mmoZ7Xch-ZrekdA1e);s~Qa>W_aHlmvlC=U!HiyT|m1pF}XXrqSDAc3} z;GC#x-W{Q~bC^dv{c)qu>!&z_omff+Up;nYcS%%~5)=|od>+?OeRs6s_yS;@r*n;8 zTJMSoX(i-kvD>^)o#3%X&Z=_Bn6U#->shJbUBp@hn%m49=AVTn;A6Yd98;1Hn;D6= zx#ucg!}BexDDp5%uf36zRzh|p;$K>VuHqQOgG(f z)3LF^GNk2es8Pmu&)9pbF0ykw<+s@`8OmV;;#@E#wqOmTTG+BNp49lGV$Xdbp>rt8 zL&vbFj7LmXx%h7OC7qqR8$EQ4)^?lOJKQ7#5kVFz%z?|1GtfW^d3P8sODtRLIbt1w zK;3r9T9bG!FmKr#OB2=la;S*kLfx%3jOR4dU|{7Pv|YDl->|7QolmIfydX3T3laW} z!stLProD(t&4|t#A=JK5(6XHr$~W#vvPda*3!=7rosL~Rxl z=`R<6P;-kg0GNbcyZJYH!#a`>Lojej{gyPx#*vxaOM>#nQbSUwDu%Dk96SER*Ymbl z&|tpWBw4f$9oJ$(xI(Ay8av1zwL>#+sMSq07J&dA^AVxQtgoe`R89e$!IYe?hibpP z24}f~ZQHR)WBVs|z6ok7+9IWMJ=F|>df~djShXjnZ3gZIW$l=oE9;HmiO(DjD~Zj!C07vQZ>9C>^V_0dvz`} zFXa`vFQk{c$nJc8#8zy~TWDY%5;_e6c9!t!5?biEt)_Y&F7T5+6r~Z%U*Ni}{jh>f z`XX~WcEgt(1u#?9R~f$+XVcZAyaUT@8{QpN^|p#s_71hMxh(YV24l2Jy<6Q$f`bqv z_~?>)LxvsO?qN%@Fm4z4MsyjIhB9rNAQty%V6rhxF=?%ZOPL`t!cpeRIac6-FrT$x zG?9nlJ%hqVSs&=;yt?Ve%lpA0TwgF8ESTI5jlP;BZCY^%hh^p++t&o;?%OGn_J>dN zDbvIe8{iPeeTtTc#s8T4Vnq~B+f&sviHP_V5SppBHn^<$N5Lj$tDlMzXH?-N;UHR! zFH~Wlb}}Y!@B|iYjL8QUC*-*CgGv{p@_j=cKpYl#+`x3ox^bUF(+uOYXZ{IUdWqQ|S*2*j1OZ294-Ft~% zZJXkW#5%4#N%m&FQN8q7Lla@TyO*HTnUt69^fK+bqOF$*4&G?EX5P@$wBg&1b?c1# zgD+jM9q>4-<1Orf_qsc-Pt8NjV2@@XCdc+rQ9MVY4?=P-3PAm`UGD5F3l%`j#mW>3 zXSjirEMezNyrfV$SR4zuu`&|O8IWX^#ENmJ!Q6F!07fV_HdzssffdtcFc|>gnv4On z8i}#i=>??69=P&MUoj;! zm18WsTF+AtY~ikdiPsp+<_mTxOCnuLf9UJSWKWq&2sv;Bl2@%744qr5z6{rokj|E+ zMn>SANTvw2A_lfqMkody;QazNvKvfHb8Uc1!BPdEPc~f2T@=0 z+k7Thk$(#2BjlCkiiXFgX{*u{*~Z}%B$*?|t0#<7L5Ax#^LBGEd}YQTr!1;uxEFYy z#*G87D+zi)WXbGz(Bxh7q}u&Zf_a$R%vgy?O_SDa3at{2Eyp>(CxzWqiy`ZM{kbYE z{=XAuI2Wfad3Sl9E`!+4hDhXK-WHLY&3{Lt!_MBs%0eKmlpQ-F08(!Ai>3@nH%F2Z zpHwA;7dJ?_V-)QvC!~O(=o-@o2V7f-yE-Z<|7KNMavzGsB8n~`w9zd0GzQE(ezbaf z&_i>AMS#_}>tAjtam|ec#9+v3K7|Up=Jt%z4_6%6g&pF8${%t9V=eHa5 zM8GG>qk+2wQ4-L_?d7`}L5SnUB7k&CD{Z~c!$K9dO0mJyF(u)-S9S-PYNzawG@rAZ z&HKak^+5zG!Xr*XCn~EDcvM2R&Q?y5-})li2@XLy*}l!Jq$7B3xMqos4Dkk`f>(1x zqfILz3ruT6_HR}T1ye9!Ox(Z&6UMfjS3M1HW z=d-heBjWVgH+w*JeBMvu7g%z)`1-`*Bj=t1E*dp zRD|dRcAyWtn1|ulNzvJ2RjukaM(3i=?5?FBhsbH|;XxQ%niUY$J+sblK-qU=Cp44t zN)lCKD9}0P>1yv2(wyI9__(R*5*DU277wiop(n%ebajdLnc$f!QdxWatT&*e zJ+RZ;=CI$&IYOt5fL%0!vRC|8%zG3!?SMJc zj8~&jItn4VwswmNSe%RGAwHJS;?on3rpjo(Ch8g@W-B7Otf{lJB7kPXBC|zhzHDwe$&09+#z@RIWTRkJ zx7q@qTmEZLUf_YtWU^jCpky_zN{Dun4_B2`F)*>E)R3{m)hnqL-Z=$k<>Qo zZW=k_So~F6MzOvMz2>%zkUz3WWi2;&q{X4=>4foYbi36kxr4Gp&x&mtmm?}n>O`WvlW&`$G;4-ZP;cH` zH9RpVZQF~v|dh4 z>KmD1VZp|^4`_G^iB0Bh&NNVSI}w7Um+A_3`YgZ9>;s1({Sey- z&dZdPW!PC;ri#$ZWCwOeNC6*e@v^9hCANb{PMx=tVTg|Hri{Xv!mTKVGj0d+cr}5? zo|JJ0Z5?bIEF9z=X(i?Uh_7ca|9cjzmT+0r5dv9;{&TxuK2RP`y#p~yrgZw41 z0Q7Zsr3W*IydF>2R%O!9czLd%;!>-03m2dcMP3hLw=X?gTFI0$3z^Bx>zQ+z6PbOP zt(oGY4Lzc2k=>CdM>;v%J6>9^At(x=l0(@&*`(%tOz z{+HBWrv8xlk6%yyo75+%?@xV+iV{2-KkBfzEn2lB>yJ)$I0JH z{z~%al3z{!VDfvDK`FVCEF~9`lLU@DmpqZ&m)x3MpKMRY5`UNYv&8Qvem(IEiJwmV zXyW@4-<9}$;-kdf#I3~J+@5keaWL^zVkps#ufc!u{?hwH?>D@!d;iA!#QT2lOWqf~ zn)kjp=Z$+;ycfMA-fkjWa@)M;#Q!G#$MN5a|4RJl;$MybVElXIpPXp^7=P5r3Rt-i znT)*d9LV36cM&EqoM|6*J54?DcvDkbllQ2LbW2OqhCb4rq+>Czh9}(-<~MbbZYS+| zO>G^d+ej12vS|b9)_R#F=^W`somtWurht3zy+;{-I1$GxN{1hGXUI<}-)U;pZxpv z@}&en?$v+L@bY`4(W(WN<-4R+k;>d5El2?B5{iRp&xwA950WP*2ijKjI&SmY`EK-}M*li#dCIhszNWPNW}5kNH7wM`d@sL7IuZ$c zdL_(1rO{j_&HVM~<4g52YWQN9Z&P!Dv<3sVFTbiX^})PSPwycAd{`!>L2`+eeXvCh zyiA&TTCcf$Da>!`Bz;zCKnM9Pzeu_<_b-rEM_uxt56jOA)Mvu9LE?11ygL0{Jzt$W zMVhus2HunW&>Ro*;za!eVfb;SnF4k0SUq1KA0^Ewp(1bj2x*{VQ}!%rQGq&rxSp>v zhe&&IPvp0JkTe6>ta=VOrI5@t;{D-^rZuFWsi%eQ`$#uHy0@MWtuH^VG`&*;d+Pa0 z?+(*DmEKj)*8p~YD!qfW>hwyyc&h$Gz1vP&BY^8IZzC=6K23VGo{o~vX^uQCL>{S^Q71Ol)0%>fq-i*zdNz<|MIO@kFhA6=ATbmcvPuW*`D$Q*w8&2+ zmnW?$)5zA>%PYOEp4Jqst*3<({iM}tO>rM-O&N8Tme)C%BVw<1;PWRB@3c%DQbu#VL)IPLlDUV zLQ;1RP)M>M>O{NLfXMA@h$57hEKphmR5w=2Rbd3mIwC@IYXvkE<0)7N}AnS5rMgMjEb376>YUwEjFLS{(vk)0DHKtYEI_>WfLt}n zf>f$$ozjv80K8XSh9dR*JheZUd@C7A2WY7 z$pQ`pTJOe5qjXq$Ec`%-St}?%WHPmPNYiku8hD$uWW2yDS-`hNO^0LwfHP=G7BC$N zbxyJX`R`f-5(ZKt1PRFkHLNL+EKrBkuw(%s1;@OaWPv~pORh;4kc4M>HOT_yD=k@| zwCa>BP`2_V3zV;E<-)PBF@dfw3k;-^1<-GBnu#88@*%!VzO6S)h)pjAVh*Y50Fl!azS%kz|3=0VM`lSxY! zlr)!`V+jMz(^I4yvOwfFM1DLPQp6zXSTtsh4Undy9U57lbRwRxk*y~!t#NtD8H*IQ9~B2ftQq9ck)8QfQnA3M-m2D1j5OeG|=!>s|f?JNNEWJkfL87NEk@D z*BnR~Nbyq{69&wI%19Wf9*qV<6{C1Y`6dh~qY+3LsEla0Bx#@@f@74lCR5l2cq}cn zW+GQRN72O7Y{oH)>4+Ml1^xwX-q~G z+vCGfq-_Z*B}AaS6LQ!9%^h22{r{J}H;aucOY{81I5(DiVwv1jgg8Y0MZ?gE6MNZI9E2+rT^w3>&Zw z^n*RH0WWP}Y|j90yZvCpmoC>27ljh&hl zZe|vv`*+I=IE6h|b<0C|*_3;zW(Zkm8P%S3qrz!Ai0xY5FI4|?p~u@8NU{oH+24tQgF{%29Gr%0PM0wP= zG>T}~(YFfte_OVB(`pUQQY|s2 zx>!3`s+t{?R)tCjn#3aJr=*$RbsCSmt64;gw_|QN3uw*i`;o%hna%9x+#;x zpYv6JOit1R7Dzs&Ot}@UtntyWEtDS3>~{SoPcflAB`Y9mNz;tEmq%Oa z{1>&LSX&~on_7R(@Aa0|$yD^3p5bS5YN^N|V@fSlUh}o9JQ%pml;P>0*XZcNJyY{0 zr6~;$|1%(FY>8**xJun^f$0FqwwZP=XhwNd_D1N1%$fJ5&Ao}PFPL`|N6YXH44J%q zuYQM0sM*Mb$xT#v^42LX1-bL|n>$ZN?mRrCvro)nfgla3Y&Dzcw(fR~=|y;zrNl1p;Fg`5CSyVXk;>#X*% zIh!HR4WOWQhf(`t{g5_)Sah!g?-{q!f`a4BWj#(Y-3YU}xYvPQc~UZ`naV7cJA`pF zf_Np0^K&{#$9sdhmDO~~vJS+D`BlCoq?y&qe!>m*hLyUek?yV59&r;nLNOq)Q5UEg z(lW*!eP6k_cC8Yt`^4Tqah>9$ibb(ZFbR#Ipn1dLq9j`07QMnRi=>QpGe2Y$#_mM! zelG38+N_VR+;gvUfkNM{?)%8vx=986So&eOwKoHb%E4s8Y|{$9aY^`q7eC5fjAmWt z#~M7-v|KaWXX*s^LPgA}EMD{-^A1c=lbKsH%B%&fA5a&<6H{e35+u#Y`60&Zy9Nj3 zft9TxtYZNonx~?OYeo~CBA@dG?li+ z63I1d^+`?9n5rpF3NhYXCYkCm0NIl2r2zpupTS)hJL>|-y}T?QHmY7Ng$_}47qE8I z`)gb}LUg4PQL_B*AEkr+0d^M_eX06|Y@D!ggf&L0zBu98)Cb{|S&F47oX^V$o}{g53w?PWZa8xnKF~$ho>--uD~)ekd`u!gN|&MQ$;ue?-}Q+AWb#zW zk8t-U&>QmG6Wo|hR%cRrc`;TuD31?GQ8dZHk95@U6Y4s_mLS}n7hMAvuuAhZh6wPa zy4o6tgi4U!&FYh|mzigp;ZyPk)2DG>;tX5^MFA|F zjA$L<3_oIsgP#93m$=NTDp8%7klNz(ZN!u2ZRsQ4;!>nHBfy-pUI;fZGESRIAYCY# z@3nUb3w)1t>kh#VoB3{TK%0&-G*YAmn~zk_FXv=62~Fgn5kyKq0h2;f94`B9>5 zUKdQ2r|!iKxhx@;UR3**(HCwsUoG(q0cgSazk8ovbXavuY8(ZHyg-AF+FT0dPT0pP zVS=J>T2@67dN2$>D4d;KIUF(WO)ZGDGo|TkV!s5k>c%E$+Q(||vcn(qo?JGBRxzKV zK8t~|{EQ5HtFClqkWuYcst`t(g8bPDNpjmKPDSe)7rQEai2UP@>#?P0%V@#uG|jv) zH!I0L7~xLY2)x)hKex0rN3>h)uLYRwLdL#o+LQd6&fvI@>Gq zzL|i;iU?m-8lWTuYRL%HfWRuHsT>gD`aooJP%gzMLYHDjw~QZalM0E{tk^nNZc>r8 z*|fAma={P9^}7`T6^<1;mB@>N15O8VaoQ^vvy7L)mYt$`Nu3kFP#~q3{+x?;b2_q} zsnlrY5`v#t{AJ?>^E`_Sf1;S&1#5G*cj3cf8oLye5PHCS#tF{xGi{z9hy#3@hrrZQ zwOjIMQcPBn{!9y(FRwD-Q>Qeg@d%YGfOlL2vM%Ve~%KF+zs8Zol*VX!*qG zK|eG5a!;p!s@?C(%bp!{_y<$L3~ujusRskubox+woDgur%W;b5uW)i=Y>dG2&UZ6~ z@xt{>nac3xtHXZp^o8tj`jGFx#&@zE$!u__!_VIE$*ti}^>w_N%HNpo2@a)m!I7~M zfBK~_Z}?<%f9HNNSN{3WKQxE;ps58Ypat03sZBAa+!hx^-d&5df*3!l??P z+n7-se%j2NHfv79enaMK?@1OQl6m`Bs6@;y2@=j3A@?~Xc zZ^Qgo+C>38fYQZ(#Kp(w9><7t01WN)YllEiYWnoJR1@8S%aNe0xwK#K0tL&qjf0Qu zRQaA9KA$X*a#&KWB6aE@4v@oz87sl~#f>UAj4I^!<8%)2+GKuwmzd09M&HcfS<+mcMF=c~uc={1+>~3|ZxisK6sVBC%B7?3<;P=Fe%N8&sR$Jep2;q9yloB8<^&S~{ z8np-@$c<$#Q4_X2p z!>Av#Inl~?@U^j7y~2lLl~DPz?+naL*PgbP$#ypS*#2Y9z2)e&5a8TJ+B$KNjs?P) zR7FucC)+sZlm3?Ju)8K_pxZoS9ky(r-)ZLzYK-dEmo2$fJyXyD5>L{OY(+*U5=gl- zTEi$9AXb*_p9vd}CG(=K=N;VdXG0U%muhR8d-jVVIP>bVlr8wY0qgfr90)pCk^0Rh46N0T8{p_0erp<@UD)q` z3eF?$(<;!~L{v|!W~@jzQES6IvLP1WJb}$0B_f(1yMljn95E%??7S7+Z+?EBGohI8 zW;IntQKWB$!tFxsixhiCTvOS9fDzVWgvne*o@%aH<>OXy_^t42v404Pv0G|wly;#Y zYaEoLu20)F+*^n4x|P|zKbwp6l{p--NpJQ?yniE|PuTmgpW*e8ji;^E2T+`|PSj5k zj90?JJ%6}UyByXJAJ|m{Z9N=w7K^6b#QQA2T;-5D)xY=K!7ma--z*R$q~*I1w(z`B zPWiHmWw%-^)wEOUV5jU>Sq0N&7A3Y?im-$T2e30|UdP!AB9K%vtO7TQ>s*-V1#@+S zY~3>!a6>Sp4djp-MU=a5)AdrB!oeU;Kldnh2=rGS)_U<%0mk7;$5S+-NK(9|!G|80^o3r)yL5KBMhB5BEs35x8@ zS3B$JGby~f4aX$Bu>bPX&m^lT?8BV{KMXw5uTum(&ez6UYauLTo=j(LF@AwK9>ZEj zt4X%xhy+8{ex)|idS!pUwdzM(RO|6`)GnXbJKDcnQd&N^Zc5c4r?tr}{GcIAht5YV z51N9nwrVp5GNyucXPRBsFFct+p{OR`V6j3Lh54|1o3qmm zqgknv$Dmnpqx0%4U5t&k+5%;~h%FQ8KAKypGVrbK zm!$W)&LKqHWYC+n)2+8!RAURS*KE8b!ZB0;39WE#eJ#>Psk5n2I& zuqRa$aQL{=Dz6pmqJ2~-)gE%gLM&Jb&_fUa5~=5Xsq%_Qm_NoP4$aXioYQ7ED&Bv=G5vIMd7P=-eO zHDKGI-R348s7V3$pc<6iq_^zJG+es%r%0gTi7mIu}AdX)`Hyvyc{!c zx6Jdl-B5G8xYKx0x$|3<+pS*xWR#}=l%}^I{Zw?0jbLfM^wZ%o_YlXmyFVQcML9`w zTScowGSs`vTRhO_S(+L*U*ack(1YbI-Zp(DutuFGd24fPclA@^sw8cm{L+{w`=4xHy7HGR&69Y6u2-NZkM+`KR_ed!RtfC#RLpzkOVXGW!a4j#X)MxwV3`wZ(X8U zWQ0YF!G`uPo94K`T+-g0ey!VKW%(8ALhCo`LObw%t9FYQp*-6b6!SS`-rWGBWCimq ztxWz1MW}3ct9M$nZpzfN6nBquNi%^iWqFV;G71@yQIe|p@r1|xd$)7p>Utw@s=8>4 z`i*2XS5r4^JmWl)-OlTfS`U$-qlbUV#bHOn9R8dXB2XO_3?kCGgJ~}3MPhHjJKPKm z)`bCKhq!Bp2ZgEJ%2yF;YxmWzXx60`5K8(KX{0w{Hl#RS1RQ)VT4>a|i@thJ-DA3* zme8H})k zR@Nbb+I!}k$f=$_kWk0yW%DN~K~sk*{x2mn&au`Sn#* z`%&u$%CchpQTV-5?KL%nN{kq28`81z^LkH9HTa_Eg@?{o-lc-t;)K6eoys@OdDtL4 znEkb^0i00E4um-klTbp1!f#>|ReU`O{26k#vJaTFciXFje&tWdvtE%-O9jpM! z(~_1YNY2+K0RS_L7PYLX{`;m&Lv&fKvM{a)P`T+fE>pB4-WP^WjtlyI$&jHdNkz8> z0f-M)nsDXrY0GBY3`1TMwR3{LoT@0hGl@l1LkJMLpuLZYViphI0k(P^Hzslm=6D^l z6izNleLAdP6cyA585z9}Y23PW91l76_-%Vq>j-ePZPM!usQVtZ`YeM_o;eckKec2< z9QHwmnps7)Cg0|DMn7*VS???#?H_IJl5Kf@EC2|hVZExUj=bIi2|MCdR;#a6tnEst zk~(FRqL)ym4YL6vNL<$rSfulaM7Wx;7p3J!xoBIKjxK&jp*ol-xieLq%#)rc1PPGA zF+cG$&UCxe%%F~v2-lS1awap+fUhmv6D6K$ifMj#wRV&{KDf?Fwfoq?L7=T4;QyoI zT?0>QEorYTa<{4kRa(LDEE-SenTZsI`N$6<fjD;VR3+nxU@5^CxK&3E^uYJ9Ersvvfk)+Cs)hij)+;4U7}Xh3N2gH zV1`pJde8jn5*4brlj`Snm2GiJFzN0K*$F4Kl!Dje6+6_9YRu7kkv zk>nn=HAFwcPCl!hJky=Fojm-0t+r!5)8GYjIngiP3e2sjU-*n|G+enY?5@&#R_xG* zuxz_lHa%bXYsV;3@Gc!pfC{h#?#9J2zPJkFoHWy0%uH_wAh$QEBGi`;#M7Fc*r0a4 zdA@L~Ppm}?EjH8j+cp|r`GmgP5V7-zXbKN#Ypmsr>>L($Xo{IW$# zyv`ju4kB#fpvqSs9%Ghz%rEnNWWF9_W>}=x73lh$F(BYCMNwpK^lO3r*_{!cP+dZ*pbTn)`C4ya4+lQn~JU|lxf}r!B zY06yoD%`ve-QxJ$ucWU_$Ro>!?7`kag$47xI>{K1q!a-olp((AF&A}mer7*eV`%PY#0 zUz(}z2p}ZkiNwDFcL|BiwiOHilP!p$bG1)_;G+y!0_A?P2>?vlC1gUI-?BL4Q6Ph5 zE7|d4BWn4U@hxG3kq$tS4|1+FT~8g;7s8UKq_=DS&`Ota-f89(fg7w;@3mM>>pW)~ z*)^n(TXyN_HO56&%gqHd;S^X={9~W$3P3hN4!XR(Y}(*LiYM)D?kTR*z1&JzH<)@8 zU=$-P+uGD`@l2iv#q2Qfu3a0J^T{I}QCyoe@vcT2^H@0d0OB+pl~;c}4?8%{536skF~ z);Ar6plM#`e&*88Td#c3;&7sfW6X5Ojc&s%>u^)k4A%)wC#wtV0wB)UO%o9QSTmPI zO4sX>XHcl_Gf&IR<;6-btXi=qr5SKPts9vEcULe4sPoVE-B_SJHS3+g;Eh&$oauro z{W^KsecQh0)5GlDKljuAn18y^na&rp1tn=8LOW3CE~J%7o!ss1RN~|{lDD6IJb+Ez zPah*h{37P{z>aLgTAvGopdI}IC$y*A(@ENxp^?rZ;+T@D{$R9_zR*R><(yt;ex{F5p8nV~`!bwSXTl5!$Qcce4jh0bIaZvisY`RRh6%5`PZ!5Qw;en&^( zcPe3BB=si;(mzlANxIhd>)-!h8UahhmO>H89G1TxI#rRf3YEVHoQvMur4)(LdZU=4YidN*W}lF z;}w1#*GKy}c-SR%Y^YqYHXAwKWuL`?aqtl_2xZyO-gnE|k7`H8N46V3;--w$veU?@ z=w4X9Yc1#5{d=8wa@{T2Q%}8!N{tVt20IoS;F6cVMy+(1j$DA6mQU9tuIl=>wrCBp z{FF#A<6CVU=VlnpZ%B%um956->@8eY!m7_ZUUFKW1x8YlP|iNVZcv|W1?bHrmntBtRil3;Z2Upw}*o-z}|*Y%i&?7%RuU4%Z#+Ih(g z3y{Y3=!VxzbvsBE|Upr4) z`C_&j@JFv*mhMaV?@jXqF>tq`nH+l!7em72p>eB?HJ&8gm9{klWyGcRhCC5El!4cs zgu{tuY&XOqbRwVEbDoRkyM})57*1TfOx5wd|Mq|VS!cP_5G{imFEm8&S)}Dg2ao%; zK2zFI*)B?|X0hbeM!#waXx~4|1#sA~N$S%~wF@SX*-JtSOAeJrWDKF=riuiV+E6K+ zVzJb)bxaDtz(#{W!PcgFp#`x}5<0gokQ01w7~%wa0W*Syo7l1Bhtrl8#@hf+FiC~h(zx13iP}#?1J7AguIpI#w&<(qlfWG zw&4kcfWFm|VaPPgFWcxsL+FDvzTA+rG$Xe2UA13#ivq)2nssz78wO+X87fg=skk5~ z2HB!^Yb7ITIoWN{C8gD4KD*F3UFHt7uK(y;!ZHNRj5oPZhs2!o?6knj(<(-h##`L!3gfgvlS`YLzj7r<*h)|x5hF~`()Lf$>*9)Z;zHBu_ z&@Fd`{&tkDH|DT9O{})v=-#MOsBTL~gD&RzYHc#JS=*F#=SN?n3cF z<9&S|yAIt3L_MGGcsd(Oo>+HH57%OI^M$*q%Ma zL;Cf|U@p~UawA0p5cmz^Wh-;zg0Wx3pbbM(Zgv~rwzi`t{^fL3oZJO8d0R}#Yi-_Z z8k6M8(Q|wbRl}A&AqEk4u+xw;Y|@177{q$Fff!~vYUhhK`xZyiF6IR4m2BiR9!@ZM z48SqF7`lT6-VLFF9rp)?=FZ|#?am%pgyxW>SwnxBR7?ty(}XkKDY&-QxUv_YKJ*t} z^^@QFwY~py`q0N^Hq6-kW?7V;5vbI%-42ala$KaC=2(uB6%Ozm;~iy6x4E@#cVxrg z4)2%~5^`JNxRNp-x3{TT+OgLMd3|@)ZaZmyd2K-zNaO(XUbNyoHMTaa1+Y78bwb3% ziY~D_b_1HPVvJOmyJ=``fj-kGY?SL*8Ffpv-2zR*)%xL%qP~l}R=+^~jp9A4gr0lz zr?bLp2vf<%iWZD>jO^(w^4&r>8elbSR+;6(Z-I4N#dT}4SF^Ha??72L!ngV2cG%fz zAi*9U#MHSQzS6-f>kJBbKt$&y=9g|DLGhfMnfO*re}9K6$>diXRA>-{@mCvExs}1V^{~Ofu|2G>{;F<0IMnh%+#gn@ciNR4RT+k(MHDr7UH{wql zZ?k8T5tE(Q;zGG0Et6^1wL!$@$wZ&S5cGWlgm zHyJpc)xp%&oQ9TP=fk6 zRCJ*~*^y3!<1=|asR+q%@*g!OT9#Z>-Cs)RlqP2XZsSnPCf?cf8C+vTiAWCA2l|Mf4> zb!1Z`FIt~ z8lIPYl@@>>Qit$!A}|N)qzuK>d}85th%Q&n{iw=7NT6v?%XP9IiPl?Jg<&T2s%2g@Lq@NJX<8 z{(z#gx_!;r+^lx(*H1-o=jU&~Dt@Fogi^gMisHQ_4L^FinT7gA?f}6{Mf3JU-&?}r zlz9i_0Rq>z!Skz9sdmU1niOR~X*yj!O*yL4xvHY8TD@z2QNf9@8~gwxm`dD?$XcXw ziQ6OUa(e#_*n-_dY250!)RJ`uhhG`3WzQ3wE!b%*5qc~twOC(g;UmP2M(V9EJsf;6;qW+J!d9!c<%ZZeV?l;D; zT9wsaYY5G@TaPsEtI$|CTv6(moQ_a&I`-S^!G`6s2f2&N@{L1ZkCp_L7N>{kEBBj| z^1as8F3#lks4enrmN!UGu+C5oX*D?*PF$p)S_C_W9Sb`Hy9;la%&UG^_8w@cGvFzBgi`w0UC$hf7XIl$wQ97C@6hKD5TmiYj)c85;-tbR(L0 zX@QPKV16mA(NcOPUHYhmgH=dQu7{noE+D~Fg*J8`PPcF*64OU|t&WhJ3|G7iy~xT; z%Cc`8dJP*l>v^H6=ECfkv=&TjVQw7uUjRq#osL+SdvYbbuyz?CpwdUb5)?nN|hn5vtSr z)!!0AglIiYm$`C$+FC&ta9Ie`_kg@DvcKlNQL8p+@{8D8#{8ExX00z4i8?-?0Nn>_Wfh6 zb|prXzg7Ge@*WNeb4%4n_62jIl>IjKA)k(7opx8XMR;dKKcVAJiyV68*gELQRXIeQ zufv37rz;unJS2KGDJYj4^<6wV1rOq&wh~&mvLuOwOnkh)P@h9`8U`7VD#9eL={sPD zxPce}bGv49i*T}TdF3+ZVq)3Gz`qLu(3q%6UPLK5B03NkT4U-X5eXcEQ`$p{1~By@ z)Z(HGK=6mFSL*@u819Qc($lgxdceFMl(sJW{svKss{2WRD2f9 zg{($m`X2D0b>6C-Y|TVjv#^i)Ck*^VMb#-%atP^79s`k{lIvrCXlo@44VidWq+RUo z3pU$)F3@=7y|rtO^Is!3*KisSL=6-C{6KzpKH~nW_Q+W zTG*I+k7Pv0QX)RU=!QLjSZ&$yc`2cMLg14WLQFp9uA`!l4a?(FL}156lGqSsmRYSl zBEA%ffL@yB-Rft|8VHc7bb$&Hg5j92CwOi*CtrR{oa$)AaR1sCsf?;YO@q##*Q}>S zY?Kw{UQJ}U#RPttIRO99i(ahs|5W~B9W}p1Zb8whI}AAY%hJ<+mM5GN)P70e98AGGVS?}k#x^U-_aaV&0!L`vGCM$;A25Tob9Dm%63`|S`n_vJ;~<%w!}>h(=+ zpL6QTNvI)Qj0;X2Gs|_cYA7G!8S1!zB5iqEaHJqq^*+B9Y3Sv?;EnuOdaQ)_pm9R7 zJtQg&T*YI3hJa*3)TIW951F7T$V2{weLYjwjvTwi6^lg4yvDms^{V0AK@oCNO2R8M zmR2>;PBh!cD;x;T?fU?&Nh0j{*K1-)@>1HUE%Pj*l>AC{qQRx2WtxgGVv8{KB2nFm z%xrNJzsW@b-rg}?AkRBio~x)DdbVB5erqwOy!5cHc9^BPQuRmNc}xNMZdqXM&=xGc ze-9-p*3r$#2Hl1TID zx-=)=%ce-u0o{(|)_)c07u~jeajvUu+8u_5MuLeMWn7ZdRAaXu*j+^VcGMR;N;VJ| z%&@_C#h0{G?U!WL^C9n2t~0W|5j!uM!@e_;ybS7<|DQFW=J2arZZUATp_H$S%)jD= z51BH?v;(3|09dISCgC~)JGDKJ*SgV26L+}`@2hAprijyRi>4Gx9`QzgY0zzvqTbaO zM=J^+M$t>fDBk*u%{$gdb8dlOo*PF|5Jh_(&5ajG%|KOVBpOm@iG#5*#w*|cz2m?6i|%sR!gF%ZbK(#f4kHhvVW-3hMN0ZcT1^*P z13%I#5i~|8xp;-vCMB(+X7dam%^C&m+9U%JiDTjT$@>p%hmnI4KkHLeVy+d82G+5) zN$e+~Q|2d|vM?jmsg5|A?U;smQaYGWI%tdJTU|QZx{;jr;yxwZq;}ep*!cHl0xJSA zz&HhMU1HGVl8bU@xXWoZZi*E3TP&W1Ykn%Y`9LZpQJ0faCt9BJx+Vl%FImd6ejy)= zFlU-kbM!-2Q0_a_1wrMubzf{xqAhS9CX4U{R^GQ1#UALQ`SXtGj-{zRHrs&cF!Q!v zeV>TFlGK7>C zsD+)7Y7a;00c)>UFbeyKwY7k?wGEH%@B7OWs(e9pq z(Lb~hYpyjM+eQk_a+44(FFC=yb;9O7%T_Wl@VsRNO!YGMv5-oc(}mOeSo(15W4!D+ z1H~3Ph-ga21-`cGSAdJq2()bpXxpEi;%i5NCp+d|ab3G)iD>p53gfk}xB59Oc86YF z#;pGRS!~VazOqN)SF~CDTJ4B9Mu?L6i7-GWFKD0cG#OE$LA--LiR1yioF4%9cbAzi zFS^9{h~VPZ!eBh{ftd1G>0e$~F2My$taM28@HWLBQj8mrDC4oQa%tHLo3-h>?!X}r zSJCB5wNnNkLWDVLDTbL%!<@BuLDKz?rN1C?Z6FDkjo>{yMAVDJdikR5;nU zICbRvLOi5ZLDn0_377(sZ&Aw}u9I7>eXP-V^++o#^o|*NAGExB$U9*Y!$XnC{Zh>` zID-@<#{>S_Vk=-86lxx@@%dXJ_1ss_gpD3~aZ>)Ojzl8m)n#K>+L{}a`LPVNbz#Uk zNNq%!R>c(tD<5+0whSR(n+jr(-(L!l{10^5;9}b8lt`a18lf}+-iYW-1Y^6@Ju`LA zxMRVUdc6%unXQ#Kd1CUP_+>=2JW!)BgSGk^gVn&+Ys-)n^yo6>Zd6~Qa|Dj1CBD&b z(@MJBd48FGNgZpqAn@^Pl!bZw#itTSd6K6;GT!c*JuV0Re`vf5)Q^kBL>R3Xv6BjD z`)Pf(HHW6ISmtGPB-^!RBTaHaw{3)(FKu_-d5kCB9R5SiAvGheTe7pk!}K6c)}bt? zED0{%O$hv})~D?UTILHLF~|p z7^BukRVoWFd0owD!yt{GpI7dGL<3|t*Z&%qx5T!e+DbhKN158lv9!bU?z3D9>%5hQ z41}TIY?+Q)qK0T_!0HN`^z$A~cZ7z9 z7rz}szh;AFcR2=S+Ym20!kv>CS+FSHnBwX^IRUsK%~+u47A0*lw*wuy%xgYJm5&XK z1%-otzCCl;4-PAVT<5vIi`kCgW48Poucog1Uk3i$Cug-Y&-tU-^w2;%e)8EM`_lVa zzjEl4{7fqAU&(*uA5EtGj^3``8)Sp`i~Xm9G5`EGLmZr*?mB}ZK1jD`ru+e-$b*5U zvv?46ak}}Z-#h0mZF_kyd$x9qNgxYLP89tV9L{mLCD_v^9vb~BT=gbom^dAYfD5+k z-&v}jYVn%Nt5ml=2%Zz{!ZbNaz}EGR(V90Y*=tJjCZTiGjK9n8_qFavr?_Y@T8&fg zJ9?w|aIIxRkJ4hg{smps!;e4Z&XaT-9pGp7EiQ1qt?I`rf50WLq=;Jld6m4u5A@)O z^xM(|mECm3lUyLS0TXvi0^HYx$KOi6LE4Fj=MzZBDDW{In&l;jf-Fj_Be`_BdYWOy zCnX6J!|i;qdA<5(t7X1sIjQN{PEC$M(3!00jFN~xtUu-s$R^kP192zGT4tvIjJ`N! z(v_0wQeE3%_++VS`3uB`rdlFRTLy~sZ%4h)KcYP%wEz1ix=ev-x34gNC5cft(U z`=ZZglaMaM7@O=;E3(@99I5O}^*5eBTBz;|iJFVS)+m-*RqnNf#ZPEC676a6UIlcz zw-pd`yeeXTsj|W##Y?Lituk-zK1pc3qfBPqEPWq)3(_h@6Yk&FJKuIg{OARg;0r zt+j;UEh)$gL_uV{ccu?9^PEi5VVbSH62B>_n7S265MqbIoqiU|^g2961hzGAx|_TP z@|8g}-*QQ5M|_smbz~3$okdq#$HqlqW`zz3jX@f7)F@m`ziv7YWq{^PEtRQ{F&P~6 zuWIqZg?d?IlHN%{clT_AZzr26Al2&@?~4jd`(R<@@e=&oyEimd&`?-ectlk4CXaG3 zLeHi_`RpI1HJeuE_R-nUsm^FFl^oUf+F)RO_CtszNPhGombeG z@)8P}npVDdgqm5w&2g=)&Bv^`yhWcSS(R|{d4cr)DrcTTOI*09=9J@X9Zk6v7^I2P zS+rY{O|R>=o|uThFFV1qT`L;bhm_YKr2KSqqh{b@3NNN~(=yJ)MW3Qt=GbZ8zbzKm zK7K=mqA%J3xHqS`lr2L=Obr@f%4?64kn|$!j`dV`I`L?e^0X#7s|7SO5%g!P3W9lw zLtLW5kEq0h}98WDMY!(KX8=FkqOcam4R($!h{l*_Bkk1d*=X zu60NoUrwpZz3cm&-PZ4g3Oj?AnhJVNQ?GoXSTBDd?xdmtX6%;$!Z;Krt{ z03JM-iZykVh~HANCLE4g{&hnO|FC|8$d-ktU|L_maLe+;>1ZS`_E7Kg5mOGl${Dsh z)o&<*tK2QsH2rX2dK8*lp zv(@fMI^m{w>Ri!wTG9eprf{`eejmu}88t*Q5aw%hrcKA*#94Ao5_{4mYe@5eaHqc~2PpWV78=djOs?h;=R*%8V`m5Y1$)lfS|=>-16bj%|nC~;k;JT8}5EN5rE6@)Fy_2wpkWS1^->4iiX zDRV=DQ#5JhGHjZB7iz*4mg=6UmBuVRl(xvGcv3F6$-@BiGXbEoYD`;?#iy;aY|z&& zJ=3HBVUf1nXX2s~3bg(LAo&EzL3n9FVh2A3^Oo&QKE}oRAdi{Kd5)_9&wzk6^S5I{ z*3E!rC#IR>aoIHI#}IhKyelm2jxjqs*~*Ead!i(a$6PR#z4QKpEh2ZE%X!cExwIId zsCu|TzUL;$?Wfs?d)NeTne$bYIS*BlNBs5*9`2c4(o z%iTTB&|UuorGbrI2qbbHW^MRTOdA2!BjchLU))wJHwrgVwx^9MnBoPWs7B?Au4;cM z+eGV46W*YI-YH>jPmH-2K}tiR)hCiMtDRV)J#Zc^wfC7Bbn zx*@ozo0#G?3B&FsdF#2(0dAuQ#b7&V+FdPhXX$MwG|6RHt-GP&pWsDl3}$TO4aE<$ z-wvp$bcda!tU1%#`v8u|>D`thk9=+**~LtSuc_nn)iyS{Msj)43=$&b``OJFsU~Fr zBV`PXAFP=~2^S}Yh>OoMm1z4=V^9tv+i(aw#7d=hF^psVx2s}SE~TV1 zE}7#?c>uz5*SU-|=XA$*S8j4l58emr1u0#s$|8_&hZ6pc9pPf9=PHN1l&ZV7*McT6 z=%;K^nyNiar`jo@ZkjJkUE_u?a>;>tuIskmM0#`Qzos?h+m#xKC|bE{r0W_G>2*uK zK-sWnNP0?SRmvkApX>nYjLu9(vyi;NzgOBW_MLoXY%q_RpDb<|^x4ZFJD*Nx(kI); z%FFj2WKK`<)Ia{}X!e7i$hpW9G^iPlv9#4Ay>%bEr6XcYvF5`bi zmT(errKW#@bRB``D`{bJe&#M%KMYKx6WkG^1{*d_}Nrp z3++;;HG-`LoyGAC%cx#Vpso`D0JkR3}@h!fRj(axg; z5=!-#dB*ZAR4pl?Apco!3!K#i?=2gzhR>~5-?Nf35cDLZy-`+b*F>%N?G#N(!f~CB zq7_FiR>bBB9V}|^bw?PONA2Qpt>m^(1SiIGFPoG{l}jLPN|3WXLAX1BVt790ZZ|7& z-ps6Cv@GcHjFXE_2(rlR4H^vey$Z<^Z8@phg9c@+J?TDZndO$??sB{-sV_9!eWv^;Y$y)68G#B2WK!ZvLf3lvk=_j zUj&E(bT)Lcbd%hruW+%6*AUa1pDBr2b^>t{A_!^ylHXa89?La#g*XIP>48L8R+W3U zkC9HJc2MtW-vybGz`bT#j^0;QtO;TbL*2ixvxdAp>B1yvO(xq-7XsOs<@|H1e829KH=Ui zP#@?YdQ9=1j%OLx-}BFM|0Qp0!m%;&sqi%HNc16vi6t&@tOcYi>A1nGSd)`3nZI1P zF&(Ft`N8{B3>^{_+ySo+q14FAsRMg`FwVUC&_-lSu>y$miL+gip!~Eci82*u50uI zR%dcmS`(0m32fE{tMqEi!~!zh-4rKF1KI8~_L=T_MG2AVWP`8vw;nb}syPKs`$Hrkgh0RvcK?_von*wc4N`c( z6|ZinAykE0e-44<9`XGVB#yg@O$xK-w5U{XLZOhp+!c6yW8lHe*S2{EmkPI2zG0`} zWm&Q=L{UqyTJ7d$=ousN`pCz>Q9mJ>Rc2SyG7f3{)}8$$4S|VYInOUWQ)e$zIdZC5pvRG6N-S*gw5VfJ zv_XziUYzB1y>{e8@u<3!k}|-zvoGn{wykQ<*Q#DoC#9)%m8krx%dxcO?dOX-^_O^- zKcdrVB>@64l7)Fq-p~*2@BnDw6PpT#|J2e7dlvq4%N7Pb@oAS_J}B+qNL&$e@`WF~7iOJrUVr#>zocw%EZ>4^Z%b33 zG3x%YJ$c^pU-2P*x}c`Cw1_;wjrj32h$l130&yplu{vHwthn8*89Z3Fvv!RUl)F>7 z*BPihA<#`tsQS0G06yX(uN-w?ME)6INCRql|&7jU#@Bh`!a<@y9X77U&e$@g_emK>mV&9fJ>L(NWD98T{8kP9z3#>E0R zOe1N&5n&l$=OOTrAQ86#$DSW&)94Hiep!nR-cy zL85d5j-*6rkT){V3IlJFT6e3T@+P?&w{VkRlo57ElO}2GJ!r5O-{$V1p!__)VxMu5 z^c3z_f-xEdjD|Ia0z+~=hq!~J%vHy@3Ef{M?D#p2I?lJ4I^AhVW+9J@zGnrG^vKCs z$erh*Gqb^I=Ea?o^qr945IG6TcUhJqYSGe@B?eXGtLL%Wp zO?-whd@jN!I%oziRQD9cW>rgHp3n%Epd()5B`)ni zr*bJQ8VILT6xq=?!8pBS!{HyKq=R)z^|R|AAWYuxs0{cQdZx~@UC;OVnbawN>LBs? zne2tWzH12;ihu8muY&Hl^^}TTr+r8hJ8|xwV zpD_N*WBtjlf!E*f^;7KsGo*z_7jR-cH$$yL+VAc7D4XUsNOg>N9_%F4fb->16Z9`m z`^o&#g{l1QUs3{O_mu##ngBWO9os4{RkeK`6bA`xT0dq6@QDmhpomp^!+~cc00b3* zFnbP|%c|*D3gW?W?cXe;XSe_=L-1HLku5R7BDe_wUs98Zy)^YK55#hl9FwGRmFKZ# zE^*ui{ELQ-7Mu9<+MKaHDQrikr z!fd=EQ!%lb*V?=j+Q*@+cwqQ7xXL5Gv1Rs~S33C>2>h-J1`-vKS@yu&=JjqGhnT2_ zSs4375Mlx!vuY10T`(J+xHez0@h$;j0Ia#2`g&aZuH+(@n0g4i-Kien#+-f+jdC|Y z!>*T6xqha`>o$I;xp+fFA}-8}QRbw+@chdv6Zg!ibu@ds<{yY|@S%xl+Jrqa6G^)o zpU`~9l=*!&)O0dtiVH%wUQM3yWSho>&_zk56?DO2AWVrHB>ZAqevIy*9SZ`Qxeg&y ze4R@|J=a9IaUC%FZd$J-%XHB_RRD#VI3UQ|Khd1{mV+Sx=ya*WYoaHb_#9OYSxjwkWxR@MrPJOJVLc;aqD`jfsbV15 zv{rPAFD)}UC>;XLyCJ_pwKCv`>8>sPZM!DSOsz)tJ4IiNZpPGx+2mz&68$dERHx8d z$zkKJDPG*OPk{_c9dkD3X%RzGg^&S7Q0<-L(y3l(=fa}7ei2%D*1Q?%l9g@Boc1R; zxoY(VD{n!x3^)xRK)>bM22G$CD4UEUySf+olAimRP2P*7U*uYAm-s5XM z;HqoYYsLbFp;A!k92=5^Q!Q!s4keYyZ*2^u@q&scWuBXMFN zjN|CDnTpgy!$9=~$rqeN!4@(}%`tLL!?+(>u8Sdow^4r6!zhS^{f|%)D)88pTI00! zj2*SBK$M=C?hn)P-7xLQA*Q%KPjyguBecgN9ut0KMD5xkCocOQcTq7$11KqM zOy%g_6EZ3E*j+_@aB|$yF8@+Zi=ti|7Y`otX+dWuLF9w}5q-2{FDLb(evppT>vSEj zQRD8uMjtv6=uFGK(qjA7^el;J#_%F*}xf#_S>zmy%o5 z211srYQU556fqlqOq4kE&C&iqGZ&HMPMBASPwI#2yQHu@unNL1NQW0S_b`-yMn1aK zqrsz;_eq_RLBq&$ZdP{y#dJT|;{03OcH_Xb#i2;-@E|Y27j%fJm8o{ym}*Xoi6xe+ zOmyybKIzUDn7c?yfhD206WAKY?Qyefj^>gnO@{%)dsx%LTjE;g;ZgN2P2?;0!pRB` zVUe!lwU!qc2Kkcdo6&jc^NnWMPQ(=Cbhw#6y9C1Bt&t`UqbL!hgOy1MO)+GD}F_rmLKmb@0!P&cAt);y4FloG$+ug znYvOlJV*!o)Kea_-oRll?hHM2I(5K^h6Q>jDnbv>*J_(LQh!DGp};x`C!6LYj6C+h zj*N=fGm#lhPL3TF)@?1I6jRaQZ3;~-l2W5S9Oq&6jMhJ1Im6T=+vh3*a6AlFpV;DL z%r^vOz*?~mtCzMgR4SQJQ@pJYP~`Ix?8i&}DYSua}L=Er6+z=fn# zf0c@5+5Szcf~_oDXhC4+1w{GKHyiQaRG~DsQ`5%?sAT)DRga4u1(pkD_#@qlFY>u? z10fP_=cAY`6%{Km=^!d>mepb35la>qL~*e_t_tqrrBX%nO)0yj}b1ijjihF8g6vZKu}EgXaH;QDBQ=fx{$7*>PTY_XL+tc}{A059{;Io@&)-?T2OUKF+V>nQCFY^+Y5s?j%UiU@$AQdh`XCb!E&P@w$QvwY} zI0~H!($DmT5r__Y3QO$ufVw)!LBZq;>}2K4Lq~5@jUI29Rxv9cGVvxwStcB%2Z-jb zfqkK&8J*KkvGzcl;86iekGRPs5Gl)c$;=V#7|xDRFlbH~$K}2rWK`EPQpBfC^6;Kb zQKp$PY)n5>(2kfz6P{i4ZdhQlAe3sgevB7@@2&bR%|EYl93Le6BJ=*lD8424A>3`Z zWQt+Ll5mraq_I$M<84%0i`ESC#d1~i6R#ZMnzJ*1S*;b$Wp3#`phEIQOy#doBW3ab z$x-@*1Q{TIt=E7Y^~cUV^g59ejD-h@Z~cnY7%3( z31j)+W-+|sQ8l%W8oPZ~SxCIXc?!Bka~#ybEr|4sj?1Z&@Fm?zZuF3ioIk-`xD7qU z&s#||f&%DnTQhuGm63Lw?K6BBh|5}Bxv3iD>MY7UF9&j$Gu3_U9%U8?&4UmU?`vh$ z$y8r)bfVDnL1yT^+rED_2xfyq<&z+HbT~6q3{GY8(>*VZ<;&(D5MbEvnCQnyf5X2s z<=@T^wf7wE?3%^K-<=M!90Wg^?H%o&819`wchJ|93r4c|1Na;jPe_5H1A?ARX0p&5 z9K<`oPv`nhbfP_&>YdDX@N%H@Wms#A$hRZZw9~NMD?)T_oY-R8aA>#e>El1-XEJ6y!FvTlY{p-SCYn)Cl4d!2hsNHwFr~vc zTUGY$4`kR`aTi~svPP(Lgw`#F$4jd7(LOE_4%ck0R_jKcc~erTSn+M) z;~48Xg5cTDQ}`kG3$vY)m- zC&5OgIAh;is9ohwKJIAZEjjp)>i}-t;WU?#uPMu(WFjX`rP%pCzfCe*WSbMP z0fn+I)=E@;UHo3qJ2KNk`c|Zm5rhj(>{zRf&;~{8rVL8y_;4>VsPX%GU;%icJ9a{? zH%L{TD79?@C;HgVxZV|jG)9pEl$NB#j`j$A9NB~u)xDw;?Dc)9kF8&-V7+!)y7?AAY_1cMJ5t^|m2E!LGN zmmxDWj)(zu3luYQdO-ri?_i_$m{RRNN)`-}7Hp@5?nqbcBESpRe;!HH%iZ8&3e%){ z5=*=#5l2n;v{qcPy^gwZkRSN!fLANlUe*L;1WE z;Nlg49&@F!Jql~`w7Sv)24lQfvo=cxd_e7j`F70$>h4TZmPjqVd~IZy!TyFOZHcposKoT6zUPp6d{Yv>1jfic@vc zrJ^&To-L;Zbjg3(b-m7OrrcBo!L)T73DWaK)w-pD#AmykIdW#xep?hpuO4N#%WmY_ zBiP;0B>E2peW9<@n#PzSPccc7$2UxhPTZ%c6Ik&)wu){_!|pMl1{3tvEtB;F3#^T% zzM`;jlZ$yI_Gjt1Cwpa3jq8_Vkc ztB?|5ENFJR>5ZEcmI3^dg62%j8T^=EBZxs>FH}+IuFl&g#)7pn8x*m&_e_)9Jw`2a zf6NNn(TWkM$c>y@U5B>%?qV69iY=InA*?uR*9gDp_j(P2o2ejoke_3SH}Vg6M@~s~&D*{z{@M zMA;2$@Cjjv;(f^F&d1Q!x9dmtGA-v1vQ~1x^3qSaWRB~BW_^wuSnv~b;fp>S;^%NA zawt5A`%{UmwOPtyTBe~xx=U*lJi!8(Q90y5oP9R4VIn^5|ICEM zPk}us;Uz?)dW6YWO@R}maW8sI7p>ndZY;}U{8@@RA8RQEU_$7!f%Z^^zMFrC%gdwV z=tZ%$i~B?@&{GlA1Kf0|zlU=z*#c(aX0yh6nle}Hks6;eXcNRL$eXn|ceM42aY%W* zi2pgIm3Dqbs1iB*9A4K6ZH9TvKqDfZ6=PQ3cTb5-T({5V1oQ+NPTR?hRMz~8L0w$r zrB*Zh!Z7Gz!l6{x&T=V5&f^prDQjrv*pU?4dpf2T_mMcwGvekP19?qzwZ4yB#dnfi zx<&YX(X%KMtI6Ir{uotFZR8 zN{!CoWBzf;A9x9|x%Pv_jt*r8v%Tcp?>RvrKRfhG8NbV)I&#bJJ;bIzji0|#?%yI4 zV7WV;>Y4UWb*a?PaTtA1KGmL|N&Efy5oEYX2cT2vr~Sexr`C6O^TEpLu6KpY>BcE2R1F z$o5UA|9;zw`?_snFZ%V$#NPDRE7Os-uJ1nndgYnFxBd0Xok-*#?fv<$9X_=8uil?I zxcANdm46nAT;Kb%-S-dg{l&NMPki?uudMtWaETvyZ}0d>;n3dA(ZWIRzyWX3et!2q zt*s24=sSAgX9rRTl7EuCo6HCQ(0k4QN5R4Dzv=%*u)A0M8!NBxef9N?nZ0B0UXAYE ze*9qkyZ_*Cto%;A?SI)j-W!|P+kX7uKXh+{nzf_a=)2=2^xHwH12;M`7ZHBTRt%o z|3BjYY5Z@-pG0Tcem8zQK9T;n(~Z=8>U`#p)2UQ0`9CE8H2E(lmty~{Z87U5Ur83) zUQYe@nR@U~Q~z$}^8^1R_y?(fDfsw{lDg8*TzGT%HpKLoR_pfG`*WfsjDVkN|-|LLlKL zH@V^RzQ1*UQe3f9RF++;Ropy`D;j5 zRYfB8q*s$>SPv#huOh9A;-puqJR4?7(kn<)&+10f%T=Z-8i|o!M!KdZ64AFy!}5_O zq?eTRffv459Hw`*@?w!bsIIY|c7`7;X(PXbbgU+}M2)qF`4OcThWY1blWwczXGt#z z^R1)vNo$ZQKaaFJSJLR`@)jd)gA zrc(_xh3QBw=|<93k*bKkZK#w_ldkt7r4}E=){i<~s7LB`t+h6jB4e(sWdi zV7ipRVQTvO|d#XhxF5xGy@2pBCX(38gcMSeyD+F(yyqb z=|pf#>2UPHO?^Ol8VH^w9goGWfg53&`x!uRowOQjAw8-z(*z`f5z;`kkpTq5N>dLM z5tN4bK?4U5^5coHkTozE<_pxp0BKbUX$AeHH8SQk=u;Zx1*AbQX(%NIB!X+C)oG3R zDrp*9purR?<(a0SCrp=sR3f-i`9O_bCJmXzsz?_qAE<$D((1Ju?jkKvEB_K{HKzPL zX}-0FA1AHO30jYZWwxpQN0rY2lz-7H898ZQgA2TXwCu$rFH4`-$4m`8Ab7a)u^M|Q zOwUn8=PLP-Zg7^gcm_xpoFT1_s{HA&%v_~UkrqTdO8hwavJXy>)+hz)1G|mN1xUz=VMpS)@883@AQV-%1#0Fd7)His27|3u&NU&sAd*1{#4z zQxOL9)R+kaKhi1CNf@YMk&1+Y$}3;OK;RV;Nf?mdpl>A%NbeRDB@8r8O`<YaoEy^g6v5(XMQ@->h!P+E;q;awD`KIP9AsAq(Ma0M2p{H$B@IaXYPcc{tT71#K|=Ww27H_Vq-6;Mjh>Io5(co$ zx!_9KgaIIc&dL%76$q7QgaK1fmN3xVs}m9i_>24VRFR~C=1dhy7%+l)8i9m?crsut zOBe_-nWnOYfjYN=bXS-j5qK|E^7XBRfu?mKX$b?BS3MF2!q%*=mjY$}&9!-G>13(S7mn959G*3`GV`ZwXt%@*+ zlmt>q1A4SwJ(4gGBs5A11ErykvV?&~qlP66ln*kNB@EO#<(n{|6RJnTK=~S&gaKeb zqRvSesG}MT!k}bGB(O*t%v2;{pn1{=Bn;HBK9DdVy;5^5VL&Gu1omBFexu6ltd!Rr zOBkr5f>1>mG@zN3x2X*LW&!$FS<*nXsGdp~D6NW27*s|kVW5fxMhOF@RYt;K2BAzC zFf!qggaM;mtWHQ6P=1XXhNP^#>M>zZsxkGpENKvrN8$pJgn>GtLJ|hCSY(mFi!e|b z1GQv<@I#Q0ED#&kG)Wf3;;~sUrLts!@--cj1xgFjk_Fjp*wK=N0TorLG06fNvx+1O z1a?&_S)hE4Sh7HAfmE_UbEyV8NW*%oG#%}v1r?PKWq}t{ha?M>ueKJDhU_`7#*d0H zXcV|43&4YRjaagv+6zG~SwQ|CjX<(M6$#Xm1*A{wTgd|Ebz=?~MIx&sZ;0f6KbOzd zX8$ldm~G2^IaA84Nq;YWAw4VgxzsPGT9O|wC3}+#6JJ3+uZ@2yUW%`eeK+>n*nKrW zs2Q%Qul{g#zB=u{*T3p_cwhAfy@k;)M_(1)Ty?!_bL7X7H&loJMWgEn$Iq}D#N4%^ zZTtl09Yy~b9zR8@+M+v+AHkkeS66dx;xH_;HIq4XW^kZ?q-S7J_)osK@WNPMTX%7I zc%Uuc%cHx{)<1BaA6N3lez&$T+Uf0`IOOh(m-c%1PaJfA@xJN%IjcEwz>T!u{)o4K zV!wOhh3Wm?k%@io^^0yF@eWSxbCZWZ-6ToyzUt`2!g!>it|7DI%wSJ`u!qOx{H?-JTlWBup3$L^w!ZvGeyHtQvA5T~ z_Ej4@y`vLt?pxoTI_e#oSm6G2ymY7}6kZW|E|UAb+~r(L_M_Q>Y)j_%GmmBbbdX-3 z`eLe-iYNalc{MpJ@!7=I_=n^D@z&Ue@KYW}+B4K?>vf1>)y>Um)A4)480N1q-2 zLi9;|AEv7gME*VUT=dew#8vP!jeT@zVpR4ISxeb28J&=|G=b+{SAL?Kq@A$B($O<9 z1Qy$V6(9BLm;4{P3lmrMfw!-G)UE#SQ~SKbN3 zH&E!H``l-y!L;%LH+bRp8FKc!SNHg+J zjN*8Ch5Py9+sD1G@^beZzc=0Goh~nPPkny+w0Eq$)D5f#^-q_VxJxH)pJq6V-H~rj z9ilsn+&9lNz{BNE*Zaxo!-h4hBJYjl-kIB!{ZRJt%s*w`m3b`vKhqyc?@Rq|s*wEm zFw95Za!J z0k`B~D16^UzkAnrz}rI;eeR9VmJY${dfoQ#Po1E#Ywp#rqOs!>SKUWGH+`H|i*8^A zt?rrVaqbVM_he2^T!}~O>N0EAoEgr$1CKEqMc;dKgZomDocXQ&H`|gt4H@*Ieqi*4%+x;6( zPaHwIHMeHAAl-TgZsqM6CZ8BB7Dn=I_D|d8p?uds+l@m0n)~8-zSEF)dE|E^xi{zb zXMdXgjm*zL+Vflp{Mqy`r5{XvICVWWC;7o-f8xc&uO^npza4MDdVUtidsnjq1NQCe z_5MHjzvj>OzUbZbHblP@eM|IFjNNakS|9mcHdyZRqfMQ@;d z-EIBY)Btoj>JEMmx_qEK;{M?;rXI-bDi7O~%X3WjCsT*LUF9cS z`@_?_U<-q;<;$>zz2yP-*-uXGh4b{glRKtg87=p@FYEv(c9whH+y888Crw;)ulX9B z>}2_>``54Xs#q?%7d}NdPL+GyKOUYw??P> z-}}p{K7Z_Rxy!X3o_>LNXMVD25uj)-z4@Q0xd0W@`Ew%%ffQD>l>cDC5_$V28W*|xX z$JuT7)^xI!OuRP4@wnuyHdx1pNpR5{n~QA2A1$-0ZfM9fY&+9`Gw+^Q4p|;7x4VBi z3!y$zUg*B@sp$*Ra+_;>KLTo7d4XGf0S0rWJl}ol!tE=d={$G!k=p}c;9OV#x#`3H zSh_sNjr`-(s}Vo5-K*X=jmTYAZguH@n0lu_R$Xp!pZnwKUqbFQyCXlCI_-}|%d_0s zk54~?9Bpzhd;&Roy4>jg`TJ9+k-iOX`=hsey`FNti~r-)yd?vdh6_X2^W6hOZDA77 z7yE|?3tb~*-A%cVE_|ZXJ5a832mcO+f4W@jzVtD~-sN)6&6_A)UU#ybjYpcBnlle* z+5nR4|hU65f}f+^d1!8l6%v8=<~^mr(J6& zEuEcs%Ds2#?X#%FuXFUPZn@w4$n+`af8q4P()4Zqi{g8|I+Do# zowl(2U=u1|O?@TE2Yxu9R*krJbpm3-@_oG7YG`Z9DELez+4e*kajT%1l}De7J)!3_r(yzgtfciCJ=M3$mmv%6`jioIbpQ+^16V9g~}yw_cuMXmVYFAcP}C!DgFX z@}xN2JT5HsLvhMMOeOVEgM2y?twJ!)n)C!(bs&!W1G(jad(84cAfe0MA&MNsTEzNS zf>ElHdUN{~qU|xfgC_<9Gbd8;F6#~sQzO9?hXZwjHbw%uS;$w`=hk(Ome{}nVj<7~ zSdoKqTKDK!us2^w33!TuJSA(+hjk1DCH1LZh|OW#8~LE#dbgQAU|FN|& zH?9&dZ`XKdY5H~kCm61LFdB?l_Z1l{IB1!zGd0N5J*;$|9eUoQ7r0V`@ZP1ifk1t2 zWR1&WZU)p>itV=Nd?w})$e5~TH zGKiwR14sIU`4o!IpQ%(W2#sL^LwQ3dbF+b^6@&HkOHMfpg%AmO?a;-6KrS~r8Fejq zdIp`u$`spESXjChtOWv9c9Vi()LtmfYmv(z#KJ6&T1mVL+inC0$z7s@8is2rxo^>$ z1)I~sX3uU(S15EJz4MX*l1_9RrAiwxz9#1>^$a}b1|()gM+FB1Arys&jBjWl;v4!` z45CGyV(Lc?Bk-*2Dg;BkKTzc#u<31~Q0;OaP)2{S&;U6D&Os}Bu*yHE>NVfVeLS#U z^%P1$yA5Bt<{`|S6^-!c&az4*J2)}IDPLSU`BLzNaSa5!RgZqbTt)>MpKcZNfqD{K zPH7Hz>F$lnz0sme=AI)cJkXN*gT1_qGXDbsY?X_zxGTv<7Z)-?RsF#_N_0@nTW0w4 z7=)KC85}k?!E|4@ z=GPdmitFfVU#&HmI;!i$r?zt*<1ZTJE9#F|kJFtWwX=r7T7Eyyf+o1iS2)NP1I{@3 z=~_DE#b|uMItjxV9Wqo(>9vIw35=sM{t**1Cf#5MH&=>w;J03PTi#F|BrRRC)NbJy zFz>R7td;vH0uFd}8>nFm1w(#_{c?axt6^L*0%Z1kZQ2Z{r9#wiq^`vh+8k&ewCe8> ztTe6n5%QxD?59)|%El6oE3r{7u!V`QY_nDf3<8NE&_pQRhEaB6&-_MB!rQ^@1f34G z?v&=!Vx?NjUYP8jhu$GC_W@)3#ue!KP=Lttt0iko#8$Ce1EUxM?od1uU;gJ|fFe@}EEJ%fH?r6w`l%C5e6dXQ0^Q8lNy>~(fn7*tzUnEp#c4{! zEv}3UKvI8!q;^dDMT1UOFqQN(A6z8EU?7;A43KP#_Uj>JHm6k$sE?eKyvD;Xhl5wB zh`>U*TVm7}34S2Zp$Gy>K&YB4uOysA(sdaQK}g-f{2Ae*Ntcd6Px@_Mke`FW2|j>E zhK&U_EW8jv z0_yISU^Oqnxngi2%;^&rnY*}=MZ3fpy&4W43cEKNoFa#LzF}Cl)<{m%8}iyhaE#Z$ zu^1dAlfwsdSCWAn_|1~xH=GN7O3Z>#H$A}?RW_RkfEwuu@V=Go8_fsjIA9Qs#pGaW z$ls|ske(;)TKro73f|XMgNcuM^pm4W$OMIBCGN0Xh}DyhG^kNk;!%mvIvUKivM6M2 zO9K%Rd^Xgalj29_*k8}7KaGmZ=_x=(mrTMXK_AcJ_oinFyo*5-&w?>i2Z|gY%?2Co zV7$VAdWw0+>QnGnL~B3036?~t44=y@`N;@TU?~z`q>9?e(oM{ookE}>Y<0SX#aqv? zJYQ@Yh4ZrMC$;D*;`7LlZ=^i~&=}LZwx&vzW8rUsr!3u#D z1PKFbrMHr@g@%dHetvR% zlw;AkY$M**iCSE!Q`tHyB1jv#>11+Gmdp0+9`-D**LY>~hV1z&LM3Ey=9(~V#ATmd zpG+<6xVNP>+n&v~B-&b9bLmAZ@xvx;8+CHvI+df-3+PLRZQaEC*OvUYs8cjX=#kRFMprYqY<_4_VBhs4Ya@~D zU;Aqd#UYc^DG3}y2hj^W#4aagCZ06>(wQbND{UDDe=Q%}f|=9DQ(^EG$!Ge} zZK^{kvKEIcgP8*&O*5+$^*g1=hBbDPU#8)1^KdJ_mW8%AXNl#_Xy`pbNiv7w6w%$o zmB~P`hJspR>Il_vz-1d8f)MdT4VhayUk{y5u-_I2)c&G%V^44#VX?BFEx5Q%Ua>&3c3(S+85}j@l#k+sH>7#Wu^q= zQQmYBQ^mYp6)d}A+6Z9lF)0XOZ0+K$Urtq-y*vtCICk3uUNf0<|5ry70<=LSn&|;a%Yt~-*;7LUba6D8nrB3JBym@*kDtllVLfuiH*n7orA||pB7=puwB;hcm>0PQpUn1YMR~xm^VGjlXZ;@yY;bzx^(NR)$ zjWdWR2&jH-)&!+fGt_g}fGME|f_qds5ZtFqG&M@pO4TCV3c~Grn`TYJD%kXSXw2S9 z!k5E9yUMP-vw-$hkB6``hj@crCHDZP=rBEpgBSsKx&KHU%6nPioaP$bDgt3fu&^>sXpP+xJh_ix5 z1Fw|#LSKSoR8!`y6VDgu<_KqG!z~#4FBJ1>o*&DI4vP(V6D$`x_iJ>5lpd6gg_7A`U0>%RL4Xg zPoT_W%8itc#b0I zf1y5!s(js+*blh3{Oxpe=>mn|TmWOh@B~ZQXu-??X4u(iU=+iM1GwJc0qU~wIn^&~ zsy}#Srro=jKyl?MkeAw<-Ns`jL?^=RwpAc}7b77#TS_xaFb;&G&4TWN$S93mlhGqrcWiS2c5AL7&OwEH7ek_I<^Xg*>sd@9nt`PsIs6xRUxa@VrlCaxa(@RZ= z!7##Qb57F?b1RyPWXkvwa%wXQY8kaq;!SFt*$vmpc0AZlKw{-6_L|9q(Wms4;h1_f zTaS4?mm0lp(~IS* zxav~SVb*iQFHNfquYP!aKTPfx2q$4WI<*_rW945 zSAj-Gevd_oA2Fo|>c)yLg~7g1doZuAaIe91ks29YkVSTB^cwKrHhI`8M!Km}sT$t1 zuJ)w+Fx5rlN{!peB@U;d{|%~NsyS2j=nyx}P6sk}ht||t!V7cZBA5UvJ@DV8O{Nre zmXw0h%8;V*TN$-B*XBn(5}AWbMQl5el+5!Q|1EOi3L|FVz|>J#X?+83{l<)wq6E4; zWSSQwIc(ZbPEdqR8q%8k3z|pPrbP$dt6=Pd4bdc0-n6>_ku_JbRAd?3e+t4I~q3>;kshPvkPJ z_ti#ivo2asaQ%97LnhPE-q4m!v^Lbw$u3E(XsmA`RC_}*l}V&q)s0!4*rsKfANI=7 zpipo+#GSx;kZdmTD>sW0-1x@7SV-Ck=FY9|G^%DB5{>iad|DM*6p1WKFG~GV@`LfW z$G#D}r~1AA-}|rd4@S2~-ul+FZ++`2b1}dx`yEI%}6U3`AKDwEkd&;q z?j>a=DIdMZt6QLN#Nl8qd0RfDjB$G*RhJ;RgS?%!ng_@h?uIvlDc(FpmK0v}j|%OX zhOSNF5!3a2VJeE<$P%%B@ymRmMOaSx<~p#82=3yxkVwGf*#X;HjDpy>1|;< z1LiJ4SZ@>OD9)yRDkkbp6DW&?pJw)NGtrMipKv zGPDrJY*$WoGo9u%jyPYJR|$A>4UfycCqg3()RIhb4Kn&=|4AN{Ng0 z{|$(dX; z9CGGFD0jqWm>yv+gjaRIE2VN5f_3~NKy0pgFC73G!o5d2Fwl$WQDgMIJ2*0f!Qxxt zKB##I#AozkAwYOXX_eR8wl3(U$8<7ZG6{(~bSV(z$?6UytZH__DXS4Nm(8lP1jy^& zmMexghCo7Wiz{8HBq+#m$TE`CC1*s%Gu0|_P9hcr8| zn1V%(EUA{*JGL_6*@d7_@`na`OoV|#MNP1_>zP%A3*mJ5Sp)KEbfLv~&kP~6QtJ=4 z&v1QtnGgjFS+t)|D2*86vziO!*Vs-iPuYq^?xq9AP}8`mSN*s~9^(il#&*5~_Igl4 z*8{K;K1B*6beBmUbgph&rP`ih0%&PJqYy;FmMDsFLcA+^faXD&E2iQc(z-=jOOJLI zPVk;ehJwzx!xFh~z>4w_crEn@U3H)oZe7~W4=7T!xn(W~Y>CXmU@+J;!>!fd zEqn*W*+^rC!_Bf$TeYPWt_Zaj(ik2v%L@l-G*XD6$BxXoYu)OaR_0%!U34CSeN8%+2JZ=$TSr!fn2k zHE#4kfBkxi2dy41giYsdQwO$jEx0wq*fc3q;qP<$d6RI8xx-{M}7W{~n zY&=Q<(fO^wo9U%k2iGIWh9L}IDN<87HQ(;fplr8oNzX*$xMpS@fYEPyb&Q6pc1Sy?6yD}LkZ|JBam&jQBW&{L0f1twh?oPi<&=N)U3@vXM)72*+ytLTvPLAp5DO=-S47#9k996?Rnva7{227;r@Ur?51&- zPGjs3(h|3X(MY?DJR9YXpm0p00nMk~Qs7Hw)c7;vuoIw0eYSLnIl=WblB4Qicsrf& zyt>i)r8t+ucFR(aw$IFi*nP~{{TYe_$x)^qLpo>|ll}#i3rmbEaHVv&$&#IdU3g`@ zcGcD7P|22^%ztPdr!Ao|_3@|^LrBXmj+;lV*~RBVBHjv(Uj&AV08uNU%d%eB%xn&`eazn%GCX!D~RC+6$@7V?5p<%BUCch7lTBrg%ELsi zLUEdZke}-Sf`Uq#MH8Ez9k&oqT4^&#kkyb3=zplmZJ`Cx!iZ51t=}+~p4?F3maO;| zQXx7fD*`w`xXUMpXQ4etd_KP@xRzi$ay#k`1}Me5&}Nn*b!S!yht^K~&T&5*a00{3d}H79JcW31Jp_9&-aJ^{eD@-Qr zZ(J)uX3=W-_Uh)2QP$z6KzjpiD~;PjBjG^JV3c6)LcaxO_mZh}St*xu#Jpu((z3qG z7Dw7y@>U7gDT=PiFGWye(}*lBroEW>RLQ2Jj}()5IoL(QZc_-|H~30GGp#p__*SzJ zlpL^1d(1AZ7G}ovn5~)NgnaLzFb+{p<$WQ75wrq*TctbLqUXW?XA={}Tv>k9+J0^x^erE{c z#zH=cn*ix_9Zmsq4M<@x$TY01Z6NU5tkzl0yu){aSGim!SI@0)$#gP{tss$UlnVnM z3)m+}G|g^EHq1%PTixD}s81$#5vQG^%eB~_wIZ2ltDl!l%uA`UEDjIqI97~Yc4?-y zfjTppOtOy1Z!Hb;5-qcIF|%5NO9;bDTqwpyf8*xAuze zj`5y?xA4HiP7T`+r3V5g)U6?<%c0&^nk8(s>xo(!gx@R`z734`4(nm}`>vK`&NLX0 zkP^@&4und7*_4Wnc# z%g6_cp}$g6v`WR;Q&V?kt}Xq=m*I0aO+DqBs0`r6H9b+*Z`cRI&VR{y3XK6Y@wb$$MmbpxsalGd)kKy+$!_valhL0OdkwS1Jt;*nqH!3%r4)jo9+1;RI-mPy&tdxYz{y zWPKox-D~Q@Ce=VQB@dMZ%ce+XVLPAD)mgGDn3qICy=;(y&! zlKd&bozV~kyz4hI*M;!vL%2Dfo=bh}QF1-WJ-=Q{Ly8WY3el`vxfvHg7%>^!u909c z#%d;VT`Spvvd=C#rF2)&jW(^pyv9YsKPGjdnI|E^aOWnqpO-8X!u{d7YxqS^!V?f+ z;%IPhMdS{)6>R~*N+I8CRthPofsFO_NrBo=cGDF&Rd`Y-MOz~_)hUkAu>9PYCC;k0 zMMLw6*y91sEQlfDh&o3iEy0!3AQv!s>SR3`0+5$hplx=Zn9*Ka--iomv-0bbwI>V! zy5j_2Zywm+FOLQ@Di@ZO^(8*Fg;!kE6>b|9u^m-(SB+MCDpj)mb=jsBW4IO!&d{Pz ziOJF8bimC2FgGk5%)e%j2IycrGo~^C7^RDDRBK6$J9uWb?Iu`o@l+0oR2whhsWqmc z0q5y9ZVn7XFNZeqN2Z!%N4%e}rG%$zfk8n&7x-1V;Bb}q%*EP>&{}qkWKtlIqPazN3>v zICnw8d^ckDm{z+I*nCJ*HTBexgDFPs)&Vo8Db8=Wyf+6F;wFQaI4*fDX8ZNw8vxAmx67s3yitWW3Lo`1; z*j`T{p>6!nxQJThSE%kLqgYs zL2_Zz74@Z)OA5UhzgHDas>4oX8=ySa(a%kw@*xjT5YB~hhugNA!8*-n z^+_Hq4cTYbVi&_Wip#J`1g35@C`s$m+DTfM{x!RmCc9Z}%sNa(i$uusJvQ}hB{{J; zrCEo9!d*t5bhFzU!0{gc`jGKHa7ArbQ55fDRJ@|;^mf*bw)=uEUdt&oG>_1)A#FGN ziv$5G95xiLW)$9>13cPOV0sES2ZCx-!mHvZM=#(ca(`)Zd&yQi*E&jGNRfArCt+WlROY{XXRRnsTH64blaDt~k={11?EpfkiGT z^yvxP3k@9w1*E4`TJSM2Xz~}5vp~e16+1E4PRRVa*#S`n!p)o=U?rL)XRc@h9Rc3h z$8N?FKBKiFr^M6=vo%A6-VWu-o3bX`Y)@m#QVpt+kD8!vlhiQ1ep|%ZWu11#GP-3r zr$$w3AhVPQ02;MVfZKKBs$Ryti9`$QnJceBh=(1BlYh*Ix)p9A`p5!lQo{w?Yyj}7Q8FC~swE2|vlH%>O)n#gjJdM3a1!3XPY~c`%Tw~)dl*@hQ z4$e6&!%|e>iiRuI*-tUJ627l2j^&2msMU6sCH79%RPvAmd=;x@db6-Hmc!B@GD0h8pf7a%uY>lyS<-K$E$M2E z0o$sGm4qOEJ&(k4`i3~swlOOcen|f6yX-k0;NN9i^8*fa9qG_o*%tYdoNKJrXV6cS z*7SIo&q~Ai5eAG-M`u}#OJ(q~_aNFbfJX5|idGg<4uy-P{eS^!-UUi= z%#gLLCPhjtPK9tuG}^0Fin7nbO&p}5mPb8=fs+*Spk?lOWHfAiE z0LzR4Tf{NNtlgwKY^n0MXntc9uSN+sQ=un694|Bms79$iF=#b(+A+Jc`Mle~+3=@W zyfr6hE6msYyjRD~YBCr@25iYm>q91oYvHM0t>m!n$k?J^igyTn#&9jT>wsccYJ|3q zLDnqc1PqzHN$5tIPyyOnk>c>OY%s8)MyDT^5z#Kl~P1#u-V3lEO>s#2bFq0$DXo~`&jum*Tb@WP@B@Vnz z^ABWtgHOn4!MP$ z>M}%Qj=QBsc#U>SZNAXqy8B{RbT(4GFSvQPt1}6KQ$~M3p{* z2Fkq|JT=o9TZ)TLQOaPVz|Om$D!t4$9xH?_RACIuZ&{!|YI~H~^t$j1HhyD!KZ%WG ztHJu1g zfrE>E2GQzF^Nbau@#Pxxd5Xs}!qK^+TnuS!-hu@2d!;amL}gVSl4;1VUZTe_bxG49 zbqOrFZpZ91=$Y(d0SlSnaInytj{=yQ#q!BEC>W;NK1fD8g8iu&v)K&I#vx!%ukum2 zb&C0R29u1DiSU70$jF*hGo*oHs~&C?e%GbQgWf}~>1*+6UX2i47#*XIr6#KzsjsFm zp_GLVU05AQjVEv7K4Q3h9&O8}zCs>_%_u-2rN|ZT<*#5PFZ=zn8Ihfbf^N-`(1)*pH5Pq|FP*J$;(m6t{?~VcjsUn2 zW~s5FKI>Uu!qx(k>0ulC1Bew7)PNlp$6W-4+$4i0Z-r>WLh>vVRDn&11w=a>Z5ycxbR;948!C-c!TO;Oxfjnk+BEjIJ{wdgFG_G(X znywy>cc|OK)>$tbfP{*f8$-hrB(~2{G+&ZN)DmR3-t}AYL}%1dg(Nda3(xn|u(pw(qSJz{ojM4I?S}I&Q1kyn@4k zKxol`)Y-ez>TW{7*hOg?EC!w87^YmSW|bca?y0mf3I$fWdVU66RWk`x(aRWy!*5DG zFav>YMdj0BRPC9WTx%)Yv^Yhxto6f#oajX13cQ^qtN1S5A#|a&vm(_-+trXK=U;g{ zzm^Bmos&o;UfR05$gdJ3upm&OFFtxWCH3A8j^|hrG?jU3O$Y)!F6tQB@WfFG*X&vt{;H)M8EoO%i@ORczL1 ze-+YK7>JR0raFOKJOU+lG&pZH+E#>Un?ac6PrDODqI&pl%MVpj#o!z%A_nN=vz3o= z-aT#aLxyB-09z`^R>0ykgJUNvw%fK z&9*wF$eHUk!|Jvb8RGa_aN;G9Av}R=btY?B@IOip*ft1;ogqV!D1B459rg23q$^Uo zLAtJ)opJ|A!J$GKi;=(2HZ7yDw9$SDtTL-r-VNN7hbdd{*RoNbXyDAhHqLXo);Z0r z|Fb1l(Jd^e({i!rtpB`~O^JC)eC``rLbHp{Qah>b`}C}P5-l0L2aaMa$Ss()rn9vn zlWg6zdPz%5EA9hxsTkuyGIMW+&;<>RS$qL%Tjw@oUYI+pJw+gb)I4rruT9qFIF68P zRp|zd0w<`lIa!0|3=UEWV(@8owfsPsoma#lXKj=emeD_cWiRDyZOnf zWAwPyZTd7l-aFaiUVEM(;}1_ZyL--0KkW5R&T=;%B~JC>$tJh|-=+?`AD<>F>WRq) z7ra1J)4h}RZs@DDvv0D_z4J6dHup`|y7a#Sha;0Y_XnRPH1(0mtoy;oNgSQbxP@OO zobmq2wEN0`5Q_ESWXfGQO{~}LlS%jIUz*zP?V3!uulyB3hfhq#-5WkWbzGLU`)Kv+JMTR^Srd;mH8c^vezoIaAU zlPT%Vk@T-Fd~Hi>#0*Zqrbw4np}{HlkiWLAt^4`=zcsz2iuG_aIvoraR$>d5mS$4( z#qF0VWf1^Rq8EG1b$Rl`St+b*Pze2cMS^Kqz}H@_R7}Ny5<|*~qj7b0ZV~U}b*xW` zTB1Uzb`#=hiDn9b$|;ucB|nBHs{N0yab#8{6tT|rEn!6=c2~EIPts%3w%|A2D&;4h zS;N!LbYZBjL@VAwiPRVj%F{^|IY3{T&=ye={mpOH!aaqOCb!le%Wp?gjLX$c{t>;_ zdRF~kcn^&1rs^zrB3Dykrj#n*4u_e=L3Zl$N-aK(%AqZb&CM3hy<~ZA87p za9)#0kcq8O&CZPzIj2hQ^3rfDc(ONlOlNvgl*N_DwMM;9TseJ#RCPD6*xWS#_sx<3 zHE025Uh!+BrJ^Ye+c%A4bjFX3ZRUyesDu+&ZDFun0X8#6oxmSCsIbj`{F&8ZAGM~s zUfx6&YoZ$ysG8cdAQJgKjAU6tYC!|Q_Gj0r2vvn)e(pO)%KX&i5f`2fODMP>3WN2y zT{o=qgBA;So~D+gb_u*rzIl7JdP{Zjn4?ru@R@Bl+G>&F#bh4@!4N$~i%s1&rt#9h z-f^wY+ip=Fb#Gu?yC?F`@p7AZR+*Ptqdc9{HJCTO)hzwBr#3X6rN$PGU+dh51%OVW zO+wN;wVa3T7AGXQ<6HHDg?VV}NeZfHB%|XxCr&z(;@`FWdzgPY=@46>@&;p+KR=;1 zQ@T6#F{lO$#RM9d*CCtzcu6k1@kX_hRUcYKN$fQOK&_BSi4F zsES0VDzolu;C=@WYsI#CVjCzIUUWdp>>DotsS5h(fV4 z4~z>-N=X{?mM!FA1ZEa+3piS*o~G%uACoC5BXqa84C<7(Qnkhm&u|p=5;Ao84fqrI zS@;PkMj0*6eDlt16*ODLiHt*mHbdj<^m3#0u%j9@3Z))~L(dy&cR|nRadI zn4b`OWXC`^zeO~GW?dMsr}3qx(_IzRjN2^}`YjgPD(ICL7e5pY2$(hKfcO%Vy+XXE zp`=P}f5{w?lA1Un9`;_PL|kScG6FJlk>Y=ZcSgr#>lgRHo0x9IKbDef{-2YNzEtKtY!M#2P|^04$6oqisSmucE&@SjHs|)*ltH`vLb_|aNA79W`wS} zmpN@n%We~2DU_*MtoNE;fu?bds?ae!zj`nZGw!s5X6QkWZ>C> zM(ZVYt+b4{3Z)45Ov%v|Z*nYHL*qy%INU-#FY!pzPwzo6!dnShcxyGE8h0$uubkL| z-$COYcoP)bjA_gQ1xnuHv2F^mcb>P*?V==z^h$Xb*)Y`J@mG?AX5KdrSMV}2{wApj z|9g#~S@6J=&_6CX>6&{#F(w|rghQ(4vK5CE{Dg1Zn@DosmXBvqA#4N8s)5=f%rxK1;q=J2_n6s+Rgc+`(ELT{6>Br7URVn!b@iM^$r zpB5yq=3!E{4^uZ*pf!z9_|72xm?k(YHfLH*tq7-Htgvn_tu4LxBx0foNo27tQWW;g z`S!4gVJ*cJ$0|I|9ec)zgLQCE-nv?UZ#VCf;*?qSB?+`pEvQfn{u*e-s{>YE8x!R( z5Yw%<+rJSTh4HAW6*%UKt%^;1_sD?-ABcpeBP%M2kMe-`7AHh1vE4l6oDhzGWfP7@ zjp?j-nz8v>_`e?)8pz=9>%fjhZSm$@BV|arT2g51Djq0%qvPUyaue|en0$ZEqX4eP z#2Dy)b3$}CzRjGlxvKd!+*9Yh!e9IR$)(HQ=e_r~Ut6k*^+#g;HQ!IXE%COp z^%|Uo>-+1y2bp@a1jkhY|7SpC5cRbVcCM@fOm)@xabFsvV>gU8jN zR6W=bW^rXLpjD%9?H+fT`vD(@4g;+wn$Re%m(th(Cij!Kl^$5CBcPMws_fSfTrWEw{-u}YIH-bUo7ksizHaLc0ac&Iwxc8R6i{}Fx168H7! zJK9QNXIj-HJmuP?_=Oz=0KDA=8-UD?)_HsZt_@5^W^AuaWY46yBOi`TnyR4QVJ+^< zPu@M;!m4XB`qJ)B*d7Dx@18_8aX<6k(GnZ6>Z{#D{yWyVclhsE9kK+bZ4RiHX3SvfgTT#BFl%H38m6Qn*3s}+Nj`%ILnyRO!ph`#y3zn6 zE8e8k+NezX(Sad@G2fPk4aQL-4;8Lh-Ds9Yn=GqYwIH{L8HY@=0s!9^^EMc|S+JtW z=AlWk20WQ=<>`)0;%d?YEa-Kv|Y(cdSFhIRNzaCw|1YuK2bp~z=ov5_aB$U<=v z9xakB6t7qk#xzuzTm_TBtnXdv8L?b2r+B5uk^pmLV2dRwFwjO}Y7nr(qTmEqr%;0# z96c_su>v?8=|3EUo`0nJ9p|H^3>v-0pPy{xdsdHKlc=g@zb{To+lL!--kd~};8?9$ znr-wG1ve{XZ05o?I!)dwm z>f}72*O%)wNPQ{P9PPIv)OI63*=*54RL@9;fN%Y`oQ+L$-7~c2GrRm7c|(R1=26ucYM;mhGuV0 z*34LWLD-u{xVWh@0{DZJ2b$`hjD=+m$jW}%YOI$kkBBGZ%4B?|3Xz$p41;OKbPPZ9 zz|;Q8uJ)eO+u0T`o~pqNT^>P%?yw#|mHFRki} zA`*z<=3Xk=I~i{Bs#kR{We-l)8=i4q>DFY!OukK2qwNgH_oZO?5AB59{yuRML7tpJ zn;Xy|-)4nuGMZ+*D6WYQXd9__a%L|N#G7g5?vAcNqGb~+2^(72BkGaZd8M&qt)w9J?nx!Iwz6)*OF6z!nyJ1j?n=pbv=bXd z%*Z$ljdiNDw)HX2fV;(lVI&lH#b!g~1sZ9i3q~uAlUgBG_0s~U#6+O;MLp0=m$5`s zHB7Ei76Oq_!5e=RTHv#iwpJ>Pmei#Jb6weTLtx%wvhV&XTr#SMV-+W*Ba`Se6oq?U z4l!Z2FoAMn*OStaD?8Dir%pYg2Wn$^~r>~?N zQy)zgQ|-yuCyyn5p7<|`M-sXCXX2Cb2jh|0AK>iu?V7jLoU4gfznjZ$=Xd(Myq|j0 z-tOr4q9>~Uwdy@pg{oBK`A8oSh8Xe_C-wzTaSbec5hsFIx<#LyIud`Ix7<&3W8RM7raSrZ zsU64`l5F@7h9n`k^LIBYX*9I7XP1$J4s2AAF2KRvb8+ZhzxfBrGo3?2x&xm$7ifOjnDa_{&$8(PPLOK#U+OdZP| z3G(4Bll#uxD&8u(FMf5Z(S7r)Q#I~yzB;vp0Y2`&{rRcwTrL+p=1OO#U(I+Pb%S4K zo9s+*(e)qVBDLee1^4r#+FT1Baa})~;$F?*y!-BP27feo*uDQ}Y-kaY&+Y#DRGzQS zxz~S#ueJnd-H-p3j-Lt6xF200=W1};{rqE7S3P#I-Peyy7btVmW%o{Rp`H_N?U$%$ zdvM%+eed-4_piO}w{5J7D5zQNpSdcXzyI~WU+gByjPi@!B%~(V%`bM7Kn4~Fzt~N} zKkc|bi zPN}Fl{iM_0^EDMK>h_*Son^m?qS56+>f3SK9|KbQG!-&U~Dm?f|aZ|!L z^X3_pQyhzg1xT~oziMSwS|m$NLZ7YM$m=HgNqBQMNd9aV`?Xzq+hUao_l`_@HTUuI zfidkmW-gIrLuzFF3W?og?B;m0cj`6UM7a4-gq{~Bl#hLQpnQmgZ02_Fc5-Yr1>%~} zIt>!5;kBZ4U$CKO1ETsg%cSL?38TO<7I34h_+LBk0Jl&^H3TgTh%3G4aD@7S)=b6mQEfN?`WIUc8N8&Uc-6{$x?a@ zBYz?e05Mq&jNeP{N+v^xKr@LEo@w1==a=TmnysB%FD2aOh5S*x%tjvT7V%glEILA> z<{8Zzw!Z$n;aTz+-L7F*u-?axgXt$lw5^6&Ept-12jhV|G-q*RYfB=r=2ZPXP4hV& zeB}OIcG<2?iCaxuvK>z~G$xwHj%+>rSVwCU=BD{euq7>6-m-4iSZaHE;rwNbx3}(G zlifF8mZHSXR=kE2t+Nw}?HlgVoo83hEqX9_=keQj9v^%EDh0p9-r?TnE8gcAroZYTeT&7r@B;qCi8gi zE7=RVcct&ouCH0*|Cg$|niIKaG8=Ob={7Us;Xms?T>Uc|xpS!@u_x7({2|---;RDW z{WsC~Me!nC_=P1)-M6A0zWd>8?<{v8eZ_Bfx_9l~5O>e)-LT9p+P`7h^HZ<8^Y$ut z;=65~(dxf-NB3=b$h~js&O6=f{%O3!t>3j_z5AVsx3ou_M%-Ua-+9JG_ii}t{>!i4 zIph9l$!JGS{lGHsOw_&R&`{?a_E7KRyEiO#k3YYl^ZDO;!=2x#c5C-+Sn;dt-_%jl za>5E8dgO3tG(F~?D8FT?o4( zznLA%Zp=n952Zhm9!@u;K9zblwJQ0YDZKc9NU+Y@xU%e$xdVCv~`@B43OMM)rcAq*hJ&-y>*rrHbUFN`?GwwG( zhe`5$(C8*VGj*Q+HMqpj&7@WD+V)N7$*FVi{untN+IG*K!fsUza_;d@;V*tH$hzwX zrjKC}&A67+(>uJ=LE63g^HZm>dZygR&rV;&b}ycoK82Ofcgqe<@AUQuo*VxnKI0dI zsQdcYu%{jis@$8tGIh)!%LNhlri;_B@y9yLC71cy)Z5b=%1_55#2U;rpBZ%@{@T>? z^yczYVNM4*@BHZ0+Vs`(D=p_0DpU7Ar}F6s%9w}s)e3U{$3IWq+fcq`8HIgkMn_i_ zyRj6vxu1RP*B7~k-(U=AvSc20)c$`bkJDr+KZZ*a`b z`!oFW|1Y-QG&Zg*?e7!o++wkIF2z*~i;GB#BDF8AR=3nrZ|YX>d(ZStcabcSl(;n) zsns*{mWu{lRg^#2p3ckIU&bG^AVIza{$K=f5Cn#kzz6~uaS+4^kk3J!z)9c)2=e>? zFN@vwyqf95Tlb!O?m5qS_Vb+QEF64r_;>z?pB8}m`-g9SfIsrl!Fz{0AOG}->3oRW z^rzLRK7a7;;in(|^dI45edq9Re)7{R;njl&hna7Fy4&&g;s5%tXy(qrTZf1LnhAR4 z;LXEpA5-JagE#*2U;ptp->ePeZTwNmzv zjYYusxBtZ-rw%Xw;ZKvG&Ar3_@E_qwe{k^H;ZN`W^dNk5aQE|Jj#6 zy&ct42UiZ)|BFA~om|*n#R0#AS9*1AX?mx;wZ<~QBF7>hl?){ zrVdBH`sqt$t{`#6#EBCVxjrYZ_|xa!MW76p7fz&#Wcx}t(Wav0n<^A9FNQSEkCYH2 ziY_f|S6w4x{&Y(>S%}gy{A%NME^-wLme4jGj4kCt%EGUtxt-OPSOP*a5BQWlX~ylhVhI%}m$P&c?mwb(VWsLVQ+fj4R6vi;P|Mct59h-8wd$ zg`{a~Ndy$lSq;6(x?i=aRZPWEiYkAsw&wMIn)gMS&(Iio6c)>ijZOZt5pLOWrT4Y) z>XM$pI>?l5xqcuxH%vn%08u>zx zS5&Brj5e6TmGY0Sz7Nubj!efHB< zLcbKu(Ey`k!k}AWQ2QX*u7nthSeRcyyfExJzv~xVA^=4znRjpIfig z)!!)1oJT1PK#p8;2L&D(#Tj8vd~%|wAyF4$fG?X3<%OKc8)|zEalFL9;lKai)+TE8 zC;ae+3$SFV)!!uwgw3?HGpd^?m37m@LcuNW`isW!KHSwz=7s|&H8bRDFKau}|mM%t;( za>H`~&?6n_8lRUX^F0(`G*Mo2%(XlA75`M)G(19;ocBa7=~w&K=*0{7UiH2#9Cs6I={i&gJ*$?U6rj_P7c#FpUJid`}0 zC+K99kWDYZtH=HIhhPCg_9@`{+ydxB$yamovG1vQ4os-k-=%IOXAbd_Z1~U@_D=v- zjy=&$1aY644}uloj0^b7``k;vMA0XQ27q|JW#X73e6&2@fIJc@zQ4HAj$izD;Ma3zj?n>B)s&+{UMjLp0a4T{3x{z%^q=L+S(t<-P zf^E&NB8X?b`IJYDX44x?&OYZ?q0WHA%OGsX@bRt2=lq;PCWg`ar<60ojWbl_;f~N> z@9!Fk2DK+7jM2%OHtOxQfU8cbf9762RYs(S=6YOVQmsY4@Hs)qXaEU^lVMqbd+MoSn0PuXmUi*)Xbo12ySJ}pE=2si44vW|EIv==4EbWey?sw-GY zzvO(Ya#8T!rGiA>u-+#GapAdDByap;`#OSD!#bBpER{ua*7h3GEX5}yZj^Lb3TblD z+^S_y=H(JYx+H1Ro8W3*^z8H@({wZ_Mm?m}6G9nlMPZ5#ObR1n6yA2~Z7Ggy@0Vth zm6n=Po=cxv#3io~B@5N-`#zw|$B+7J4sP!f92A`yyqn14P1}d!cT-{vcH^ZKGZr~b zPoHiMNh0=(tO~GXMU&rciUk9Gc6e~-iJ1266^c2@T~gXojEe}qqFS~txcnyJ$#^Ktjvn_T0W+p)zaZu5yBs-G8*D zRQzEOr{$cy*qnWIocn_DtXpIYUGq;L(PUu~R&d7?rmbD}4SwMQ*DT1d}H zGlP>k6>aMWnt)HR$u~yG2=)@kZKh)FKa}i<(BkY>_TiHFLpGnKI6&XYf0#pU`kILj)Trgzep5?lzsK@C=m)jHZ>P8(8qg? zF&-;$a1Dnuy@V4hqkPma>K&?0a%)rqMQVWBNC9V3176e&O$qmgO+F%%PIShQ@jhOX zIVpz)M^fsQK?-jgixnxMZlA_GJWT88Cf-5iZIj*%8gC~B%R@F!?0o;IUux0&XjAI` zxD2N~)iS3o!LD?AcC|UC&k6MRwUdh<(8;oG3NBWg@L|Dr%>={3!Fpqpey70WjfPOx z$Id4-t+}^rOfzHY%stdgVrvQU*N)D~k-`IGrn{hu=#30E}P1R!CpOcb)D& zbvAvvpEEIw@AnLGq$N?803%_;8Y^ z#qxL`$uH8kM*A`+)7jB_Ux^bq)0w~AIyYIfg&$$zUpkR2zJ1>I#B_{}-EG00WT43* z3Npnj22=>q`wqbT6r6}IRW_=AVF0UMA3LQC%DEXB zoetee=7ci6I(7|C7TBrKhl4vvFMTg z$W0~u5{c|KN>uMoGqk`4Q_Z^=2`iDkY0CSw>2)uUpnTaF7sv>4Rxh8Yc?Z(b(|PgE*KG!a4#)y2f3KIvDvtyw(B566ojEc zDVz)h1U0gOzCETK6DTaw-tZw&V7?5>=Wh)e1?SoROK3-bdXtmisPe8Tr~;J-kleCoWE(qI4P z$B_MQKX0a}Tmk}K0LI#@Z3vT! zfjdV7sma`)Z%7AEduM$NF(x#ekuu@0;~!#`n_Ibhj_Q!9OPCD%%HF0{PB}S4{u)&# zPtmy05;h}rTxfC1iF4d7+6@O2Sh7KozsUWlCL9Yr8faEDF>nrV5@$L%v1ir$q+gO! zH~J3MI&Y{=edXo56tmi@ECZJQEjN%mAxJG1)vcQ9O!fn68{S9pjULv8tlIV!K7f1H zti@y{v?V#Au~NL)DV za@8ZZyI93_euM`UKI7f*=EOU37VI^CYj&e_FY5BshCrCuzo2rAmax-z%C?kh<3Q4R z0z&r`Pl^l({zdUVKjGe784(hS5B6Du}QJ0ffqO-stWO<1WUZ_@kzd?}_7G#ifoJ_-2vEJu5b+;h?&Zt*x#LXcnYT?2qYNi({&WMyX0gZevnP%sY z&j$IRyTCPYPTx|uETVHstgB>3^PG@6(vipsVpvCP?T_atHuppfK@3P7K}^Pe;~?eZ zq@UGpbJ?w^muXYfcIz><0LMe4oKTYy7(1D=h*w0Dy+D zZVUs}HX6!y*%8&hK5|y<*csnvhMGHx{zJM_x-ch7lLSlek9$0jvjhP`{b|K+`cPp; z!(G8!DEan7D$6qTSt(HtatzbbggzG@WyGaX1Nv|BBkKtfTtDD>zl`P}2fp!dQ)m$z zznymA!63KIfJ_kD+x-kr4$W~S5xPdD@wEqZk+*v536JUn--(e$^mDzfA89^n42NY- zks$kb%L-1@hbyL(PO?EfFB^d}zu|$UGmNd$s+g$N+Vh`JP~5Rn+q-{;sy-J0@cf9& z#b_!9oat}R#;3k_i;7lov;q<=t^zDN@>y4*Zv7jkvf7wxqx@G=j&-P)>9r#)lvlLI z=UtUf;)S1X*Eyfq(}#}>{1Lh=_?G<9p`;yt*A1*iyN_8_SZY3sKM+N)@qz?KivwHn zsApcLHsX;sR_zBQp}|^fl1fa3os(fl9C);!>7PwM(MuWSAW2wLXHw)JVTp-bcvRlf zlPn}*^DsnQKfxuuaLHZ?hNce2>9;3KtfY!pY#VpE+}Hk2hZBk0>Hr1FMu=zolye^>$WS5*(V{i@2iW- z0b%T39m8sg&lG4p;L6Ugc`o2ai;i2vt4(uDEwqPl@h(r`#;c9DxJcm9U28mVn5~YNOP^o5vRzB}O^jv6PnFVteQ)AcCOvb$I8!PXbLp?Ib(e15#=Os; zqVD*ebox%u)zh!s)uu_#)aV%=>b_Mf74zeH+ySLbzBD;{k{yujwCwFor_YV`a#jWB zWtKPn0d3S4ao5wEhu*U32S7(DA%Q)GBhR?XhzaMBVnXCa z>#0sz__C0-OO))zsV*CYLccyqyz?|4$J4&1mHyBr;pepAa_>f+Afa$?$y*vSm^oTy z&;uBEP>5rcze%CITcMygke0}PJ&@8Ab&8afxXikHxGc3;*aLAyN%1xxCoq8QiTWUd zM-4TeR&Slk%lMMEMy!r{`La_qngW=dyU4d7fMts!`I?Wix9RiF{gqmy$J5uv9()); zADtzoKSd8dVG=T`A}&qQ_Dap%BQ*ocp7uIwQEtVg6OAQRDJ2ri-;b-WI=DD#IW1nJ z{r`_8LZVK|^|V%6q{pp!Du!nDK-1W@@43k9x1w}AFD?4i^H7d5|M3L@=4yFKKVR)pRfW56$xcRQta9zS^o!P+DjU zAG~sr-q$7bv(pf;J7JNW{>@uA1c%wrbx)vrWQDdYC8SeP7}(AB?&DPjTkt1$k5Vfo z$&=`bxK!LpgNvw3Dn-hvFE1fuLyX*fhxD6z0xL4~32c07BWhTPHlPkCHYu3(XI{ol zDS-sbDvT-WQh=_HJ=aR*bE2G&csU=_DSdP0Cek*fexQ&$FucowZHp{%Qw=?pHrI)M zIsUQR+GtCKMB;YY+??Y(zI_6xh@JD5HAjeNQ9>5VX16`+T)$N-sVM4Iv93JnEXF5t zrKP9p|J9`>$&#;_wn5*n%yX^rl<~B&(FrYy8Od3}2}OuBZ=8S4_)Z6QG3NZ)3nEP+ynqRtoF- zX!pMOpYr1cE&aqv_?!|hDZ(5Uv&qlWpeh|Ew8~Nss=rnv>+94=kW4P*3R;(O(lOESW3PAAoZa0aOmYmso+!>rto$OM zhJVWAki_~-4)Towab{;fOv=b7?njG)F`Tnv=k`I`q4KlO$=)MJMsyv!f+T8rCcj-789)v>MQd9(#UCZC$ec@lfMnpoTy~Y;bBtry0StwdAdoc?d zsd&xJ&eZHB9*$^&5_&852*PBsn@f-@wwlVq!OkT;t;=VW%oHhW98(k{X-L+;=OKOE zHlGXolOCEnpf(fxZ&9+)yTU>@-FuVwY!ytPQm!?=o_Rr7C%EFN zqL>vbpA=kA>8gPIbu5E(o9H`XPQ=k&ue3Eov2r+DNbieaisCHr*dJ^#5EJuwulax% z01PToK1TpPRbi$b(M=1sIPFJl<*S5z+VoN66J(KRc69J`BJ_E@R}cTQj=wfods*C6 z+VsD*CLwTs3-U`Ec!7W7VzK$2=gE_p%{7 zLN7wU5Ie6}i0&CpYmk|gRi5Ga9QkaOs~+^p&{r6QF{hD;dSt^ceQdT@>@EgDW-8R{&TC!JbnH` zUvLY&Sh4MiEX9SX1~7%A3p{tm)=+BO;^No|v7|)2R##U5O$x2+N#i~4WYLSp!ts)_mWqW~k-JI^d0i}fvkSK5aj z;9gj-G+*{TDbR9>&fCm5UhF%b)FTq{Cpm4x3^Ac&vef)Sj|6Y+P|jTSYJP>TTFQJ($Rp-%*;zzZN9}@T_-`yF2tlGLRfl$rRGQJF?*&! z3F0bvuCZsVEy=&Z>RPxvEoSqL9c!XJ{YpJP`p9MrHlxmOIWEZCt-|Nr0_=_u3TU}| zjZt*Pj$E-r1Z7*9&M_`pikK;UfQV96TGNg@#+eQs>x2&*tT|G91w4BXMF$ ziX|H^^aFxe5K)$;JzP$WV$9aR~^fa!GXuNwC_8)CV|0(r3-+;%u9$7S&hrt&3XRS9_lpiX9!rjzlqO zHvNmFWP6S8^%~B_IM-#_>r|+A^R{uAD^g!G6r6*y`ol@Bv4O=Dj!GT7!d3cx3Lj3Z zkO4ORs({{{+E>2*1^bO>fNv-$q62?-L1hWXEFfUO(CUuJsFE+$wX3+J; z;D;c?FeqWxjnMQKqoa>T+A(CmyiE&Mz5Cp{#~`v`*CJ;Kw1AYbNcMtE<+b9Ev!LATK$Tb+Q3akSN z#Mq&%%I^rj?Kvt41gFIwa`hg)p~rBFIQr0hPKeFOQe4+b1Efa8WwXWw+V?XlPC?=` z^r>TBWX);PCq*tS7ZCcZ&MwO(9RM64sC5W`}Mv#?_UUjUQ*>Z~hL|y88UW5o(SG-L_ zfkblYt+wRgO3K4gl;f-BAoFn%-rHVq?5;x)5^1}(#maS!LlJu+KM3^kZSfnlSc)T~ z@2~RYj@aGcBv%8sx$;TVr4J=EQalMu`Xns2;sA2A)g{M`qU$O-Le+7@js@xbfr?4- zDk{bM3I=pug0x~Cm4gWqG_ zXR_4z+md}!r)$5pVDw6w5n*4LFd%}&Qd(*XC5u2ZjA)Evq25FYDX%%12VT&1FPDu8 z4Zo(&u+R!fZ#AEB0Y1hD5PbB2UtM)cDkQ zR4>%kOsIW(1Ydg10V1R=aUPCP<)L)|ra#;fQ#dPHNGZfcg58?|Vz<8J0z+E&#>i-x zUlH@DBd<4F>-++an~gjd0s0G_azF5c-Vjwra8u|$Cp3-)xv(@j#%y*v7|Zjlq#{Hf z=_QB#rgTUT=6<}%4F09Io|*&-Lf)u&L4~%#6uH2?_&8o@_a9^;+avCHx``4)teN<>mN*B^j?vtjNU zrFN8tNnSfTZ$}*NT@6mtJ6M;>;+Vu}+Dali>8D3fYeJ5xm3G1kGVvOvC*fx*t zQXiYe^{_ zWRD20bS_MsWQ1bc+s$d3#7nT#m{8l|bqTS^@I(b%@NfKu3_*S<7JvmDe%ux2>ahqr zEms~ZUMYvIDZB|kAcfbmQj-j~pg=UozD0>~e$S+H3cq6aPQqb>Kc8}>5VLrj$yH3F zaBh}J$WW}!iD3nyvX?>}3OU7(3Hl;4);4P!58*SWZSV0(+~Xxi_k%U13@D^u&zr}w z0-ie{8-1GYO%J5|3Bb>>q@Etg7t%c(8abJJCtu5^-?(<`_VB~Y^W*8$w@-im+04bc zQ|a;U$xL@Q5%}}zp>EESymIPBVYn|{K3yn|j9yLWhOYIePxULlzaW1Ae@AI@tjKbH zUwYsnPJ!{6Om}*$)L$4b40G1zheN;a*Yf_k`7^Jb`ZZ35`eeSZkS8Gt`}rqNoS01f zlWeBzU&a6H{CA_j*YOV%e=GJA{OL1$2oiV*=I{_aAbCI0{Mz|(6F7-u4~s!ucu3)> z{>}xi0Nkq4;eqhtEO$$WU|5lPxWsCk&Fl|(;^0=9x1=ctml9`C9uCb^n_o9abd z9;CernSwP9Ni#?c;vJ*JvA((BXqGO*RkF%P6-LBc(Hmn6?kwtIsL%(tGgC~VM6mk> zoD3-h4#(t32l|pPa~d{R+J_RxG`b!h;A!TkH+tzPurQ{d6GGZ?@HEUxF88rc5l(7J zI*dpFOzDY`Dro;zxF|%MkRCXupXdu~aB=7#!zd0ST7n5jItB}r=W0NG@o8^)U=-=t z^6<7EM0q}RA*pY6i;v9RqbLfF2<9!bmfwG&hZ;YJVKGzi9oeMXY9EKnOu^qm_k_Nm z7o{myI9{#tsUy9}o^W1pe&s&J9XU>JrzlP-kv{4I#zvp+K9R1l->It#zPraw{EMSrtf7Xx!&{^N5EQu|% z&b$>%^o;drD+n2U&V=C$X1N;_8ELD7ikp^}QZ;w(hj#=P!ht!+5OqQY&3%kfm-R5Ti*SYsK+&S;)8K}M5(Aq3Yw(kh$5LDM zr$-zC3Y^xwqT5Ym0UJ361b@$AM!}%nWd-rEs_I>PKCUiIaldrxLq5PTHXX3glbPoO z=f%E@OI*2P`3LJxj_MH#8Lb@CnD+3_B&`#5fT9rQ*CG@K0|GW zIVHY}eP%ZX?j#TZDHfnpIi0SE;+0WXic?f^sLvUVbx6a?1>g_rBV+(pA^WZ#%lB0a0SS2WNucoVIr=MO8(G$&)+2W+ zUI_8>aREHFy@7Dct>tpZQlQ&}CK|W89h*a~+gLf?MR&Z&dwb?wrj_ zC&+!keJqv2o3vkoWS+F-c?8y2sPR#r=O0kd!9Qu+>rDT8OX!(axR`B?redA}jrUSG z{wwp0JBosq1ae-A@^5*iPhXZL5hkZJ|6S0rwB;>JDX+U_zvRtv95b4h(kMk2017vC z1T9Oa8P+00ZV~WV=>;baGWK;BfNs-oyD)ZE@FZGK%*;SrOnErrU zWYoJdsk-WzGx}kJJ1btCehnGM-LdR5P43Zi>HErY(NmGE7{|(d)r^PXaBP9CcO2{30 zMW&Yo9K|ak+9)hGaC)uUUYQVpiwZXpLs;PXy4de!iM`HQy(s1^w&}(G`>#vm>*;$( zb@W6$zZM*6GIWibuM0awW?@_dHs{x=qv4#oGB3F?paJ6&?-Nz@&WNY-$;jbfeb)Wc z5>|HiWyR9d4kk$#B)6P6g6`~j4=NbNv3x&B@^V6tHm;7LD42B0L%qxuhR*WjWpT zJy#Fm4dFc?9c2Xb)M;8L3nl;!J^AVi_8Z$ck zKD42XgqRdvpixv5)Kao^!du{4ID1bw1w}Qg^JU`$7(eq8XA0m%HT(4YbeXKH=j))0 z_qylBrSiX~yKFlE_S@dn18U=md0vqZ6sN@L_F_B3vFmV#aqd5-9dG`Jgg0BTkC37< zO~H?wc9Nz*vGR^wZ#6|aFI4T~nPG}H?T_O)sORz3O+H`QXe=Ljsn#om+-WhlgI(^4 zO;)%3K)66C2Vn!9N`r-i7u4(im8g8;0$(2T;`?=YMx2$l2&I!^lQF>mX=mF$T#j@( zf4SWFl(%?&t~~B&iNUg?e5TqfLx7@UX?T+Ehfk&{a&@BJ!@w!#z(GpE^7D)y0f7Y* z>l^!;g5P5MdbbPrm()rvOz(fp%O_tILhNxhl(RP)p&N&;PV9@_+yn#sBEogG0aMlL z$YUo0VvT0qzRJG(74CQWG|l^7YOPp10kA_#7^F z(Gacg7~{^(^Q+gWG4(E&S7m}kkXY;vPQh%@pt+ao@(A(2J#$8uhw8x^UPsS3*Yo8K zgL#h5w1lI??=RL?364ApGQbJB-J0NmOy<@Y(||*cgE%Go@LjDgd1a1=8;uL-IB9S( z4>OEYow1lm4qcJh<&!+b3XZx_I@aU48m~)0Fo&CjUmkyMgQKSN_8$OzHx4pv5w2w; zUl5;lsez`>Q=%4rnYo<5KjUAZ9@oiQ?;|DL58=v^f#V_B~4%^la zESi_tb6nnO?NWy+-fhAXwUJ`0EEmdOSE|+G-|GgGTfW-(SnuM@n`MWgJ1X09 z=RAFdQ$x7d%9q{O@XNk(9^DOwsLmeWk2}kgmw2My27xOi=2U-{!2gy7nzM2~@o|$;{^HO^1bp6J~UtLS5 zPjgICZ-4*!zT5L}O%CKrgCrKvSxSX$?j%>)-t>iHy1N@601*MFOQRzNor*L=6ag=m zy7O5)5?2cSnZe;xxoo;SGn^e7Iqj%{^glk4{>Oj&-eB!dfBK?*j-P@B3V#<@z~xH^ z6}rxL$@m}0eXz!WI17)XP`_pFf&Iq8S5QdS`Ab-VTBshZQblxkAh7l$4W7F$7|TJY zl7$(VgHq?L9em5HnQ>6JcCf%bMR8DY4(7pQm~-r-Sv~kzcTpphcyIIIE52)m^djQ+ z;7g{oGo^GcYX|F8;ln!zPq^SjJC05LjLOn9-2)8H?E~S5-AB0Qmsbxq_=)SRws`<+ z5IS%K+E=k0bNnXEV)fvWJ_(g>xGP={NAcWsqpyiL4<1v4-o<@IuCG@PzN0-}+Nk&& ze0$Ru0FOgh)vpqYx7H&!4yw{sr9B9|`qI{>$KYFnGYNgZ-#hq>ei1VRo^Jyn?1PLH zR=uV=FM-M{2a9~w{&n76*L^``>p+Yj@8RBoB%c(_l>?!zcT%IH?9~o_%}*0JpMO?$ zi|~}ygO7YaOaotm0h|Xhj2Fk44iC6g_N`-TW(aEsY(lWp_*VIr-W3(zE`RT_bG}=p zyl8AlchYQ)?k;)K)hjUNi9rg^fD4*3uS5gb)oo7?Q6IdqV`P9mKB;=(pw3$P;7dO1 zp$ND!3KToqAw}qkn7m!;jb>12rX?tN#d_8ABVEW}OxSy>m<`ze!RPYY%Hii3{kr`N znP=EqUrkD1q}e4yk41u2(?-ry^x4m^JU4DgIG0T<%mVW-*GD|<@GTDe6xIt-<4xG+ zjy4$BeUjo!9fJ&?9b`_G|LC@ep&eR>CrhUbyuNJz6zA52QWFxNV*ckbrV!)e{MR#r;RcS*`e%_HT%&o|HYE z#OFXO>Qa_2ZLS%~@sX_`)E0y*In9o=pWR2QADvPvuWk3>CX3xwV<6C}EFGXG$epz9 zIpbEf>`AlO>XR3PmKbKm2#-M8Hg^C)RyN%;9e7zWoS6TugPNcXP4D=-NaRh}7q`q# z#BsRT^Bq3=%sskfdJ}Ha)?VcRyOO==+UH#@$NfWJc;sI3^0GS$&aQY6(A|LtAN#p{@otT9 zH9ESsWI)hv3{5}-OVwJn$N(x>IEW*6RYA-|2*2d1NB`t^zK@QocGVq0@!qBX?i)y} zH?-eMUW8?%Fm3KEdZJP9Rt&j`Hb+VfN}Yj;5vw5Bi!0(+h(}Cj5CDq0%3cL9A{IC^ zno^01SU)-HMZD8WvEIT75VcKfr8a)6QL#@%3hd%JJic9peK=*#hSaC&Gl1tpN3E_I zXj%}{R7q?BiR!9h3cjsAb#GzJYnvVv&BB#MEVzGT4#Fhu(G0Ji!F|G4^c3|nrn9?l zMDho$tWi-Yn9OO(C1yGs2fuFra6Fjqc7&BO6hu1+rWg;;(peY{gCltobMwTLV6;$+ z${i{*bl1oZ>#uHmHeju*YaSP9zfn6tmzIRsGQtAI9iyE^iQG!~PQ|Vy4V+iOmLeb7 zIC%0ijAPPri~u0qTR2!h!j-jyjdm^8K~WwAPo8aQSb}dbMdxY~hi=046M(d!44oE3Oq(i+(&l`0i+^;F)}dpi7oj5R#7e z#7#Uu_{cS+qio;fxi`9cK+gRJx24~_Q z{HLjZ?^b8_7croRA8(aW=)U;pzdXNQ`W(m6PB4>NgA2^?;tTAM@F9SDF~tQQ{|(=H zPrj5vuL6L|JHB_0apL45_xy`9@rbLsPmWp&r%w~tdVyIeT-$pwRilkQ7kK3oifVNZU=MkNi zU!j*_$v^x3i*sDmP-7ldUSRxdH=8>f2xQvyXdb9lfdb@OUUem@mcH;f1P>Iul}$k= z8iZ7KT;B)Zk4cKXnB@U1mxE#TjXAjFrmLJ3bf-IOlv9w*BXyO8Np0Z1B`8+I7=i*92O)=Cc>0Trh0TpC3b^ zAk>R`(iXz06ooWUPxMW#c;w(iKo&6S0NuDtWi1}hNLU^ zh=qK#0j7wq~D=gwBj3$DeOs-D>- zGyBLNL}D$*^*$0u@DP=;K|FK0`r;_Jku2zC_ZfuUa9g$4kLFlxd#!AokRs=Y%+~tC zi!*H+Iu7#|goMIAmIuzV5s&SC0TQ9L=!a=JJHWH07v(=|;JBrZ8p1zTws3#9>uDNb z9m^((jABRN6O47mM1@R!>_O1aCoj&nUut8{MS)He*29zMFJ{`Z0XGCd^VeL0PFpX= zl&g-qNl0+J?B-+TQOM#ot)z6VWWVHVm-D1J`%!FiRox8`X4@AD;l%|IFb2o0z+opa zL{kw!Q5@R6?Qq}#4E>350TKW~CU`;4X$e1Om=}069&`o{t61<=)BYupZ`q_JE2Q$` zoScQYb`aTfuD~qBIC&9;wX)%X!83P#fxcR$i-0wO^O5c^st*G2uDT$*XLb93y$f}p|q2Noq)&( zV*Uq*i=o0u;y&NNpy4!U@r!OL2xY&3BxC%%=}cI%&8*av4O)23>XJW5b5B6-BSqv` z_h|PPt189|xH!@QL?ezh0VFo2{W?41wyQO_NlVYoH z{T_-4T>+pdrIN@-Lnq2&Rv-B*w?#*qp1Yz)SjU#%G+$w|YmgT2gUV8@f^+?qZfiC=7+x) z-OsgKhUhB>5?YXjT`hbq{la_?yoU!!iaODhB5YzxoIhe1JB!9naDTVrj$9Cm=>@68 zrX6VODYOobrV#>aP$A|?Mh%2O+&O;+>RU1ap}wx{dc+eF{xVe|A+AzcS}LK? zaq7G#T_QB@?7d?ShCttgxlkK-#tLj?+)eN;@Xf+kN)Bw;d;=t+9Yh`dQH$0|MAr^@ z;XbFVOWNUQiWR65U1kRoaER%j-lGxm0=F2y&_uIr7ivVf7`Gyb#^ens zmRJ1RxW;M@qoD$fc!HTYkg;quj8#UQk5ZzJoV3!B4dDSzJ-yht;Gb`ZMT)OUT@{jP z()yXSFzk)9Ect_M5ICl78Uo*pd-kdENj-4tJ1;#0Ii$1IRfYK_YV>~n zv`qn#`9qutDYR=tQnBJM(Wqk7!9#&b0ex2b5XMhq_3%nZcwCA34<6emAd#AbqE_~R z=Mm4spjv%Gd)nh^)fpsi|G;x!u6ptz+36j>4nhEbjULS3vj76P&!I26rl2EcC6)?I za;&i8p20kAKnVS0eY*k+T9O~!`W)CSS!y6?W9bFHEy5_o`EmI}CoAq9d~ef8d=B`- zQ71s8enmNiPVs1D_bOuLXqd<0o`6IVm(?NR5Cd3_ zIUEvaPEfB&?MF9{Y1*2lh}>Bm5m)g3*s#GRg#Z`11JcJa)-j7uRzRlX3E7A_8`=pJ zATUh}Oq$ynsg&vgLT~4h)w5ps-EPJFU#bVM(gz|0u!x`2{*kQsQOr~yP>s3vrv$)h z-|h&TXvLayz*{v9aAEMvQj2Gim9tpxvj_$q0PZX%$s=)7^bbU3+)1%0u$$>3%D&5% zgJc=AxW+K`3B**@%($f4K!(J^^gNsbVaV`4GpC3L9J3O4OOI}8N@#0y$88~Q5jMuZ zcRd5`AqZTo1g;xM{UCR&^3W$9ydi2+4Jd6VrlkVeXVaxZrZ1f#^pV)gj4oN?;J*xc zj!Wb_A|f)wvd1uoVX@fJO}b_M<2=Dktw@?Asty*4gA|Kuodlf0=%D?0vMh7G4|D^+J*hvw;ppQ)cG{z2l>Pl@hS$BCH}CuY)zWB+nO zE`h)Q*Z%a$pFVQTXNs6lf%uhOTfL}Un-wdVo)eQ+9QS=ct-lgu z+_rbb1m|8vcI-MXBCEqkBzg%cWBrpg4k~-gSy>Ai^oOjq>e+x8%(oHulKotrLIj0U z4jUach{C!5Yxd7O523xO4pK>C3@dnwH#4d^bCRoGa_$g9h@lh+hRZ3mCzGY{B1B|| z4rCnlNkbZ2h|RF69Q{ zYoRAgCFFPUM$Pa(MVUyl2gAH)u^|UmxTK!?yqu7|DS#jvmKs{TR7fSxXWC%>6Rufp z+;7j{z_COXw44yQi@At`JdT<1HbxvZlo_>?zPPI;L<+~*#0Fb*J4-jm=^ zp3ERu=h755EqXxPXz&AmzOPOzVkMfWX|2HFRQQe{*^e8BUgoPjMgi|@;2Q1&| zll$tm$2>uoB!)zMd-PT6bo;cN^euj$(_o}BhA;UtD`;d^3a?~f%H9?qZeHUNxJ&2= z7bpsICdsRclIX7gf$}vGD=J&1sRSD2=XRN<-9%@d{Xn{h9BC*fkZyT%YT|p1yF!r! zOT&cz!cP=mmFm~GOQ`7~`gME#?sy>&b2*&x84yg-YV-9r#nekjsJ(7*bO{_;W+zJd z_z=!J;)W!gLjn^BpD3Zn2?YRRzbniap{xSA&RkOzt_$3`i~23Al4@R^=(?wB!Uk0} zxd|DgAZ*BrJBX)5!6cQb>2B&HmOKLcE#kCsLF|DY4cZ|Z_68YK)|z)5vkV(-$cfyU z5ephnG^sPl#oJL8DxS${!cI$Sd(Tcr-A#;9OsKZv0 z9D-6SR>_DXMxs0s9ZAGj7=ip`ukTo3p&`|FTT9%+RNUKWz$z@dc6@q>%!@dcQBXoq z2|NWHX>Q}lr4jto#KQ@k+4^N;*kf;$(U(Q`aJwCa&_yS^DbN&uShNI_D03>Z)B81I zsA7k?54J$lAz6SVz&X7uG)JEOSZ;nrHH^?oQ$S4p-lG&v{En#xFTtob9~I)y@dZSM z%lD6|L>9V(uxH+&-HAnt3$;6x7xf)P_L3vFX5qMwqWZcnJrLi=n)kF$z&4%j?W{Bc zDT{Q7P)puj6zROmMcN0ZoqmUh)Y@*n$vv#2_{=Ia^LW_P`rdDt@GxBC6QTGL#UxV` zPKp09^yg-2(|?_Dg$Y?5j#lD|-N^59k11SiRhX_6RQrf@R*W~%q4n!EC$Av@Bq|bT z#$Lbr+jK@&iW9DgN;B6Wk~`CB+WB=&>|fD9Nrxpuou zh4KDe?dU;wsc}!MdZAO8C!GmdOVI_T2krQd)8jb~dI8oJoVmHA_C9}$BBQf(x*V*G zZMo;n?DXjepSS>5*{(F-rxB$e7rQmMstu+%vf|nA{fLQaej`O!8~3=-u|iRVHX@0% zX+pU6p?>kvDEELXN1|)DN|d@!k))fVlHIEJE{-^Ua{%<#I_F-c=@V08>Uh+g`I%If znFCD1J9JNo&P1*^r`nH?H8c_XpX+VMkB=|lDdf~g1?_-1x5y0_E0fzzlM86f!7t)f z7{{$4U&-B9Tkrti2eD)rFWKbK(Lp+>=aI4LYF(oTJS$BU3c3B(%^}f|o%u7|08Hlo z^K~Rim=r=87avm{Pt%U`UqKDK-fNA+ahindaq_Ji{n;d{Rz16rBadH45*|#-1aSxO z4Spj5)3pzY#Hmgom?aUyI7hBb8!QFMOZ!irI<5`wK0NRTBKl#6mw91_Qo0mlyc`)vjMs;Y{e ziI#>oDSnO=@}3k@ph5pRZAXf9{9CNnr}A9&KcVn?fOm;9UxYMCIO2C)2`Qtj)dN^!7#2U}^;ka~6RuBiCsnIIr6ti25b|D2ob~IiJ3Mo` zZ*VD2G16IAgUr^pU+lZyhMO2hseaCaSBwvB5k-C1dr@_^SR|bb>p@p_=2^0SxhhGg z1*h7MchSppTsC%qOzSNvXb{4##o$9|S9vs6mzuA%KZ+R@i(Pe32y$}&6TXezRY+zF zz5RF=CW=IKUMprcPY(Pxoqj2u8}3b)K0K8>HGMZde0t(?>CAgySJSoIFJCH+;3`ND zWdFE^p@sR}t8b-yy3epRwNRWoL#1?K@Mu5i*%K$u7N+vQ z%V%xM%Q1a-bntJN4r74`1^nQ)Xsq}oCC8s2g=c<5J?*(pqAq!Z7ZpNt4T9Yc^AF}(Jxhy?y zed8+;k?b$1E&fd$(}MBfD=}pu*zY8j&(@jKQ2vxY6j7GKTYO29!E`RThfDk8lsCn= zm0c_j_6HZIw(V3#+n53~*6XWR2xRfoC)f9WlKF!ZCD~2WaeKd$TihAGW-dL>u zACm4_&hzOf*Qx09h9`7}uH#c{@9=Q@wl zf>Y`dMdl3($qj8m@@C9XsB+bNzx`=sAkon^m@GmfysU$Zd8L~P!mrq_blg!Se|Rvf zXHq8VV$3i=g=d^?fvO?L*n|gj{Ej%t2)7guwjhZQ8;2EHL;>S4%S_Zl&m?P?W2dIY zh#Un~!nzLOB=`{WCEj6QK*8F8v=W`(5vD(&7!_*HLDxQTFkHd)go&>LmebILq#=vw z^sYuF9iZr)j2TTV8e)7neX>@kK{1x4=7aX2p_t}n?&j)ODZ#CHH|ncGH*MUFrFECH zj5Bplns5L7=9=l@x+ac~tT*3iKRSlW@x_+FhW(Q;3JPyB_1{@*i_gnu6PW`Kfe%33uCS_?cvHG zMdlrfSzr?eF8&)02>!ny$Kz*)gWeR9k}{6*;(#zf3!k=Y4e$s(bIUt((@K0T7u>e9 zofJ-&hpbM-J;j>Fg;wm{mJAct_k2Q;u3z)qN=|FKos;EMu?-BLX8Y zO5+>c$<{xk;>9s8A?`hUi$@ts(4u#2wmDsK?cS^W7C&oV_auSC7Vq<#1x%6cY6~?$ zqHeSKkPDQJ-LiF(_ZUgIu9$(wTkYW}w)PkJBtYoMgH*ci+(x35+wB1w9l*aMpl&z` zXy$&qDdE-od@$_K9M#xvYB*>Rae}!mF*TfgyUqBBLNz20%v0-FTs&{RVs;{Zp!wUQ zMykzkjyu2w_NV#t^SiBYXby`V@&vl*lf1BQi?0uemn$d@v3y->3K_xs6+;>}x9U68 zUvn}m_}O|>v&Y4b4|U;Ux3Qu-WV+jE#Oes=4s0}PYqnUeAp8MwpJKU=dUgriRciMX zi#;hg2d9itcn@h92k`WL$%m>(Ix}5rleo1k!FU@ZYS$iv3*xXem!k|-G&QCZ_MXpE;!^;jqF0*fwtqTOx}wtUB>TvR5cSs{HGrAiDQq zVOhvG=r|Qo>Ju*;Toz(v5ZzHpT*POl^wdA4T^5KW{DS-$S}NLf$MXG>+FDzZ5 zaE6W&$_CPdccOr$t8{B*2;kRH&3QUH&+1x0SF`>5(4>~&o{_;d_GkQv>8C6C;My1U zK1i7kgGA4Nuv&qY0c} zj*lF*wi{r@QJ7PAz#$GB6v?TZ%w~KrHS@n>4)d-!%vJSIA7Bw@)0S5!_PuCp4=*6n zIjX;HYeu0G<`@Kkk#{ZAW+WqCmW<=!>I3*U5}73LarOXdmXSYN_Vw|0;!aVQ06Nr0 zbqN3|_#fH_1nXI8_~-(?E~t73R{UeH^>%wn0NFKf^8`h{!ZBR3AcZOt z@hvx)gWZNiZDwD3Q6~DBh5kz%=v*R2(`dSTvREsodj`iRO6fxPaQ2LX1TN+$GnuJ6 z6n10mX8Ken|J?*B| z=AB}m8wyB z2R)Ty|H)xX1Etj|`qVW{e+J5Xu;N@g)keNJQCiOUhRvi`8qZq7UCLECv-vKO^uJj0IhLO=4q(nOv`$s6z#(l^jh zvin_bAc_|ouX9oG3W}IrICX>HUQWy^uS4uCSZWM#*BNHKW}JBAuZD=o`#8g*2pdZ% zkPk@f+k6#eYT1B)m>oFM`5EFA*@45=yfoqLaY{T9=&+W#yL!dAe2!vT`Myp`aaJf(v*6XwAGuR%_0Bd4UKc=*JmYbgzQ>2Clw0KObFN?U6JvQ zH{9lLsjfBgZf9EQER$%M79K3 zk8Jy2MBf@}(&rqiyV4ZC=1!3H3&~{SBWEosQ~;D6fAu zydK{o_XB|GId^<;dI$Va%qAWCH9xX&9Wh7h7%`F6;9KsF$s2&Pv!Czir4Y+ahyd*O zn{l>!dJu6Yjf85-qJ2_dj}5kN-;j6Xv1*CR!P9VCyfnYX)eR{bA_L|EP@k$LQL8Xi zX^Z-uw_r@kam)%*T^%uj5#}(a&EpGms$&;?U;DlZtE3iKx=fPXfEGkfE(wkThiuj4E zK{Pupas0F=y)*h& zw|E>QB0h{?R+E<;5O&9~zr>@2;*CgH#q)5>cTItDEcmo5Get($TEFZ9pKUNGjO>=g z?bZY-*?rWlLrgl!afVL#$P4aCl(1#{c^TA-+0^B0yhElo>KnM}*SYE!E=luk9Lr*( z7>q1bnG363Df|zct@tovbs3{+$13E2=)zk}4LWcT?F=LeJ_G=2+AX)x>En1Q;<;G( zZsSWmWe8|gGNF6l;oVMr2h_f!9!ov{;%r?c1##CsVv4h_`rT9=puNn@nq?^SCpbHt_SglLDUFSB5&GoQ7ZK zHZGPu&ZEHo(e8nD=ZYDBncnuJ=Rb`JX9^Q0ax`I4ycJ%VI>(*TI7LSD-z~k;iPE&g zR>#7vHZj-8pG|=lyV=k=N~jJhi?iJ1Ticp%iG{s};xDw<^oOdGC+iJ+f|a|d+<2RZ zNt>Wfh0k168XMe8jhi2I2xwvt88eA^b?t&53H++rqxRzj-Gd6!k98YjO135bF{HeH% zd^%fdTlu=(B;*E_k0ut#Lj-MHDKnm;!F;%C!`^;h)L@X;N5R|b7T2@Vtr z@A0!=OF{DB3KsXdk<&S+D0s343&P0>#CQPTw@He9g#35f>XHnee%OOBXs7v6yUW|{ z;g}(7Tw-?OocYh;Jsl}2-x!I%;@haNy%KiBgOledUjNY>8gc@qz%^g<525afcGHf9 zm;P8^_WJlpyHDbwl_M64vv-W%U&7LJl+A=V{^NExrO0F9Z&<~A_XBm}H`K0Os^{q# zyc>bE-Tbayz0HWg)LpDh%?LeI;EET*S?AuUwr=t!Nk`y~oAy8{K4qu*LA#A(J3wI| zt?&3GguS=ey6}t1d!@ZMa;bIsXf_|gm}3lh(n=g%t+gbL>BBF|&~f62 zu7&Tt`eU9XsR5Pk*x4{3-70!arJN@SK09!MTk<#hm76GZ_*Y()2g}Li`p`?%+2>Bx zhV%dE91OhHgmZij*B>bRNQ@i!0N1S)j+ta7>=b-!Pj$p04Z4(0Bg4t5z1|UXK*!R~ zw>UVu_c>FKjWLqZ_v!VLqdQ=q%eG(>i`0(9ce3@5DPcpa?)H3?Ee$S}PhZFk_I{e~ z8=1P>IL;OeVX4pKFd!ta|@TZ%ZsZ4qTOTMpE zEcJI!O{V(>Gv5?nF5nZ$r2A(}*&*#1z`wxHY`mo*J3N}1%}<>vk4}tDu`8hWRGxhW z`Sf6B5UYQH?FoG(i|Qj*z##+dsu(+y&h%tP)1!a%lkri|8EktU7&RVUTB|&9 zh)0h?)k(9_rVg>ndEp|lMzJ-li~8rW!z|7SAl75ipO(p5#85vXEsXQ%QnLLv_!)9f zHD{-MWP;c76FtaVN`M4-2=S3 zzvl)3c;x6uAiC@*cqi{=(5v>OOL{hH7pYk?S%lx@kOCbkz8NmmNWxATTc{&T6YMRDQO+iY4 zP!Eoh=*lqtfLi*LLvv9D9<8=yJF;?u(^JaF;J#D?cS|ymk?wgr3(CYw#i;0f9Z6;e zJ4A)hOa}#pyfmp)O;Hs+Wqmf*QGjCWbNy1E0L7-Kwy2db)@-$8EXPQ@e#lA2q8)J5 z#tK*7YeFw7##%j6yq=a-7XOA;AaF0hPMV-HE5`aljagW3YBsreV&VRQ-J#IZI=-ww zBe=UqAnCRE)l^+;SJEH>#g@6*HQ2AsRQv{#=?)(4A89Lf%z<^|TF&?ip*^+USU{q z8C?K;j`+>=a4RFT4KVMv;$zsvk+i<4)!98SrDjF2Ai=Yy^z^KzB~zDip!CH;LIl~5 z&G+?HA6bIGB3A2e3US_~LS&D!(AqvHjESA9mjNOoEgZCSz zB&b%b8b_b-3jl39INgzQrV_fXBww|?MSG8;x@S?2teBC}|<@ur_zD`Fm&9Nw9P$H*MQPixR?}&Lic;d(E;z zcjQU{D|TAF&{QG`km3yn05=Xl9lGeu!!q3p@kLE$AEAf_*n?xH;HS7%Iwe$H|J5VbvB~kfunw)lXc`?C;R;jjA^rc2 zy$O(9S$fy2y65I{bFIqES|!!KN>!!3Tit4@TU$%&ebe;btx_#gwMtc`TBMO?$;o2e zS*6CjdGvVFU|`0UXFScr^Ar$_-h=nT*b#&SgM%>dQK)qzTc*kah3Cy5t=%E+u~9B|41C>XX#6!(5r<2QcMP-R6Yj zob*J2@F|LWAKcY)^$FASlS#yyfJ0~hm)DBrD+T9)pZV(f&wU|+w}V!2392#;IRjDF zG_6=Tb7&{Zp%SydBB^s_gC==wgoI`TGJX`vbEPZ~>(!Tjq6vzT4zN1L<0j^D+Bh&g zkh9aRq=icw5C<3QL}MQBze@Az`}8NMyi4WaXqV=#}BN6v6wgc>BjjaxHk+ z+jkb4yP~0jk_sHnjpPgIe3Tz5M419=eX2L=ZApzr*{-NiES7S+vf9JXsZKdEG!GYX z;YTfs>QCqMrCb|YduK&QKmJ)7Iz)%t#FvLkb})E+%~as2Tpi-JFj`Jj1cDStE? zd?Ff-##7m%)c?V3)LrV2QiZV-ZJqhnd|Nu&+0p%O^Fwt%ZR&nJf1)X<9`lpenE8jZ z;%5;E+JAk0soG-2_Ssc1QmEe%E!Oz-SOZ@n()D%fsPp2rYRNY<)F>ib#1e)5URsC0Ynr&Hfg;_v1F%15dK__sQ>o?@8F#vxmmWSmta9D6Nw ziurEZq1kS~Ff%S$W!U1qaIJyeDG(8XxxOK$ zW9NY)J1lN>(h*bQJDn`_B z@kz>t+Wjmqy=0PSg+F3GEuPZ|01l|7l0O!N=G;!L!0r`26!`2yC6;J%Rcy2@aXVGf zNK)d2=uz`lUxM&8QB_sATM?jjp~;kX0D8${QM6N7v%In;iAExcz={pjgbf;SwqB-! zFr`UKslP*T_RvoE${Jjjbt;`w^^6$y^))PXZ%73kX#j&ov%_U{+K-DHBO)h=mZaYx zBW_*Y7E3$p^0G+US-y}#qsp9y=Dl|e)`?Dp@%<=M92Ufa?o1YWkbK6z)GPyJ^S0xj zLn@?E$>kZQ`WlpJ+Y2KZ29CX8anaahd>R!=Y>xe3bzn}4x=NfE<%w0an-~0vA-5>r zZop48^3|$uc)hx>@xfd}sNQy7Z0D5Rc4GCg{!MW&$eTRyu+($;oYr< zVxVa_%~w#d>n3XQ!SW_*r3Pr%ix4q? zD$rvcw74ch#)A6ek&lXyX{23}-u79H3EjPI)?3)o+`MhA4h>0V?C~xc@3slZM^!e8 z{X&{bk32~gk>J91H5~*B+_<2kRhKjZjvG+AkMno=YC`IV9?YT*&-^X3;Uuy-!88!Mr7$NB1k#;`wZbbP$r_NkOB|ZwcxWj@XW#}l&hs05Mz?vlY z`o_0LKetm}j5WGx!GW6N0~)=;(Bhd<0R;s07Mtwq)28&*O|iUPw@221I$W)SD9&jW z|7(Q+`gH7ZNR$i5_?ZMAnRUGYM{)0S0WoGRh&3(*0?56g(P9nal^LFyPr(wqqh8J9 z&*d4|KD{ZN3{i94GeY1i+$1aWene$4*jbYWFow>Vxr_LXD^}`)6ynDqR@qS&w?cky z=|xoLcJYwENi*pnv!v2A*E7qhP^&|ULF0j>AGw|iVz%Qugooac} zrf@s)U&=eDf`p=%H}irMA%*%VWa{2H?O_oq@x8jFx?~Xugpgh9wGaTf(75?n7}->H z01Jrna$m)JUB?Pr5Y{lZLB1PVR;(Ee`(10m&hox)Dy#!7lq6j-H^BHd(#wRMVQQ5eQeGpia6$`<9b-qMX0JCk1skipR35uBc6jyv8H7d)^K-ci+~ucumgwTH zMOlva?2*hsFwc}7H`gL&lj7p?;#B5N=}-=!yjdbFw$zS6jLW+@0`3m*m-k8WG9-&x z+uM_2#GHQ~h@Irx!6+opWKngSIX5ObULG(z%Qegkjbb9+p<0%kG~6#bk&;;oTTMz- z!g9FV-dXQC6k}`ls+w@1w~?l+yN+4qaF-GM6(gJ{)e}*zAg1JHO^JsxaAO@Fs&kFG zeE8(iG7`z>tCIH8l`nDSpinJ>`lwYj!x}*Z<%GDm9d^hraVAGl7_t}^ddJC){7fo3 z)g2!GiB$|}VP#Wlk2U~d+GQFbMf|^7_10CwR7MM^>8Z75GWH!r_wLj-{H{!2v2=(H z{>`Nq%WcX)*xuXT-;wDgbKmgM_T9?nw=arbJTx9X866)$vyTcS3~cTn!YiL|KHY^8 z<=|Tr#dD)abKR+&PJ!Orp3CjZHES2YVgfSJE8HndVZJm;_&{^ipBf!a?Vdb$bE)fG z+rx7JcGS|#W1ZfkpD`6bm4DllJo6?WtY`%uo!9^QeZwxIHEG<3`xn>Nw>p2Kp2l01 zJlXhx0jPHqHP`$Fb^{Gv*xcsC;s?rV#-8@phh~Art-jiUy<^3<2$K7NkA3*G1DLcJ z^P6Y*B8)By5(#Yc=c%P%(_8Zpi631QYQ4SP=|+F*pjA7t_5If88F>l45ZGiwh`ecx zkiw0=)XP8eYFl3DG^keIu^@a*6}H!&+WLOx;pOqqe_Vg^Xzjjdk2d*8UHiAb-%)tj z8J(1aEx*Z1q#i!E-{nSF*=+T#Mgx_;M+aEYVCgP@8U?m*(uSSFu)&68QqlA=M~$*# zR%QRlt`c*e_E@gpWi-t@Q`Jiirr7=CUw7MddHL}Jlf0g3$Tp^;i$ruZnifIBN+Z2? zp8bvL#&(w9FV*?=67lJE{=4SeSBJjjTP2U`lun~0E*m69bxw!_6@}4+s3mnM3|pv- zAll}S4v_`h+G_mNWT2!1E7LlH(iNe~ZdCj^CU%Q7cv=1}GeCHKJ9((A8WexG55Y;* z#UyGcP5P418<#R-=ZI%8TZEC+MZs*+?>* zCHSCOqLCfY6KhucmbB7u{ZivPh{?4`SW#8HXKWM9{J$GPl<``GSm zqv6K5S_XMEG)!5ON~O%YU5EK;DfZyBbCzx?QPIrXCXj>snc%ZDa8wN-AB0))S!U{r zPqY!2Wkksb+1qu5+k~VSJ9-YnLu@cF&PZUeqvVwn&mDT6OV=AbYk7tX(!;!Y!xPM) z%Q0nP5_udxGRJTFv|y2L$+vkC7eg(og~VG@{FNEfZ{d!pRHE{A^A`Gq*-WFQL=HzZ zgUU|mY~w_61oM~Tj9uboHF=D;Sur5v!-$C)bu;rS7v!-;bL=JV@GJX{8qt8Yo@LE~ zk5uue6|4WdX7%<0cWp1J@FaI2)v_t6+MgV@+~Q(;QWI}-=lxb{Jt07`Nnp@7EU2M- ziqFTSatkCBy=|LZ-D#<=<%;3jAdm`^c1f*SSOKiVgffAFb_t!dsiQmnj*TSX6UNnt z<`FKItyQPi`<)U>5bn>k3$-i;e|E-@_Lcjs6A6KudKf0yR#6s4M?#*&LE3lfzHO5# zs>FcA)E(R;X%GR1J448%b5{^teFCXgArOHZH_g$Mu4pz( zW+g^4CW_2JQ8=P@?TFeiF2u{d#zoz5`P%;fvg{DQL<^T^t78CdM1Z7{ z!Wl}GMXguNfw)tCD@jg}9)xoLy&T{a$C+~zCmcORjk2@9RTK-Qsa0m8l#`4MZ#g)DZRYb;dN7Sl$dvgnld;ji=yRwIKS30Jpw*i5qsB2>Re5io(Zq_!xJC8%(_5 zZ_3VVc9!S`B)x1KZA$7Vi@Q`^r+vmrwYM$r-u|a~gO+rs8cN8;u{3}Z_42gH2^nnWe8Bv$!16M9=Z5Kr8v%MavGRI^xdF8NZ=bwxbxFS*ixx!<1FHDY>2QB}D_JD~-1hPMIOK2G>2*JSK*b7q4-T0spQO z%H=v?3$A@Hmz)v;r@@n{t;GTyMxe_dSe(*0T*l6**0!B@(3~*PaOvudVGI!qvldLz z)}h_Kx#MzJB(=B7bt|Sq&ZWosu^SjIyJ2L8&~@noK!y&EW%9cD`*nEIb@RCK)e-@E z$ZqrlD8e@dYCCg*caAq?x`TRVzVI-|Sd^vowtc<_n~L`l73CPJG>K(I1jx`cVMIIN zfK!Ewg_LGRY*WYh`HHY)-$}hV#l>W&cB71LTVFm0tzr~=BwfcXsNm^$CTTv>9I5igG^i) zRQ!tXGYWB>lEV$in~kgEBU*gq-%y=5zg$ny5Xc!g8a}1khv-=u2SA7TPC?6aUe9A1 zSg)qyplCyjq@M}Vk7nWG5p@{Eo->QK(Pit>9Fa~GmQYIlA6eE*Ie{f{c%SyQ~j{IRX4O|1&|FD?2^ zse{7kS1$ujpdei9Fh6sr8G~8rbB6@<+h=XwH09TcQL`|&$#A0?W`Z6$;PQ^?N$@!A zhX8(AWO-b7e$Rr~-hgOZQSeYSS!F_?grDP@k;_Sm3dX~=S{PJUwkEkTYZEBDX6aQq zJcjVp8$35h&SMSa74yk27&(0t63A|6LRkdBg+_@t^$pmE&7}_@#plMKkS6Lv* zWC~|inHjTf7bNVkD!Dv=J;$H5?BiHhwLU%K=8~;^t}6-Yvf*B-%FHg=kKBrUiFBWR zjaTJqqK+hWgh?Rf+SVXnBRTmnhW?FPd=x=o7cJ!y&1FU@kh;hv>gV(9g6?1=Qcjnu z&o@YemR{6{Zr`vpLeP8rwNe$+avRwQus~~n=59<^=Y(K2_Wnpx? zR7+Z5m43viF~9j7R87mUWP2E-j)_1nTOLOquWo7V+<09jW&yCSA`oOcZ*K{ciMq$c zd`5Tkx`@5(Q^cU=tUR@~O-~o7S$uxBdRfhAa8FgbjkL}+#3P}hf?m-w4H_+A_dO8^ zOTHC;$X!W7hI#vQ49K+zV{lH*n})Dkc~$Zv(VG{j6ediY%W99&7=b~^TvM>MYpaO( zDOa>;#JV|z_Gq)cW5d?E1$MhJ&0D*k6@+MQ`mW>4ToBCt5d?79@hv?;M7z8xs+L~i z0#IE+M`ivqim)UNAW*tsAug?Fd7ozPOXI?K4rN$ zKTxX9P^mg4t$H1pYFErEk=hV>h(w4WO}42m>@Awni?Jww}e;gaa&(u*aJt}1(c_HC|F0)HjLilbfV?0~0mAGEGZ-TIHTER5O z0YKc+)VyuK0c4g;pPLYPhiwu*froVxk%@~CbmbF`P6~=kl`GVMlr^(C%njq6-I{NJ z$+i^DoZ5y45P#A9?ukXd?YA)QR-l7yLs(>cH$UPjAJ5y3WZW&ys5$o~0Aj9a8Y zwxLx6S#H$zx3m9YKu?pJ|oTtmmTw(z|{0cg-4a8($O^XKx*?sk@ zVG4RJY=PBVacQ>sNyo`GS#btXc?L1>573=sD=e1 zt|)>N8J~mJI6Lm3Ijgs6E^UVzRcy~a6YXBW3PpjC_OYqAy-GDynv9bZ9)}A+3s-k zg$>TGm`|oQrJNxEi;gI+82$r^>#zORbg)y1k{Ni!hf#OHPz-N{wy48N!d&;m_|eP- zzX+fEM&~H`(1w$uid5jUdj8lABM7s%tP`KZSBp-4OuHF}C{)Uz^fr-RrT&}VSI?BB zqmzIRC4Jqx*Z_p>@K!_p3>g!)mqj%GY@3W9 z9*A$@0@5RrdkTKOWML8j9JQ`g&j|A3u|_3_Au(Y;tXE--=E#wjs&z3bwj+llT#NK@ zqI~`5^&Rm;vT>|#zSigkeA@fNS=BYe&Yh)b2(}vm*)GTSVJ(5&YPtpY;gQ z>F0na;c$}ix9&0$AXX|tpkE*=G$2A~31Nk5wMKh*)uN4ZE$j|PjT1u0zQBbI9Xy1B zX^2_DRxm)>@fY+?r6NZG{#t4wl0Q&%NI#7}v;N~-AQIL}EqASqu=%_gwVsZ0#q1j# zhIji+)SOP8eqsIM2*{J1c=8g7VY3KPDa>Z};?im=iv~xN1>4R)dKL-)qzr5tL zCGXvsU=S?Qwau4=>|G4lZ$l}hDz7w_OA_DnjUOHagfSz0TCl((%ddorV)^cI7cy6) zZM+T4k|A8N9o)fl0H&Blvk1D`;Z2gW&n-etGy$qgxI z&7|VK-bSZHtwiL5ir6Hq;-*2wxbVhr~-9x5ar==qzLj!-Y){}fg;DH}$LX_M#L`%)_ zr+N0!Q_*9;1l?2<#!hfisAAc*Z-|^}mNdtzJ}6>v4x4pkV31Pko4_osfuL5_ECO6W z$N)qRQi=licVI-AqW=y;w>q`?q0OOUPQd7g(>A-g{_qDolFJQ*ttkATqIOkJUX)k? zYhf|jroGl{0s06C-p)6u;YgPMs?d_T)Gm+Po8pC7u-C7Ve#5F0i&bYM5ur%Z(jq`U-Db+n^& zR!VYMg3sGQHm-O;4I8$ zIRx%W-f&MKkrKQvIEXlauXl74-Ax9;gPULFO%j1nJ~0btBn1|~a^Rxd{T_GCecX-F z04lW=1Jq_{2}C#-)RN!i>I>4afTzQR~cKPtLf0o+XS-Yn+`bqS#2M?J7Q+ zD#5TNT231PC%PmTCq-y`XiO6pKg7k3Q;Q4R5}F8kA#uQJAILR7?#r35hNs_M?9kj}hCt@>Gbil0UGI4d-b zUgBb-h$~zt+pBd*2rLkP1qhp%{iR zD;QE}LTG+|*CVMGpT)dMuBRbAVdeyFmNJ99=+wkSfPzr!Bir4ccv0VCd$^_zW?}IS zE^ycdOJS0)XnEpq=>iTKLkuVQ#pjD=!RV5Y+C};bZ1ks6Tmnqo;24*8G}St8&mVc$ zp;?MAa!G%I3j*n~;c3YHlwBf4VM~x4XC>W)nl_-cqo6F>KyfH$>%#8OU6wKV0Fr`u zfYLhCPrgMFUoizm4<@;^N-VcyE^XQ^zg^-5p4l$r6suYe+k^%vvfkG0lMV>NZTC?^ z^u)-y*+}~g4h$32rMO{&E=sfGF~PJo6%H-`jO>p*%%E=-*ukv31Q$uxfFfKB4-_@xP6;Cuq5+X0 z$#5fqHfotBu{Erl4;o?7lIPtr8+)fAev(xRGiSIc`a*K$Z8IgY6$$TqA9ar^m>8+VHutm?Y>Okw0;R5?sg%3O6Ed#@icFg#2bCJ%1d%LR%vSjl z&%yZ1rj?cq^I#;?W+IIVRC1a$3(IW=bzQSQFvrpmqK8zq8B389t6boP#eK(Q9y7h3 zL8Q&+m9_u{(0-2Hxn9}^m#%ER2>l6t##$lo6Uscr$Fg2 ztA-fGb(4wWEylCH#4}j!qGk6>v1IOmfDS@IjmR=2W8`8UW`?(H4v+wX&q;d~mH{&v z7jr~of=JKtBLHl|K>i1B;r8kAS`2_~3H3!@jKo6wZ5gdO$CA3;S~|JX_^)1t)_JcY zv-MCikEW=sUk0lN#Ni3Ol$N3O@-ms7=piSvQ@TC(lB%~*RhDgS(-LaaLljGM^msRF z&O)!-sLgdf#e`#O51O^;2(8{jWKmzq7R`Um0&b|`_U2iB0^xULCq&&QW@Br==A4zA zH+O-Vt+HBl}U}Eu^n)xcZ-!2)1Rt}E5&G-J%z$CvnAM(Ud4)R330U(?x=cK#J*_wRmuaf^!f$msa6z+hH!9<6Qi?)357=p9LD} zWQ82^TY1hlDMV(S0-&x~D6_?f1?n$2HNPpLA+D3$)b=%!0M=cKk3{79EUM2dl7j(T zl$SS!*`6w4tEmr%Q5@V;FIKKn7bdX9&9Vr#t7xxkjsu<*i_}y<>~6_U{iDTYlQqUP z)x#EkL#J+-@cp>3tYA7&k9gl0KYRCKbflReX^73Kvf6kpimcf9Sn52}p2Av?W@=n> zxto^btzxUuIW36RL%%W_u6c@;C)1&9Sin1-UNaLi;^Dd-4I40Px2mGg+}yE~SV?~& z3ks&6AedX&61re(BJ-5|Ujmm|6EnifQRH8FVCIb;p~fwl`x|}Z>a5K=qo3b=kMG&b zNLb7n?m$m3>RP^0cCu2Xf}hlL5pJ0ilR%VH>PB1?A|wE&kJ@Zk4jG9t1gbFbN=sSA zv$mJ9V8;@G;B#ANmTK6p^KEbJO6OiXczL@2<53nD#9F-@Dvxzi3zkiDi%>A!=m_z z=sbRZs6^6dNz*6cdIR(YB0&z_iLDcW@(F%7>7)+#j9k)M3sES+mAIJSj(Jvq#EHl` z8g?d1<-~flFIPaYj4h8^02{Rgh}+f{ZdNu2^<+SohdDv(Ta?O)?NFS#2Gj}IuTbfX zm`2-1g4K+XtrxTXTJTg+PV)Bqi0sB~go&?e8w&FUo{0w(Rb2xG>&VL$+d$+AQ_PYb7H+xdO!g7cGyh=RAJq|F1ez~n-0%sPOl9*EuX&g- z6Pc=tOPH}ENhJJ+31NfWm$=gPLW^#(q3P4y#SZ92o{K`2>gPqN2q-vi@p#}>*=Jnd zCjG;r-uo!TY)@NQp%c+{O6H=7p4rXY{Dgwd5kv=-0N&tO&LSE#F%9sMbR^VGp5nq9 zT-*FIH_#667C)kO$iVpBT|c0vxRzDd9{>eHX?nk27ZwYW*WSs8C6m-TQJg5aHP@ zo{<^F73$;)b#`hY@O9HRk-4H}T1HO3Wycq#MYy3#cZ_-gXv?#32E&3S^WpR8#=3P= z@%CPjMLb!Vs+L7vM}Uwp6o< zy{;X}VW=uw-Y~otXqsP?NoT2G(qZzdZs~t{^Xfwj%58C_aIaNh$1B^Zy#oM~8-*Hk zB44mNZq}lH5e1;nNn&=bMx+5Pw+BdbVT@V|0@V&lvMsjv~M;nOVpT6=6mCM>Eqc5^{S}s#c3(7B;a7 zau}1R7%q9)vs<{o zl}9hw3@C-Adkl#1#vhUNNxJ3cH^wE;lubo9 znc@gfck0#C8xoeab5{WmbGCpv4Vx*yVyD>0EDm8zs|&=s7L(Fa&^zV0nzxK1N2Ppy zz>^oWpWSkliV$4il+hz!5m}_w#j@-tUYtBP%w3BGK|~q@=7=TJ(FXB)kUn1h>F?*V z7r1c8MVXO6myPK74I*M(!n?uB9bUd9DTWejmR#A4da08<+SNso*c5j}JRm@Wnl~*f zH?8RtQL#b2zQKCBv+ry3O_e#$odvquIUjLq^l4sVt=zRjrfnC{ z=B%d}=y#1932v8pZN3`sFMfya;nuV3cJ$^YSUD0z48d$haVoC0EOr7;U8$;i1nqg- zo}H~ca$3?gGFaEG(cZpYzcwBg!2=Auc6~HzgPmIRA+DtkB+4|!+rSIto#2)pNwLL% z9cB}aill)AqFceUP!0?05k>=IVS3|LU%y=?VQII!>VjmzmOc=#0v#U)gDRMlCw6Un zSlzO*MHr}ezLaLxG*>v)1|Tw>s$G4**nZJ`Z3TB&~33J9zi8+oxP1O)=@&_>m31@im7TK!;-xBsOF z1^>2jEGasa6ur}(>k}Gzp+@5<2)J7=Qzx1aV$!tXL0{#pN&$Gv#pP2op0tE0t$=eV z1yBTJw)#bW#VzeH>u|+{>EJXkgN>5-s8&(apom|YmHf$jCbXO6O9%`D#SpjW zr)@_GC#@Ql=;PI12$SnjU2~e5;%-U;@mI{ahE#TqbJ;*PL`Ao;eZ@iXC}om8HC6< zxo4~v@c~Qps2+^~VJM@w?t=%EhQXz z!Dn_>zC<@Js7smUOG~f3SxXkBhWm~z!iRYjD2E}rUvk8j!$aVVvs?Z8NU+5ZK+1K z+T!tnezdjpzckbw9qj01+juH3Z+xM>HP@PF4>|uz5xcKQRu}DTJJ5{7KPpYOMZKl$ zK&pJU*qYzT!F5q*E*%w9`CJMuK7Bx6q0rJia#kc*0s zKil?1bgUGSz>ci*BrPa)=KDCcZR~XFD4({{N`~Nq-Pzr=+cOcRS_`e2Oi#p_bUi)e zZBZ$!9qhGmd92rOU2ircKr(+;P-7wJ`EdX05+`*u#*V%O_6rY&L`HTrrePaIu?7)@ zDPXe1w|3q@CNF~$0XDW%WUs!qSiqtfU8h#$vqPHxTg*)Cz-_U;}PoC7`t zS@~62F&&`yU>#Xjx9ocn2za^rK+zM;s6Cn>|+!}Syg-tpU4;rEvJCf{L5u%3IHCj4m z8~PBHS9?vAZ2`Po&jnqi3zsFX!Nn~5wky5Cmu=$1+R^HB$yoMaNRCg~lds&Q7a_P6 z<`|Ro;;R;>55?kWAihM3Gjit;vX=}WEG!`uKA7cI&Y&;^ljX}n2{y-XBmx-SN5=V7~u=Qv|_?MJy}C;6GKT;g_AY7#T+nDHsg<()8|lNq5%%uw`Y z?%E)!;gFEmY!UEVm~e`ra;$(ZMkD0W?}3=jN@m1LM+c6=hvAT6`~(+=Iu;I!-6t3H zQv-j2n}Qaj1jM;?rZVf__>`M*kiNBNcOF*?Rb1tuG!67dQbi=PVUWdOI_2p?=;KAx)(PXqV@{U zSbo4PL_W+Sgh=u9(NM?e;wI}GW+f680BH9*uv0c|YA<4n?QeF;iuiR4J@W~EpOWRz z?SF?0y#Ly!U`G%p%`wbx(1hF;-m)?wxX+-kh0W`_K)dBNv8{;yEIcsTKr$>M0b;q+ z{O6Bwt56x&D&enLZ|oEm3$^cij-Pu)1v*E0TN3c)Qruw%ST;*qe&cn1N)R-w9}TXW zI0~nv>_D8$W7355>!h%%dx%BD(2*5GFXzR=7UZ^eqX4EGhc*cz*DY#=vEAI1)XDNO zmAA}x_1tST$o${lVojtRjrSVt$GZ3#dy7k+nQ%ku_4`3^thXv!fYAlzhwgZXT0sby z*d^6>mnPM6M9KB&I+2y!Sw8k#rehMFLVAU@k&YmRD$jtIz~hbmGbQ>L(@qX?LAIx$ z>`1gsnju5cx0~7&j$q?Gv#5r65LLRYg@%Tbs-4j*9_pI;GrPsX;li@k$Re>|r@+M9 z>U8%y&d9n6PB;j=L~KzXGMwUDx8Qg4q8Wp2IQ*KC_W@sU$!vUxxR&*n{E0@mMP3T0 zxTJx%&}SoqZdsq zX=c@^Ub1pS;)7q5HB$GN6GTlB7PnB=8%ZjAVRs@2ZBn=8aER)lXA>VYWu}i z9^?HJgEpKodV}pZ4!YD87dfdd63R6XlEc4u*NEs(Tp*OCSvVA92zH8sWn>jZ z;?}W!{N+*t&E0U8$~3jz2e{;!Dc9YJF|6q$5r61gU18VMK$uz{5vpW-utso8yFwo# zlHXpAy^pP6{5qf^M3N`QjOeT7RuRpyLHZ)zB)m?%yd9wJw=-C%HaTQu&j@TOfrmwl zn`MhN8E*Z@sfy2m_X?v6;@yq4tCO8ppS$%@%ZSLZ)-YP*!a}Z-vWk5Z?CMQ-i!h** z#wu3~654VQA7g)h_&)LTc8uMlwW69$aLT+iOrK8H-%Z(hDs*bv41V204U;XKK~0y* zROCWVW+gP3=K{33VtWM+LguzEf_(Ics)Ah&GmP-+114|q8kfbj#&`t*5Y|Q0LR)oy zJL;lP3P!PHI&8lTbuZhos%XtAONC&0TX*iKFq-GGoq8Gw&PWp$nZo6hXIZGeVIxdA z%$QCnL}Xu%UxYyP-U0w)Pjgq_CL&Q`N_~Jwt!-YRhhkQi{Ja@r$H8iIJZqI;5RS=> zW1^fUM0F=bbjlnf0HHYTN8<`Ucq*;eqTAwU5GHClDD*Nq#U@0AJX#g_$KW?myFK%Gn}{4QR6ync;ELBV3uv8E;11TWOOkDd&y{^Iw8>Y z$Uh(MvYbAxVkz&WYky0=k5g2%k2=qls45t@h6 z$HLf2DsS1T#R(xu{-{|k4jJ@aN(tLB&)Kacla$1RNW=#@(FZ;lgDX|Ea^ds3oYg0) zkBOY$5}aFhJ80FCCAWPF;=XR~gw$SMvN@71or1k*PjSH%#_5lU2y7}JZ!E=jc?*$u{}LHx2J2Uqcx4b+{`I%iXiwC>t97LB0KWF- z%3&Q2mmPaLn#lFGogd(v{1^7^|Kaa_Gu&U!u&F-(<=nr|-OnA!{(klw*%O)H$b2m` znf`~o`1YIs{A>Jc^0D~2p9%N(j`!Y$syad=rh4z*;%*SicXtJS5NaJBhZbGAy8`^8 z9HKugsIZ8`%3aAn@Y2=0U*ZO%)tbF3W3Rb9dw0o7@!1GYDR_lM_W8RK%2?g$C9A(k zbU;xyCzG7qVO6S@1}xLh`rX^S!H7FEt8PgnTe*9a8%|u9y>5NR-m+*d0qd)F6C;3r zZtCtj#gJ`g@801CBDi#Sl^g21;`@M?VSds2Z8*dj*Q^cMnwIRj4`Bo>?YRz;T(aR2 z3bM3f)6}Pzs+O0__EJ8HmGZ2O0m7sdC>#$ItX{QlOV+Xvht(g=S+}5!iCe!bwTIrV zUA-&hun6R=#D#sD9P>0XeM{CAZu~4g-V{EL-neQr!GLZq-Cd@187h5i%If#Ya9Dy> zTUch1cy4vWNf)i*>#! zJm2UNr=XmG`_D{S9W0oi7H0K|?=uUI8GhcX)+WT%iOn_lU)xkv<9oOkX*;m}1hD@6%rf5m_os^h^y zc9dCb0G8_E8U1U`+BEgR9hA5ut@kdw-(3a~TxPHg(fd1Lu%Xh^GhK0FyxIG}^X<YYO+sa&BFX1@u7>1x0LpthEr~ zCz^9{_U@OglU`(Q5L3wOZ5rE#B~Y)Cx6w$lcF!)|{c=4#z)$$|sGj8H1OWvc4y%}H z)jgUyi-=}LCk%C%M>R*1Wd1>?kpc~_Zv*qs*daYY+Gtd+@8Ao6`K=WFjJm}B95$C&!EJ!E7l?H%n-wx zn>7+m|K_J`cJT`xGEN`{0L5ML1=yBTzA}H)aFJSgs-@^bmeov&+JZUjbdEcy@ztrz z;OaIpyJnq(qUl|`w zU$crvfy5;n9n@m>rcKRWgRo^=41mVdBcOND-}#W<#=-&a9zuaTV~_3$n+nMet=hoW zYvWM*GM^w1X2Pu1S9;AR2kKsDN*3(}VVJf_(b|m|$bxxOM#L=$9A)CP2sqQ{S2G;f z(%4>2Xv{SbNTLBBl@|foZQ&hO{qP5Lsqw>LULD?pnQrQ)K^NJh~j?A=YrQ8^ob4-+^D48cmzV9~1!HaX16n&)E@Iz0M6X=rqlCRl2c zwT`Q=@L$(-*}efm=WHNG#U=5WA%sQpq?}b>wrK*x07(__5dd^%#So5BA~^`?xw{Ut zXC@spx#(F6N)haJ#z+Fj17bTu%|8G-XH#6f&x#FYpoF>eaXHIg2RrFQ%ueDgJT?vq2ccmC+pbMD3`2WwZ~{^kw$@+Svs!+-nJ zm)*rr_Sb&r?QdRm&wjG6_S}2le75<^pG-zOT3WJ|?7+p<`PKQ_|G)KfeYGe4)~7GI z6Q4}frvJmIC&EhNlkwW^zx`=7tnBz?Z*B6oKmFRry+8BA-fxAkG@Yr%mcLaEQwyn6 zwI3{htE=|sm%oLjXt?&H#HsPxaPrjN+VvaX`lVX&FMeUPc5vjy!3URCzV(Yg9e!cQ zUu*iARPC3WF8$>n)|ln5))tSoPSpNYrZx~}|M8ADYX8Ua*1feK{n~d2svl-+4?fKP z>@WPuIF7)BiQlXx_UC6G{Os4h^QYZ|-fy^HceURO2Eqrw^>}_?^5gqI`|C>N52pTW>PM+xYAQDUpG|YY@5H;K_hSDs_BUhSj{iaYuP0j* z|2pxjiCW@%;&k?OwlnhwnZKU-x%6*jRx;;z{L7}}neN~(1$To>!DB(T>7O_KmDtVL z3$cOlzlJ{wzef_^FNd$4B%JP#+~0M7!TmA!PX6!Ze>wm4)K~KF<`3qh-0$Tc#LuPw zWA0BRI&-tRW4RW$Kl}U1r?bBjzmfeJG9dk2;&gI8UYmM_$<&~0fBCI@duspgJuW@} z<+Y)3#9fR&&A&XDXey13x{FPf?pgAcKlB5rFZX*#s0oM`j!9u3xl<9zk4rU8@T-JV0_2luzGGh z84iZAU#ITe^u%!O&O7&hQ2W(iEAjqUSkhayZ_E-~H^l2#fBR>LYZw3D?+*L+`=(zV zY+9=A|M1@HweI)sO@4angR$D&2lsv>w8p+s`rcseT(!1ec?Zo@{{#$MG?R%58 z-}(pN9jyK6xzFOCzV@LF=?CYo4cFY;_x9IL9Jx18``X+0e!2GZ7t%wu-#!1?p4vBF zy*Cz&x?0OfX}I>w7d}hW)-FHW|E=dfyI3nf_t{wO51;$&H*2rHK_{Ml;j^(HUb+|T zcmLmxQ?=No!`0gTONaX({NU1IB)Q=K+40rd{n*zhYKi#QU#mTR`S9(~{i7XYwO{?@ zr-o|(467-f9CLy;CJgg{;-xE?H{cDj{ADDHZ#56U;9DG-M{#=H~VYjv9JGB?bm*P z&rt0*uN?k9DP(u-soh`t>A|4md$ni&9x82k@9O_JRJ diff --git a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt index 2f800d5847..7f39efc1d2 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt +++ b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt @@ -125298,6 +125298,464 @@ "DeletedAt": null } ], + "MorphTypes": [ + { + "Id": "0cc8c35a-cee9-434d-be58-5d29130fba5b", + "Kind": "DiscontiguousPhrase", + "Name": { + "en": "discontiguous phrase" + }, + "Abbreviation": { + "en": "dis phr" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A discontiguous phrase has discontiguous constituents which (a) are separated from each other by one or more intervening constituents, and (b) are considered either (i) syntactically contiguous and unitary, or (ii) realizing the same, single meaning. An example is French ne...pas.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "18d9b1c3-b5b6-4c07-b92c-2fe1d2281bd4", + "Kind": "InfixingInterfix", + "Name": { + "en": "infixing interfix" + }, + "Abbreviation": { + "en": "ifxnfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "An infixing interfix is an infix that can occur between two roots or stems.", + "Ws": "en" + } + ] + } + }, + "Prefix": "-", + "Postfix": "-", + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "3433683d-08a9-4bae-ae53-2a7798f64068", + "Kind": "SuffixingInterfix", + "Name": { + "en": "suffixing interfix" + }, + "Abbreviation": { + "en": "sfxnfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A suffixing interfix is an suffix that can occur between two roots or stems.", + "Ws": "en" + } + ] + } + }, + "Prefix": "-", + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "56db04bf-3d58-44cc-b292-4c8aa68538f4", + "Kind": "Particle", + "Name": { + "en": "particle" + }, + "Abbreviation": { + "en": "part" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A particle is a word that does not belong to one of the main classes of words, is invariable in form, and typically has grammatical or pragmatic meaning.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "a23b6faa-1052-4f4d-984b-4b338bdaf95f", + "Kind": "Phrase", + "Name": { + "en": "phrase" + }, + "Abbreviation": { + "en": "phr" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A phrase is a syntactic structure that consists of more than one word but lacks the subject-predicate organization of a clause.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "af6537b0-7175-4387-ba6a-36547d37fb13", + "Kind": "PrefixingInterfix", + "Name": { + "en": "prefixing interfix" + }, + "Abbreviation": { + "en": "pfxnfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A prefixing interfix is a prefix that can occur between two roots or stems.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": "-", + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "c2d140e5-7ca9-41f4-a69a-22fc7049dd2c", + "Kind": "Clitic", + "Name": { + "en": "clitic" + }, + "Abbreviation": { + "en": "clit" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A clitic is a morpheme that has syntactic characteristics of a word, but shows evidence of being phonologically bound to another word. Orthographically, it stands alone.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "d7f713da-e8cf-11d3-9764-00c04f186933", + "Kind": "Infix", + "Name": { + "en": "infix" + }, + "Abbreviation": { + "en": "ifx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "An infix is an affix that is inserted within a root or stem.", + "Ws": "en" + } + ] + } + }, + "Prefix": "-", + "Postfix": "-", + "SecondaryOrder": 40, + "DeletedAt": null + }, + { + "Id": "d7f713db-e8cf-11d3-9764-00c04f186933", + "Kind": "Prefix", + "Name": { + "en": "prefix" + }, + "Abbreviation": { + "en": "pfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A prefix is an affix that is joined before a root or stem.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": "-", + "SecondaryOrder": 20, + "DeletedAt": null + }, + { + "Id": "d7f713dc-e8cf-11d3-9764-00c04f186933", + "Kind": "Simulfix", + "Name": { + "en": "simulfix" + }, + "Abbreviation": { + "en": "smfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A simulfix is a change or replacement of vowels or consonants (usually vowels) which changes the meaning of a word. (Note: the parser does not currently handle simulfixes.)", + "Ws": "en" + } + ] + } + }, + "Prefix": "=", + "Postfix": "=", + "SecondaryOrder": 60, + "DeletedAt": null + }, + { + "Id": "d7f713dd-e8cf-11d3-9764-00c04f186933", + "Kind": "Suffix", + "Name": { + "en": "suffix" + }, + "Abbreviation": { + "en": "sfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A suffix is an affix that is attached to the end of a root or stem.", + "Ws": "en" + } + ] + } + }, + "Prefix": "-", + "Postfix": null, + "SecondaryOrder": 70, + "DeletedAt": null + }, + { + "Id": "d7f713de-e8cf-11d3-9764-00c04f186933", + "Kind": "Suprafix", + "Name": { + "en": "suprafix" + }, + "Abbreviation": { + "en": "spfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A suprafix is a kind of affix in which a suprasegmental is superimposed on one or more syllables of the root or stem, signalling a particular morphosyntactic operation. (Note: the parser does not currently handle suprafixes.)", + "Ws": "en" + } + ] + } + }, + "Prefix": "~", + "Postfix": "~", + "SecondaryOrder": 50, + "DeletedAt": null + }, + { + "Id": "d7f713df-e8cf-11d3-9764-00c04f186933", + "Kind": "Circumfix", + "Name": { + "en": "circumfix" + }, + "Abbreviation": { + "en": "cfx" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A circumfix is an affix made up of two separate parts which surround and attach to a root or stem.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "d7f713e1-e8cf-11d3-9764-00c04f186933", + "Kind": "Enclitic", + "Name": { + "en": "enclitic" + }, + "Abbreviation": { + "en": "enclit" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "An enclitic is a clitic that is phonologically joined at the end of a preceding word to form a single unit.", + "Ws": "en" + } + ] + } + }, + "Prefix": "=", + "Postfix": null, + "SecondaryOrder": 80, + "DeletedAt": null + }, + { + "Id": "d7f713e2-e8cf-11d3-9764-00c04f186933", + "Kind": "Proclitic", + "Name": { + "en": "proclitic" + }, + "Abbreviation": { + "en": "proclit" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A proclitic is a clitic that precedes the word to which it is phonologically joined.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": "=", + "SecondaryOrder": 30, + "DeletedAt": null + }, + { + "Id": "d7f713e4-e8cf-11d3-9764-00c04f186933", + "Kind": "BoundRoot", + "Name": { + "en": "bound root" + }, + "Abbreviation": { + "en": "bd root" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A bound root is a root which cannot occur as a separate word apart from any other morpheme.", + "Ws": "en" + } + ] + } + }, + "Prefix": "*", + "Postfix": null, + "SecondaryOrder": 10, + "DeletedAt": null + }, + { + "Id": "d7f713e5-e8cf-11d3-9764-00c04f186933", + "Kind": "Root", + "Name": { + "en": "root" + }, + "Abbreviation": { + "en": "ubd root" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A root is the portion of a word that (i) is common to a set of derived or inflected forms, if any, when all affixes are removed, (ii) is not further analyzable into meaningful elements, being morphologically simple, and, (iii) carries the principle portion of meaning of the words in which it functions.", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + }, + { + "Id": "d7f713e7-e8cf-11d3-9764-00c04f186933", + "Kind": "BoundStem", + "Name": { + "en": "bound stem" + }, + "Abbreviation": { + "en": "bd stem" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A bound stem is a stem which cannot occur as a separate word apart from any other morpheme.", + "Ws": "en" + } + ] + } + }, + "Prefix": "*", + "Postfix": null, + "SecondaryOrder": 10, + "DeletedAt": null + }, + { + "Id": "d7f713e8-e8cf-11d3-9764-00c04f186933", + "Kind": "Stem", + "Name": { + "en": "stem" + }, + "Abbreviation": { + "en": "ubd stem" + }, + "Description": { + "en": { + "Spans": [ + { + "Text": "A stem is the root or roots of a word, together with any derivational affixes, to which inflectional affixes are added.\u0022 (LinguaLinks Library). A stem \u0022may consist solely of a single root morpheme (i.e. a \u0027simple\u0027 stem as in \u0027man\u0027), or of two root morphemes (e.g. a \u0027compound\u0027 stem, as in \u0027blackbird\u0027), or of a root morpheme plus a derivational affix (i.e. a \u0027complex\u0027 stem, as in \u0027manly\u0027, \u0027unmanly\u0027, \u0027manliness\u0027). All have in common the notion that it is to the stem that inflectional affixes are attached.\u0022 (Crystal, 1997:362)", + "Ws": "en" + } + ] + } + }, + "Prefix": null, + "Postfix": null, + "SecondaryOrder": 0, + "DeletedAt": null + } + ], "WritingSystems": { "Analysis": [ { diff --git a/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs b/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs index 615b62848e..ed729a7045 100644 --- a/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs +++ b/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs @@ -122,6 +122,10 @@ private async Task SyncInternal(IMiniLcmApi crdtApi, IMiniLcmApi fwd crdtChanges += await ComplexFormTypeSync.Sync(projectSnapshot.ComplexFormTypes, currentFwDataComplexFormTypes, crdtApi); fwdataChanges += await ComplexFormTypeSync.Sync(currentFwDataComplexFormTypes, await crdtApi.GetComplexFormTypes().ToArrayAsync(), fwdataApi); + var currentFwDataMorphTypes = await fwdataApi.GetMorphTypes().ToArrayAsync(); + crdtChanges += await MorphTypeSync.Sync(projectSnapshot.MorphTypes, currentFwDataMorphTypes, crdtApi); + fwdataChanges += await MorphTypeSync.Sync(currentFwDataMorphTypes, await crdtApi.GetMorphTypes().ToArrayAsync(), fwdataApi); + var currentFwDataEntries = await fwdataApi.GetAllEntries().ToArrayAsync(); crdtChanges += await EntrySync.SyncFull(projectSnapshot.Entries, currentFwDataEntries, crdtApi); fwdataChanges += await EntrySync.SyncFull(currentFwDataEntries, await crdtApi.GetAllEntries().ToArrayAsync(), fwdataApi); diff --git a/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs b/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs index 0cbd7d7d07..9d3257413b 100644 --- a/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs +++ b/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs @@ -126,28 +126,28 @@ public Task DeleteComplexFormType(Guid id) return Task.CompletedTask; } - public Task CreateMorphTypeData(MorphTypeData morphType) + public Task CreateMorphType(MorphType morphType) { - DryRunRecords.Add(new DryRunRecord(nameof(CreateMorphTypeData), + DryRunRecords.Add(new DryRunRecord(nameof(CreateMorphType), $"Create morph type {morphType.Name}")); return Task.FromResult(morphType); } - public async Task UpdateMorphTypeData(Guid id, UpdateObjectInput update) + public async Task UpdateMorphType(Guid id, UpdateObjectInput update) { - DryRunRecords.Add(new DryRunRecord(nameof(UpdateMorphTypeData), $"Update morph type {id}")); - return await _api.GetMorphTypeData(id) ?? throw new NullReferenceException($"unable to find morph type with id {id}"); + DryRunRecords.Add(new DryRunRecord(nameof(UpdateMorphType), $"Update morph type {id}")); + return await _api.GetMorphType(id) ?? throw new NullReferenceException($"unable to find morph type with id {id}"); } - public Task UpdateMorphTypeData(MorphTypeData before, MorphTypeData after, IMiniLcmApi? api) + public Task UpdateMorphType(MorphType before, MorphType after, IMiniLcmApi? api) { - DryRunRecords.Add(new DryRunRecord(nameof(UpdateMorphTypeData), $"Update morph type {after.Id}")); + DryRunRecords.Add(new DryRunRecord(nameof(UpdateMorphType), $"Update morph type {after.Id}")); return Task.FromResult(after); } - public Task DeleteMorphTypeData(Guid id) + public Task DeleteMorphType(Guid id) { - DryRunRecords.Add(new DryRunRecord(nameof(DeleteMorphTypeData), $"Delete morph type {id}")); + DryRunRecords.Add(new DryRunRecord(nameof(DeleteMorphType), $"Delete morph type {id}")); return Task.CompletedTask; } diff --git a/backend/FwLite/FwLiteProjectSync/Import/ResumableImportApi.cs b/backend/FwLite/FwLiteProjectSync/Import/ResumableImportApi.cs index 3e562d8b3c..c41c656517 100644 --- a/backend/FwLite/FwLiteProjectSync/Import/ResumableImportApi.cs +++ b/backend/FwLite/FwLiteProjectSync/Import/ResumableImportApi.cs @@ -58,6 +58,10 @@ async Task IMiniLcmWriteApi.CreateComplexFormType(ComplexFormTy { return await HasCreated(complexFormType, _api.GetComplexFormTypes(), () => _api.CreateComplexFormType(complexFormType)); } + async Task IMiniLcmWriteApi.CreateMorphType(MorphType morphType) + { + return await HasCreated(morphType, _api.GetMorphTypes(), () => _api.CreateMorphType(morphType), m => m.Kind.ToString()); + } async Task IMiniLcmWriteApi.CreateSemanticDomain(SemanticDomain semanticDomain) { return await HasCreated(semanticDomain, _api.GetSemanticDomains(), () => _api.CreateSemanticDomain(semanticDomain)); diff --git a/backend/FwLite/FwLiteProjectSync/MiniLcmImport.cs b/backend/FwLite/FwLiteProjectSync/MiniLcmImport.cs index 67a5cbb46d..574dd10b12 100644 --- a/backend/FwLite/FwLiteProjectSync/MiniLcmImport.cs +++ b/backend/FwLite/FwLiteProjectSync/MiniLcmImport.cs @@ -61,7 +61,7 @@ public async Task ImportProject(IMiniLcmApi importTo, IMiniLcmApi importFrom, in await foreach (var publication in importFrom.GetPublications()) { await importTo.CreatePublication(publication); - logger.LogInformation("Imported part of speech {Id}", publication.Id); + logger.LogInformation("Imported publication {Id}", publication.Id); } await foreach (var complexFormType in importFrom.GetComplexFormTypes()) @@ -70,6 +70,12 @@ public async Task ImportProject(IMiniLcmApi importTo, IMiniLcmApi importFrom, in logger.LogInformation("Imported complex form type {Id}", complexFormType.Id); } + await foreach (var morphType in importFrom.GetMorphTypes()) + { + await importTo.CreateMorphType(morphType); + logger.LogInformation("Imported morph type {Id} ({typ})", morphType.Id, morphType.Kind); + } + logger.LogInformation("Importing semantic domains"); await importTo.BulkImportSemanticDomains(importFrom.GetSemanticDomains()); logger.LogInformation("Importing {Count} entries", entryCount); diff --git a/backend/FwLite/FwLiteShared/TypeGen/ReinforcedFwLiteTypingConfig.cs b/backend/FwLite/FwLiteShared/TypeGen/ReinforcedFwLiteTypingConfig.cs index ff9dd78240..ccca38d907 100644 --- a/backend/FwLite/FwLiteShared/TypeGen/ReinforcedFwLiteTypingConfig.cs +++ b/backend/FwLite/FwLiteShared/TypeGen/ReinforcedFwLiteTypingConfig.cs @@ -146,7 +146,7 @@ private static void ConfigureFwLiteSharedTypes(ConfigurationBuilder builder) builder.ExportAsEnum(); builder.ExportAsEnum().UseString(); builder.ExportAsEnum().UseString(); - builder.ExportAsEnum().UseString(); + builder.ExportAsEnum().UseString(); builder.ExportAsEnum().UseString(); builder.ExportAsEnum().UseString(); builder.ExportAsEnum().UseString(); diff --git a/backend/FwLite/FwLiteWeb/Hubs/CrdtMiniLcmApiHub.cs b/backend/FwLite/FwLiteWeb/Hubs/CrdtMiniLcmApiHub.cs index 7518f600a6..649a08fcd1 100644 --- a/backend/FwLite/FwLiteWeb/Hubs/CrdtMiniLcmApiHub.cs +++ b/backend/FwLite/FwLiteWeb/Hubs/CrdtMiniLcmApiHub.cs @@ -99,6 +99,20 @@ public override IAsyncEnumerable SearchEntries(string query, QueryOptions return base.SearchEntries(query, options); } + public override async Task CreateMorphType(MorphType morphType) + { + var newMorphType = await base.CreateMorphType(morphType); + TriggerSync(); + return newMorphType; + } + + public override async Task UpdateMorphType(Guid id, JsonPatchDocument update) + { + var updatedMorphType = await base.UpdateMorphType(id, update); + TriggerSync(); + return updatedMorphType; + } + public override async Task CreateWritingSystem(WritingSystem writingSystem) { var newWritingSystem = await base.CreateWritingSystem(writingSystem); diff --git a/backend/FwLite/FwLiteWeb/Hubs/MiniLcmApiHubBase.cs b/backend/FwLite/FwLiteWeb/Hubs/MiniLcmApiHubBase.cs index 07e74308de..9a7f803b63 100644 --- a/backend/FwLite/FwLiteWeb/Hubs/MiniLcmApiHubBase.cs +++ b/backend/FwLite/FwLiteWeb/Hubs/MiniLcmApiHubBase.cs @@ -47,6 +47,18 @@ public IAsyncEnumerable GetComplexFormTypes() return _miniLcmApi.GetComplexFormTypes(); } + public virtual async Task CreateMorphType(MorphType morphType) + { + var newMorphType = await _miniLcmApi.CreateMorphType(morphType); + return newMorphType; + } + + public virtual async Task UpdateMorphType(Guid id, JsonPatchDocument update) + { + var updatedMorphType = await _miniLcmApi.UpdateMorphType(id, new UpdateObjectInput(update)); + return updatedMorphType; + } + public virtual IAsyncEnumerable GetEntries(QueryOptions? options = null) { return _miniLcmApi.GetEntries(options); diff --git a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt index 9cdd143ffb..92e7fcf48d 100644 --- a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt @@ -754,5 +754,131 @@ "EntryId": "a71ce732-d089-6171-22f3-e5d571f4cc37", "Order": 4.123, "EntityId": "48c7b2d6-6c0a-9c43-e3b1-dee1ce0f9633" + }, + { + "$type": "jsonPatch:MorphType", + "PatchDocument": [], + "EntityId": "59a71ac4-b66d-e921-8ec1-92a8380af470" + }, + { + "$type": "CreateMorphTypeChange", + "Name": { + "biq": "Refined Granite Ball" + }, + "Abbreviation": { + "wmd": "Licensed" + }, + "Description": { + "tsd": { + "Spans": [ + { + "Text": "Auto Loan Account", + "Ws": "tsd", + "Tags": [ + "d62279ad-96ef-4c18-b9ba-dcc594f80aff" + ] + }, + { + "Text": "Nepal", + "Ws": "tsd", + "Tags": [ + "f93872b5-0ae7-4f2d-af8e-53e5c3bbd661" + ] + }, + { + "Text": "Kids \u0026 Clothing", + "Ws": "tsd", + "Tags": [ + "d2a2221d-636c-4009-afa4-431fe948e0e5" + ] + }, + { + "Text": "Generic Rubber Car", + "Ws": "klx", + "Bold": "Off", + "FontSize": -840185874, + "ForeColor": "#ADFF2F", + "Tags": [ + "59d3d8ed-5346-a56c-ba92-ef12001d82ce" + ] + } + ] + }, + "njj": { + "Spans": [ + { + "Text": "Bedfordshire", + "Ws": "gll", + "Bold": "Off", + "FontSize": -330435865, + "ForeColor": "#00000000", + "Tags": [ + "cc7a3529-ea83-de35-486c-732573a52f30" + ] + }, + { + "Text": "Stream", + "Ws": "njj", + "Tags": [ + "7eb677be-9726-453d-b2f1-360a939bb0e2" + ] + }, + { + "Text": "Architect", + "Ws": "njj", + "Tags": [ + "6bf673fa-1326-4fd8-9779-2640f24f1f59" + ] + } + ] + }, + "kad": { + "Spans": [ + { + "Text": "Avon", + "Ws": "mxn", + "Bold": "Off", + "FontSize": -1669554162, + "ForeColor": "#ADFF2F", + "Tags": [ + "9532adc3-7421-a6d9-7987-1ba36f5469c0" + ] + }, + { + "Text": "Designer", + "Ws": "swc", + "Bold": "Off", + "FontSize": -560075183, + "ForeColor": "#A52A2A", + "Tags": [ + "afeadc3f-6fb7-c347-7b5b-864f5df0186b" + ] + } + ] + }, + "bzu": { + "Spans": [ + { + "Text": "Personal Loan Account", + "Ws": "bzu", + "Tags": [ + "8d062031-7f5a-4759-8e2d-8d3272abe6f3" + ] + }, + { + "Text": "Regional", + "Ws": "bzu", + "Tags": [ + "f60f00d2-fd98-4bc8-932b-8f1f9d0ee796" + ] + } + ] + } + }, + "Prefix": "input", + "Postfix": "indigo", + "SecondaryOrder": -166466953, + "Kind": "Enclitic", + "EntityId": "60f57218-abe5-182c-2bf1-57ce58b65cbc" } ] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/Changes/UseChangesTests.cs b/backend/FwLite/LcmCrdt.Tests/Changes/UseChangesTests.cs index 425222a48f..ed1d200660 100644 --- a/backend/FwLite/LcmCrdt.Tests/Changes/UseChangesTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/Changes/UseChangesTests.cs @@ -195,6 +195,13 @@ private static IEnumerable GetAllChanges() var createComplexFormComponentChange = new AddEntryComponentChange(complexFormComponent); yield return new ChangeWithDependencies(createComplexFormComponentChange, [createComplexFormEntryChange, createEntryChange, createSenseChange]); + var morphTypeName = new MultiString { { "en", "test morphtype" } }; + var morphTypeAbbreviation = new MultiString { { "en", "test mph" } }; + var morphTypeDescription = new RichMultiString { { "en", new RichString("test desc") } }; + var morphType = new MorphType { Id = Guid.NewGuid(), Name = morphTypeName, Abbreviation = morphTypeAbbreviation, Description = morphTypeDescription, SecondaryOrder = 0, Kind = MorphTypeKind.Root }; + var createMorphTypeChange = new CreateMorphTypeChange(morphType); + yield return new ChangeWithDependencies(createMorphTypeChange); + var setPartOfSpeechChange = new SetPartOfSpeechChange(sense.Id, partOfSpeech.Id); yield return new ChangeWithDependencies(setPartOfSpeechChange, [createSenseChange, createPartOfSpeechChange]); diff --git a/backend/FwLite/LcmCrdt.Tests/ConfigRegistrationTests.cs b/backend/FwLite/LcmCrdt.Tests/ConfigRegistrationTests.cs index 569006dc59..bd3f0a41e8 100644 --- a/backend/FwLite/LcmCrdt.Tests/ConfigRegistrationTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/ConfigRegistrationTests.cs @@ -8,7 +8,7 @@ namespace LcmCrdt.Tests; public class ConfigRegistrationTests { - private readonly HashSet ExcludedObjectTypes = [typeof(MorphTypeData)]; // Remove from exclude list once CRDT supports morph types + private readonly HashSet ExcludedObjectTypes = []; // e.g. types that CRDT doesn't support yet private readonly HashSet _excludedChangeTypes = [ @@ -17,6 +17,7 @@ public class ConfigRegistrationTests typeof(JsonPatchChange), //not supported typeof(JsonPatchChange), //replaced by JsonPatchExampleSentenceChange typeof(JsonPatchChange), //not supported. Use EditCustomViewChange + typeof(DeleteChange), //MorphTypes cannot be deleted ]; private readonly CrdtConfig _config; diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs index 2b51442e10..bbe2e496e1 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs @@ -160,6 +160,9 @@ await api.GetSemanticDomains() await api.GetComplexFormTypes() .OrderBy(c => c.Id) .ToArrayAsync(), + await api.GetMorphTypes() + .OrderBy(m => m.Id) + .ToArrayAsync(), await api.GetWritingSystems()); } diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ProjectSnapshot.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ProjectSnapshot.verified.txt index f89b154e6f..a0a7f5aade 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ProjectSnapshot.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ProjectSnapshot.verified.txt @@ -163,6 +163,7 @@ "DeletedAt": null } ], + "MorphTypes": [], "WritingSystems": { "Analysis": [ { diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ProjectSnapshot.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ProjectSnapshot.verified.txt index 8453240cc0..bc08d3fb06 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ProjectSnapshot.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ProjectSnapshot.verified.txt @@ -479,6 +479,7 @@ "DeletedAt": null } ], + "MorphTypes": [], "WritingSystems": { "Analysis": [ { diff --git a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt index aa712ebf51..d1b59f5016 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt @@ -1613,6 +1613,83 @@ "Analysis": null }, "Id": "72bcb2dd-4d73-486c-d5df-e5d7b9a6a3eb", + "DeletedAt": null, + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "MorphType", + "Id": "edd0c7a1-e37c-c67b-7522-eed5ec86fde8", + "Kind": "Prefix", + "Name": { + "nrc": "3rd generation", + "vic": "Fiji Dollar", + "gku": "turquoise", + "ynn": "Central" + }, + "Abbreviation": { + "pbl": "Mobility", + "zat": "red", + "oru": "PCI", + "igo": "Associate" + }, + "Description": { + "an": { + "Spans": [ + { + "Text": "Tasty", + "Ws": "iti", + "Bold": "Off", + "FontSize": -1017543311, + "ForeColor": "#FF0000", + "Tags": [ + "0ebd7b3e-175b-6f41-6c4b-7da14ac8f108" + ] + }, + { + "Text": "Direct", + "Ws": "an", + "Tags": [ + "b503f3c3-d81b-4b23-a955-b09edc34f671" + ] + }, + { + "Text": "client-server", + "Ws": "an", + "Tags": [ + "9ee0c2ea-c27d-4804-a8a0-f0fa9dcdc3ca" + ] + }, + { + "Text": "haptic", + "Ws": "an", + "Tags": [ + "b9bbc5a3-aecb-4c9c-84f2-06efc9680203" + ] + } + ] + }, + "aag": { + "Spans": [ + { + "Text": "grey", + "Ws": "emn", + "Bold": "On", + "FontSize": -1556897185, + "ForeColor": "#00000000", + "Tags": [ + "2ac27d27-9641-1715-5445-93707508db29" + ] + } + ] + } + }, + "Prefix": "approach", + "Postfix": "syndicate", + "SecondaryOrder": 231566132, + "DeletedAt": null + }, + "Id": "edd0c7a1-e37c-c67b-7522-eed5ec86fde8", "DeletedAt": null } ] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt index 6c45e7cbfe..621fed6b72 100644 --- a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt @@ -40,6 +40,10 @@ DerivedType: JsonPatchChange, TypeDiscriminator: jsonPatch:ComplexFormType }, + { + DerivedType: JsonPatchChange, + TypeDiscriminator: jsonPatch:MorphType + }, { DerivedType: JsonPatchChange, TypeDiscriminator: jsonPatch:Publication @@ -189,12 +193,8 @@ TypeDiscriminator: CreateCustomViewChange }, { - DerivedType: EditCustomViewChange, - TypeDiscriminator: EditCustomViewChange - }, - { - DerivedType: DeleteChange, - TypeDiscriminator: delete:CustomView + DerivedType: CreateMorphTypeChange, + TypeDiscriminator: CreateMorphTypeChange }, { DerivedType: SetOrderChange, diff --git a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt index d3b308f533..87c97de674 100644 --- a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt @@ -152,7 +152,7 @@ LiteralMeaning (RichMultiString) Required Annotations: Relational:ColumnType: jsonb - MorphType (MorphType) Required + MorphType (MorphTypeKind) Required Note (RichMultiString) Required Annotations: Relational:ColumnType: jsonb @@ -210,6 +210,39 @@ Relational:TableName: ExampleSentence Relational:ViewName: Relational:ViewSchema: + EntityType: MorphType + Properties: + Id (Guid) Required PK AfterSave:Throw ValueGenerated.OnAdd + Abbreviation (MultiString) Required + Annotations: + Relational:ColumnType: jsonb + DeletedAt (DateTimeOffset?) + Description (RichMultiString) Required + Annotations: + Relational:ColumnType: jsonb + Kind (MorphTypeKind) Required Index + Name (MultiString) Required + Annotations: + Relational:ColumnType: jsonb + Postfix (string) + Prefix (string) + SecondaryOrder (int) Required + SnapshotId (no field, Guid?) Shadow FK Index + Keys: + Id PK + Foreign keys: + MorphType {'SnapshotId'} -> ObjectSnapshot {'Id'} Unique SetNull + Indexes: + Kind Unique + SnapshotId Unique + Annotations: + DiscriminatorProperty: + Relational:FunctionName: + Relational:Schema: + Relational:SqlQuery: + Relational:TableName: MorphType + Relational:ViewName: + Relational:ViewSchema: EntityType: PartOfSpeech Properties: Id (Guid) Required PK AfterSave:Throw ValueGenerated.OnAdd diff --git a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyIObjectWithIdModels.verified.txt b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyIObjectWithIdModels.verified.txt index 3e281235d8..048b425e86 100644 --- a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyIObjectWithIdModels.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyIObjectWithIdModels.verified.txt @@ -39,6 +39,10 @@ { DerivedType: CustomView, TypeDiscriminator: CustomView + }, + { + DerivedType: MorphType, + TypeDiscriminator: MorphType } ], IgnoreUnrecognizedTypeDiscriminators: false, diff --git a/backend/FwLite/LcmCrdt.Tests/SnapshotAtCommitServiceTests.cs b/backend/FwLite/LcmCrdt.Tests/SnapshotAtCommitServiceTests.cs index f1cde771bc..64ce9d5783 100644 --- a/backend/FwLite/LcmCrdt.Tests/SnapshotAtCommitServiceTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/SnapshotAtCommitServiceTests.cs @@ -25,6 +25,7 @@ private void AssertSnapshotsAreEquivalentEqual(ProjectSnapshot expected, Project .WithoutStrictOrderingFor(x => x.Publications) .WithoutStrictOrderingFor(x => x.SemanticDomains) .WithoutStrictOrderingFor(x => x.ComplexFormTypes) + .WithoutStrictOrderingFor(x => x.MorphTypes) ); } diff --git a/backend/FwLite/LcmCrdt/Changes/CreateEntryChange.cs b/backend/FwLite/LcmCrdt/Changes/CreateEntryChange.cs index 24322e9139..833371bc21 100644 --- a/backend/FwLite/LcmCrdt/Changes/CreateEntryChange.cs +++ b/backend/FwLite/LcmCrdt/Changes/CreateEntryChange.cs @@ -32,7 +32,7 @@ private CreateEntryChange(Guid entityId) : base(entityId) public RichMultiString? Note { get; set; } - public MorphType? MorphType { get; set; } + public MorphTypeKind? MorphType { get; set; } public override ValueTask NewEntity(Commit commit, IChangeContext context) { @@ -43,7 +43,7 @@ public override ValueTask NewEntity(Commit commit, IChangeContext context CitationForm = CitationForm ?? new MultiString(), LiteralMeaning = LiteralMeaning ?? new(), Note = Note ?? new(), - MorphType = MorphType ?? MiniLcm.Models.MorphType.Stem, + MorphType = MorphType ?? MiniLcm.Models.MorphTypeKind.Stem, }); } } diff --git a/backend/FwLite/LcmCrdt/Changes/CreateMorphTypeChange.cs b/backend/FwLite/LcmCrdt/Changes/CreateMorphTypeChange.cs new file mode 100644 index 0000000000..f513bd7440 --- /dev/null +++ b/backend/FwLite/LcmCrdt/Changes/CreateMorphTypeChange.cs @@ -0,0 +1,56 @@ +using System.Diagnostics.CodeAnalysis; +using System.Text.Json.Serialization; +using LcmCrdt.Utils; +using SIL.Harmony; +using SIL.Harmony.Changes; +using SIL.Harmony.Core; +using SIL.Harmony.Entities; + +namespace LcmCrdt.Changes; + +public class CreateMorphTypeChange : CreateChange, ISelfNamedType +{ + [SetsRequiredMembers] + public CreateMorphTypeChange(MorphType morphType) : base(morphType.Id == Guid.Empty ? Guid.NewGuid() : morphType.Id) + { + morphType.Id = EntityId; + Name = morphType.Name; + Abbreviation = morphType.Abbreviation; + Description = morphType.Description; + Prefix = morphType.Prefix; + Postfix = morphType.Postfix; + SecondaryOrder = morphType.SecondaryOrder; + Kind = morphType.Kind; + } + + [JsonConstructor] + private CreateMorphTypeChange(Guid entityId) : base(entityId) + { + } + + public required MultiString Name { get; init; } + public required MultiString Abbreviation { get; init; } + public required RichMultiString Description { get; init; } + public string? Prefix { get; set; } + public string? Postfix { get; set; } + public int SecondaryOrder { get; set; } + public required MorphTypeKind Kind { get; init; } + public override async ValueTask NewEntity(Commit commit, IChangeContext context) + { + var alreadyExists = await context.GetObjectsOfType().AnyAsync(m => m.Kind == Kind); + // Can't return null for duplicates or we'll break the API, but returning a pre-deleted object will + // ensure the duplicate never reaches the DB as our code will filter it out before saving + return new MorphType + { + Id = EntityId, + Name = Name, + Abbreviation = Abbreviation, + Description = Description, + Prefix = Prefix, + Postfix = Postfix, + SecondaryOrder = SecondaryOrder, + Kind = Kind, + DeletedAt = alreadyExists ? commit.DateTime : null + }; + } +} diff --git a/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs b/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs index 9689c241a2..6aa0f6b501 100644 --- a/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs +++ b/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs @@ -349,34 +349,59 @@ public async Task RemoveComplexFormType(Guid entryId, Guid complexFormTypeId) await AddChange(new RemoveComplexFormTypeChange(entryId, complexFormTypeId)); } - public IAsyncEnumerable GetAllMorphTypeData() + public async IAsyncEnumerable GetMorphTypes() { - throw new NotImplementedException(); + await using var repo = await repoFactory.CreateRepoAsync(); + await foreach (var morphType in repo.MorphTypes.AsAsyncEnumerable()) + { + yield return morphType; + } } - public Task GetMorphTypeData(Guid id) + public async Task GetMorphType(Guid id) { - throw new NotImplementedException(); + await using var repo = await repoFactory.CreateRepoAsync(); + return await repo.MorphTypes.SingleOrDefaultAsync(m => m.Id == id); } - public Task CreateMorphTypeData(MorphTypeData morphTypeData) + public async Task GetMorphType(MorphTypeKind kind) { - throw new NotImplementedException(); + await using var repo = await repoFactory.CreateRepoAsync(); + return await repo.MorphTypes.SingleOrDefaultAsync(m => m.Kind == kind); + } + + public async Task CreateMorphType(MorphType morphType) + { + await using var repo = await repoFactory.CreateRepoAsync(); + + // Duplicate MorphTypes (by kind) are not allowed + // Note: can't put this in validation wrapper since we need a repo + var exists = await repo.MorphTypes.AnyAsync(m => m.Kind == morphType.Kind); + if (exists) throw new DuplicateObjectException($"Morph type {morphType.Kind} already exists"); + + await AddChange(new CreateMorphTypeChange(morphType)); + // MorphTypeKind value must be unique in DB, so return by MorphType rather than Id in case a race condition + // ended up causing two CreateMorphType calls to happen at the same time. It's possible that the other + // call went through, creating a MorphType entry with a different GUID but the same Kind (which would + // violate the constraint). So we fetch by Kind rather than by Id here to mitigate that rare case. + return await repo.MorphTypes.SingleAsync(c => c.Kind == morphType.Kind); } - public Task UpdateMorphTypeData(Guid id, UpdateObjectInput update) + public async Task UpdateMorphType(Guid id, UpdateObjectInput update) { - throw new NotImplementedException(); + await AddChange(new JsonPatchChange(id, update.Patch)); + return await GetMorphType(id) ?? throw NotFoundException.ForType(id); } - public Task UpdateMorphTypeData(MorphTypeData before, MorphTypeData after, IMiniLcmApi? api = null) + public async Task UpdateMorphType(MorphType before, MorphType after, IMiniLcmApi? api = null) { - throw new NotImplementedException(); + await MorphTypeSync.Sync(before, after, api ?? this); + return await GetMorphType(after.Id) ?? throw NotFoundException.ForType(after.Id); } - public Task DeleteMorphTypeData(Guid id) + public async Task DeleteMorphType(Guid id) { - throw new NotImplementedException(); + await AddChange(new DeleteChange(id)); } public async Task CountEntries(string? query = null, FilterQueryOptions? options = null) diff --git a/backend/FwLite/LcmCrdt/Data/MiniLcmRepository.cs b/backend/FwLite/LcmCrdt/Data/MiniLcmRepository.cs index 0f71b626fc..47f2f1226f 100644 --- a/backend/FwLite/LcmCrdt/Data/MiniLcmRepository.cs +++ b/backend/FwLite/LcmCrdt/Data/MiniLcmRepository.cs @@ -65,6 +65,7 @@ public void Dispose() public IQueryable Entries => dbContext.Entries.ToLinqToDB(); public IQueryable ComplexFormComponents => dbContext.ComplexFormComponents; public IQueryable ComplexFormTypes => dbContext.ComplexFormTypes; + public IQueryable MorphTypes => dbContext.MorphTypes; public IQueryable Senses => dbContext.Senses; public IQueryable ExampleSentences => dbContext.ExampleSentences; public IQueryable WritingSystems => dbContext.WritingSystems; diff --git a/backend/FwLite/LcmCrdt/LcmCrdtDbContext.cs b/backend/FwLite/LcmCrdt/LcmCrdtDbContext.cs index 2682a21534..4ad835f964 100644 --- a/backend/FwLite/LcmCrdt/LcmCrdtDbContext.cs +++ b/backend/FwLite/LcmCrdt/LcmCrdtDbContext.cs @@ -21,6 +21,7 @@ IOptions options public IQueryable Entries => Set().AsNoTracking(); public IQueryable ComplexFormComponents => Set().AsNoTracking(); public IQueryable ComplexFormTypes => Set().AsNoTracking(); + public IQueryable MorphTypes => Set().AsNoTracking(); public IQueryable Senses => Set().AsNoTracking(); public IQueryable ExampleSentences => Set().AsNoTracking(); public IQueryable SemanticDomains => Set().AsNoTracking(); @@ -40,6 +41,9 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) var entrySearchModel = modelBuilder.Entity(); entrySearchModel.ToTable(nameof(EntrySearchRecord), tb => tb.ExcludeFromMigrations()); + + var morphTypeModel = modelBuilder.Entity(); + morphTypeModel.HasIndex(m => m.Kind).IsUnique(); } protected override void ConfigureConventions(ModelConfigurationBuilder builder) diff --git a/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs b/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs index cffab4d07c..9d98c1ebbf 100644 --- a/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs +++ b/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs @@ -275,6 +275,7 @@ public static void ConfigureCrdt(CrdtConfig config) .HasColumnType("jsonb") .HasConversion(writingSystemArrayConverter); }) + .Add() .Add(builder => { const string componentSenseId = "ComponentSenseId"; @@ -303,6 +304,7 @@ public static void ConfigureCrdt(CrdtConfig config) .Add>() .Add>() .Add>() + .Add>() .Add>() .Add>() .Add>() @@ -345,6 +347,7 @@ public static void ConfigureCrdt(CrdtConfig config) .Add() .Add() .Add>() + .Add() .Add>() .Add>() .Add>() diff --git a/backend/FwLite/LcmCrdt/Migrations/20260512104332_AddMorphTypeTable.Designer.cs b/backend/FwLite/LcmCrdt/Migrations/20260512104332_AddMorphTypeTable.Designer.cs new file mode 100644 index 0000000000..da5e074268 --- /dev/null +++ b/backend/FwLite/LcmCrdt/Migrations/20260512104332_AddMorphTypeTable.Designer.cs @@ -0,0 +1,838 @@ +// +using System; +using System.Collections.Generic; +using LcmCrdt; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace LcmCrdt.Migrations +{ + [DbContext(typeof(LcmCrdtDbContext))] + [Migration("20260512104332_AddMorphTypeTable")] + partial class AddMorphTypeTable + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "9.0.6"); + + modelBuilder.Entity("LcmCrdt.FullTextSearch.EntrySearchRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("CitationForm") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Gloss") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Headword") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("LexemeForm") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.ToTable("EntrySearchRecord", null, t => + { + t.ExcludeFromMigrations(); + }); + }); + + modelBuilder.Entity("LcmCrdt.ProjectData", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("ClientId") + .HasColumnType("TEXT"); + + b.Property("Code") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("FwProjectId") + .HasColumnType("TEXT"); + + b.Property("LastUserId") + .HasColumnType("TEXT"); + + b.Property("LastUserName") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("OriginDomain") + .HasColumnType("TEXT"); + + b.Property("Role") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasDefaultValue("Editor"); + + b.HasKey("Id"); + + b.ToTable("ProjectData"); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormComponent", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("ComplexFormEntryId") + .HasColumnType("TEXT"); + + b.Property("ComplexFormHeadword") + .HasColumnType("TEXT"); + + b.Property("ComponentEntryId") + .HasColumnType("TEXT"); + + b.Property("ComponentHeadword") + .HasColumnType("TEXT"); + + b.Property("ComponentSenseId") + .HasColumnType("TEXT") + .HasColumnName("ComponentSenseId"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("ComponentEntryId"); + + b.HasIndex("ComponentSenseId"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.HasIndex("ComplexFormEntryId", "ComponentEntryId") + .IsUnique() + .HasFilter("ComponentSenseId IS NULL"); + + b.HasIndex("ComplexFormEntryId", "ComponentEntryId", "ComponentSenseId") + .IsUnique() + .HasFilter("ComponentSenseId IS NOT NULL"); + + b.ToTable("ComplexFormComponents", (string)null); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("ComplexFormType"); + }); + + modelBuilder.Entity("MiniLcm.Models.CustomView", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Analysis") + .HasColumnType("jsonb"); + + b.Property("Base") + .HasColumnType("INTEGER"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("EntryFields") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ExampleFields") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("SenseFields") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Vernacular") + .HasColumnType("jsonb"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("CustomView"); + }); + + modelBuilder.Entity("MiniLcm.Models.Entry", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("CitationForm") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ComplexFormTypes") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("LexemeForm") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("LiteralMeaning") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("MorphType") + .HasColumnType("INTEGER"); + + b.Property("Note") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("PublishIn") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("Entry"); + }); + + modelBuilder.Entity("MiniLcm.Models.ExampleSentence", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("Reference") + .HasColumnType("jsonb"); + + b.Property("SenseId") + .HasColumnType("TEXT"); + + b.Property("Sentence") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Translations") + .IsRequired() + .HasColumnType("jsonb"); + + b.HasKey("Id"); + + b.HasIndex("SenseId"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("ExampleSentence"); + }); + + modelBuilder.Entity("MiniLcm.Models.MorphType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Abbreviation") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Description") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Kind") + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Postfix") + .HasColumnType("TEXT"); + + b.Property("Prefix") + .HasColumnType("TEXT"); + + b.Property("SecondaryOrder") + .HasColumnType("INTEGER"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("Kind") + .IsUnique(); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("MorphType"); + }); + + modelBuilder.Entity("MiniLcm.Models.PartOfSpeech", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Predefined") + .HasColumnType("INTEGER"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("PartOfSpeech"); + }); + + modelBuilder.Entity("MiniLcm.Models.Publication", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("Publication"); + }); + + modelBuilder.Entity("MiniLcm.Models.SemanticDomain", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Code") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Predefined") + .HasColumnType("INTEGER"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("SemanticDomain"); + }); + + modelBuilder.Entity("MiniLcm.Models.Sense", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("EntryId") + .HasColumnType("TEXT"); + + b.Property("Gloss") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("PartOfSpeechId") + .HasColumnType("TEXT"); + + b.Property("SemanticDomains") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("EntryId"); + + b.HasIndex("PartOfSpeechId"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("Sense"); + }); + + modelBuilder.Entity("MiniLcm.Models.WritingSystem", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Abbreviation") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Exemplars") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Font") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Type") + .HasColumnType("INTEGER"); + + b.Property("WsId") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.HasIndex("WsId", "Type") + .IsUnique(); + + b.ToTable("WritingSystem"); + }); + + modelBuilder.Entity("SIL.Harmony.Commit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("ClientId") + .HasColumnType("TEXT"); + + b.Property("Hash") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Metadata") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ParentHash") + .IsRequired() + .HasColumnType("TEXT"); + + b.ComplexProperty>("HybridDateTime", "SIL.Harmony.Commit.HybridDateTime#HybridDateTime", b1 => + { + b1.IsRequired(); + + b1.Property("Counter") + .HasColumnType("INTEGER") + .HasColumnName("Counter"); + + b1.Property("DateTime") + .HasColumnType("TEXT") + .HasColumnName("DateTime"); + }); + + b.HasKey("Id"); + + b.ToTable("Commits", (string)null); + }); + + modelBuilder.Entity("SIL.Harmony.Core.ChangeEntity", b => + { + b.Property("CommitId") + .HasColumnType("TEXT"); + + b.Property("Index") + .HasColumnType("INTEGER"); + + b.Property("Change") + .HasColumnType("jsonb"); + + b.Property("EntityId") + .HasColumnType("TEXT"); + + b.HasKey("CommitId", "Index"); + + b.ToTable("ChangeEntities", (string)null); + }); + + modelBuilder.Entity("SIL.Harmony.Db.ObjectSnapshot", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("CommitId") + .HasColumnType("TEXT"); + + b.Property("Entity") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("EntityId") + .HasColumnType("TEXT"); + + b.Property("EntityIsDeleted") + .HasColumnType("INTEGER"); + + b.Property("IsRoot") + .HasColumnType("INTEGER"); + + b.PrimitiveCollection("References") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TypeName") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("EntityId"); + + b.HasIndex("CommitId", "EntityId") + .IsUnique(); + + b.ToTable("Snapshots", (string)null); + }); + + modelBuilder.Entity("SIL.Harmony.Resource.LocalResource", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("LocalPath") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.ToTable("LocalResource"); + }); + + modelBuilder.Entity("SIL.Harmony.Resource.RemoteResource", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("RemoteId") + .HasColumnType("TEXT"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("RemoteResource"); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormComponent", b => + { + b.HasOne("MiniLcm.Models.Entry", null) + .WithMany("Components") + .HasForeignKey("ComplexFormEntryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("MiniLcm.Models.Entry", null) + .WithMany("ComplexForms") + .HasForeignKey("ComponentEntryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("MiniLcm.Models.Sense", null) + .WithMany() + .HasForeignKey("ComponentSenseId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.ComplexFormComponent", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormType", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.ComplexFormType", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.CustomView", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.CustomView", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Entry", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.Entry", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.ExampleSentence", b => + { + b.HasOne("MiniLcm.Models.Sense", null) + .WithMany("ExampleSentences") + .HasForeignKey("SenseId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.ExampleSentence", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.MorphType", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.MorphType", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.PartOfSpeech", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.PartOfSpeech", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Publication", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.Publication", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.SemanticDomain", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.SemanticDomain", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Sense", b => + { + b.HasOne("MiniLcm.Models.Entry", null) + .WithMany("Senses") + .HasForeignKey("EntryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("MiniLcm.Models.PartOfSpeech", "PartOfSpeech") + .WithMany() + .HasForeignKey("PartOfSpeechId") + .OnDelete(DeleteBehavior.SetNull); + + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.Sense", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + + b.Navigation("PartOfSpeech"); + }); + + modelBuilder.Entity("MiniLcm.Models.WritingSystem", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.WritingSystem", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("SIL.Harmony.Core.ChangeEntity", b => + { + b.HasOne("SIL.Harmony.Commit", null) + .WithMany("ChangeEntities") + .HasForeignKey("CommitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("SIL.Harmony.Db.ObjectSnapshot", b => + { + b.HasOne("SIL.Harmony.Commit", "Commit") + .WithMany("Snapshots") + .HasForeignKey("CommitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Commit"); + }); + + modelBuilder.Entity("SIL.Harmony.Resource.RemoteResource", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("SIL.Harmony.Resource.RemoteResource", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Entry", b => + { + b.Navigation("ComplexForms"); + + b.Navigation("Components"); + + b.Navigation("Senses"); + }); + + modelBuilder.Entity("MiniLcm.Models.Sense", b => + { + b.Navigation("ExampleSentences"); + }); + + modelBuilder.Entity("SIL.Harmony.Commit", b => + { + b.Navigation("ChangeEntities"); + + b.Navigation("Snapshots"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/backend/FwLite/LcmCrdt/Migrations/20260512104332_AddMorphTypeTable.cs b/backend/FwLite/LcmCrdt/Migrations/20260512104332_AddMorphTypeTable.cs new file mode 100644 index 0000000000..da8a868052 --- /dev/null +++ b/backend/FwLite/LcmCrdt/Migrations/20260512104332_AddMorphTypeTable.cs @@ -0,0 +1,60 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace LcmCrdt.Migrations +{ + /// + public partial class AddMorphTypeTable : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "MorphType", + columns: table => new + { + Id = table.Column(type: "TEXT", nullable: false), + Kind = table.Column(type: "INTEGER", nullable: false), + Name = table.Column(type: "jsonb", nullable: false), + Abbreviation = table.Column(type: "jsonb", nullable: false), + Description = table.Column(type: "jsonb", nullable: false), + Prefix = table.Column(type: "TEXT", nullable: true), + Postfix = table.Column(type: "TEXT", nullable: true), + SecondaryOrder = table.Column(type: "INTEGER", nullable: false), + DeletedAt = table.Column(type: "TEXT", nullable: true), + SnapshotId = table.Column(type: "TEXT", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_MorphType", x => x.Id); + table.ForeignKey( + name: "FK_MorphType_Snapshots_SnapshotId", + column: x => x.SnapshotId, + principalTable: "Snapshots", + principalColumn: "Id", + onDelete: ReferentialAction.SetNull); + }); + + migrationBuilder.CreateIndex( + name: "IX_MorphType_Kind", + table: "MorphType", + column: "Kind", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_MorphType_SnapshotId", + table: "MorphType", + column: "SnapshotId", + unique: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "MorphType"); + } + } +} diff --git a/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs b/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs index 6955a68125..5cddad6fec 100644 --- a/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs +++ b/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs @@ -298,6 +298,53 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.ToTable("ExampleSentence"); }); + modelBuilder.Entity("MiniLcm.Models.MorphType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Abbreviation") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Description") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Kind") + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Postfix") + .HasColumnType("TEXT"); + + b.Property("Prefix") + .HasColumnType("TEXT"); + + b.Property("SecondaryOrder") + .HasColumnType("INTEGER"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("Kind") + .IsUnique(); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("MorphType"); + }); + modelBuilder.Entity("MiniLcm.Models.PartOfSpeech", b => { b.Property("Id") @@ -673,6 +720,14 @@ protected override void BuildModel(ModelBuilder modelBuilder) .OnDelete(DeleteBehavior.SetNull); }); + modelBuilder.Entity("MiniLcm.Models.MorphType", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.MorphType", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + modelBuilder.Entity("MiniLcm.Models.PartOfSpeech", b => { b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) diff --git a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs index 2b3905fb2a..d9128217a2 100644 --- a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs +++ b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs @@ -46,10 +46,10 @@ public static AutoFakerConfig MakeConfig(string[]? validWs = null, int repeatCou domain.Predefined = false; } }, true), - new PredicateOverride(morph => + new PredicateOverride(morph => { - // these values map to null and get replaced with MorphType.Stem so they're no round-tripped - return morph is not MorphType.Unknown and not MorphType.Other; + // Unkown values map to null and get replaced with MorphType.Stem so they're not round-tripped + return morph is not MorphTypeKind.Unknown; }, true), new SimpleGenericOverride(typeof(JsonPatchDocument<>), context => { diff --git a/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs b/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs index 62d56767aa..801235e33a 100644 --- a/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs +++ b/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs @@ -31,7 +31,7 @@ await Api.CreateEntry(new Entry() { Id = appleId, LexemeForm = { { "en", Apple } }, - MorphType = MorphType.Root, + MorphType = MorphTypeKind.Root, }); await Api.CreateEntry(new Entry() { diff --git a/backend/FwLite/MiniLcm.Tests/Validators/MorphTypeUpdateValidatorTests.cs b/backend/FwLite/MiniLcm.Tests/Validators/MorphTypeUpdateValidatorTests.cs new file mode 100644 index 0000000000..d07a4004a2 --- /dev/null +++ b/backend/FwLite/MiniLcm.Tests/Validators/MorphTypeUpdateValidatorTests.cs @@ -0,0 +1,59 @@ +using FluentValidation.TestHelper; +using MiniLcm.SyncHelpers; +using MiniLcm.Validators; + +namespace MiniLcm.Tests.Validators; + +public class MorphTypeUpdateValidatorTests +{ + private readonly MorphTypeUpdateValidator _validator = new(); + + private UpdateObjectInput NewUpdate() + { + return new UpdateObjectInput(); + } + + [Fact] + public void Succeeds_WhenUpdatingPrefix() + { + var update = NewUpdate(); + update.Set(mt => mt.Prefix, "-"); + _validator.TestValidate(update).ShouldNotHaveAnyValidationErrors(); + } + + [Fact] + public void Fails_WhenTryingToUpdateKind() + { + var update = NewUpdate(); + update.Set(mt => mt.Kind, MorphTypeKind.Suffix); + _validator.TestValidate(update).ShouldHaveValidationErrorFor(nameof(MorphType.Kind)); + } + + [Fact] + public void Fails_WhenTryingToUpdateDeletedAt() + { + var update = NewUpdate(); + update.Set(mt => mt.DeletedAt, DateTimeOffset.UtcNow); + _validator.TestValidate(update).ShouldHaveValidationErrorFor(nameof(MorphType.DeletedAt)); + } + + [Fact] + public void Fails_WhenThereAreNoChanges() + { + var update = NewUpdate(); + _validator.TestValidate(update).ShouldHaveAnyValidationError(); + } + + [Fact] + public void MorphTypeDiffToUpdate_Throws_WhenKindDiffers() + { + var id = Guid.NewGuid(); + var before = new MorphType { Id = id, Kind = MorphTypeKind.Stem }; + var after = new MorphType { Id = id, Kind = MorphTypeKind.Suffix }; + + var act = () => MorphTypeSync.MorphTypeDiffToUpdate(before, after); + + act.Should().Throw() + .WithMessage("*immutable Kind*"); + } +} diff --git a/backend/FwLite/MiniLcm/IMiniLcmReadApi.cs b/backend/FwLite/MiniLcm/IMiniLcmReadApi.cs index ed3337a0fc..99cfe11980 100644 --- a/backend/FwLite/MiniLcm/IMiniLcmReadApi.cs +++ b/backend/FwLite/MiniLcm/IMiniLcmReadApi.cs @@ -15,9 +15,10 @@ public interface IMiniLcmReadApi IAsyncEnumerable GetPublications(); IAsyncEnumerable GetSemanticDomains(); IAsyncEnumerable GetComplexFormTypes(); - IAsyncEnumerable GetAllMorphTypeData(); + IAsyncEnumerable GetMorphTypes(); Task GetComplexFormType(Guid id); - Task GetMorphTypeData(Guid id); + Task GetMorphType(Guid id); + Task GetMorphType(MorphTypeKind kind); Task CountEntries(string? query = null, FilterQueryOptions? options = null); IAsyncEnumerable GetEntries(QueryOptions? options = null); IAsyncEnumerable SearchEntries(string query, QueryOptions? options = null); diff --git a/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs b/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs index 9237136431..e773df52a9 100644 --- a/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs +++ b/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs @@ -45,10 +45,10 @@ Task UpdateWritingSystem(WritingSystemId id, #endregion #region MorphType - Task CreateMorphTypeData(MorphTypeData morphType); - Task UpdateMorphTypeData(Guid id, UpdateObjectInput update); - Task UpdateMorphTypeData(MorphTypeData before, MorphTypeData after, IMiniLcmApi? api = null); - Task DeleteMorphTypeData(Guid id); + Task CreateMorphType(MorphType morphType); + Task UpdateMorphType(Guid id, UpdateObjectInput update); + Task UpdateMorphType(MorphType before, MorphType after, IMiniLcmApi? api = null); + Task DeleteMorphType(Guid id); #endregion #region Entry diff --git a/backend/FwLite/MiniLcm/MiniLcmApiExtensions.cs b/backend/FwLite/MiniLcm/MiniLcmApiExtensions.cs index cad0f83326..e6165321c4 100644 --- a/backend/FwLite/MiniLcm/MiniLcmApiExtensions.cs +++ b/backend/FwLite/MiniLcm/MiniLcmApiExtensions.cs @@ -17,6 +17,7 @@ await api.GetPartsOfSpeech().ToArrayAsync(), await api.GetPublications().ToArrayAsync(), await api.GetSemanticDomains().ToArrayAsync(), await api.GetComplexFormTypes().ToArrayAsync(), + await api.GetMorphTypes().ToArrayAsync(), await api.GetWritingSystems()); } } diff --git a/backend/FwLite/MiniLcm/Models/Entry.cs b/backend/FwLite/MiniLcm/Models/Entry.cs index 41a0d8601e..575200aac8 100644 --- a/backend/FwLite/MiniLcm/Models/Entry.cs +++ b/backend/FwLite/MiniLcm/Models/Entry.cs @@ -10,7 +10,7 @@ public record Entry : IObjectWithId public virtual MultiString CitationForm { get; set; } = new(); public virtual RichMultiString LiteralMeaning { get; set; } = new(); - public virtual MorphType MorphType { get; set; } = MorphType.Stem; + public virtual MorphTypeKind MorphType { get; set; } = MorphTypeKind.Stem; public virtual List Senses { get; set; } = []; public virtual RichMultiString Note { get; set; } = new(); diff --git a/backend/FwLite/MiniLcm/Models/IObjectWithId.cs b/backend/FwLite/MiniLcm/Models/IObjectWithId.cs index bf2bbbcb0a..606dca4192 100644 --- a/backend/FwLite/MiniLcm/Models/IObjectWithId.cs +++ b/backend/FwLite/MiniLcm/Models/IObjectWithId.cs @@ -13,6 +13,7 @@ namespace MiniLcm.Models; [JsonDerivedType(typeof(ComplexFormType), nameof(ComplexFormType))] [JsonDerivedType(typeof(ComplexFormComponent), nameof(ComplexFormComponent))] [JsonDerivedType(typeof(CustomView), nameof(CustomView))] +[JsonDerivedType(typeof(MorphType), nameof(MorphType))] public interface IObjectWithId { public Guid Id { get; } diff --git a/backend/FwLite/MiniLcm/Models/MorphType.cs b/backend/FwLite/MiniLcm/Models/MorphType.cs index acc54bba9e..d241a35ff5 100644 --- a/backend/FwLite/MiniLcm/Models/MorphType.cs +++ b/backend/FwLite/MiniLcm/Models/MorphType.cs @@ -3,7 +3,7 @@ namespace MiniLcm.Models; [JsonConverter(typeof(JsonStringEnumConverter))] -public enum MorphType +public enum MorphTypeKind { Unknown, BoundRoot, @@ -25,18 +25,17 @@ public enum MorphType SuffixingInterfix, Phrase, DiscontiguousPhrase, - Other, } -public class MorphTypeData : IObjectWithId +public class MorphType : IObjectWithId { public virtual Guid Id { get; set; } - public virtual MorphType MorphType { get; set; } + public virtual MorphTypeKind Kind { get; set; } public virtual MultiString Name { get; set; } = []; public virtual MultiString Abbreviation { get; set; } = []; public virtual RichMultiString Description { get; set; } = []; - public virtual string LeadingToken { get; set; } = ""; - public virtual string TrailingToken { get; set; } = ""; + public virtual string? Prefix { get; set; } + public virtual string? Postfix { get; set; } public virtual int SecondaryOrder { get; set; } public DateTimeOffset? DeletedAt { get; set; } @@ -50,17 +49,17 @@ public void RemoveReference(Guid id, DateTimeOffset time) { } - public MorphTypeData Copy() + public MorphType Copy() { - return new MorphTypeData + return new MorphType { Id = Id, - MorphType = MorphType, + Kind = Kind, Name = Name.Copy(), Abbreviation = Abbreviation.Copy(), Description = Description.Copy(), - LeadingToken = LeadingToken, - TrailingToken = TrailingToken, + Prefix = Prefix, + Postfix = Postfix, SecondaryOrder = SecondaryOrder, DeletedAt = DeletedAt, }; diff --git a/backend/FwLite/MiniLcm/ProjectSnapshot.cs b/backend/FwLite/MiniLcm/ProjectSnapshot.cs index 93715a71ff..f6c880fe76 100644 --- a/backend/FwLite/MiniLcm/ProjectSnapshot.cs +++ b/backend/FwLite/MiniLcm/ProjectSnapshot.cs @@ -8,7 +8,8 @@ public record ProjectSnapshot( Publication[] Publications, SemanticDomain[] SemanticDomains, ComplexFormType[] ComplexFormTypes, + MorphType[] MorphTypes, WritingSystems WritingSystems) { - public static ProjectSnapshot Empty { get; } = new([], [], [], [], [], new WritingSystems()); + public static ProjectSnapshot Empty { get; } = new([], [], [], [], [], [], new WritingSystems()); } diff --git a/backend/FwLite/MiniLcm/SyncHelpers/MorphTypeDataSync.cs b/backend/FwLite/MiniLcm/SyncHelpers/MorphTypeDataSync.cs deleted file mode 100644 index 88ab96d88e..0000000000 --- a/backend/FwLite/MiniLcm/SyncHelpers/MorphTypeDataSync.cs +++ /dev/null @@ -1,71 +0,0 @@ -using MiniLcm.Models; -using SystemTextJsonPatch; - -namespace MiniLcm.SyncHelpers; - -public static class MorphTypeDataSync -{ - public static async Task Sync(MorphTypeData[] beforeMorphTypes, - MorphTypeData[] afterMorphTypes, - IMiniLcmApi api) - { - return await DiffCollection.Diff( - beforeMorphTypes, - afterMorphTypes, - new MorphTypeDataDiffApi(api)); - } - - public static async Task Sync(MorphTypeData before, - MorphTypeData after, - IMiniLcmApi api) - { - var updateObjectInput = MorphTypeDataDiffToUpdate(before, after); - if (updateObjectInput is not null) await api.UpdateMorphTypeData(after.Id, updateObjectInput); - return updateObjectInput is null ? 0 : 1; - } - - public static UpdateObjectInput? MorphTypeDataDiffToUpdate(MorphTypeData beforeMorphTypeData, MorphTypeData afterMorphTypeData) - { - JsonPatchDocument patchDocument = new(); - patchDocument.Operations.AddRange(MultiStringDiff.GetMultiStringDiff(nameof(MorphTypeData.Name), - beforeMorphTypeData.Name, - afterMorphTypeData.Name)); - patchDocument.Operations.AddRange(MultiStringDiff.GetMultiStringDiff(nameof(MorphTypeData.Abbreviation), - beforeMorphTypeData.Abbreviation, - afterMorphTypeData.Abbreviation)); - patchDocument.Operations.AddRange(MultiStringDiff.GetMultiStringDiff(nameof(MorphTypeData.Description), - beforeMorphTypeData.Description, - afterMorphTypeData.Description)); - patchDocument.Operations.AddRange(SimpleStringDiff.GetStringDiff(nameof(MorphTypeData.LeadingToken), - beforeMorphTypeData.LeadingToken, - afterMorphTypeData.LeadingToken)); - patchDocument.Operations.AddRange(SimpleStringDiff.GetStringDiff(nameof(MorphTypeData.TrailingToken), - beforeMorphTypeData.TrailingToken, - afterMorphTypeData.TrailingToken)); - patchDocument.Operations.AddRange(IntegerDiff.GetIntegerDiff(nameof(MorphTypeData.SecondaryOrder), - beforeMorphTypeData.SecondaryOrder, - afterMorphTypeData.SecondaryOrder)); - if (patchDocument.Operations.Count == 0) return null; - return new UpdateObjectInput(patchDocument); - } - - private class MorphTypeDataDiffApi(IMiniLcmApi api) : ObjectWithIdCollectionDiffApi - { - public override async Task Add(MorphTypeData currentMorphType) - { - await api.CreateMorphTypeData(currentMorphType); - return 1; - } - - public override async Task Remove(MorphTypeData beforeMorphType) - { - await api.DeleteMorphTypeData(beforeMorphType.Id); - return 1; - } - - public override Task Replace(MorphTypeData beforeMorphType, MorphTypeData afterMorphType) - { - return Sync(beforeMorphType, afterMorphType, api); - } - } -} diff --git a/backend/FwLite/MiniLcm/SyncHelpers/MorphTypeSync.cs b/backend/FwLite/MiniLcm/SyncHelpers/MorphTypeSync.cs new file mode 100644 index 0000000000..a30e14d5aa --- /dev/null +++ b/backend/FwLite/MiniLcm/SyncHelpers/MorphTypeSync.cs @@ -0,0 +1,76 @@ +using MiniLcm.Models; +using SystemTextJsonPatch; + +namespace MiniLcm.SyncHelpers; + +public static class MorphTypeSync +{ + public static async Task Sync(MorphType[] beforeMorphTypes, + MorphType[] afterMorphTypes, + IMiniLcmApi api) + { + return await DiffCollection.Diff( + beforeMorphTypes, + afterMorphTypes, + new MorphTypeDiffApi(api)); + } + + public static async Task Sync(MorphType before, + MorphType after, + IMiniLcmApi api) + { + var updateObjectInput = MorphTypeDiffToUpdate(before, after); + if (updateObjectInput is not null) await api.UpdateMorphType(after.Id, updateObjectInput); + return updateObjectInput is null ? 0 : 1; + } + + public static UpdateObjectInput? MorphTypeDiffToUpdate(MorphType beforeMorphType, MorphType afterMorphType) + { + if (beforeMorphType.Kind != afterMorphType.Kind) + { + throw new InvalidOperationException( + $"Tried to change immutable Kind from {beforeMorphType.Kind} to {afterMorphType.Kind} on MorphType {afterMorphType.Id}. This indicates a data inconsistency."); + } + JsonPatchDocument patchDocument = new(); + patchDocument.Operations.AddRange(MultiStringDiff.GetMultiStringDiff(nameof(MorphType.Name), + beforeMorphType.Name, + afterMorphType.Name)); + patchDocument.Operations.AddRange(MultiStringDiff.GetMultiStringDiff(nameof(MorphType.Abbreviation), + beforeMorphType.Abbreviation, + afterMorphType.Abbreviation)); + patchDocument.Operations.AddRange(MultiStringDiff.GetMultiStringDiff(nameof(MorphType.Description), + beforeMorphType.Description, + afterMorphType.Description)); + patchDocument.Operations.AddRange(SimpleStringDiff.GetStringDiff(nameof(MorphType.Prefix), + beforeMorphType.Prefix, + afterMorphType.Prefix)); + patchDocument.Operations.AddRange(SimpleStringDiff.GetStringDiff(nameof(MorphType.Postfix), + beforeMorphType.Postfix, + afterMorphType.Postfix)); + patchDocument.Operations.AddRange(IntegerDiff.GetIntegerDiff(nameof(MorphType.SecondaryOrder), + beforeMorphType.SecondaryOrder, + afterMorphType.SecondaryOrder)); + if (patchDocument.Operations.Count == 0) return null; + return new UpdateObjectInput(patchDocument); + } + + private class MorphTypeDiffApi(IMiniLcmApi api) : ObjectWithIdCollectionDiffApi + { + public override async Task Add(MorphType currentMorphType) + { + await api.CreateMorphType(currentMorphType); + return 1; + } + + public override async Task Remove(MorphType beforeMorphType) + { + await api.DeleteMorphType(beforeMorphType.Id); + return 1; + } + + public override Task Replace(MorphType beforeMorphType, MorphType afterMorphType) + { + return Sync(beforeMorphType, afterMorphType, api); + } + } +} diff --git a/backend/FwLite/MiniLcm/Validators/MiniLcmApiValidationWrapper.cs b/backend/FwLite/MiniLcm/Validators/MiniLcmApiValidationWrapper.cs index 8cf8d0382d..4333adac06 100644 --- a/backend/FwLite/MiniLcm/Validators/MiniLcmApiValidationWrapper.cs +++ b/backend/FwLite/MiniLcm/Validators/MiniLcmApiValidationWrapper.cs @@ -78,6 +78,18 @@ public async Task UpdateComplexFormType(ComplexFormType before, return await _api.UpdateComplexFormType(before, after, api ?? this); } + public async Task UpdateMorphType(Guid id, UpdateObjectInput update) + { + await validators.ValidateAndThrow(update); + return await _api.UpdateMorphType(id, update); + } + + public async Task UpdateMorphType(MorphType before, MorphType after, IMiniLcmApi? api = null) + { + await validators.ValidateAndThrow(after); + return await _api.UpdateMorphType(before, after, api ?? this); + } + public async Task CreateEntry(Entry entry) { await validators.ValidateAndThrow(entry); diff --git a/backend/FwLite/MiniLcm/Validators/MiniLcmValidators.cs b/backend/FwLite/MiniLcm/Validators/MiniLcmValidators.cs index 224bfd3c9e..1a325290f3 100644 --- a/backend/FwLite/MiniLcm/Validators/MiniLcmValidators.cs +++ b/backend/FwLite/MiniLcm/Validators/MiniLcmValidators.cs @@ -7,6 +7,7 @@ namespace MiniLcm.Validators; public record MiniLcmValidators( IValidator ComplexFormTypeValidator, + IValidator MorphTypeValidator, IValidator EntryValidator, IValidator SenseValidator, IValidator ExampleSentenceValidator, @@ -14,6 +15,7 @@ public record MiniLcmValidators( IValidator PartOfSpeechValidator, IValidator SemanticDomainValidator, IValidator PublicationValidator, + IValidator> MorphTypeUpdateValidator, IValidator> WritingSystemUpdateValidator) { public async Task ValidateAndThrow(ComplexFormType value) @@ -21,6 +23,11 @@ public async Task ValidateAndThrow(ComplexFormType value) await ComplexFormTypeValidator.ValidateAndThrowAsync(value); } + public async Task ValidateAndThrow(MorphType value) + { + await MorphTypeValidator.ValidateAndThrowAsync(value); + } + public async Task ValidateAndThrow(Entry value) { await EntryValidator.ValidateAndThrowAsync(value); @@ -56,6 +63,11 @@ public async Task ValidateAndThrow(Publication value) await PublicationValidator.ValidateAndThrowAsync(value); } + public async Task ValidateAndThrow(UpdateObjectInput update) + { + await MorphTypeUpdateValidator.ValidateAndThrowAsync(update); + } + public async Task ValidateAndThrow(UpdateObjectInput update) { await WritingSystemUpdateValidator.ValidateAndThrowAsync(update); @@ -69,6 +81,7 @@ public static IServiceCollection AddMiniLcmValidators(this IServiceCollection se services.AddTransient(); services.AddTransient(); services.AddTransient, ComplexFormTypeValidator>(); + services.AddTransient, MorphTypeValidator>(); services.AddTransient, EntryValidator>(); services.AddTransient, SenseValidator>(); services.AddTransient, ExampleSentenceValidator>(); @@ -76,6 +89,7 @@ public static IServiceCollection AddMiniLcmValidators(this IServiceCollection se services.AddTransient, PartOfSpeechValidator>(); services.AddTransient, SemanticDomainValidator>(); services.AddTransient, PublicationValidator>(); + services.AddTransient>, MorphTypeUpdateValidator>(); services.AddTransient>, WritingSystemUpdateValidator>(); services.AddTransient(); return services; diff --git a/backend/FwLite/MiniLcm/Validators/MorphTypeUpdateValidator.cs b/backend/FwLite/MiniLcm/Validators/MorphTypeUpdateValidator.cs new file mode 100644 index 0000000000..065d703441 --- /dev/null +++ b/backend/FwLite/MiniLcm/Validators/MorphTypeUpdateValidator.cs @@ -0,0 +1,14 @@ +using FluentValidation; +using MiniLcm.Models; + +namespace MiniLcm.Validators; + +public class MorphTypeUpdateValidator : AbstractValidator> +{ + public MorphTypeUpdateValidator() + { + RuleFor(u => u.Patch).DoesNotChangeProperty(nameof(MorphType.Kind)); + RuleFor(u => u.Patch).DoesNotChangeProperty(nameof(MorphType.DeletedAt)); + RuleFor(u => u.Patch.Operations).NotEmpty(); + } +} diff --git a/backend/FwLite/MiniLcm/Validators/MorphTypeValidator.cs b/backend/FwLite/MiniLcm/Validators/MorphTypeValidator.cs new file mode 100644 index 0000000000..4a23261b2c --- /dev/null +++ b/backend/FwLite/MiniLcm/Validators/MorphTypeValidator.cs @@ -0,0 +1,14 @@ +using FluentValidation; +using MiniLcm.Models; + +namespace MiniLcm.Validators; + +public class MorphTypeValidator : AbstractValidator +{ + public MorphTypeValidator() + { + RuleFor(m => m.DeletedAt).Null(); + RuleFor(m => m.Name).NotNull().NotEmpty().WithMessage((m) => $"Name is required ({m.Kind} - {m.Id})"); + RuleFor(m => m.Abbreviation).NotNull().NotEmpty().WithMessage((m) => $"Abbreviation is required ({m.Kind} - {m.Name} - {m.Id})"); + } +} diff --git a/backend/LfClassicData/LfClassicMiniLcmApi.cs b/backend/LfClassicData/LfClassicMiniLcmApi.cs index 5c99246a77..a89ef0eeac 100644 --- a/backend/LfClassicData/LfClassicMiniLcmApi.cs +++ b/backend/LfClassicData/LfClassicMiniLcmApi.cs @@ -25,14 +25,19 @@ public IAsyncEnumerable GetComplexFormTypes() return Task.FromResult(null); } - public IAsyncEnumerable GetAllMorphTypeData() + public IAsyncEnumerable GetMorphTypes() { - return AsyncEnumerable.Empty(); + return AsyncEnumerable.Empty(); } - public Task GetMorphTypeData(Guid id) + public Task GetMorphType(Guid id) { - return Task.FromResult(null); + return Task.FromResult(null); + } + + public Task GetMorphType(MorphTypeKind kind) + { + return Task.FromResult(null); } private Dictionary? _partsOfSpeechCacheByGuid = null; diff --git a/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IEntry.ts b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IEntry.ts index 51a54d595b..6ef0938602 100644 --- a/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IEntry.ts +++ b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IEntry.ts @@ -6,7 +6,7 @@ import type {IObjectWithId} from './IObjectWithId'; import type {IMultiString} from '$lib/dotnet-types/i-multi-string'; import type {IRichMultiString} from '$lib/dotnet-types/i-multi-string'; -import type {MorphType} from './MorphType'; +import type {MorphTypeKind} from './MorphTypeKind'; import type {ISense} from './ISense'; import type {IComplexFormComponent} from './IComplexFormComponent'; import type {IComplexFormType} from './IComplexFormType'; @@ -19,7 +19,7 @@ export interface IEntry extends IObjectWithId lexemeForm: IMultiString; citationForm: IMultiString; literalMeaning: IRichMultiString; - morphType: MorphType; + morphType: MorphTypeKind; senses: ISense[]; note: IRichMultiString; components: IComplexFormComponent[]; diff --git a/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IMorphType.ts b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IMorphType.ts new file mode 100644 index 0000000000..446d7eeb30 --- /dev/null +++ b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IMorphType.ts @@ -0,0 +1,23 @@ +/* eslint-disable */ +// This code was generated by a Reinforced.Typings tool. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. + +import type {IObjectWithId} from './IObjectWithId'; +import type {MorphTypeKind} from './MorphTypeKind'; +import type {IMultiString} from '$lib/dotnet-types/i-multi-string'; +import type {IRichMultiString} from '$lib/dotnet-types/i-multi-string'; + +export interface IMorphType extends IObjectWithId +{ + id: string; + kind: MorphTypeKind; + name: IMultiString; + abbreviation: IMultiString; + description: IRichMultiString; + prefix?: string; + postfix?: string; + secondaryOrder: number; + deletedAt?: string; +} +/* eslint-enable */ diff --git a/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/MorphType.ts b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/MorphTypeKind.ts similarity index 88% rename from frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/MorphType.ts rename to frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/MorphTypeKind.ts index 1762db249b..a96d1db540 100644 --- a/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/MorphType.ts +++ b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/MorphTypeKind.ts @@ -3,7 +3,7 @@ // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. -export enum MorphType { +export enum MorphTypeKind { Unknown = "Unknown", BoundRoot = "BoundRoot", BoundStem = "BoundStem", @@ -23,7 +23,6 @@ export enum MorphType { PrefixingInterfix = "PrefixingInterfix", SuffixingInterfix = "SuffixingInterfix", Phrase = "Phrase", - DiscontiguousPhrase = "DiscontiguousPhrase", - Other = "Other" + DiscontiguousPhrase = "DiscontiguousPhrase" } /* eslint-enable */ diff --git a/frontend/viewer/src/lib/dotnet-types/index.ts b/frontend/viewer/src/lib/dotnet-types/index.ts index 4ef7dcf690..30ef1c5e2d 100644 --- a/frontend/viewer/src/lib/dotnet-types/index.ts +++ b/frontend/viewer/src/lib/dotnet-types/index.ts @@ -24,7 +24,7 @@ export * from './generated-types/MiniLcm/Models/IWritingSystem'; export * from './generated-types/MiniLcm/Models/IWritingSystems'; export * from './generated-types/MiniLcm/Models/ProjectDataFormat'; export * from './generated-types/MiniLcm/Models/WritingSystemType'; -export * from './generated-types/MiniLcm/Models/MorphType'; +export * from './generated-types/MiniLcm/Models/MorphTypeKind'; export * from './generated-types/MiniLcm/Models/ICustomView'; export * from './generated-types/MiniLcm/Models/IViewField'; export * from './generated-types/MiniLcm/Models/IViewWritingSystem'; diff --git a/frontend/viewer/src/lib/utils.ts b/frontend/viewer/src/lib/utils.ts index da986bf15d..8c86562c4f 100644 --- a/frontend/viewer/src/lib/utils.ts +++ b/frontend/viewer/src/lib/utils.ts @@ -1,4 +1,4 @@ -import {MorphType, type IEntry, type IExampleSentence, type ISense, type ITranslation, type IWritingSystem, type WritingSystemType} from '$lib/dotnet-types'; +import {MorphTypeKind, type IEntry, type IExampleSentence, type ISense, type ITranslation, type IWritingSystem, type WritingSystemType} from '$lib/dotnet-types'; import {get, writable, type Readable} from 'svelte/store'; import {type ClassValue, clsx} from 'clsx'; import {twMerge} from 'tailwind-merge'; @@ -45,7 +45,7 @@ export function defaultEntry(): IEntry { complexFormTypes: [], components: [], publishIn: [], - morphType: MorphType.Stem, + morphType: MorphTypeKind.Stem, }; } diff --git a/frontend/viewer/src/project/browse/SearchFilter.svelte b/frontend/viewer/src/project/browse/SearchFilter.svelte index 96fc008f48..50e4fab90c 100644 --- a/frontend/viewer/src/project/browse/SearchFilter.svelte +++ b/frontend/viewer/src/project/browse/SearchFilter.svelte @@ -18,7 +18,7 @@ import PublicationSelect from './filter/PublicationSelect.svelte'; import Label from '$lib/components/ui/label/label.svelte'; import type {ISemanticDomain, IPartOfSpeech, IPublication} from '$lib/dotnet-types'; - import {MorphType} from '$lib/dotnet-types'; + import {MorphTypeKind} from '$lib/dotnet-types'; import {Switch} from '$lib/components/ui/switch'; import ResponsivePopup from '$lib/components/responsive-popup/responsive-popup.svelte'; import {IsMobile} from '$lib/hooks/is-mobile.svelte'; @@ -51,10 +51,10 @@ let userFilterActive = $state(false); const LITE_MORPHEME_TYPES = new Set([ - MorphType.Root, MorphType.BoundRoot, - MorphType.Stem, MorphType.BoundStem, - MorphType.Particle, - MorphType.Phrase, MorphType.DiscontiguousPhrase, + MorphTypeKind.Root, MorphTypeKind.BoundRoot, + MorphTypeKind.Stem, MorphTypeKind.BoundStem, + MorphTypeKind.Particle, + MorphTypeKind.Phrase, MorphTypeKind.DiscontiguousPhrase, ]); $effect(() => { diff --git a/frontend/viewer/src/project/demo/demo-entry-data.ts b/frontend/viewer/src/project/demo/demo-entry-data.ts index c8016734e7..fce219dfa6 100644 --- a/frontend/viewer/src/project/demo/demo-entry-data.ts +++ b/frontend/viewer/src/project/demo/demo-entry-data.ts @@ -1,4 +1,4 @@ -import {type IEntry, type IWritingSystems, MorphType, WritingSystemType} from '$lib/dotnet-types'; +import {type IEntry, type IWritingSystems, MorphTypeKind, WritingSystemType} from '$lib/dotnet-types'; export const projectName = 'Sena 3'; @@ -114,7 +114,7 @@ export const _entries: IEntry[] = [ 'lexemeForm': { 'seh': 'nyumba', 'seh-fonipa-x-etic': 'ɲumba', 'ny': 'nyumba' }, 'citationForm': { 'seh': '!nyumba', 'seh-fonipa-x-etic': 'ɲumba', 'ny': 'nyumba' }, 'literalMeaning': {}, - morphType: MorphType.Stem, + morphType: MorphTypeKind.Stem, 'senses': [ { 'id': 'f53f0f28-3ec1-4051-b9a3-fafdca6209ce', @@ -180,7 +180,7 @@ export const _entries: IEntry[] = [ 'lexemeForm': { 'seh': 'dance', 'seh-fonipa-x-etic': 'dæns', 'ny': 'vina' }, 'citationForm': {}, 'literalMeaning': {}, - morphType: MorphType.Stem, + morphType: MorphTypeKind.Stem, 'senses': [ { 'id': 'f53f0f29-3ec1-4051-b9a3-fafdca6209ce', @@ -246,7 +246,7 @@ export const allWsEntry: IEntry = { lexemeForm: { seh: 'nyumba', 'seh-fonipa-x-etic': 'ɲumba', ny: 'nyumba' }, citationForm: { seh: '!nyumba', 'seh-fonipa-x-etic': 'ɲumba', ny: 'nyumba' }, literalMeaning: {}, - morphType: MorphType.Stem, + morphType: MorphTypeKind.Stem, senses: [{ id: '00000000-0000-0000-0000-000000000002', entryId: '00000000-0000-0000-0000-000000000001', diff --git a/frontend/viewer/src/stories/editor/entity-primitives/entry-editor-primitive.stories.svelte b/frontend/viewer/src/stories/editor/entity-primitives/entry-editor-primitive.stories.svelte index e0af91ec79..e2ce2f2113 100644 --- a/frontend/viewer/src/stories/editor/entity-primitives/entry-editor-primitive.stories.svelte +++ b/frontend/viewer/src/stories/editor/entity-primitives/entry-editor-primitive.stories.svelte @@ -3,7 +3,7 @@ import { expect, fn, userEvent, within } from 'storybook/test'; import EntityEditorPrimitiveDecorator from './EntityEditorPrimitiveDecorator.svelte'; import EntryEditorPrimitive from '$lib/entry-editor/object-editors/EntryEditorPrimitive.svelte'; - import {type IEntry, MorphType} from '$lib/dotnet-types'; + import {type IEntry, MorphTypeKind} from '$lib/dotnet-types'; import {fwliteStoryParameters} from '../../fwl-parameters'; import {tick} from 'svelte'; @@ -39,7 +39,7 @@ components: [], publishIn: [], senses: [], - morphType: MorphType.Stem + morphType: MorphTypeKind.Stem }); const { Story } = defineMeta({ diff --git a/frontend/viewer/tests/entry-api-helper.ts b/frontend/viewer/tests/entry-api-helper.ts index 35b70b7e6e..850e0f858d 100644 --- a/frontend/viewer/tests/entry-api-helper.ts +++ b/frontend/viewer/tests/entry-api-helper.ts @@ -1,6 +1,6 @@ import {type Page} from '@playwright/test'; import {SortField} from '$lib/dotnet-types/generated-types/MiniLcm/SortField'; -import {MorphType} from '$lib/dotnet-types/generated-types/MiniLcm/Models/MorphType'; +import {MorphTypeKind} from '$lib/dotnet-types/generated-types/MiniLcm/Models/MorphTypeKind'; const DEFAULT_ORDER = {field: SortField.Headword, writingSystem: 'default', ascending: true} as const; @@ -83,7 +83,7 @@ export class EntryApiHelper { }; const created = await api.createEntry(newEntry); return {id: created.id, headword: newHeadword}; - }, {idx: targetIndex, order: DEFAULT_ORDER, morphType: MorphType.Unknown}); + }, {idx: targetIndex, order: DEFAULT_ORDER, morphType: MorphTypeKind.Unknown}); } async createEntryWithHeadword(headword: string): Promise<{id: string; headword: string}> { @@ -104,7 +104,7 @@ export class EntryApiHelper { }; const created = await api.createEntry(newEntry); return {id: created.id, headword: hw}; - }, {hw: headword, morphType: MorphType.Unknown}); + }, {hw: headword, morphType: MorphTypeKind.Unknown}); } async deleteEntry(entryId: string): Promise { From 67e74a156b55169a7202151c7411665713d1712e Mon Sep 17 00:00:00 2001 From: Tim Haasdyk Date: Sat, 28 Mar 2026 10:13:59 +0100 Subject: [PATCH 2/6] Respect entry morph-type when filtering and sorting (#2202) * Add filtering on token aware headwords * Respect SecondaryOrder when sorting * Make FTS Headword column contain morph-tokens and all vernacular WS's --- .../MiniLcmTests/SortingTests.cs | 41 + .../Api/FwDataMiniLcmApi.cs | 20 +- .../FwDataMiniLcmBridge/Api/LcmHelpers.cs | 26 +- .../FwLite/FwDataMiniLcmBridge/Api/Sorting.cs | 36 +- .../Api/UpdateProxy/UpdateMorphTypeProxy.cs | 3 + .../sena-3-live_snapshot.verified.txt | 1428 ++++++++--------- .../LcmCrdt.Tests/Data/FilteringTests.cs | 10 +- ...sUpdatedAutomaticallyOnInsert.verified.txt | 2 +- ...sUpdatedAutomaticallyOnUpdate.verified.txt | 2 +- .../FullTextSearch/EntrySearchServiceTests.cs | 35 +- .../MiniLcmTests/QueryEntryTests.cs | 9 +- .../MiniLcmTests/SortingTests.cs | 35 + .../FwLite/LcmCrdt/Data/EntryQueryHelpers.cs | 87 +- backend/FwLite/LcmCrdt/Data/Filtering.cs | 12 +- .../FwLite/LcmCrdt/Data/MiniLcmRepository.cs | 18 +- backend/FwLite/LcmCrdt/Data/Sorting.cs | 72 +- .../FullTextSearch/EntrySearchService.cs | 110 +- backend/FwLite/LcmCrdt/Json.cs | 11 +- backend/FwLite/LcmCrdt/QueryHelpers.cs | 3 +- backend/FwLite/LcmCrdt/SqlHelpers.cs | 3 + .../MiniLcm.Tests/QueryEntryTestsBase.cs | 159 +- .../FwLite/MiniLcm.Tests/SortingTestsBase.cs | 283 +++- backend/FwLite/MiniLcm/Models/Entry.cs | 7 +- backend/FwLite/MiniLcm/Models/MorphType.cs | 2 +- .../entry-editor-primitive.stories.svelte | 3 + 25 files changed, 1579 insertions(+), 838 deletions(-) diff --git a/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/SortingTests.cs b/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/SortingTests.cs index fb6138408b..ce3eb0cc61 100644 --- a/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/SortingTests.cs +++ b/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/SortingTests.cs @@ -1,4 +1,7 @@ +using FwDataMiniLcmBridge.Api; +using FwDataMiniLcmBridge.LcmUtils; using FwDataMiniLcmBridge.Tests.Fixtures; +using MiniLcm.Models; namespace FwDataMiniLcmBridge.Tests.MiniLcmTests; @@ -9,4 +12,42 @@ protected override Task NewApi() { return Task.FromResult(fixture.NewProjectApi("sorting-test", "en", "en")); } + + [Theory] + [InlineData("aaaa", SortField.Headword)] // FTS + [InlineData("a", SortField.Headword)] // non-FTS + [InlineData("aaaa", SortField.SearchRelevance)] // FTS + [InlineData("a", SortField.SearchRelevance)] // non-FTS + public async Task SecondaryOrder_DefaultsToStem(string query, SortField sortField) + { + var unknownMorphTypeEntryId = Guid.NewGuid(); + Entry[] expected = [ + new() { Id = unknownMorphTypeEntryId, LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Unknown }, // SecondaryOrder defaults to Stem = 1 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.BoundStem }, // SecondaryOrder = 2 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Suffix }, // SecondaryOrder = 6 + ]; + + var ids = expected.Select(e => e.Id).ToHashSet(); + + foreach (var entry in Faker.Faker.Random.Shuffle(expected)) + await Api.CreateEntry(entry); + + var fwDataApi = (BaseApi as FwDataMiniLcmApi)!; + await fwDataApi.Cache.DoUsingNewOrCurrentUOW("Clear morph type", + "Revert morph type", + () => + { + // the fwdata api doesn't allow creating entries with MorphType.Other or Unknown, so we force it + var unknownMorphTypeEntry = fwDataApi.EntriesRepository.GetObject(unknownMorphTypeEntryId); + unknownMorphTypeEntry.LexemeFormOA.MorphTypeRA = null; + return ValueTask.CompletedTask; + }); + + var results = (await Api.SearchEntries(query, new(new(sortField))).ToArrayAsync()) + .Where(e => ids.Contains(e.Id)) + .ToList(); + + results.Should().BeEquivalentTo(expected, + options => options.WithStrictOrdering()); + } } diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs index fcb70b7bce..a887a957ff 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs @@ -652,7 +652,7 @@ private Entry FromLexEntry(ILexEntry entry) { try { - return new Entry + var result = new Entry { Id = entry.Guid, Note = FromLcmMultiString(entry.Comment), @@ -670,6 +670,7 @@ private Entry FromLexEntry(ILexEntry entry) // ILexEntry.PublishIn is a virtual property that inverts DoNotPublishInRC against all publications PublishIn = entry.PublishIn.Select(FromLcmPossibility).ToList(), }; + return result; } catch (Exception e) { @@ -725,24 +726,22 @@ private ComplexFormComponent ToEntryReference(ILexEntry component, ILexEntry com return new ComplexFormComponent { ComponentEntryId = component.Guid, - ComponentHeadword = component.LexEntryHeadwordOrUnknown(), + ComponentHeadword = component.LexEntryHeadwordOrUnknown(applyMorphTokens: false), // match CRDT for now ComplexFormEntryId = complexEntry.Guid, - ComplexFormHeadword = complexEntry.LexEntryHeadwordOrUnknown(), + ComplexFormHeadword = complexEntry.LexEntryHeadwordOrUnknown(applyMorphTokens: false), // match CRDT for now Order = Order(component, complexEntry) }; } - - private ComplexFormComponent ToSenseReference(ILexSense componentSense, ILexEntry complexEntry) { return new ComplexFormComponent { ComponentEntryId = componentSense.Entry.Guid, ComponentSenseId = componentSense.Guid, - ComponentHeadword = componentSense.Entry.LexEntryHeadwordOrUnknown(), + ComponentHeadword = componentSense.Entry.LexEntryHeadwordOrUnknown(applyMorphTokens: false), // match CRDT for now ComplexFormEntryId = complexEntry.Guid, - ComplexFormHeadword = complexEntry.LexEntryHeadwordOrUnknown(), + ComplexFormHeadword = complexEntry.LexEntryHeadwordOrUnknown(applyMorphTokens: false), // match CRDT for now Order = Order(componentSense, complexEntry) }; } @@ -939,12 +938,13 @@ private IEnumerable GetFilteredAndSortedEntries(Func private IEnumerable ApplySorting(SortOptions order, IEnumerable entries, string? query) { var sortWs = GetWritingSystemHandle(order.WritingSystem, WritingSystemType.Vernacular); + var stemSecondaryOrder = MorphTypeRepository.GetObject(MoMorphTypeTags.kguidMorphStem).SecondaryOrder; if (order.Field == SortField.SearchRelevance) { - return entries.ApplyRoughBestMatchOrder(order, sortWs, query); + return entries.ApplyRoughBestMatchOrder(order, sortWs, stemSecondaryOrder, query); } - return order.ApplyOrder(entries, e => e.LexEntryHeadword(sortWs)); + return entries.ApplyHeadwordOrder(order, sortWs, stemSecondaryOrder); } public IAsyncEnumerable SearchEntries(string query, QueryOptions? options = null) @@ -956,7 +956,7 @@ public IAsyncEnumerable SearchEntries(string query, QueryOptions? options private Func? EntrySearchPredicate(string? query = null) { if (string.IsNullOrEmpty(query)) return null; - return entry => entry.CitationForm.SearchValue(query) || + return entry => entry.SearchHeadWord(query) || // CitationForm.SearchValue would be redundant entry.LexemeFormOA?.Form.SearchValue(query) is true || entry.AllSenses.Any(s => s.Gloss.SearchValue(query)); } diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs index d3b296cf8e..f5793651ef 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/LcmHelpers.cs @@ -11,7 +11,7 @@ namespace FwDataMiniLcmBridge.Api; internal static class LcmHelpers { - internal static string? LexEntryHeadword(this ILexEntry entry, int? ws = null) + internal static string? LexEntryHeadword(this ILexEntry entry, int? ws = null, bool applyMorphTokens = true) { var citationFormTs = ws.HasValue ? entry.CitationForm.get_String(ws.Value) @@ -27,15 +27,33 @@ internal static class LcmHelpers : null; var lexemeForm = lexemeFormTs?.Text?.Trim(WhitespaceChars); - return lexemeForm; + if (string.IsNullOrEmpty(lexemeForm) || !applyMorphTokens) return lexemeForm; + + var morphType = entry.LexemeFormOA?.MorphTypeRA; + var leading = morphType?.Prefix ?? ""; + var trailing = morphType?.Postfix ?? ""; + return (leading + lexemeForm + trailing).Trim(WhitespaceChars); } - internal static string LexEntryHeadwordOrUnknown(this ILexEntry entry, int? ws = null) + internal static string LexEntryHeadwordOrUnknown(this ILexEntry entry, int? ws = null, bool applyMorphTokens = true) { - var headword = entry.LexEntryHeadword(ws); + var headword = entry.LexEntryHeadword(ws, applyMorphTokens); return string.IsNullOrEmpty(headword) ? Entry.UnknownHeadword : headword; } + internal static bool SearchHeadWord(this ILexEntry entry, string value) + { + foreach (var ws in entry.Cache.ServiceLocator.WritingSystems.VernacularWritingSystems) + { + var headword = entry.HeadWordForWs(ws.Handle); + if (headword is null) continue; + var text = headword.Text; + if (string.IsNullOrEmpty(text)) continue; + if (text.ContainsDiacriticMatch(value)) return true; + } + return false; + } + internal static bool SearchValue(this ITsMultiString multiString, string value) { for (var i = 0; i < multiString.StringCount; i++) diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/Sorting.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/Sorting.cs index 82b87386f8..d021181e24 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/Sorting.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/Sorting.cs @@ -6,31 +6,55 @@ namespace FwDataMiniLcmBridge.Api; internal static class Sorting { + public static IEnumerable ApplyHeadwordOrder(this IEnumerable entries, SortOptions order, int sortWsHandle, int stemSecondaryOrder) + { + if (order.Ascending) + { + return entries + .OrderBy(e => e.LexEntryHeadword(sortWsHandle, applyMorphTokens: false)) + .ThenBy(e => e.PrimaryMorphType?.SecondaryOrder ?? stemSecondaryOrder) + // .ThenBy(e => e.HomographNumber) + .ThenBy(e => e.Id.Guid); + } + else + { + return entries + .OrderByDescending(e => e.LexEntryHeadword(sortWsHandle, applyMorphTokens: false)) + .ThenByDescending(e => e.PrimaryMorphType?.SecondaryOrder ?? stemSecondaryOrder) + // .ThenByDescending(e => e.HomographNumber) + .ThenByDescending(e => e.Id.Guid); + } + } + ///

/// Rough emulation of FTS search relevance. Headword matches come first, preferring /// prefix matches (e.g. when searching "tan" then "tanan" is before "matan"), then shorter, then alphabetical. /// See also: EntrySearchService.FilterAndRank for the FTS-based equivalent in LcmCrdt. /// - public static IEnumerable ApplyRoughBestMatchOrder(this IEnumerable entries, SortOptions order, int sortWsHandle, string? query = null) + public static IEnumerable ApplyRoughBestMatchOrder(this IEnumerable entries, SortOptions order, int sortWsHandle, int stemSecondaryOrder, string? query = null) { - var projected = entries.Select(e => (Entry: e, Headword: e.LexEntryHeadword(sortWsHandle))); + var projected = entries.Select(e => (Entry: e, Headword: e.LexEntryHeadword(sortWsHandle, applyMorphTokens: false))); if (order.Ascending) { return projected - .OrderByDescending(x => !string.IsNullOrEmpty(query) && (x.Headword?.ContainsDiacriticMatch(query!) ?? false)) - .ThenByDescending(x => !string.IsNullOrEmpty(query) && (x.Headword?.StartsWithDiacriticMatch(query!) ?? false)) + .OrderByDescending(x => !string.IsNullOrEmpty(query) && (x.Headword?.StartsWithDiacriticMatch(query!) ?? false)) + .ThenByDescending(x => !string.IsNullOrEmpty(query) && (x.Headword?.ContainsDiacriticMatch(query!) ?? false)) .ThenBy(x => x.Headword?.Length ?? 0) .ThenBy(x => x.Headword) + .ThenBy(x => x.Entry.PrimaryMorphType?.SecondaryOrder ?? stemSecondaryOrder) + // .ThenBy(x => x.Entry.HomographNumber) .ThenBy(x => x.Entry.Id.Guid) .Select(x => x.Entry); } else { return projected - .OrderBy(x => !string.IsNullOrEmpty(query) && (x.Headword?.ContainsDiacriticMatch(query!) ?? false)) - .ThenBy(x => !string.IsNullOrEmpty(query) && (x.Headword?.StartsWithDiacriticMatch(query!) ?? false)) + .OrderBy(x => !string.IsNullOrEmpty(query) && (x.Headword?.StartsWithDiacriticMatch(query!) ?? false)) + .ThenBy(x => !string.IsNullOrEmpty(query) && (x.Headword?.ContainsDiacriticMatch(query!) ?? false)) .ThenByDescending(x => x.Headword?.Length ?? 0) .ThenByDescending(x => x.Headword) + .ThenByDescending(x => x.Entry.PrimaryMorphType?.SecondaryOrder ?? stemSecondaryOrder) + // .ThenByDescending(x => x.Entry.HomographNumber) .ThenByDescending(x => x.Entry.Id.Guid) .Select(x => x.Entry); } diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateMorphTypeProxy.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateMorphTypeProxy.cs index 833eb1ffd9..052a07567c 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateMorphTypeProxy.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateMorphTypeProxy.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using MiniLcm.Models; using SIL.LCModel; @@ -8,11 +9,13 @@ public class UpdateMorphTypeProxy : MorphType private readonly IMoMorphType _lcmMorphType; private readonly FwDataMiniLcmApi _lexboxLcmApi; + [SetsRequiredMembers] public UpdateMorphTypeProxy(IMoMorphType lcmMorphType, FwDataMiniLcmApi lexboxLcmApi) { _lcmMorphType = lcmMorphType; Id = lcmMorphType.Guid; _lexboxLcmApi = lexboxLcmApi; + Kind = LcmHelpers.FromLcmMorphType(lcmMorphType); } public override MultiString Name diff --git a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt index 7f39efc1d2..af1b0b8168 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt +++ b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt @@ -1,5 +1,111 @@ { "Entries": [ + { + "Id": "cd045907-e8fc-46a3-8f8d-f71bd956275f", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd045907-e8fc-46a3-8f8d-f71bd956275f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "of", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "de", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "ASSOC", + "pt": "ASSOC" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6f7fe99a-de48-4761-b58f-688bfec15073", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mwana wa Fa\u0301tima", + "Ws": "seh" + } + ] + } + }, + "Translations": [ + { + "Id": "2e9fb296-e4a6-4959-ad95-d18d19474a3d", + "Text": { + "en": { + "Spans": [ + { + "Text": "child of Fatima", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "crianc\u0327a de Fa\u0301tima", + "Ws": "pt" + } + ] + } + } + } + ], + "Reference": null, + "SenseId": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, { "Id": "34779c06-5a73-4fe9-8325-b110b23f9293", "DeletedAt": null, @@ -363,35 +469,35 @@ ] }, { - "Id": "af56599e-3eb6-4b61-984d-f69267a0b4a2", + "Id": "d7029d27-45bc-4e53-968e-3c754805eb0a", "DeletedAt": null, "LexemeForm": { "seh": "a" }, "CitationForm": {}, "LiteralMeaning": {}, - "MorphType": "Suffix", + "MorphType": "Prefix", "Senses": [ { - "Id": "6b9b59b9-629f-4c8d-90c8-878a40a35ee8", + "Id": "82d967cc-94e1-47ee-ab71-303394ab0470", "Order": 1, "DeletedAt": null, - "EntryId": "af56599e-3eb6-4b61-984d-f69267a0b4a2", + "EntryId": "d7029d27-45bc-4e53-968e-3c754805eb0a", "Definition": {}, "Gloss": { - "en": "-er", - "pt": "nominalizador" + "en": "3S\u002B1", + "pt": "3S\u002B1" }, "PartOfSpeech": { - "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "Name": { - "en": "Nominalizer", - "pt": "Nominalizador" + "en": "Verb", + "pt": "Verbo" }, "DeletedAt": null, - "Predefined": false + "Predefined": true }, - "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], "ExampleSentences": [] } @@ -411,25 +517,73 @@ ] }, { - "Id": "cd045907-e8fc-46a3-8f8d-f71bd956275f", + "Id": "e7727ed9-55da-4c34-bdec-f34b7a07019e", "DeletedAt": null, "LexemeForm": { "seh": "a" }, "CitationForm": {}, "LiteralMeaning": {}, - "MorphType": "Root", + "MorphType": "Prefix", "Senses": [ { - "Id": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", + "Id": "1af27ad8-7b07-462b-90fe-115b5bd63ecd", "Order": 1, "DeletedAt": null, - "EntryId": "cd045907-e8fc-46a3-8f8d-f71bd956275f", + "EntryId": "e7727ed9-55da-4c34-bdec-f34b7a07019e", + "Definition": {}, + "Gloss": { + "en": "PAST", + "pt": "PASSADO" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f91cf0e0-b3c2-4478-9f1f-becaecf307e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9e9ad5c2-26f8-4ed1-9803-2af452088701", + "Order": 1, + "DeletedAt": null, + "EntryId": "f91cf0e0-b3c2-4478-9f1f-becaecf307e5", "Definition": { "en": { "Spans": [ { - "Text": "of", + "Text": "associative prefix", "Ws": "en" } ] @@ -437,66 +591,40 @@ "pt": { "Spans": [ { - "Text": "de", + "Text": "prefixo associativo", "Ws": "pt" } ] } }, "Gloss": { - "en": "ASSOC", - "pt": "ASSOC" + "en": "assocpx", + "pt": "assocpx" }, "PartOfSpeech": { - "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "Name": { - "en": "Associative", - "pt": "Associativo" + "en": "Possessive", + "pt": "Possessivo" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], "ExampleSentences": [ { - "Id": "6f7fe99a-de48-4761-b58f-688bfec15073", + "Id": "fc02be9f-32fb-470b-b305-1395b664a1fb", "Order": 1, - "Sentence": { - "seh": { - "Spans": [ - { - "Text": "mwana wa Fa\u0301tima", - "Ws": "seh" - } - ] - } - }, + "Sentence": {}, "Translations": [ { - "Id": "2e9fb296-e4a6-4959-ad95-d18d19474a3d", - "Text": { - "en": { - "Spans": [ - { - "Text": "child of Fatima", - "Ws": "en" - } - ] - }, - "pt": { - "Spans": [ - { - "Text": "crianc\u0327a de Fa\u0301tima", - "Ws": "pt" - } - ] - } - } + "Id": "771f67f2-e50a-4bc0-8b9a-94bb0a4a4938", + "Text": {} } ], "Reference": null, - "SenseId": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", + "SenseId": "9e9ad5c2-26f8-4ed1-9803-2af452088701", "DeletedAt": null } ] @@ -517,35 +645,35 @@ ] }, { - "Id": "d7029d27-45bc-4e53-968e-3c754805eb0a", + "Id": "af56599e-3eb6-4b61-984d-f69267a0b4a2", "DeletedAt": null, "LexemeForm": { "seh": "a" }, "CitationForm": {}, "LiteralMeaning": {}, - "MorphType": "Prefix", + "MorphType": "Suffix", "Senses": [ { - "Id": "82d967cc-94e1-47ee-ab71-303394ab0470", + "Id": "6b9b59b9-629f-4c8d-90c8-878a40a35ee8", "Order": 1, "DeletedAt": null, - "EntryId": "d7029d27-45bc-4e53-968e-3c754805eb0a", + "EntryId": "af56599e-3eb6-4b61-984d-f69267a0b4a2", "Definition": {}, "Gloss": { - "en": "3S\u002B1", - "pt": "3S\u002B1" + "en": "-er", + "pt": "nominalizador" }, "PartOfSpeech": { - "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", "Name": { - "en": "Verb", - "pt": "Verbo" + "en": "Nominalizer", + "pt": "Nominalizador" }, "DeletedAt": null, - "Predefined": true + "Predefined": false }, - "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", "SemanticDomains": [], "ExampleSentences": [] } @@ -612,134 +740,6 @@ } ] }, - { - "Id": "e7727ed9-55da-4c34-bdec-f34b7a07019e", - "DeletedAt": null, - "LexemeForm": { - "seh": "a" - }, - "CitationForm": {}, - "LiteralMeaning": {}, - "MorphType": "Prefix", - "Senses": [ - { - "Id": "1af27ad8-7b07-462b-90fe-115b5bd63ecd", - "Order": 1, - "DeletedAt": null, - "EntryId": "e7727ed9-55da-4c34-bdec-f34b7a07019e", - "Definition": {}, - "Gloss": { - "en": "PAST", - "pt": "PASSADO" - }, - "PartOfSpeech": { - "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "Name": { - "en": "Verb", - "pt": "Verbo" - }, - "DeletedAt": null, - "Predefined": true - }, - "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "SemanticDomains": [], - "ExampleSentences": [] - } - ], - "Note": {}, - "Components": [], - "ComplexForms": [], - "ComplexFormTypes": [], - "PublishIn": [ - { - "Id": "70c0a758-5901-4884-b992-94ca31087607", - "DeletedAt": null, - "Name": { - "en": "Main Dictionary" - } - } - ] - }, - { - "Id": "f91cf0e0-b3c2-4478-9f1f-becaecf307e5", - "DeletedAt": null, - "LexemeForm": { - "seh": "a" - }, - "CitationForm": {}, - "LiteralMeaning": {}, - "MorphType": "Prefix", - "Senses": [ - { - "Id": "9e9ad5c2-26f8-4ed1-9803-2af452088701", - "Order": 1, - "DeletedAt": null, - "EntryId": "f91cf0e0-b3c2-4478-9f1f-becaecf307e5", - "Definition": { - "en": { - "Spans": [ - { - "Text": "associative prefix", - "Ws": "en" - } - ] - }, - "pt": { - "Spans": [ - { - "Text": "prefixo associativo", - "Ws": "pt" - } - ] - } - }, - "Gloss": { - "en": "assocpx", - "pt": "assocpx" - }, - "PartOfSpeech": { - "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", - "Name": { - "en": "Possessive", - "pt": "Possessivo" - }, - "DeletedAt": null, - "Predefined": false - }, - "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", - "SemanticDomains": [], - "ExampleSentences": [ - { - "Id": "fc02be9f-32fb-470b-b305-1395b664a1fb", - "Order": 1, - "Sentence": {}, - "Translations": [ - { - "Id": "771f67f2-e50a-4bc0-8b9a-94bb0a4a4938", - "Text": {} - } - ], - "Reference": null, - "SenseId": "9e9ad5c2-26f8-4ed1-9803-2af452088701", - "DeletedAt": null - } - ] - } - ], - "Note": {}, - "Components": [], - "ComplexForms": [], - "ComplexFormTypes": [], - "PublishIn": [ - { - "Id": "70c0a758-5901-4884-b992-94ca31087607", - "DeletedAt": null, - "Name": { - "en": "Main Dictionary" - } - } - ] - }, { "Id": "a15b8ae6-207c-4999-b1e0-f95a348d1bdc", "DeletedAt": null, @@ -19390,151 +19390,6 @@ } ] }, - { - "Id": "241ca9b4-9077-4050-b8c9-6e1759a989d3", - "DeletedAt": null, - "LexemeForm": { - "seh": "dza" - }, - "CitationForm": {}, - "LiteralMeaning": {}, - "MorphType": "Prefix", - "Senses": [ - { - "Id": "0156d415-bb52-4d42-8457-ddd27562d830", - "Order": 1, - "DeletedAt": null, - "EntryId": "241ca9b4-9077-4050-b8c9-6e1759a989d3", - "Definition": { - "en": { - "Spans": [ - { - "Text": "culmination", - "Ws": "en" - } - ] - } - }, - "Gloss": { - "en": "CUL", - "pt": "CUL" - }, - "PartOfSpeech": { - "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "Name": { - "en": "Verb", - "pt": "Verbo" - }, - "DeletedAt": null, - "Predefined": true - }, - "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "SemanticDomains": [], - "ExampleSentences": [] - } - ], - "Note": {}, - "Components": [], - "ComplexForms": [], - "ComplexFormTypes": [], - "PublishIn": [ - { - "Id": "70c0a758-5901-4884-b992-94ca31087607", - "DeletedAt": null, - "Name": { - "en": "Main Dictionary" - } - } - ] - }, - { - "Id": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", - "DeletedAt": null, - "LexemeForm": { - "seh": "dza" - }, - "CitationForm": {}, - "LiteralMeaning": {}, - "MorphType": "Prefix", - "Senses": [ - { - "Id": "7aeea56a-5e2a-49b3-a7be-6841608f8364", - "Order": 1, - "DeletedAt": null, - "EntryId": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", - "Definition": { - "en": { - "Spans": [ - { - "Text": "in order to, distal/purpose infinitive", - "Ws": "en" - } - ] - }, - "pt": { - "Spans": [ - { - "Text": "para", - "Ws": "pt" - } - ] - } - }, - "Gloss": { - "en": "PURP", - "pt": "PURP" - }, - "PartOfSpeech": { - "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "Name": { - "en": "Verb", - "pt": "Verbo" - }, - "DeletedAt": null, - "Predefined": true - }, - "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "SemanticDomains": [], - "ExampleSentences": [] - }, - { - "Id": "c6af0fa0-431c-4b33-a1d9-39b590222ee2", - "Order": 2, - "DeletedAt": null, - "EntryId": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", - "Definition": {}, - "Gloss": { - "en": "PURP", - "pt": "PURP" - }, - "PartOfSpeech": { - "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "Name": { - "en": "Verb", - "pt": "Verbo" - }, - "DeletedAt": null, - "Predefined": true - }, - "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "SemanticDomains": [], - "ExampleSentences": [] - } - ], - "Note": {}, - "Components": [], - "ComplexForms": [], - "ComplexFormTypes": [], - "PublishIn": [ - { - "Id": "70c0a758-5901-4884-b992-94ca31087607", - "DeletedAt": null, - "Name": { - "en": "Main Dictionary" - } - } - ] - }, { "Id": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", "DeletedAt": null, @@ -19660,6 +19515,151 @@ } ] }, + { + "Id": "241ca9b4-9077-4050-b8c9-6e1759a989d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "dza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "0156d415-bb52-4d42-8457-ddd27562d830", + "Order": 1, + "DeletedAt": null, + "EntryId": "241ca9b4-9077-4050-b8c9-6e1759a989d3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "culmination", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "CUL", + "pt": "CUL" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "DeletedAt": null, + "LexemeForm": { + "seh": "dza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "7aeea56a-5e2a-49b3-a7be-6841608f8364", + "Order": 1, + "DeletedAt": null, + "EntryId": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in order to, distal/purpose infinitive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "para", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c6af0fa0-431c-4b33-a1d9-39b590222ee2", + "Order": 2, + "DeletedAt": null, + "EntryId": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "Definition": {}, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, { "Id": "2cb6087a-4ffb-4544-9381-b49733d3bd64", "DeletedAt": null, @@ -27603,6 +27603,123 @@ } ] }, + { + "Id": "41eaf8e3-fad8-4957-b901-21870f508091", + "DeletedAt": null, + "LexemeForm": { + "seh": "i" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9800597f-0dab-48f8-93cc-b1a2be904e29", + "Order": 1, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a9da180c-b617-4897-bbc3-9483e3ec9fae", + "Order": 2, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b7dd12e2-4eaa-40a1-a07e-8239b886f77f", + "Order": 3, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ad95bb10-5844-4233-9481-227dc410fc16", + "Order": 4, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, { "Id": "15dddc00-6015-4412-aa3b-644db854c89e", "DeletedAt": null, @@ -27701,123 +27818,6 @@ } ] }, - { - "Id": "41eaf8e3-fad8-4957-b901-21870f508091", - "DeletedAt": null, - "LexemeForm": { - "seh": "i" - }, - "CitationForm": {}, - "LiteralMeaning": {}, - "MorphType": "Prefix", - "Senses": [ - { - "Id": "9800597f-0dab-48f8-93cc-b1a2be904e29", - "Order": 1, - "DeletedAt": null, - "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", - "Definition": {}, - "Gloss": { - "en": "4\u002B5\u002B9", - "pt": "4\u002B5\u002B9" - }, - "PartOfSpeech": { - "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "Name": { - "en": "Verb", - "pt": "Verbo" - }, - "DeletedAt": null, - "Predefined": true - }, - "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "SemanticDomains": [], - "ExampleSentences": [] - }, - { - "Id": "a9da180c-b617-4897-bbc3-9483e3ec9fae", - "Order": 2, - "DeletedAt": null, - "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", - "Definition": {}, - "Gloss": { - "en": "4\u002B5\u002B9", - "pt": "4\u002B5\u002B9" - }, - "PartOfSpeech": { - "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", - "Name": { - "en": "Associative", - "pt": "Associativo" - }, - "DeletedAt": null, - "Predefined": false - }, - "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", - "SemanticDomains": [], - "ExampleSentences": [] - }, - { - "Id": "b7dd12e2-4eaa-40a1-a07e-8239b886f77f", - "Order": 3, - "DeletedAt": null, - "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", - "Definition": {}, - "Gloss": { - "en": "4\u002B5\u002B9", - "pt": "4\u002B5\u002B9" - }, - "PartOfSpeech": { - "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", - "Name": { - "en": "Possessive", - "pt": "Possessivo" - }, - "DeletedAt": null, - "Predefined": false - }, - "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", - "SemanticDomains": [], - "ExampleSentences": [] - }, - { - "Id": "ad95bb10-5844-4233-9481-227dc410fc16", - "Order": 4, - "DeletedAt": null, - "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", - "Definition": {}, - "Gloss": { - "en": "4\u002B5\u002B9", - "pt": "4\u002B5\u002B9" - }, - "PartOfSpeech": { - "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", - "Name": { - "en": "Adjective", - "pt": "Adjectivo" - }, - "DeletedAt": null, - "Predefined": false - }, - "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", - "SemanticDomains": [], - "ExampleSentences": [] - } - ], - "Note": {}, - "Components": [], - "ComplexForms": [], - "ComplexFormTypes": [], - "PublishIn": [ - { - "Id": "70c0a758-5901-4884-b992-94ca31087607", - "DeletedAt": null, - "Name": { - "en": "Main Dictionary" - } - } - ] - }, { "Id": "86edf77a-16db-4ac5-9c24-a34bd334c712", "DeletedAt": null, @@ -35674,67 +35674,6 @@ } ] }, - { - "Id": "942fb913-e648-473c-a6ee-a592dd8996db", - "DeletedAt": null, - "LexemeForm": { - "seh": "-ko" - }, - "CitationForm": { - "seh": "ko" - }, - "LiteralMeaning": {}, - "MorphType": "Suffix", - "Senses": [ - { - "Id": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", - "Order": 1, - "DeletedAt": null, - "EntryId": "942fb913-e648-473c-a6ee-a592dd8996db", - "Definition": {}, - "Gloss": { - "en": "LOC there", - "pt": "ali" - }, - "PartOfSpeech": null, - "PartOfSpeechId": null, - "SemanticDomains": [], - "ExampleSentences": [ - { - "Id": "403597a6-4605-423d-a9da-2c079427acfd", - "Order": 1, - "Sentence": { - "seh": { - "Spans": [ - { - "Text": "kauka-ko eko noko kubazari-ko", - "Ws": "seh" - } - ] - } - }, - "Translations": [], - "Reference": null, - "SenseId": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", - "DeletedAt": null - } - ] - } - ], - "Note": {}, - "Components": [], - "ComplexForms": [], - "ComplexFormTypes": [], - "PublishIn": [ - { - "Id": "70c0a758-5901-4884-b992-94ca31087607", - "DeletedAt": null, - "Name": { - "en": "Main Dictionary" - } - } - ] - }, { "Id": "ef57f28b-7741-4249-9572-63de6aa524d7", "DeletedAt": null, @@ -35800,6 +35739,67 @@ } ] }, + { + "Id": "942fb913-e648-473c-a6ee-a592dd8996db", + "DeletedAt": null, + "LexemeForm": { + "seh": "-ko" + }, + "CitationForm": { + "seh": "ko" + }, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", + "Order": 1, + "DeletedAt": null, + "EntryId": "942fb913-e648-473c-a6ee-a592dd8996db", + "Definition": {}, + "Gloss": { + "en": "LOC there", + "pt": "ali" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "403597a6-4605-423d-a9da-2c079427acfd", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kauka-ko eko noko kubazari-ko", + "Ws": "seh" + } + ] + } + }, + "Translations": [], + "Reference": null, + "SenseId": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, { "Id": "fa12a4b4-201a-43c6-bcd1-8007cabebe1a", "DeletedAt": null, @@ -36857,6 +36857,64 @@ } ] }, + { + "Id": "76be65ab-4221-41d9-a68f-db80ef100c96", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", + "Order": 1, + "DeletedAt": null, + "EntryId": "76be65ab-4221-41d9-a68f-db80ef100c96", + "Definition": {}, + "Gloss": { + "en": "to", + "pt": "a\u0301" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7336f02a-0896-4169-9174-e2f11fb4f00d", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, { "Id": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", "DeletedAt": null, @@ -37246,64 +37304,6 @@ } ] }, - { - "Id": "76be65ab-4221-41d9-a68f-db80ef100c96", - "DeletedAt": null, - "LexemeForm": { - "seh": "ku" - }, - "CitationForm": {}, - "LiteralMeaning": {}, - "MorphType": "Stem", - "Senses": [ - { - "Id": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", - "Order": 1, - "DeletedAt": null, - "EntryId": "76be65ab-4221-41d9-a68f-db80ef100c96", - "Definition": {}, - "Gloss": { - "en": "to", - "pt": "a\u0301" - }, - "PartOfSpeech": { - "Id": "24f4134f-0530-449c-b809-8a633ced440d", - "Name": { - "en": "Preposition", - "pt": "Preposic\u0327a\u0303o" - }, - "DeletedAt": null, - "Predefined": false - }, - "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", - "SemanticDomains": [], - "ExampleSentences": [ - { - "Id": "7336f02a-0896-4169-9174-e2f11fb4f00d", - "Order": 1, - "Sentence": {}, - "Translations": [], - "Reference": null, - "SenseId": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", - "DeletedAt": null - } - ] - } - ], - "Note": {}, - "Components": [], - "ComplexForms": [], - "ComplexFormTypes": [], - "PublishIn": [ - { - "Id": "70c0a758-5901-4884-b992-94ca31087607", - "DeletedAt": null, - "Name": { - "en": "Main Dictionary" - } - } - ] - }, { "Id": "7af9da8b-bf27-4006-bd4c-0bbc5205633f", "DeletedAt": null, @@ -56273,6 +56273,81 @@ } ] }, + { + "Id": "d2a90aca-1c65-4a90-955a-4ffe3ec34185", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "712de4ef-13ce-4516-a450-4f4e3aa1c027", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2a90aca-1c65-4a90-955a-4ffe3ec34185", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in, into", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "em", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "in", + "pt": "em" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f4864315-6769-4836-bb01-ee069d68dab4", + "Order": 1, + "Sentence": {}, + "Translations": [], + "Reference": null, + "SenseId": "712de4ef-13ce-4516-a450-4f4e3aa1c027", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, { "Id": "30caab0e-4a54-44ba-8eeb-35a1b69ac231", "DeletedAt": null, @@ -56733,81 +56808,6 @@ } ] }, - { - "Id": "d2a90aca-1c65-4a90-955a-4ffe3ec34185", - "DeletedAt": null, - "LexemeForm": { - "seh": "mu" - }, - "CitationForm": {}, - "LiteralMeaning": {}, - "MorphType": "Stem", - "Senses": [ - { - "Id": "712de4ef-13ce-4516-a450-4f4e3aa1c027", - "Order": 1, - "DeletedAt": null, - "EntryId": "d2a90aca-1c65-4a90-955a-4ffe3ec34185", - "Definition": { - "en": { - "Spans": [ - { - "Text": "in, into", - "Ws": "en" - } - ] - }, - "pt": { - "Spans": [ - { - "Text": "em", - "Ws": "pt" - } - ] - } - }, - "Gloss": { - "en": "in", - "pt": "em" - }, - "PartOfSpeech": { - "Id": "24f4134f-0530-449c-b809-8a633ced440d", - "Name": { - "en": "Preposition", - "pt": "Preposic\u0327a\u0303o" - }, - "DeletedAt": null, - "Predefined": false - }, - "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", - "SemanticDomains": [], - "ExampleSentences": [ - { - "Id": "f4864315-6769-4836-bb01-ee069d68dab4", - "Order": 1, - "Sentence": {}, - "Translations": [], - "Reference": null, - "SenseId": "712de4ef-13ce-4516-a450-4f4e3aa1c027", - "DeletedAt": null - } - ] - } - ], - "Note": {}, - "Components": [], - "ComplexForms": [], - "ComplexFormTypes": [], - "PublishIn": [ - { - "Id": "70c0a758-5901-4884-b992-94ca31087607", - "DeletedAt": null, - "Name": { - "en": "Main Dictionary" - } - } - ] - }, { "Id": "b1beac40-b5b6-4cc6-99cc-85c399fdc9d1", "DeletedAt": null, @@ -61712,71 +61712,6 @@ } ] }, - { - "Id": "681dcfd8-824e-49f3-a0ed-ca68f31ee706", - "DeletedAt": null, - "LexemeForm": { - "seh": "na" - }, - "CitationForm": {}, - "LiteralMeaning": {}, - "MorphType": "Prefix", - "Senses": [ - { - "Id": "81181c3d-cf69-40a1-89d4-d3ab0077528a", - "Order": 1, - "DeletedAt": null, - "EntryId": "681dcfd8-824e-49f3-a0ed-ca68f31ee706", - "Definition": { - "en": { - "Spans": [ - { - "Text": "nonpast", - "Ws": "en" - } - ] - }, - "pt": { - "Spans": [ - { - "Text": "na\u0303o passado", - "Ws": "pt" - } - ] - } - }, - "Gloss": { - "en": "NONPST", - "pt": "NONPST" - }, - "PartOfSpeech": { - "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "Name": { - "en": "Verb", - "pt": "Verbo" - }, - "DeletedAt": null, - "Predefined": true - }, - "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", - "SemanticDomains": [], - "ExampleSentences": [] - } - ], - "Note": {}, - "Components": [], - "ComplexForms": [], - "ComplexFormTypes": [], - "PublishIn": [ - { - "Id": "70c0a758-5901-4884-b992-94ca31087607", - "DeletedAt": null, - "Name": { - "en": "Main Dictionary" - } - } - ] - }, { "Id": "9f64c8e1-7682-44eb-967a-5dc788f9d680", "DeletedAt": null, @@ -62205,6 +62140,71 @@ } ] }, + { + "Id": "681dcfd8-824e-49f3-a0ed-ca68f31ee706", + "DeletedAt": null, + "LexemeForm": { + "seh": "na" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "81181c3d-cf69-40a1-89d4-d3ab0077528a", + "Order": 1, + "DeletedAt": null, + "EntryId": "681dcfd8-824e-49f3-a0ed-ca68f31ee706", + "Definition": { + "en": { + "Spans": [ + { + "Text": "nonpast", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "na\u0303o passado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NONPST", + "pt": "NONPST" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, { "Id": "02f5101e-b6e2-47e5-b033-dd7197b5734b", "DeletedAt": null, diff --git a/backend/FwLite/LcmCrdt.Tests/Data/FilteringTests.cs b/backend/FwLite/LcmCrdt.Tests/Data/FilteringTests.cs index 9fcac6de49..3c70a5184e 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/FilteringTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/Data/FilteringTests.cs @@ -1,11 +1,11 @@ using LcmCrdt.Data; -using MiniLcm.Models; namespace LcmCrdt.Tests.Data; public class FilteringTests { private readonly List _entries; + private readonly IQueryable _morphTypes; public FilteringTests() { @@ -14,6 +14,7 @@ public FilteringTests() new Entry { LexemeForm = { { "en", "123" } }, }, new Entry { LexemeForm = { { "en", "456" } }, } ]; + _morphTypes = new MorphType[] { new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 } }.AsQueryable(); } [Theory] @@ -36,7 +37,7 @@ public void WhereExemplar_CompiledFilter_ShouldReturnSameResults(string exemplar [InlineData("9")] public void SearchFilter_CompiledFilter_ShouldReturnSameResults(string query) { - var expected = _entries.AsQueryable().Where(Filtering.SearchFilter(query)).ToList(); + var expected = Filtering.SearchFilter(_entries.AsQueryable(), _morphTypes, query).ToList(); var actual = _entries.Where(Filtering.CompiledFilter(query, "en", null)).ToList(); @@ -52,9 +53,8 @@ public void CombinedFilter_CompiledFilter_ShouldReturnSameResults(string exempla { WritingSystemId ws = "en"; - var expected = _entries.AsQueryable() - .WhereExemplar(ws, exemplar) - .Where(Filtering.SearchFilter(query)) + var expected = Filtering.SearchFilter( + _entries.AsQueryable().WhereExemplar(ws, exemplar), _morphTypes, query) .ToList(); var actual = _entries.Where(Filtering.CompiledFilter(query, ws, exemplar)).ToList(); diff --git a/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.SearchTableIsUpdatedAutomaticallyOnInsert.verified.txt b/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.SearchTableIsUpdatedAutomaticallyOnInsert.verified.txt index c9a939d612..f9a2a3165b 100644 --- a/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.SearchTableIsUpdatedAutomaticallyOnInsert.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.SearchTableIsUpdatedAutomaticallyOnInsert.verified.txt @@ -1,6 +1,6 @@ { Id: Guid_1, - Headword: citation1, + Headword: citation1 fr_citation1, CitationForm: citation1 fr_citation1, LexemeForm: lexemeform1 fr_lexemeform1, Gloss: gloss1 es_gloss1 es_gloss2, diff --git a/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.SearchTableIsUpdatedAutomaticallyOnUpdate.verified.txt b/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.SearchTableIsUpdatedAutomaticallyOnUpdate.verified.txt index 1a2b5bf49e..89d2271942 100644 --- a/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.SearchTableIsUpdatedAutomaticallyOnUpdate.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.SearchTableIsUpdatedAutomaticallyOnUpdate.verified.txt @@ -1,7 +1,7 @@ [ { Id: Guid_1, - Headword: citation1, + Headword: citation1 fr_citation1, CitationForm: citation1 fr_citation1, LexemeForm: lexemeform2 fr_lexemeform1, Gloss: , diff --git a/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.cs b/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.cs index 50130bb9e5..b4d79723cc 100644 --- a/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/FullTextSearch/EntrySearchServiceTests.cs @@ -1,19 +1,17 @@ -using Bogus; using LcmCrdt.FullTextSearch; using Microsoft.EntityFrameworkCore; using MiniLcm.Tests.AutoFakerHelpers; using Soenneker.Utils.AutoBogus; -using Soenneker.Utils.AutoBogus.Config; namespace LcmCrdt.Tests.FullTextSearch; public class EntrySearchServiceTests : IAsyncLifetime { - private MiniLcmApiFixture fixture = new MiniLcmApiFixture(); + private readonly MiniLcmApiFixture fixture = new(); private static readonly AutoFaker Faker = new(AutoFakerDefault.Config); - private Entry _entry = Faker.Generate(); + private readonly Entry _entry = Faker.Generate(); private EntrySearchService _service = null!; private LcmCrdtDbContext _context = null!; @@ -251,23 +249,32 @@ public async Task RanksResultsByColumn() var gloss = Guid.NewGuid(); var definition = Guid.NewGuid(); //only en is used for the headword - await _service.UpdateEntrySearchTable(new Entry() { Id = headword, LexemeForm = { { "en", word } } }); - //using fr ensures that this value doesn't show up in the headword - await _service.UpdateEntrySearchTable(new Entry() { Id = citationForm, CitationForm = { { "fr", word } } }); - await _service.UpdateEntrySearchTable(new Entry() { Id = lexemeForm, LexemeForm = { { "fr", word } } }); - await _service.UpdateEntrySearchTable(new Entry() { Id = definition, Senses = { new Sense() { Definition = { { "en", new RichString(word, "en") } } } } }); - await _service.UpdateEntrySearchTable(new Entry() { Id = gloss, Senses = { new Sense() { Gloss = { { "en", word } } } } }); + await fixture.Api.CreateEntry(new Entry() { Id = headword, LexemeForm = { { "en", word } } }); + //equivalent to headword + await fixture.Api.CreateEntry(new Entry() { Id = citationForm, CitationForm = { { "en", word } } }); + //using citation form ensures the matching lexeme-form isn't in the headword + await fixture.Api.CreateEntry(new Entry() { Id = lexemeForm, LexemeForm = { { "en", word } }, CitationForm = { { "en", "❌" } } }); + await fixture.Api.CreateEntry(new Entry() { Id = definition, Senses = { new Sense() { Definition = { { "en", new RichString(word, "en") } } } } }); + await fixture.Api.CreateEntry(new Entry() { Id = gloss, Senses = { new Sense() { Gloss = { { "en", word } } } } }); - var result = await _service.Search(word).ToArrayAsync(); - result.Select(e => Named(e.Id)).Should() - .Equal(["headword", "citation", "lexemeform", "gloss", "definition"]); + // Raw FTS rank search and sort + var rawFtsResult = await _service.Search(word).ToArrayAsync(); + rawFtsResult.Select(e => Named(e.Id)).Should() + .Equal(["headword", "headword", "lexemeform", "gloss", "definition"]); + + // The "real" search and sort method used by FW-Lite + // Note: definition matches are not included by FilterAndRank + var rankedResult = await fixture.Api.SearchEntries(word, + new(new(SortField.SearchRelevance))).ToArrayAsync(); + rankedResult.Select(e => Named(e.Id)).Should() + .Equal(["headword", "headword", "lexemeform", "gloss"]); string Named(Guid id) { return id switch { _ when id == headword => "headword", - _ when id == citationForm => "citation", + _ when id == citationForm => "headword", // always used as headword _ when id == lexemeForm => "lexemeform", _ when id == gloss => "gloss", _ when id == definition => "definition", diff --git a/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/QueryEntryTests.cs b/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/QueryEntryTests.cs index d28fe21f9a..6b0b4fcba5 100644 --- a/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/QueryEntryTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/QueryEntryTests.cs @@ -53,6 +53,12 @@ public async Task QueryPerformanceTesting(int count) var searchString = "tes"; var expectedResultCount = entries.Count(e => e.LexemeForm["en"].ContainsDiacriticMatch(searchString)); + //warmup: the first SearchEntries call after a project opens pays a fixed ~500ms cost + //for linq2db query-compilation, JIT, SQLite page-cache loading, etc. + //(and is about 100x slower than subsequent calls 😅) + var warmupResults = await Api.SearchEntries(searchString).ToArrayAsync(); + warmupResults.Should().HaveCount(expectedResultCount); + var testIterations = 10; var startTimestamp = Stopwatch.GetTimestamp(); for (int i = 0; i < testIterations; i++) @@ -69,7 +75,8 @@ public async Task QueryPerformanceTesting(int count) $"Total query time: {queryTime.TotalMilliseconds}ms, time per entry: {timePerEntry.TotalMicroseconds}microseconds"); //Kevin H: 1 -- on my machine I got 0.2, so this is a safe margin //Tim H: 1.3 -- bumped, because on CI we got 1 and then 1.1 (new gha Windows runner) - timePerEntry.TotalMicroseconds.Should().BeLessThan(1.3); + //Tim H: 0.5 -- tightened after adding warmup. Warm-state local is 0.05-0.23 µs/entry + timePerEntry.TotalMicroseconds.Should().BeLessThan(0.5); } public override async Task DisposeAsync() diff --git a/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/SortingTests.cs b/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/SortingTests.cs index 0f5abb8e73..e32b8f355e 100644 --- a/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/SortingTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/SortingTests.cs @@ -16,4 +16,39 @@ public override async Task DisposeAsync() await base.DisposeAsync(); await _fixture.DisposeAsync(); } + + [Theory] + [InlineData("aaaa", SortField.Headword)] // FTS + [InlineData("a", SortField.Headword)] // non-FTS + [InlineData("aaaa", SortField.SearchRelevance)] // FTS + [InlineData("a", SortField.SearchRelevance)] // non-FTS + public async Task SecondaryOrder_DefaultsToStem(string query, SortField sortField) + { + MorphType[] morphTypes = [ + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 }, + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundStem, Name = { ["en"] = "BoundStem" }, SecondaryOrder = 2 }, + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Suffix, Name = { ["en"] = "Suffix" }, Postfix = "-", SecondaryOrder = 6 }, + ]; + + foreach (var morphType in morphTypes) + await Api.CreateMorphType(morphType); + + Entry[] expected = [ + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Unknown }, // SecondaryOrder defaults to Stem = 1 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.BoundStem }, // SecondaryOrder = 2 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Suffix }, // SecondaryOrder = 6 + ]; + + var ids = expected.Select(e => e.Id).ToHashSet(); + + foreach (var entry in Faker.Faker.Random.Shuffle(expected)) + await Api.CreateEntry(entry); + + var results = (await Api.SearchEntries(query, new(new(sortField))).ToArrayAsync()) + .Where(e => ids.Contains(e.Id)) + .ToList(); + + results.Should().BeEquivalentTo(expected, + options => options.WithStrictOrdering()); + } } diff --git a/backend/FwLite/LcmCrdt/Data/EntryQueryHelpers.cs b/backend/FwLite/LcmCrdt/Data/EntryQueryHelpers.cs index fdbddb4264..37eb983a7e 100644 --- a/backend/FwLite/LcmCrdt/Data/EntryQueryHelpers.cs +++ b/backend/FwLite/LcmCrdt/Data/EntryQueryHelpers.cs @@ -8,13 +8,88 @@ public static class EntryQueryHelpers [ExpressionMethod(nameof(HeadwordExpression))] public static string Headword(this Entry e, WritingSystemId ws) { - var word = e.CitationForm[ws]; - if (string.IsNullOrEmpty(word)) word = e.LexemeForm[ws]; - return word.Trim(); + var citation = e.CitationForm[ws]?.Trim(); + if (!string.IsNullOrEmpty(citation)) return citation; + return e.LexemeForm[ws]?.Trim() ?? string.Empty; } private static Expression> HeadwordExpression() => - (e, ws) => (string.IsNullOrEmpty(Json.Value(e.CitationForm, ms => ms[ws])) - ? Json.Value(e.LexemeForm, ms => ms[ws]) - : Json.Value(e.CitationForm, ms => ms[ws]))!.Trim(); + (e, ws) => string.IsNullOrEmpty((Json.Value(e.CitationForm, ms => ms[ws]) ?? "").Trim()) + ? (Json.Value(e.LexemeForm, ms => ms[ws]) ?? "").Trim() + : (Json.Value(e.CitationForm, ms => ms[ws]) ?? "").Trim(); + + [ExpressionMethod(nameof(HeadwordWithTokensExpression))] + public static string HeadwordWithTokens(this Entry e, WritingSystemId ws, string? leading, string? trailing) + { + var citation = e.CitationForm[ws]?.Trim(); + if (!string.IsNullOrEmpty(citation)) return citation; + var lexeme = e.LexemeForm[ws]?.Trim(); + if (string.IsNullOrEmpty(lexeme)) return string.Empty; + return ((leading ?? "") + lexeme + (trailing ?? "")).Trim(); + } + + private static Expression> HeadwordWithTokensExpression() => + (e, ws, leading, trailing) => + string.IsNullOrEmpty((Json.Value(e.CitationForm, ms => ms[ws]) ?? "").Trim()) + ? string.IsNullOrEmpty((Json.Value(e.LexemeForm, ms => ms[ws]) ?? "").Trim()) + ? "" + : ((leading ?? "") + (Json.Value(e.LexemeForm, ms => ms[ws]) ?? "").Trim() + (trailing ?? "")).Trim() + : Json.Value(e.CitationForm, ms => ms[ws])!.Trim(); + + [ExpressionMethod(nameof(SearchHeadwords))] + public static bool SearchHeadwords(this Entry e, string? leading, string? trailing, string query) + { + return e.CitationForm.SearchValue(query) + || e.LexemeForm.Values.Any(kvp => + string.IsNullOrEmpty(e.CitationForm[kvp.Key]?.Trim()) && + SqlHelpers.ContainsIgnoreCaseAccents((leading ?? "") + (kvp.Value?.Trim() ?? "") + (trailing ?? ""), query)); + } + + private static Expression> SearchHeadwords() + { + return (e, leading, trailing, query) => + Json.QueryValues(e.CitationForm).Any( + v => SqlHelpers.ContainsIgnoreCaseAccents(v, query)) || + Json.QueryEntries(e.LexemeForm).Any(kv => + string.IsNullOrEmpty((Json.Value(e.CitationForm, ms => ms[kv.Key]) ?? "").Trim()) && + SqlHelpers.ContainsIgnoreCaseAccents((leading ?? "") + (kv.Value ?? "").Trim() + (trailing ?? ""), query)); + } + + + /// + /// Computes headwords for all writing systems present in CitationForm or LexemeForm, + /// applying morph tokens when CitationForm is absent. + /// Used for in-memory population of Entry.Headword after loading from DB. + /// + public static MultiString ComputeHeadwords(Entry entry, + IReadOnlyDictionary morphTypeLookup) + { + var result = new MultiString(); + morphTypeLookup.TryGetValue(entry.MorphType, out var morphData); + + // Iterate all WS keys that have data, not just "current" vernacular WSs, + // so we don't lose headwords for non-current or future writing systems. + var wsIds = entry.CitationForm.Values.Keys + .Union(entry.LexemeForm.Values.Keys); + + foreach (var wsId in wsIds) + { + var citation = entry.CitationForm[wsId]?.Trim(); + if (!string.IsNullOrEmpty(citation)) + { + result[wsId] = citation; + continue; + } + + var lexeme = entry.LexemeForm[wsId]?.Trim(); + if (!string.IsNullOrEmpty(lexeme)) + { + var leading = morphData?.Prefix ?? ""; + var trailing = morphData?.Postfix ?? ""; + result[wsId] = (leading + lexeme + trailing).Trim(); + } + } + + return result; + } } diff --git a/backend/FwLite/LcmCrdt/Data/Filtering.cs b/backend/FwLite/LcmCrdt/Data/Filtering.cs index d2fc9b45cd..638dc29742 100644 --- a/backend/FwLite/LcmCrdt/Data/Filtering.cs +++ b/backend/FwLite/LcmCrdt/Data/Filtering.cs @@ -15,11 +15,15 @@ public static IQueryable WhereExemplar( return query.Where(e => e.Headword(ws).StartsWith(exemplar)); } - public static Expression> SearchFilter(string query) + public static IQueryable SearchFilter(IQueryable entries, IQueryable morphTypes, string query) { - return e => e.LexemeForm.SearchValue(query) - || e.CitationForm.SearchValue(query) - || e.Senses.Any(s => s.Gloss.SearchValue(query)); + return from entry in entries + join mt in morphTypes on entry.MorphType equals mt.Kind into mtGroup + from mt in mtGroup.DefaultIfEmpty() + where entry.SearchHeadwords(mt.Prefix, mt.Postfix, query) // CitationForm.SearchValue would be redundant + || entry.LexemeForm.SearchValue(query) + || entry.Senses.Any(s => s.Gloss.SearchValue(query)) + select entry; } public static Expression> FtsFilter(string query, IQueryable diff --git a/backend/FwLite/LcmCrdt/Data/MiniLcmRepository.cs b/backend/FwLite/LcmCrdt/Data/MiniLcmRepository.cs index 47f2f1226f..c1a8cf690a 100644 --- a/backend/FwLite/LcmCrdt/Data/MiniLcmRepository.cs +++ b/backend/FwLite/LcmCrdt/Data/MiniLcmRepository.cs @@ -201,20 +201,24 @@ private async Task EnsureWritingSystemIsPopulated(QueryOptions que { if (SearchService is not null && SearchService.ValidSearchTerm(query)) { + var morphTypes = await dbContext.MorphTypes.ToArrayAsyncEF(); if (sortOptions is not null && sortOptions.Field == SortField.SearchRelevance) { //ranking must be done at the same time as part of the full-text search, so we can't use normal sorting sortingHandled = true; - queryable = SearchService.FilterAndRank(queryable, query, sortOptions.WritingSystem); + queryable = SearchService.FilterAndRank(queryable, query, sortOptions.WritingSystem, morphTypes); } else { - queryable = SearchService.Filter(queryable, query); + var filterWs = sortOptions?.WritingSystem + ?? (await GetWritingSystem(default, WritingSystemType.Vernacular))?.WsId + ?? default; + queryable = SearchService.Filter(queryable, query, filterWs, morphTypes); } } else { - queryable = queryable.Where(Filtering.SearchFilter(query)); + queryable = Filtering.SearchFilter(queryable, dbContext.GetTable(), query); } } @@ -226,12 +230,10 @@ private ValueTask> ApplySorting(IQueryable queryable, Q if (options.Order.WritingSystem == default) throw new ArgumentException("Sorting writing system must be specified", nameof(options)); - var wsId = options.Order.WritingSystem; - IQueryable result = options.Order.Field switch + var result = options.Order.Field switch { - SortField.SearchRelevance => queryable.ApplyRoughBestMatchOrder(options.Order, query), - SortField.Headword => - options.ApplyOrder(queryable, e => e.Headword(wsId).CollateUnicode(wsId)).ThenBy(e => e.Id), + SortField.SearchRelevance => queryable.ApplyRoughBestMatchOrder(dbContext.GetTable(), options.Order, query), + SortField.Headword => queryable.ApplyHeadwordOrder(dbContext.GetTable(), options.Order), _ => throw new ArgumentOutOfRangeException(nameof(options), "sort field unknown " + options.Order.Field) }; return new ValueTask>(result); diff --git a/backend/FwLite/LcmCrdt/Data/Sorting.cs b/backend/FwLite/LcmCrdt/Data/Sorting.cs index 957fd4b978..acb0690737 100644 --- a/backend/FwLite/LcmCrdt/Data/Sorting.cs +++ b/backend/FwLite/LcmCrdt/Data/Sorting.cs @@ -1,31 +1,77 @@ +using LinqToDB; + namespace LcmCrdt.Data; public static class Sorting { + public static IQueryable ApplyHeadwordOrder(this IQueryable entries, ITable morphTypes, SortOptions order, string? query = null) + { + var stemOrder = morphTypes.Where(m => m.Kind == MorphTypeKind.Stem).Select(m => m.SecondaryOrder); + if (order.Ascending) + { + return + from entry in entries + orderby + entry.Headword(order.WritingSystem).CollateUnicode(order.WritingSystem), + morphTypes.Where(m => m.Kind == entry.MorphType) + .Select(m => (int?)m.SecondaryOrder).FirstOrDefault() ?? stemOrder.FirstOrDefault(), + // entry.HomographNumber, + entry.Id + select entry; + } + else + { + return + from entry in entries + orderby + entry.Headword(order.WritingSystem).CollateUnicode(order.WritingSystem) descending, + (morphTypes.Where(m => m.Kind == entry.MorphType) + .Select(m => (int?)m.SecondaryOrder).FirstOrDefault() ?? stemOrder.FirstOrDefault()) descending, + // entry.HomographNumber descending, + entry.Id descending + select entry; + } + } + /// /// Rough search relevance for when FTS is unavailable. Headword matches come first, preferring /// prefix matches (e.g. when searching "tan" then "tanan" is before "matan"), then shorter, then alphabetical. /// See also: for the FTS-based equivalent. /// - public static IQueryable ApplyRoughBestMatchOrder(this IQueryable entries, SortOptions order, string? query = null) + public static IQueryable ApplyRoughBestMatchOrder(this IQueryable entries, ITable morphTypes, SortOptions order, string? query = null) { + var stemOrder = morphTypes.Where(m => m.Kind == MorphTypeKind.Stem).Select(m => m.SecondaryOrder); if (order.Ascending) { - return entries - .OrderByDescending(e => !string.IsNullOrEmpty(query) && SqlHelpers.ContainsIgnoreCaseAccents(e.Headword(order.WritingSystem), query!)) - .ThenByDescending(e => !string.IsNullOrEmpty(query) && SqlHelpers.StartsWithIgnoreCaseAccents(e.Headword(order.WritingSystem), query!)) - .ThenBy(e => e.Headword(order.WritingSystem).Length) - .ThenBy(e => e.Headword(order.WritingSystem)) - .ThenBy(e => e.Id); + return + from e in entries + join mt in morphTypes on e.MorphType equals mt.Kind into mtGroup + from mt in mtGroup.DefaultIfEmpty() + orderby + !string.IsNullOrEmpty(query) && SqlHelpers.StartsWithIgnoreCaseAccents(e.Headword(order.WritingSystem), query!) descending, + !string.IsNullOrEmpty(query) && SqlHelpers.ContainsIgnoreCaseAccents(e.Headword(order.WritingSystem), query!) descending, + e.Headword(order.WritingSystem).Length, + e.Headword(order.WritingSystem), + mt != null ? mt.SecondaryOrder : stemOrder.FirstOrDefault(), + // e.HomographNumber, + e.Id + select e; } else { - return entries - .OrderBy(e => !string.IsNullOrEmpty(query) && SqlHelpers.ContainsIgnoreCaseAccents(e.Headword(order.WritingSystem), query!)) - .ThenBy(e => !string.IsNullOrEmpty(query) && SqlHelpers.StartsWithIgnoreCaseAccents(e.Headword(order.WritingSystem), query!)) - .ThenByDescending(e => e.Headword(order.WritingSystem).Length) - .ThenByDescending(e => e.Headword(order.WritingSystem)) - .ThenByDescending(e => e.Id); + return + from e in entries + join mt in morphTypes on e.MorphType equals mt.Kind into mtGroup + from mt in mtGroup.DefaultIfEmpty() + orderby + !string.IsNullOrEmpty(query) && SqlHelpers.StartsWithIgnoreCaseAccents(e.Headword(order.WritingSystem), query!), + !string.IsNullOrEmpty(query) && SqlHelpers.ContainsIgnoreCaseAccents(e.Headword(order.WritingSystem), query!), + e.Headword(order.WritingSystem).Length descending, + e.Headword(order.WritingSystem) descending, + (mt != null ? mt.SecondaryOrder : stemOrder.FirstOrDefault()) descending, + // e.HomographNumber descending, + e.Id descending + select e; } } } diff --git a/backend/FwLite/LcmCrdt/FullTextSearch/EntrySearchService.cs b/backend/FwLite/LcmCrdt/FullTextSearch/EntrySearchService.cs index 64d5bdaa89..7a33e50f2c 100644 --- a/backend/FwLite/LcmCrdt/FullTextSearch/EntrySearchService.cs +++ b/backend/FwLite/LcmCrdt/FullTextSearch/EntrySearchService.cs @@ -29,9 +29,9 @@ public class EntrySearchService(LcmCrdtDbContext dbContext, ILogger EntrySearchRecordsTable => dbContext.GetTable(); - public IQueryable Filter(IQueryable queryable, string query) + public IQueryable Filter(IQueryable queryable, string query, WritingSystemId wsId, MorphType[] morphTypes) { - return FilterInternal(queryable, query).Select(t => t.Entry); + return FilterInternal(queryable, query, wsId, morphTypes).Select(t => t.Entry); } /// @@ -42,39 +42,89 @@ public IQueryable Filter(IQueryable queryable, string query) /// public IQueryable FilterAndRank(IQueryable queryable, string query, - WritingSystemId wsId) + WritingSystemId wsId, + MorphType[] morphTypes) { - var filtered = FilterInternal(queryable, query); + var morphTypeTable = dbContext.GetTable(); + var filtered = FilterInternal(queryable, query, wsId, morphTypes); var ordered = filtered - .OrderByDescending(t => t.HeadwordMatches) + .OrderBy(t => t.HeadwordMatches ? double.MinValue : Sql.Ext.SQLite().Rank(t.SearchRecord)) .ThenByDescending(t => t.HeadwordPrefixMatches) - .ThenBy(t => t.HeadwordMatches ? t.SearchRecord.Headword.Length : int.MaxValue) - .ThenBy(t => - t.HeadwordMatches - ? t.SearchRecord.Headword.CollateUnicode(wsId) - : string.Empty) - .ThenBy(t => Sql.Ext.SQLite().Rank(t.SearchRecord)).ThenBy(t => t.Entry.Id); + .ThenBy(t => t.Headword.Length) + .ThenBy(t => t.Headword.CollateUnicode(wsId)) + .ThenBy(t => t.HeadwordMatches + ? morphTypeTable.Where(mt => mt.Kind == t.Entry.MorphType || mt.Kind == MorphTypeKind.Stem) + .OrderBy(mt => mt.Kind == MorphTypeKind.Stem ? 1 : 0) // stem is the fallback, so it should come last + .Select(mt => mt.SecondaryOrder).FirstOrDefault() + : int.MaxValue) + // .ThenBy(t => t.Entry.HomographNumber) + .ThenBy(t => t.Entry.Id); return ordered.Select(t => t.Entry); } - private sealed record FilterProjection(Entry Entry, EntrySearchRecord SearchRecord, bool HeadwordMatches, bool HeadwordPrefixMatches); + private sealed record FilterProjection(Entry Entry, EntrySearchRecord SearchRecord, string Headword, bool HeadwordMatches, bool HeadwordPrefixMatches); - private IQueryable FilterInternal(IQueryable queryable, string query) + private IQueryable FilterInternal(IQueryable queryable, string query, WritingSystemId wsId, MorphType[] morphTypes) { var ftsString = ToFts5LiteralString(query); + var queryWithoutMorphTokens = StripMorphTokens(query, morphTypes); - //starting from EntrySearchRecordsTable rather than queryable otherwise linq2db loses track of the table return from searchRecord in EntrySearchRecordsTable from entry in queryable.InnerJoin(r => r.Id == searchRecord.Id) where Sql.Ext.SQLite().Match(searchRecord, ftsString) && - (entry.LexemeForm.SearchValue(query) + (entry.LexemeForm.SearchValue(queryWithoutMorphTokens) || entry.CitationForm.SearchValue(query) - || entry.Senses.Any(s => s.Gloss.SearchValue(query))) - let headwordMatches = SqlHelpers.ContainsIgnoreCaseAccents(searchRecord.Headword, query) - let headwordPrefixMatches = SqlHelpers.StartsWithIgnoreCaseAccents(searchRecord.Headword, query) - select new FilterProjection(entry, searchRecord, headwordMatches, headwordPrefixMatches); + || entry.Senses.Any(s => s.Gloss.SearchValue(query)) + || SqlHelpers.ContainsIgnoreCaseAccents(entry.Headword(wsId), query)) + // this does not include morph tokens, which is actually what we want. Morph-tokens should not affect sorting. + // If the user uses a citation form with morph tokens, then oh well. Not even FLEx strips the morph-tokens before sorting in that case. + let headword = entry.Headword(wsId) + let headwordQuery = string.IsNullOrEmpty((Json.Value(entry.CitationForm, ms => ms[wsId]) ?? "").Trim()) + ? queryWithoutMorphTokens : query + let headwordMatches = SqlHelpers.ContainsIgnoreCaseAccents(headword, headwordQuery) + let headwordPrefixMatches = SqlHelpers.StartsWithIgnoreCaseAccents(headword, headwordQuery) + select new FilterProjection(entry, searchRecord, headword, headwordMatches, headwordPrefixMatches); + } + + private static string StripMorphTokens(string input, MorphType[] morphTypes) + { + if (string.IsNullOrEmpty(input)) return input; + + var bestMatchScore = 0; + MorphType? bestMorphTypeMatch = null; + + foreach (var morphType in morphTypes) + { + var currMatchScore = 0; + var matchesPrefix = !string.IsNullOrWhiteSpace(morphType.Prefix) && input.StartsWith(morphType.Prefix); + var matchesPostfix = !string.IsNullOrWhiteSpace(morphType.Postfix) && input.EndsWith(morphType.Postfix) + && (!matchesPrefix || input.Length >= morphType.Prefix!.Length + morphType.Postfix.Length); + + if (matchesPrefix) + currMatchScore += 2; // prefer leading tokens + if (matchesPostfix) + currMatchScore += 1; + + if (currMatchScore > bestMatchScore) + { + bestMorphTypeMatch = morphType; + bestMatchScore = currMatchScore; + } + } + + if (bestMorphTypeMatch is not null) + { + var result = input; + if (!string.IsNullOrWhiteSpace(bestMorphTypeMatch.Prefix) && result.StartsWith(bestMorphTypeMatch.Prefix)) + result = result[bestMorphTypeMatch.Prefix.Length..]; + if (!string.IsNullOrWhiteSpace(bestMorphTypeMatch.Postfix) && result.EndsWith(bestMorphTypeMatch.Postfix)) + result = result[..^bestMorphTypeMatch.Postfix.Length]; + return result; + } + + return input; } private static string ToFts5LiteralString(string query) @@ -166,7 +216,8 @@ public async Task UpdateEntrySearchTable(Guid entryId) public async Task UpdateEntrySearchTable(Entry entry) { var writingSystems = await dbContext.WritingSystemsOrdered.ToArrayAsync(); - var record = ToEntrySearchRecord(entry, writingSystems); + var morphTypeLookup = await dbContext.MorphTypes.ToDictionaryAsync(m => m.Kind); + var record = ToEntrySearchRecord(entry, writingSystems, morphTypeLookup); await InsertOrUpdateEntrySearchRecord(record, EntrySearchRecordsTable); } @@ -214,7 +265,8 @@ public static async Task UpdateEntrySearchTable(IEnumerable entries, return ws1.Id.CompareTo(ws2.Id); }); var entrySearchRecordsTable = dbContext.GetTable(); - var searchRecords = entries.Select(entry => ToEntrySearchRecord(entry, writingSystems)); + var morphTypeLookup = await dbContext.MorphTypes.ToDictionaryAsync(m => m.Kind); + var searchRecords = entries.Select(entry => ToEntrySearchRecord(entry, writingSystems, morphTypeLookup)); foreach (var entrySearchRecord in searchRecords) { //can't use bulk copy here because that creates duplicate rows @@ -232,11 +284,12 @@ public async Task RegenerateEntrySearchTable() await EntrySearchRecordsTable.TruncateAsync(); var writingSystems = await dbContext.WritingSystemsOrdered.ToArrayAsync(); + var morphTypeLookup = await dbContext.MorphTypes.ToDictionaryAsync(m => m.Kind); await EntrySearchRecordsTable .BulkCopyAsync(dbContext.Set() .LoadWith(e => e.Senses) .AsQueryable() - .Select(entry => ToEntrySearchRecord(entry, writingSystems)) + .Select(entry => ToEntrySearchRecord(entry, writingSystems, morphTypeLookup)) .AsAsyncEnumerable()); await transaction.CommitAsync(); } @@ -256,12 +309,21 @@ private async Task HasMissingEntries() return await EntrySearchRecordsTable.CountAsync() != await dbContext.Set().CountAsync(); } - private static EntrySearchRecord ToEntrySearchRecord(Entry entry, WritingSystem[] writingSystems) + private static EntrySearchRecord ToEntrySearchRecord(Entry entry, WritingSystem[] writingSystems, + IReadOnlyDictionary morphTypeLookup) { + // Include headwords (with morph tokens) for ALL vernacular writing systems (space-separated). + // This ensures FTS matches across all WS, including morph-token-decorated forms. + var headwords = EntryQueryHelpers.ComputeHeadwords(entry, morphTypeLookup); + var headword = string.Join(" ", + writingSystems.Where(ws => ws.Type == WritingSystemType.Vernacular) + .Select(ws => headwords[ws.WsId]) + .Where(h => !string.IsNullOrEmpty(h))); + return new EntrySearchRecord() { Id = entry.Id, - Headword = entry.Headword(writingSystems.First(ws => ws.Type == WritingSystemType.Vernacular).WsId), + Headword = headword, LexemeForm = LexemeForm(writingSystems, entry), CitationForm = CitationForm(writingSystems, entry), Definition = Definition(writingSystems, entry), diff --git a/backend/FwLite/LcmCrdt/Json.cs b/backend/FwLite/LcmCrdt/Json.cs index ad9bebf943..71dfe76294 100644 --- a/backend/FwLite/LcmCrdt/Json.cs +++ b/backend/FwLite/LcmCrdt/Json.cs @@ -164,6 +164,15 @@ private static Expression>> QueryExpression return (values) => values.QueryInternal().Select(v => v.Value); } + [ExpressionMethod(nameof(QueryEntriesExpressionMultiString))] + internal static IQueryable> QueryEntries(MultiString values) + { + return values.Values.Select(kv => new JsonEach(kv.Value, kv.Key.Code, "", 0, "", "")).AsQueryable(); + } + + private static Expression>>> QueryEntriesExpressionMultiString() => + (values) => values.QueryInternal(); + //indicates that linq2db should rewrite Sense.SemanticDomains.Query(d => d.Code) //into code in QueryExpression: Sense.SemanticDomains.QueryInternal().Select(v => Sql.Value(v.Value, d => d.Code)) [ExpressionMethod(nameof(QuerySelectExpression))] @@ -204,7 +213,7 @@ public static string ToString(Guid? guid) } //maps to a row from json_each - private record JsonEach( + internal record JsonEach( [property: Column("value")] T Value, [property: Column("key")] string Key, [property: Column("type")] string Type, diff --git a/backend/FwLite/LcmCrdt/QueryHelpers.cs b/backend/FwLite/LcmCrdt/QueryHelpers.cs index 57753f4f31..37e151c271 100644 --- a/backend/FwLite/LcmCrdt/QueryHelpers.cs +++ b/backend/FwLite/LcmCrdt/QueryHelpers.cs @@ -4,7 +4,8 @@ namespace LcmCrdt; public static class QueryHelpers { - public static void Finalize(this Entry entry, IComparer complexFormComparer) + public static void Finalize(this Entry entry, + IComparer complexFormComparer) { entry.Senses.ApplySortOrder(); entry.Components.ApplySortOrder(); diff --git a/backend/FwLite/LcmCrdt/SqlHelpers.cs b/backend/FwLite/LcmCrdt/SqlHelpers.cs index d14a6b1876..4b2d4fe0d5 100644 --- a/backend/FwLite/LcmCrdt/SqlHelpers.cs +++ b/backend/FwLite/LcmCrdt/SqlHelpers.cs @@ -36,4 +36,7 @@ private static Expression> SearchValueExpression [Sql.Expression(CustomSqliteFunctionInterceptor.StartsWithFunction + "({0}, {1})")] public static bool StartsWithIgnoreCaseAccents(string s, string search) => s.StartsWithDiacriticMatch(search); + + [Sql.Expression("({0} || {1} || {2})", PreferServerSide = true)] + public static string ConcatTokens(string leading, string value, string trailing) => leading + value + trailing; } diff --git a/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs b/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs index 801235e33a..a8a63488fa 100644 --- a/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs +++ b/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs @@ -388,25 +388,25 @@ public async Task CanFilterToExampleSentenceWithMissingSentence() [Theory] [InlineData("a", "a", true)] - [InlineData("a", "A", false)] - [InlineData("A", "Ã", false)] - [InlineData("ap", "apple", false)] - [InlineData("ap", "APPLE", false)] - [InlineData("ing", "walking", false)] - [InlineData("ing", "WALKING", false)] - [InlineData("Ãp", "Ãpple", false)] - [InlineData("Ãp", "ãpple", false)] - [InlineData("ap", "Ãpple", false)] - [InlineData("app", "Ãpple", false)]//crdt fts only kicks in at 3 chars - [InlineData("й", "й", false)] // D, C - [InlineData("й", "й", false)] // C, D + [InlineData("a", "A")] + [InlineData("A", "Ã")] + [InlineData("ap", "apple")] + [InlineData("ap", "APPLE")] + [InlineData("ing", "walking")] + [InlineData("ing", "WALKING")] + [InlineData("Ãp", "Ãpple")] + [InlineData("Ãp", "ãpple")] + [InlineData("ap", "Ãpple")] + [InlineData("app", "Ãpple")]//crdt fts only kicks in at 3 chars + [InlineData("й", "й")] // D, C + [InlineData("й", "й")] // C, D [InlineData("й", "й", true)] // C, C [InlineData("й", "й", true)] // D, D - [InlineData("ймыл", "ймыл", false)] // D, C - [InlineData("ймыл", "ймыл", false)] // C, D + [InlineData("ймыл", "ймыл")] // D, C + [InlineData("ймыл", "ймыл")] // C, D [InlineData("ймыл", "ймыл", true)] // C, C [InlineData("ймыл", "ймыл", true)] // D, D - public async Task SuccessfulMatches(string searchTerm, string word, bool identical) + public async Task SuccessfulMatches(string searchTerm, string word, bool identical = false) { // identical is to make the test cases more readable when they only differ in their normalization (searchTerm == word).Should().Be(identical); @@ -515,6 +515,135 @@ public async Task PunctuationWorks(string searchTerm, string word) var results = await Api.SearchEntries(searchTerm).Select(e => e.LexemeForm["en"]).ToArrayAsync(); results.Should().Contain(word); } + + // This test guards against the mistake of only matching on headword + [Theory] + [InlineData("mango")] // FTS + [InlineData("m")] // non-FTS + public async Task SearchEntries_MatchesLexeme(string searchTerm) + { + var prefixQuery = $"{searchTerm}-"; + await Api.CreateMorphType(new MorphType + { + Id = Guid.NewGuid(), + Kind = MorphTypeKind.Prefix, + Name = { ["en"] = "Prefix" }, + Postfix = "-", + SecondaryOrder = 3 + }); + var lexemeOnlyMatchEntry = await Api.CreateEntry(new Entry + { + LexemeForm = { ["en"] = "mango" }, + CitationForm = { ["en"] = "zzzzzzzz" }, + MorphType = MorphTypeKind.Stem, + }); + var lexemeOnlyMatchWithMorphToken = await Api.CreateEntry(new Entry + { + LexemeForm = { ["en"] = "mango" }, + CitationForm = { ["en"] = "zzzzzzzz" }, + MorphType = MorphTypeKind.Prefix, + }); + var entries = await Api.SearchEntries(searchTerm).ToArrayAsync(); + entries.Should().Contain(e => e.Id == lexemeOnlyMatchEntry.Id); + entries.Should().Contain(e => e.Id == lexemeOnlyMatchWithMorphToken.Id); + } + + [Theory] + [InlineData("mango-")] // FTS + [InlineData("o-")] // non-FTS + public async Task SearchEntries_CitationFormOverridesMorphTokens(string searchTerm) + { + var prefixQuery = $"{searchTerm}-"; + await Api.CreateMorphType(new MorphType + { + Id = Guid.NewGuid(), + Kind = MorphTypeKind.Prefix, + Name = { ["en"] = "Prefix" }, + Postfix = "-", + SecondaryOrder = 3 + }); + var entryWithOverriddenMorphToken = await Api.CreateEntry(new Entry + { + LexemeForm = { ["en"] = "mango" }, + // citation form overrides "mango-" + CitationForm = { ["en"] = "zzzzzzzz" }, + MorphType = MorphTypeKind.Prefix, + }); + var entries = await Api.SearchEntries(searchTerm).ToArrayAsync(); + entries.Should().NotContain(e => e.Id == entryWithOverriddenMorphToken.Id); + } + + [Theory] + [InlineData("mango-")] // FTS + [InlineData("o-")] // non-FTS + public async Task MorphTokenSearch_FindsPrefixEntry(string searchTerm) + { + await Api.CreateMorphType(new MorphType + { + Id = Guid.NewGuid(), + Kind = MorphTypeKind.Prefix, + Name = { ["en"] = "Prefix" }, + Postfix = "-", + SecondaryOrder = 3 + }); + var id = Guid.NewGuid(); + await Api.CreateEntry(new Entry { Id = id, LexemeForm = { ["en"] = "mango" }, MorphType = MorphTypeKind.Prefix }); + + var results = await Api.SearchEntries(searchTerm).ToArrayAsync(); + results.Should().Contain(e => e.Id == id); + } + + [Theory] + [InlineData("-mango")] // FTS + [InlineData("-m")] // non-FTS + public async Task MorphTokenSearch_FindsSuffixEntry(string searchTerm) + { + await Api.CreateMorphType(new MorphType + { + Id = Guid.NewGuid(), + Kind = MorphTypeKind.Suffix, + Name = { ["en"] = "Suffix" }, + Prefix = "-", + SecondaryOrder = 6 + }); + var id = Guid.NewGuid(); + await Api.CreateEntry(new Entry { Id = id, LexemeForm = { ["en"] = "mango" }, MorphType = MorphTypeKind.Suffix }); + + var results = await Api.SearchEntries(searchTerm).ToArrayAsync(); + results.Should().Contain(e => e.Id == id); + } + + [Fact] + public async Task MorphTokenSearch_DoesNotMatchWithoutToken() + { + await Api.CreateMorphType(new MorphType + { + Id = Guid.NewGuid(), + Kind = MorphTypeKind.Prefix, + Name = { ["en"] = "Prefix" }, + Postfix = "-", + SecondaryOrder = 3 + }); + await Api.CreateEntry(new Entry { LexemeForm = { ["en"] = "mango" }, MorphType = MorphTypeKind.Root }); + + // Searching for "-mango" should NOT match a Root entry (no morph tokens) + var results = await Api.SearchEntries("mango-").Select(e => e.LexemeForm["en"]).ToArrayAsync(); + results.Should().NotContain("mango"); + } + + [Theory] + [InlineData("mango", SortField.Headword)] // FTS + [InlineData("m", SortField.Headword)] // non-FTS + [InlineData("mango", SortField.SearchRelevance)] // FTS + [InlineData("m", SortField.SearchRelevance)] // non-FTS + public async Task SearchEntries_EntryWithNoMorphType_Works(string searchTerm, SortField sortField) + { + // MorphType.Unknown will likely not be included in the morph-type DB-table + var id = Guid.NewGuid(); + await Api.CreateEntry(new Entry { Id = id, LexemeForm = { ["en"] = "mango" }, MorphType = MorphTypeKind.Unknown }); + var results = await Api.SearchEntries(searchTerm, new(new(sortField))).ToArrayAsync(); + results.Should().Contain(e => e.Id == id); + } } // A seperate class to preserve the readability of the results in the main test class diff --git a/backend/FwLite/MiniLcm.Tests/SortingTestsBase.cs b/backend/FwLite/MiniLcm.Tests/SortingTestsBase.cs index 262d6b7ea4..a815324133 100644 --- a/backend/FwLite/MiniLcm.Tests/SortingTestsBase.cs +++ b/backend/FwLite/MiniLcm.Tests/SortingTestsBase.cs @@ -1,19 +1,24 @@ +using MiniLcm.Tests.AutoFakerHelpers; +using Soenneker.Utils.AutoBogus; + namespace MiniLcm.Tests; public abstract class SortingTestsBase : MiniLcmTestBase { + protected static readonly AutoFaker Faker = new(AutoFakerDefault.Config); + private Task CreateEntry(string headword) { return Api.CreateEntry(new() { LexemeForm = { { "en", headword } }, }); } // ReSharper disable InconsistentNaming - const string Ru_A= "\u0410"; - const string Ru_a = "\u0430"; - const string Ru_Б= "\u0411"; - const string Ru_б = "\u0431"; - const string Ru_В= "\u0412"; - const string Ru_в = "\u0432"; + private const string Ru_A = "\u0410"; + private const string Ru_a = "\u0430"; + private const string Ru_Б = "\u0411"; + private const string Ru_б = "\u0431"; + private const string Ru_В = "\u0412"; + private const string Ru_в = "\u0432"; // ReSharper restore InconsistentNaming [Theory] @@ -49,4 +54,270 @@ await Api.CreateWritingSystem(new() await Api.GetEntries(new QueryOptions(new SortOptions(SortField.Headword, wsId))) .ToArrayAsync(); } + + [Theory] + [InlineData("aaaa", SortField.Headword)] // FTS + [InlineData("a", SortField.Headword)] // non-FTS + [InlineData("aaaa", SortField.SearchRelevance)] // FTS + [InlineData("a", SortField.SearchRelevance)] // non-FTS + public async Task MorphTokens_DoNotAffectSortOrder(string query, SortField sortField) + { + MorphType[] morphTypes = [ + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Root, Name = { ["en"] = "Root" }, SecondaryOrder = 1 }, + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Prefix, Name = { ["en"] = "Prefix" }, Prefix = "-", SecondaryOrder = 3 }, + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Suffix, Name = { ["en"] = "Suffix" }, Postfix = "-", SecondaryOrder = 6 }, + ]; + + foreach (var morphType in morphTypes) + await Api.CreateMorphType(morphType); + + // All three entries have LexemeForm "aaaa". Their headwords are: + // Root: "aaaa" (no tokens) + // Prefix: "-aaaa" (leading token "-") + // Suffix: "aaaa-" (trailing token "-") + // Sort order should ignore morph tokens and differentiate only by SecondaryOrder. + Entry[] expected = [ + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Root }, // SecondaryOrder = 1 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Prefix }, // SecondaryOrder = 3 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Suffix }, // SecondaryOrder = 6 + ]; + + var ids = expected.Select(e => e.Id).ToHashSet(); + + foreach (var entry in Faker.Faker.Random.Shuffle(expected)) + await Api.CreateEntry(entry); + + var results = (await Api.SearchEntries(query, new(new(sortField))).ToArrayAsync()) + .Where(e => ids.Contains(e.Id)) + .ToList(); + + results.Should().BeEquivalentTo(expected, + options => options.WithStrictOrdering()); + } + + [Theory] + [InlineData("aaaa")] // FTS rank + [InlineData("a")] // non-FTS rank + public async Task SecondaryOrder_Relevance_LexemeForm(string searchTerm) + { + MorphType[] morphTypes = [ + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Root, Name = { ["en"] = "Root" }, SecondaryOrder = 1 }, + // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 }, + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundRoot, Name = { ["en"] = "BoundRoot" }, SecondaryOrder = 2 }, + // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundStem, Name = { ["en"] = "BoundStem" }, SecondaryOrder = 2 }, + ]; + + foreach (var morphType in morphTypes) + await Api.CreateMorphType(morphType); + + static Entry[] CreateSortedEntrySet(string headword) + { + return [ + // Root/Stem - SecondaryOrder: 1 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = headword }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = lexeme }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, + // BoundRoot/BoundStem - SecondaryOrder: 2 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = headword }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = lexeme }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, + ]; + } + + var exactMatches = CreateSortedEntrySet("aaaa"); + var firstShortestStartsWithMatches = CreateSortedEntrySet("aaaab"); + var lastShortestStartsWithMatches = CreateSortedEntrySet("aaaac"); + var firstLongestStartsWithMatches = CreateSortedEntrySet("aaaabb"); + var lastLongestStartsWithMatches = CreateSortedEntrySet("aaaacc"); + var firstShortestContainsMatches = CreateSortedEntrySet("baaaa"); + var lastShortestContainsMatches = CreateSortedEntrySet("caaaa"); + var firstLongestContainsMatches = CreateSortedEntrySet("bbaaaa"); + var lastLongestContainsMatches = CreateSortedEntrySet("ccaaaa"); + + var entryId = Guid.NewGuid(); + Entry nonHeadwordMatch = new() { Id = entryId, Senses = [new() { EntryId = entryId, Gloss = { ["en"] = "aaaa" } }] }; + + Entry[] expected = [ + .. exactMatches, + .. firstShortestStartsWithMatches, + .. lastShortestStartsWithMatches, + .. firstLongestStartsWithMatches, + .. lastLongestStartsWithMatches, + .. firstShortestContainsMatches, + .. lastShortestContainsMatches, + .. firstLongestContainsMatches, + .. lastLongestContainsMatches, + nonHeadwordMatch, + ]; + + var ids = expected.Select(e => e.Id).ToHashSet(); + + foreach (var entry in Faker.Faker.Random.Shuffle(expected)) + await Api.CreateEntry(entry); + + var results = (await Api.SearchEntries(searchTerm, new(new(SortField.SearchRelevance))).ToArrayAsync()) + .Where(e => ids.Contains(e.Id)) + .ToList(); + + results.Should().BeEquivalentTo(expected, + options => options); + results.Should().BeEquivalentTo(expected, + options => options.WithStrictOrdering()); + } + + [Theory] + [InlineData("aaaa")] // FTS rank + [InlineData("a")] // non-FTS rank + public async Task SecondaryOrder_Relevance_CitationForm(string searchTerm) + { + MorphType[] morphTypes = [ + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Root, Name = { ["en"] = "Root" }, SecondaryOrder = 1 }, + // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 }, + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundRoot, Name = { ["en"] = "BoundRoot" }, SecondaryOrder = 2 }, + // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundStem, Name = { ["en"] = "BoundStem" }, SecondaryOrder = 2 }, + ]; + + foreach (var morphType in morphTypes) + await Api.CreateMorphType(morphType); + + static Entry[] CreateSortedEntrySet(string headword) + { + return [ + // Root/Stem - SecondaryOrder: 1 + new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = headword }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = headword }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, + // BoundRoot/BoundStem - SecondaryOrder: 2 + new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = headword }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = headword }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, + ]; + } + + var exactMatches = CreateSortedEntrySet("aaaa"); + var firstShortestStartsWithMatches = CreateSortedEntrySet("aaaab"); + var lastShortestStartsWithMatches = CreateSortedEntrySet("aaaac"); + var firstLongestStartsWithMatches = CreateSortedEntrySet("aaaabb"); + var lastLongestStartsWithMatches = CreateSortedEntrySet("aaaacc"); + var firstShortestContainsMatches = CreateSortedEntrySet("baaaa"); + var lastShortestContainsMatches = CreateSortedEntrySet("caaaa"); + var firstLongestContainsMatches = CreateSortedEntrySet("bbaaaa"); + var lastLongestContainsMatches = CreateSortedEntrySet("ccaaaa"); + + var entryId = Guid.NewGuid(); + Entry nonHeadwordMatch = new() { Id = entryId, Senses = [new() { EntryId = entryId, Gloss = { ["en"] = "aaaa" } }] }; + + Entry[] expected = [ + .. exactMatches, + .. firstShortestStartsWithMatches, + .. lastShortestStartsWithMatches, + .. firstLongestStartsWithMatches, + .. lastLongestStartsWithMatches, + .. firstShortestContainsMatches, + .. lastShortestContainsMatches, + .. firstLongestContainsMatches, + .. lastLongestContainsMatches, + nonHeadwordMatch, + ]; + + var ids = expected.Select(e => e.Id).ToHashSet(); + + foreach (var entry in Faker.Faker.Random.Shuffle(expected)) + await Api.CreateEntry(entry); + + var results = (await Api.SearchEntries(searchTerm, new(new(SortField.SearchRelevance))).ToArrayAsync()) + .Where(e => ids.Contains(e.Id)) + .ToList(); + + results.Should().BeEquivalentTo(expected, + options => options); + results.Should().BeEquivalentTo(expected, + options => options.WithStrictOrdering()); + } + + [Theory] + [InlineData("baaa")] // FTS rank + [InlineData("b")] // non-FTS rank + public async Task SecondaryOrder_Headword_LexemeForm(string searchTerm) + { + MorphType[] morphTypes = [ + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Root, Name = { ["en"] = "Root" }, SecondaryOrder = 1 }, + // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 }, + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundRoot, Name = { ["en"] = "BoundRoot" }, SecondaryOrder = 2 }, + // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundStem, Name = { ["en"] = "BoundStem" }, SecondaryOrder = 2 }, + ]; + + foreach (var morphType in morphTypes) + await Api.CreateMorphType(morphType); + + Entry[] expected = [ + // Root/Stem - SecondaryOrder: 1 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "abaaa" }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "abaaa" }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, + // BoundRoot/BoundStem - SecondaryOrder: 2 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "abaaa" }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "abaaa" }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, + // Root/Stem - SecondaryOrder: 1 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "baaa" }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "baaa" }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, + // BoundRoot/BoundStem - SecondaryOrder: 2 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "baaa" }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "baaa" }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, + ]; + + var ids = expected.Select(e => e.Id).ToHashSet(); + + foreach (var entry in Faker.Faker.Random.Shuffle(expected)) + await Api.CreateEntry(entry); + + var results = (await Api.SearchEntries(searchTerm, new(new(SortField.Headword))).ToArrayAsync()) + .Where(e => ids.Contains(e.Id)) + .ToList(); + + results.Should().BeEquivalentTo(expected, + options => options); + results.Should().BeEquivalentTo(expected, + options => options.WithStrictOrdering()); + } + + [Theory] + [InlineData("baaa")] // FTS rank + [InlineData("b")] // non-FTS rank + public async Task SecondaryOrder_Headword_CitationForm(string searchTerm) + { + MorphType[] morphTypes = [ + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Root, Name = { ["en"] = "Root" }, SecondaryOrder = 1 }, + // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 }, + new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundRoot, Name = { ["en"] = "BoundRoot" }, SecondaryOrder = 2 }, + // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundStem, Name = { ["en"] = "BoundStem" }, SecondaryOrder = 2 }, + ]; + + foreach (var morphType in morphTypes) + await Api.CreateMorphType(morphType); + + Entry[] expected = [ + // Root/Stem - SecondaryOrder: 1 + new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "abaaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "abaaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, + // BoundRoot/BoundStem - SecondaryOrder: 2 + new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "abaaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "abaaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, + // Root/Stem - SecondaryOrder: 1 + new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "baaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "baaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, + // BoundRoot/BoundStem - SecondaryOrder: 2 + new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "baaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "baaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, + ]; + + var ids = expected.Select(e => e.Id).ToHashSet(); + + foreach (var entry in Faker.Faker.Random.Shuffle(expected)) + await Api.CreateEntry(entry); + + var results = (await Api.SearchEntries(searchTerm, new(new(SortField.Headword))).ToArrayAsync()) + .Where(e => ids.Contains(e.Id)) + .ToList(); + + results.Should().BeEquivalentTo(expected, + options => options); + results.Should().BeEquivalentTo(expected, + options => options.WithStrictOrdering()); + } } diff --git a/backend/FwLite/MiniLcm/Models/Entry.cs b/backend/FwLite/MiniLcm/Models/Entry.cs index 575200aac8..550080e628 100644 --- a/backend/FwLite/MiniLcm/Models/Entry.cs +++ b/backend/FwLite/MiniLcm/Models/Entry.cs @@ -35,10 +35,11 @@ public string Headword() { //order by code to ensure the headword is stable //todo choose ws by preference based on ws order/default + //todo this does not apply morph tokens — see #1284 //https://github.com/sillsdev/languageforge-lexbox/issues/1284 - var word = CitationForm.Values.OrderBy(kvp => kvp.Key.Code).FirstOrDefault().Value; - if (string.IsNullOrEmpty(word)) word = LexemeForm.Values.OrderBy(kvp => kvp.Key.Code).FirstOrDefault().Value; - return word?.Trim() ?? UnknownHeadword; + var word = CitationForm.Values.OrderBy(kvp => kvp.Key.Code).FirstOrDefault().Value?.Trim(); + if (string.IsNullOrEmpty(word)) word = LexemeForm.Values.OrderBy(kvp => kvp.Key.Code).FirstOrDefault().Value?.Trim(); + return string.IsNullOrEmpty(word) ? UnknownHeadword : word; } public Entry Copy() diff --git a/backend/FwLite/MiniLcm/Models/MorphType.cs b/backend/FwLite/MiniLcm/Models/MorphType.cs index d241a35ff5..281e62c96e 100644 --- a/backend/FwLite/MiniLcm/Models/MorphType.cs +++ b/backend/FwLite/MiniLcm/Models/MorphType.cs @@ -30,7 +30,7 @@ public enum MorphTypeKind public class MorphType : IObjectWithId { public virtual Guid Id { get; set; } - public virtual MorphTypeKind Kind { get; set; } + public virtual required MorphTypeKind Kind { get; set; } public virtual MultiString Name { get; set; } = []; public virtual MultiString Abbreviation { get; set; } = []; public virtual RichMultiString Description { get; set; } = []; diff --git a/frontend/viewer/src/stories/editor/entity-primitives/entry-editor-primitive.stories.svelte b/frontend/viewer/src/stories/editor/entity-primitives/entry-editor-primitive.stories.svelte index e2ce2f2113..4f2b4e4f37 100644 --- a/frontend/viewer/src/stories/editor/entity-primitives/entry-editor-primitive.stories.svelte +++ b/frontend/viewer/src/stories/editor/entity-primitives/entry-editor-primitive.stories.svelte @@ -9,6 +9,9 @@ let entry: IEntry = $state({ id: '36b8f84d-df4e-4d49-b662-bcde71a8764f', + headword: { + 'seh': 'Citation form', + }, lexemeForm: { 'seh': 'Lexeme form', }, From ec450bd5134e386c42ab9de695e34a0f61b2129d Mon Sep 17 00:00:00 2001 From: Robin Munn Date: Mon, 30 Mar 2026 11:17:19 +0700 Subject: [PATCH 3/6] Display morph type tokens in UI (#2205) * Initial work on morph types in UI Morph types now show leading/trailing tokens in headword, but do not yet have a dropdown for editing them in the entry UI. * Citation forms should not be decorated Lexeme forms should be decorated with prefix/postfix tokens according to the morph type, but citation forms are meant as "overrides" and should be reproduced exactly as-is, without morph type tokens. This is the rule used by FLEx for how it displays words, so FW Lite should do the same. As a bonus, there is now only one `headword` function in the writing system service, instead of two functions with the same name that did two slightly different things. * Fix tests --------- Co-authored-by: Tim Haasdyk --- .../Services/MiniLcmJsInvokable.cs | 6 ++ .../Services/IMiniLcmJsInvokable.ts | 2 + frontend/viewer/src/lib/dotnet-types/index.ts | 1 + .../src/project/data/morph-types.svelte.ts | 60 ++++++++++++++++ .../data/writing-system-service.svelte.ts | 21 +++--- .../src/project/demo/demo-entry-data.ts | 31 +++++++- .../src/project/demo/in-memory-demo-api.ts | 71 +++++++++++++------ frontend/viewer/tests/entries-list.test.ts | 4 +- 8 files changed, 164 insertions(+), 32 deletions(-) create mode 100644 frontend/viewer/src/project/data/morph-types.svelte.ts diff --git a/backend/FwLite/FwLiteShared/Services/MiniLcmJsInvokable.cs b/backend/FwLite/FwLiteShared/Services/MiniLcmJsInvokable.cs index 651cd0ee9b..10f58081ba 100644 --- a/backend/FwLite/FwLiteShared/Services/MiniLcmJsInvokable.cs +++ b/backend/FwLite/FwLiteShared/Services/MiniLcmJsInvokable.cs @@ -102,6 +102,12 @@ public ValueTask GetCustomViews() return _wrappedApi.GetComplexFormType(id); } + [JSInvokable] + public ValueTask GetMorphTypes() + { + return _wrappedApi.GetMorphTypes().ToArrayAsync(); + } + [JSInvokable] public Task CountEntries(string? query, FilterQueryOptions? options) { diff --git a/frontend/viewer/src/lib/dotnet-types/generated-types/FwLiteShared/Services/IMiniLcmJsInvokable.ts b/frontend/viewer/src/lib/dotnet-types/generated-types/FwLiteShared/Services/IMiniLcmJsInvokable.ts index da19ffcdec..e49d7388b0 100644 --- a/frontend/viewer/src/lib/dotnet-types/generated-types/FwLiteShared/Services/IMiniLcmJsInvokable.ts +++ b/frontend/viewer/src/lib/dotnet-types/generated-types/FwLiteShared/Services/IMiniLcmJsInvokable.ts @@ -10,6 +10,7 @@ import type {IPublication} from '../../MiniLcm/Models/IPublication'; import type {ISemanticDomain} from '../../MiniLcm/Models/ISemanticDomain'; import type {IComplexFormType} from '../../MiniLcm/Models/IComplexFormType'; import type {ICustomView} from '../../MiniLcm/Models/ICustomView'; +import type {IMorphType} from '../../MiniLcm/Models/IMorphType'; import type {IFilterQueryOptions} from '../../MiniLcm/IFilterQueryOptions'; import type {IIndexQueryOptions} from '../../MiniLcm/IIndexQueryOptions'; import type {IEntry} from '../../MiniLcm/Models/IEntry'; @@ -34,6 +35,7 @@ export interface IMiniLcmJsInvokable getCustomViews() : Promise; getCustomView(id: string) : Promise; getComplexFormType(id: string) : Promise; + getMorphTypes() : Promise; countEntries(query?: string, options?: IFilterQueryOptions) : Promise; getEntryIndex(id: string, query?: string, options?: IIndexQueryOptions) : Promise; getEntries(options?: IQueryOptions) : Promise; diff --git a/frontend/viewer/src/lib/dotnet-types/index.ts b/frontend/viewer/src/lib/dotnet-types/index.ts index 30ef1c5e2d..10195a64af 100644 --- a/frontend/viewer/src/lib/dotnet-types/index.ts +++ b/frontend/viewer/src/lib/dotnet-types/index.ts @@ -12,6 +12,7 @@ export * from './generated-types/MiniLcm/Models/IComplexFormType'; export * from './generated-types/MiniLcm/Models/IEntry'; export * from './generated-types/MiniLcm/Models/IExampleSentence'; export * from './generated-types/MiniLcm/Models/ITranslation'; +export * from './generated-types/MiniLcm/Models/IMorphType'; export * from './generated-types/MiniLcm/Models/IObjectWithId'; export * from './generated-types/MiniLcm/Models/IPartOfSpeech'; export * from './generated-types/MiniLcm/Models/IProjectIdentifier'; diff --git a/frontend/viewer/src/project/data/morph-types.svelte.ts b/frontend/viewer/src/project/data/morph-types.svelte.ts new file mode 100644 index 0000000000..d94d754afa --- /dev/null +++ b/frontend/viewer/src/project/data/morph-types.svelte.ts @@ -0,0 +1,60 @@ +import type {MorphTypeKind, IMorphType} from '$lib/dotnet-types'; + +import {type ProjectContext, useProjectContext} from '$project/project-context.svelte'; +import {type ResourceReturn} from 'runed'; + +const morphTypesSymbol = Symbol.for('fw-lite-morph-types'); +export function useMorphTypesService(): MorphTypesService { + const projectContext = useProjectContext(); + return projectContext.getOrAdd(morphTypesSymbol, () => { + return new MorphTypesService(projectContext); + }); +} + +export class MorphTypesService { + constructor(projectContext: ProjectContext) { + this.#morphTypesResource = projectContext.apiResource([], api => api.getMorphTypes()); + } + + #morphTypesResource: ResourceReturn; + + current: IMorphType[] = $derived.by(() => { + return this.#morphTypesResource.current; + }); + + async refetch() { + await this.#morphTypesResource.refetch(); + return this.current; + } + + prefixes = $derived.by(() => { + const result: Partial<{[kind in MorphTypeKind]: string|undefined}> = {}; + this.current.forEach(morphType => { + result[morphType.kind] = morphType.prefix; + }); + return result; + }); + + suffixes = $derived.by(() => { + const result: Partial<{[kind in MorphTypeKind]: string|undefined}> = {}; + this.current.forEach(morphType => { + result[morphType.kind] = morphType.postfix; + }); + return result; + }); + + getPrefix(kind: MorphTypeKind): string|undefined { + return this.prefixes[kind]; + } + + getSuffix(kind: MorphTypeKind): string|undefined { + return this.suffixes[kind]; + } + + decorate(headword: string | undefined, kind: MorphTypeKind): string|undefined { + if (!headword) return headword; + const prefix = this.getPrefix(kind) ?? ''; + const suffix = this.getSuffix(kind) ?? ''; + return `${prefix}${headword}${suffix}`; + } +} diff --git a/frontend/viewer/src/project/data/writing-system-service.svelte.ts b/frontend/viewer/src/project/data/writing-system-service.svelte.ts index a454c3c743..94cd64c228 100644 --- a/frontend/viewer/src/project/data/writing-system-service.svelte.ts +++ b/frontend/viewer/src/project/data/writing-system-service.svelte.ts @@ -14,6 +14,7 @@ import {type ProjectContext, useProjectContext} from '$project/project-context.s import {type ResourceReturn} from 'runed'; import type {View} from '$lib/views/view-data'; import type {ReadonlyDeep} from 'type-fest'; +import {type MorphTypesService, useMorphTypesService} from './morph-types.svelte'; export type WritingSystemSelection = | 'vernacular' @@ -27,7 +28,8 @@ export type WritingSystemSelection = const symbol = Symbol.for('fw-lite-ws-service'); export function useWritingSystemService(): WritingSystemService { const projectContext = useProjectContext(); - return projectContext.getOrAdd(symbol, () => new WritingSystemService(projectContext)); + const morphTypesService = useMorphTypesService(); + return projectContext.getOrAdd(symbol, () => new WritingSystemService(projectContext, morphTypesService)); } export class WritingSystemService { @@ -38,7 +40,10 @@ export class WritingSystemService { return this.#wsResource.current; } - constructor(projectContext: ProjectContext) { + #morphTypesService: MorphTypesService; + + constructor(projectContext: ProjectContext, morphTypesService: MorphTypesService) { + this.#morphTypesService = morphTypesService; this.#wsResource = projectContext.apiResource({analysis: [], vernacular: []}, async api => { const result = await api.getWritingSystems(); return { @@ -121,10 +126,14 @@ export class WritingSystemService { headword(entry: ReadonlyDeep, ws?: string): string { if (ws) { - return headword(entry, ws) || ''; + return this.#decorated(entry, ws) || ''; } + return firstTruthy(this.vernacularNoAudio, ws => this.#decorated(entry, ws.wsId)) || ''; + } - return firstTruthy(this.vernacularNoAudio, ws => headword(entry, ws.wsId)) || ''; + #decorated(entry: ReadonlyDeep, ws: string): string | undefined { + // Citation forms should not be decorated with prefix/postfix tokens, only lexeme forms get decorated + return entry.citationForm[ws] || this.#morphTypesService.decorate(entry.lexemeForm[ws], entry.morphType); } pickBestAlternative(value: IMultiString, wss: 'vernacular' | 'analysis'): string @@ -206,10 +215,6 @@ type WritingSystemColors = { analysis: Record; } -function headword(entry: ReadonlyDeep, ws: string): string | undefined { - return entry.citationForm[ws] || entry.lexemeForm[ws]; -} - function calcWritingSystemColors(writingSystems: IWritingSystems): WritingSystemColors { const wsColors = { vernacular: {} as Record, diff --git a/frontend/viewer/src/project/demo/demo-entry-data.ts b/frontend/viewer/src/project/demo/demo-entry-data.ts index fce219dfa6..0e2818d15f 100644 --- a/frontend/viewer/src/project/demo/demo-entry-data.ts +++ b/frontend/viewer/src/project/demo/demo-entry-data.ts @@ -1,4 +1,4 @@ -import {type IEntry, type IWritingSystems, MorphTypeKind, WritingSystemType} from '$lib/dotnet-types'; +import {type IEntry, type IMorphType, type IWritingSystems, MorphTypeKind, WritingSystemType} from '$lib/dotnet-types'; export const projectName = 'Sena 3'; @@ -30,6 +30,35 @@ export const partsOfSpeech = [ ]; +export const morphTypes: IMorphType[] = [ + { + id: 'd7f713e8-e8cf-11d3-9764-00c04f186933', + kind: MorphTypeKind.Stem, + name: {en: 'stem' }, + abbreviation: {en: 'ubd stem' }, + description: {}, + secondaryOrder: 0, + }, + { + id: 'd7f713db-e8cf-11d3-9764-00c04f186933', + kind: MorphTypeKind.Prefix, + name: {en: 'prefix' }, + abbreviation: {en: 'pfx' }, + description: {}, + postfix: '-', + secondaryOrder: 20, + }, + { + id: 'd7f713dd-e8cf-11d3-9764-00c04f186933', + kind: MorphTypeKind.Suffix, + name: {en: 'suffix' }, + abbreviation: {en: 'sfx' }, + description: {}, + prefix: '-', + secondaryOrder: 70, + }, +]; + export const writingSystems: IWritingSystems = { 'analysis': [ { diff --git a/frontend/viewer/src/project/demo/in-memory-demo-api.ts b/frontend/viewer/src/project/demo/in-memory-demo-api.ts index cc8f35d2ad..8b22903742 100644 --- a/frontend/viewer/src/project/demo/in-memory-demo-api.ts +++ b/frontend/viewer/src/project/demo/in-memory-demo-api.ts @@ -10,6 +10,7 @@ import { type IIndexQueryOptions, type IMiniLcmFeatures, type IMiniLcmJsInvokable, + type IMorphType, type IPartOfSpeech, type IProjectModel, type IPublication, @@ -22,8 +23,9 @@ import { type WritingSystemType, type ICustomView, ViewBase, + MorphTypeKind, } from '$lib/dotnet-types'; -import {entries, partsOfSpeech, projectName, writingSystems} from './demo-entry-data'; +import {entries, morphTypes, partsOfSpeech, projectName, writingSystems} from './demo-entry-data'; import {WritingSystemService} from '../data/writing-system-service.svelte'; import {FwLitePlatform} from '$lib/dotnet-types/generated-types/FwLiteShared/FwLitePlatform'; @@ -41,6 +43,7 @@ import {type IAvailableUpdate, UpdateResult} from '$lib/dotnet-types/generated-t import {type EventBus, useEventBus, ProjectEventBus} from '$lib/services/event-bus'; import type {IJsEventListener} from '$lib/dotnet-types/generated-types/FwLiteShared/Events/IJsEventListener'; import {initProjectStorage} from '$lib/storage'; +import {MorphTypesService} from '$project/data/morph-types.svelte'; function pickWs(ws: string, defaultWs: string): string { return ws === 'default' ? defaultWs : ws; @@ -50,17 +53,6 @@ const complexFormTypes = entries .flatMap(entry => entry.complexFormTypes) .filter((value, index, all) => all.findIndex(v2 => v2.id === value.id) === index); -function filterEntries(entries: IEntry[], query: string): IEntry[] { - return entries.filter(entry => - [ - ...Object.values(entry.lexemeForm ?? {}), - ...Object.values(entry.citationForm ?? {}), - ...entry.senses.flatMap(sense => [ - ...Object.values(sense.gloss ?? {}), - ]), - ].some(value => value?.toLowerCase().includes(query.toLowerCase()))); -} - export const mockFwLiteConfig: IFwLiteConfig = { appVersion: 'dev', feedbackUrl: '', @@ -94,11 +86,20 @@ const mockJsEventListener: IJsEventListener = { }; export class InMemoryDemoApi implements IMiniLcmJsInvokable { + #morphTypesService: MorphTypesService; #writingSystemService: WritingSystemService; #projectEventBus: ProjectEventBus; constructor(projectContext: ProjectContext, eventBus: EventBus) { - this.#writingSystemService = new WritingSystemService(projectContext); + this.#morphTypesService = new MorphTypesService(projectContext); + this.#writingSystemService = new WritingSystemService(projectContext, this.#morphTypesService); this.#projectEventBus = new ProjectEventBus(projectContext, eventBus); + + // Trigger activating/loading lazy resources. + // The fact that we need this "hack" might seem like lazy resources themselves are problematic, + // but a MiniLCM API is supposed to be across a solid boundary and not indirectly relying on itself! + // We're just doing it here for convenience and it's biting us a tad. + void this.#morphTypesService.refetch(); + this.#writingSystemService.allWritingSystems(); } public static setup(): InMemoryDemoApi { @@ -159,6 +160,17 @@ export class InMemoryDemoApi implements IMiniLcmJsInvokable { ); } + getMorphTypes(): Promise { + return Promise.resolve( + morphTypes + // [ + // {id: 'd7f713e8-e8cf-11d3-9764-00c04f186933', kind: MorphTypeKind.Stem}, + // {id: 'd7f713db-e8cf-11d3-9764-00c04f186933', kind: MorphTypeKind.Prefix, postfix='-'}, + // {id: 'd7f713dd-e8cf-11d3-9764-00c04f186933', kind: MorphTypeKind.Suffix, prefix='-'}, + // ] + ); + } + getPartsOfSpeech(): Promise { return Promise.resolve( partsOfSpeech @@ -250,27 +262,44 @@ export class InMemoryDemoApi implements IMiniLcmJsInvokable { return entries.slice(options.offset, options.offset + options.count); } + private filterEntries(entries: IEntry[], query: string): IEntry[] { + return entries.filter(entry => + [ + ...this.#writingSystemService.vernacular.map(ws => this.#writingSystemService.headword(entry, ws.wsId)), + ...Object.values(entry.lexemeForm ?? {}), + ...entry.senses.flatMap(sense => [ + ...Object.values(sense.gloss ?? {}), + ]), + ].some(value => value?.toLowerCase().includes(query.toLowerCase()))); + } + private getFilteredSortedEntries(query?: string, options?: Omit): IEntry[] { const entries = this.getFilteredEntries(query, options); - - if (!options) return entries; const defaultWs = writingSystems.vernacular[0].wsId; - const sortWs = pickWs(options.order.writingSystem, defaultWs); + const sortWs = pickWs(options?.order?.writingSystem ?? defaultWs, defaultWs); + const ascending = options?.order?.ascending ?? true; + const stem = morphTypes.find(m => m.kind === MorphTypeKind.Stem)!; return entries .sort((e1, e2) => { - const v1 = this.#writingSystemService.headword(e1, sortWs); - const v2 = this.#writingSystemService.headword(e2, sortWs); + // morph-tokens should not be included when sorting + const v1 = e1.citationForm[sortWs] || e1.lexemeForm[sortWs]; + const v2 = e2.citationForm[sortWs] || e2.lexemeForm[sortWs]; if (!v2) return -1; if (!v1) return 1; let compare = v1.localeCompare(v2, sortWs); - if (compare == 0) compare = e1.id.localeCompare(e2.id); - return options.order.ascending ? compare : -compare; + if (compare === 0) { + const m1 = (morphTypes.find(m => m.kind === e1.morphType) ?? stem); + const m2 = (morphTypes.find(m => m.kind === e2.morphType) ?? stem); + compare = m1.secondaryOrder - m2.secondaryOrder; + } + if (compare === 0) compare = e1.id.localeCompare(e2.id); + return ascending ? compare : -compare; }); } private getFilteredEntries(query?: string, options?: IFilterQueryOptions): IEntry[] { let entries = this._Entries(); - if (query) entries = filterEntries(entries, query); + if (query) entries = this.filterEntries(entries, query); if (!options) return entries; const defaultWs = writingSystems.vernacular[0].wsId; diff --git a/frontend/viewer/tests/entries-list.test.ts b/frontend/viewer/tests/entries-list.test.ts index ebb0208930..428387efa8 100644 --- a/frontend/viewer/tests/entries-list.test.ts +++ b/frontend/viewer/tests/entries-list.test.ts @@ -160,12 +160,12 @@ test.describe('EntriesList', () => { expect(firstEntryText).toBeTruthy(); // Update first entry by prepending to its headword (so it stays at index 0) - const {updatedHeadword} = await api.updateEntryHeadwordPrepend(0, '-UPDATED-'); + const {updatedHeadword} = await api.updateEntryHeadwordPrepend(0, '---UPDATED---'); // The first entry in UI should now show the updated text await expect(async () => { const newFirstEntryText = await entriesList.entryRows.first().textContent(); - expect(newFirstEntryText).toContain('-UPDATED-'); + expect(newFirstEntryText).toContain('---UPDATED---'); }).toPass({timeout: 5000}); await expect(entriesList.entryWithText(updatedHeadword)).toBeVisible(); From 4abf849c863b4e620862b42f2fc0d480fe1bc60d Mon Sep 17 00:00:00 2001 From: Tim Haasdyk Date: Thu, 9 Apr 2026 09:14:26 +0200 Subject: [PATCH 4/6] Seed canonical morph types and regenerate search index (#2219) * Seed canonical morph-types into CRDT projects - Add CanonicalMorphTypes with all 19 morph-type definitions (GUIDs from LibLCM) - Seed morph-types for new projects via PreDefinedData.PredefinedMorphTypes - Seed morph-types for existing projects in MigrateDb (before FTS refresh) - Add EF migration to clear FTS table so headwords are rebuilt with morph tokens - Patch legacy snapshots (empty MorphTypes) in sync layer to prevent duplicates * Stop creating morph-types in tests. They're now prepopulated * Stop printing verify diff content. It's too much. * Seed morph types before API testing * Add descriptions to canonical morph types * Sync morph-types when importing, because they already exist in CRDT * Verify our canonical morph-types match new fwdata projects * Fix non-FTS relevance order with morph-tokens in query --- .../CanonicalMorphTypeTests.cs | 51 ++ .../FwDataMiniLcmBridge.Tests.csproj | 6 +- .../MiniLcmTests/SortingTests.cs | 6 +- .../FwLite/FwDataMiniLcmBridge/Api/Sorting.cs | 14 +- .../FluentAssertGlobalConfig.cs | 7 + .../Import/FullImportTests.cs | 80 ++ .../Import/ResumableTests.cs | 14 +- .../CrdtFwdataProjectSyncService.cs | 12 + .../FwLite/FwLiteProjectSync/MiniLcmImport.cs | 10 +- .../LcmCrdt.Tests/Changes/UseChangesTests.cs | 5 +- .../Data/BaseSerializationTest.cs | 13 + .../LcmCrdt.Tests/Data/FilteringTests.cs | 4 +- .../LcmCrdt.Tests/Data/MigrationTests.cs | 1 + .../Data/RegressionTestHelper.cs | 2 +- ...lizationRegressionData.latest.verified.txt | 2 +- ...pshotTests.VerifyChangeModels.verified.txt | 8 + .../FwLite/LcmCrdt.Tests/MiniLcmApiFixture.cs | 6 +- .../MiniLcmTests/SortingTests.cs | 15 +- .../LcmCrdt.Tests/MorphTypeSeedingTests.cs | 128 +++ .../FwLite/LcmCrdt.Tests/OpenProjectTests.cs | 2 +- .../LcmCrdt/Changes/CreateMorphTypeChange.cs | 9 +- backend/FwLite/LcmCrdt/CrdtProjectsService.cs | 15 +- .../FwLite/LcmCrdt/CurrentProjectService.cs | 15 +- backend/FwLite/LcmCrdt/Data/Sorting.cs | 8 +- ...nerateSearchTableForMorphTypes.Designer.cs | 838 ++++++++++++++++++ ...4451_RegenerateSearchTableForMorphTypes.cs | 23 + .../FwLite/LcmCrdt/Objects/PreDefinedData.cs | 17 +- .../MiniLcm.Tests/QueryEntryTestsBase.cs | 40 - .../FwLite/MiniLcm.Tests/SortingTestsBase.cs | 112 +-- .../Validators/MorphTypeValidatorTests.cs | 79 ++ .../MiniLcm/Models/CanonicalMorphTypes.cs | 225 +++++ .../MiniLcm/Validators/MorphTypeValidator.cs | 6 + 32 files changed, 1602 insertions(+), 171 deletions(-) create mode 100644 backend/FwLite/FwDataMiniLcmBridge.Tests/CanonicalMorphTypeTests.cs create mode 100644 backend/FwLite/FwLiteProjectSync.Tests/Import/FullImportTests.cs create mode 100644 backend/FwLite/LcmCrdt.Tests/MorphTypeSeedingTests.cs create mode 100644 backend/FwLite/LcmCrdt/Migrations/20260512104451_RegenerateSearchTableForMorphTypes.Designer.cs create mode 100644 backend/FwLite/LcmCrdt/Migrations/20260512104451_RegenerateSearchTableForMorphTypes.cs create mode 100644 backend/FwLite/MiniLcm.Tests/Validators/MorphTypeValidatorTests.cs create mode 100644 backend/FwLite/MiniLcm/Models/CanonicalMorphTypes.cs diff --git a/backend/FwLite/FwDataMiniLcmBridge.Tests/CanonicalMorphTypeTests.cs b/backend/FwLite/FwDataMiniLcmBridge.Tests/CanonicalMorphTypeTests.cs new file mode 100644 index 0000000000..a6cd01abc3 --- /dev/null +++ b/backend/FwLite/FwDataMiniLcmBridge.Tests/CanonicalMorphTypeTests.cs @@ -0,0 +1,51 @@ +using FwDataMiniLcmBridge.Api; +using FwDataMiniLcmBridge.LcmUtils; +using FwDataMiniLcmBridge.Tests.Fixtures; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Options; +using MiniLcm.Models; + +namespace FwDataMiniLcmBridge.Tests; + +public class CanonicalMorphTypeTests : IDisposable +{ + private readonly ServiceProvider _serviceProvider; + private readonly FwDataMiniLcmApi _api; + private readonly FwDataProject _project; + + public CanonicalMorphTypeTests() + { + var services = new ServiceCollection() + .AddTestFwDataBridge(mockProjectLoader: false) + .PostConfigure(config => + config.TemplatesFolder = Path.GetFullPath("Templates")) + .BuildServiceProvider(); + _serviceProvider = services; + + var config = services.GetRequiredService>(); + Directory.CreateDirectory(config.Value.ProjectsFolder); + var projectName = $"canonical-morph-types-test_{Guid.NewGuid()}"; + _project = new FwDataProject(projectName, config.Value.ProjectsFolder); + var projectLoader = services.GetRequiredService(); + projectLoader.NewProject(_project, "en", "en"); + + var fwDataFactory = services.GetRequiredService(); + _api = fwDataFactory.GetFwDataMiniLcmApi(_project, false); + } + + public void Dispose() + { + _api.Dispose(); + _serviceProvider.Dispose(); + if (Directory.Exists(_project.ProjectFolder)) + Directory.Delete(_project.ProjectFolder, true); + } + + [Fact] + public async Task CanonicalMorphTypes_MatchNewLangProjMorphTypes() + { + var libLcmMorphTypes = await _api.GetMorphTypes().ToArrayAsync(); + libLcmMorphTypes.Should().NotBeEmpty(); + CanonicalMorphTypes.All.Values.Should().BeEquivalentTo(libLcmMorphTypes); + } +} diff --git a/backend/FwLite/FwDataMiniLcmBridge.Tests/FwDataMiniLcmBridge.Tests.csproj b/backend/FwLite/FwDataMiniLcmBridge.Tests/FwDataMiniLcmBridge.Tests.csproj index 59d1406e12..c0d6703a59 100644 --- a/backend/FwLite/FwDataMiniLcmBridge.Tests/FwDataMiniLcmBridge.Tests.csproj +++ b/backend/FwLite/FwDataMiniLcmBridge.Tests/FwDataMiniLcmBridge.Tests.csproj @@ -35,5 +35,9 @@
+ + - \ No newline at end of file + diff --git a/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/SortingTests.cs b/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/SortingTests.cs index ce3eb0cc61..4f683afba5 100644 --- a/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/SortingTests.cs +++ b/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/SortingTests.cs @@ -22,9 +22,9 @@ public async Task SecondaryOrder_DefaultsToStem(string query, SortField sortFiel { var unknownMorphTypeEntryId = Guid.NewGuid(); Entry[] expected = [ - new() { Id = unknownMorphTypeEntryId, LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Unknown }, // SecondaryOrder defaults to Stem = 1 - new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.BoundStem }, // SecondaryOrder = 2 - new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Suffix }, // SecondaryOrder = 6 + new() { Id = unknownMorphTypeEntryId, LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Unknown }, // SecondaryOrder defaults to Stem = 0 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.BoundStem }, // SecondaryOrder = 10 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Suffix }, // SecondaryOrder = 70 ]; var ids = expected.Select(e => e.Id).ToHashSet(); diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/Sorting.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/Sorting.cs index d021181e24..6f2ea07980 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/Sorting.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/Sorting.cs @@ -33,12 +33,16 @@ public static IEnumerable ApplyHeadwordOrder(this IEnumerable public static IEnumerable ApplyRoughBestMatchOrder(this IEnumerable entries, SortOptions order, int sortWsHandle, int stemSecondaryOrder, string? query = null) { - var projected = entries.Select(e => (Entry: e, Headword: e.LexEntryHeadword(sortWsHandle, applyMorphTokens: false))); + var projected = entries.Select(e => ( + Entry: e, + Headword: e.LexEntryHeadword(sortWsHandle, applyMorphTokens: false), + HeadwordWithTokens: e.LexEntryHeadword(sortWsHandle, applyMorphTokens: true) + )); if (order.Ascending) { return projected - .OrderByDescending(x => !string.IsNullOrEmpty(query) && (x.Headword?.StartsWithDiacriticMatch(query!) ?? false)) - .ThenByDescending(x => !string.IsNullOrEmpty(query) && (x.Headword?.ContainsDiacriticMatch(query!) ?? false)) + .OrderByDescending(x => !string.IsNullOrEmpty(query) && (x.HeadwordWithTokens?.StartsWithDiacriticMatch(query!) ?? false)) + .ThenByDescending(x => !string.IsNullOrEmpty(query) && (x.HeadwordWithTokens?.ContainsDiacriticMatch(query!) ?? false)) .ThenBy(x => x.Headword?.Length ?? 0) .ThenBy(x => x.Headword) .ThenBy(x => x.Entry.PrimaryMorphType?.SecondaryOrder ?? stemSecondaryOrder) @@ -49,8 +53,8 @@ public static IEnumerable ApplyRoughBestMatchOrder(this IEnumerable !string.IsNullOrEmpty(query) && (x.Headword?.StartsWithDiacriticMatch(query!) ?? false)) - .ThenBy(x => !string.IsNullOrEmpty(query) && (x.Headword?.ContainsDiacriticMatch(query!) ?? false)) + .OrderBy(x => !string.IsNullOrEmpty(query) && (x.HeadwordWithTokens?.StartsWithDiacriticMatch(query!) ?? false)) + .ThenBy(x => !string.IsNullOrEmpty(query) && (x.HeadwordWithTokens?.ContainsDiacriticMatch(query!) ?? false)) .ThenByDescending(x => x.Headword?.Length ?? 0) .ThenByDescending(x => x.Headword) .ThenByDescending(x => x.Entry.PrimaryMorphType?.SecondaryOrder ?? stemSecondaryOrder) diff --git a/backend/FwLite/FwLiteProjectSync.Tests/FluentAssertGlobalConfig.cs b/backend/FwLite/FwLiteProjectSync.Tests/FluentAssertGlobalConfig.cs index fa6983d27d..eb883aaa68 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/FluentAssertGlobalConfig.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/FluentAssertGlobalConfig.cs @@ -1,3 +1,4 @@ +using System.Runtime.CompilerServices; using FluentAssertions.Extensibility; using FwLiteProjectSync.Tests; @@ -7,6 +8,12 @@ namespace FwLiteProjectSync.Tests; public static class FluentAssertGlobalConfig { + [ModuleInitializer] + internal static void InitVerify() + { + VerifierSettings.OmitContentFromException(); + } + public static void Initialize() { MiniLcm.Tests.FluentAssertGlobalConfig.Initialize(); diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Import/FullImportTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/Import/FullImportTests.cs new file mode 100644 index 0000000000..259f9fb1e5 --- /dev/null +++ b/backend/FwLite/FwLiteProjectSync.Tests/Import/FullImportTests.cs @@ -0,0 +1,80 @@ +using FwDataMiniLcmBridge; +using FwDataMiniLcmBridge.LcmUtils; +using FwLiteProjectSync.Tests.Fixtures; +using LcmCrdt; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Options; +using MiniLcm.Models; + +namespace FwLiteProjectSync.Tests.Import; + +/// +/// Tests the full MiniLcmImport.Import(IProjectIdentifier) production path, +/// where the CRDT project is created inside Import (with SeedNewProjectData: false). +/// Distinct from which calls ImportProject() on a pre-initialized CRDT API. +/// +public class FullImportTests : IAsyncLifetime +{ + private const string ProjectFolder = "FullImportTests"; + private readonly ServiceProvider _rootServiceProvider; + private readonly AsyncServiceScope _scope; + private IServiceProvider Services => _scope.ServiceProvider; + + public FullImportTests() + { + _rootServiceProvider = new ServiceCollection() + .AddSyncServices(ProjectFolder) + .BuildServiceProvider(); + _scope = _rootServiceProvider.CreateAsyncScope(); + } + + public Task InitializeAsync() + { + if (Directory.Exists(ProjectFolder)) Directory.Delete(ProjectFolder, true); + Directory.CreateDirectory(Services.GetRequiredService>().Value.ProjectsFolder); + Directory.CreateDirectory(Services.GetRequiredService>().Value.ProjectPath); + return Task.CompletedTask; + } + + public async Task DisposeAsync() + { + await _scope.DisposeAsync(); + await _rootServiceProvider.DisposeAsync(); + } + + /// + /// Regression: Import creates a CRDT project with SeedNewProjectData: false. + /// Morph types must be seeded unconditionally so MorphTypeSync.Sync doesn't throw + /// when it encounters FwData morph types as "new". + /// + [Fact] + public async Task Import_FullPath_SeedsMorphTypesBeforeImport() + { + // Arrange: create an FwData project with one entry + var projectName = "import-morph-types-" + Guid.NewGuid().ToString("N")[..8]; + var projectsFolder = Services.GetRequiredService>().Value.ProjectsFolder; + var fwDataProject = new FwDataProject(projectName, projectsFolder); + Services.GetRequiredService().NewProject(fwDataProject, "en", "en"); + + using var fwDataApi = Services.GetRequiredService() + .GetFwDataMiniLcmApi(fwDataProject, false); + await fwDataApi.CreateEntry(new Entry + { + Id = Guid.NewGuid(), + LexemeForm = { ["en"] = "test" }, + Senses = [new Sense { Gloss = { ["en"] = "a test" } }] + }); + + // Act: run the production import path (creates CRDT project internally) + var crdtProject = await Services.GetRequiredService().Import(fwDataProject); + + // Assert: morph types were seeded and the entry was imported + var crdtApi = await Services.OpenCrdtProject((CrdtProject)crdtProject); + + var morphTypes = await crdtApi.GetMorphTypes().ToArrayAsync(); + morphTypes.Should().NotBeEmpty("morph types should be seeded during project creation"); + + var entries = await crdtApi.GetEntries().ToArrayAsync(); + entries.Should().ContainSingle(e => e.LexemeForm["en"] == "test"); + } +} diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs index 954084d1bc..1c1f655e44 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs @@ -38,18 +38,7 @@ public async Task ImportProject_IsResumable_AcrossRandomFailures() }).ToList(); var expectedPartsOfSpeech = Enumerable.Range(1, 10) .Select(i => new PartOfSpeech { Id = Guid.NewGuid(), Name = { ["en"] = $"pos{i}" } }).ToList(); - var expectedMorphTypes = Enum.GetValues() - .Select(typ => new MorphType() - { - Id = Guid.NewGuid(), - Name = new() { ["en"] = $"Test Morph Type {(int)typ} {typ}" }, - Abbreviation = new() { ["en"] = $"Tst MrphTyp{(int)typ}" }, - Description = new() { { "en", new RichString($"test desc for {typ}") } }, - Prefix = null, - Postfix = null, - Kind = typ, - SecondaryOrder = 0 - }).ToList(); + var expectedMorphTypes = CanonicalMorphTypes.All.Values; var mockFrom = new Mock(); IMiniLcmApi mockTo = new UnreliableApi( @@ -132,7 +121,6 @@ public async Task ImportProject_IsResumable_AcrossRandomFailures() createdEntries.Select(e => e.LexemeForm["en"]).Should().BeEquivalentTo(expectedEntries.Select(e => e.LexemeForm["en"])); createdMorphTypes.Select(e => e.Name["en"]).Should().BeEquivalentTo(expectedMorphTypes.Select(e => e.Name["en"])); createdMorphTypes.Select(e => e.Kind).Should().BeEquivalentTo(expectedMorphTypes.Select(e => e.Kind)); - } diff --git a/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs b/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs index ed729a7045..c760dffb27 100644 --- a/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs +++ b/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs @@ -76,6 +76,18 @@ private async Task SyncOrImportInternal(IMiniLcmApi crdtApi, IMiniLc { // Repair any missing translation IDs before doing the full sync, so the sync doesn't have to deal with them var syncedIdCount = await CrdtRepairs.SyncMissingTranslationIds(projectSnapshot.Entries, fwdata, crdt, dryRun); + + // Patch legacy snapshots that were created before morph-type support. + // After seeding, the CRDT has morph-types but the snapshot still has []. + // Without this patch, the diff would see all morph-types as "new" and try to re-add them. + if (projectSnapshot.MorphTypes is null or []) + { + var currentCrdtMorphTypes = await crdt.GetMorphTypes().ToArrayAsync(); + if (currentCrdtMorphTypes.Length > 0) + { + projectSnapshot = projectSnapshot with { MorphTypes = currentCrdtMorphTypes }; + } + } } var syncResult = projectSnapshot is null diff --git a/backend/FwLite/FwLiteProjectSync/MiniLcmImport.cs b/backend/FwLite/FwLiteProjectSync/MiniLcmImport.cs index 574dd10b12..30dcd664a9 100644 --- a/backend/FwLite/FwLiteProjectSync/MiniLcmImport.cs +++ b/backend/FwLite/FwLiteProjectSync/MiniLcmImport.cs @@ -8,6 +8,7 @@ using MiniLcm; using MiniLcm.Models; using MiniLcm.Project; +using MiniLcm.SyncHelpers; namespace FwLiteProjectSync; @@ -70,11 +71,10 @@ public async Task ImportProject(IMiniLcmApi importTo, IMiniLcmApi importFrom, in logger.LogInformation("Imported complex form type {Id}", complexFormType.Id); } - await foreach (var morphType in importFrom.GetMorphTypes()) - { - await importTo.CreateMorphType(morphType); - logger.LogInformation("Imported morph type {Id} ({typ})", morphType.Id, morphType.Kind); - } + // Morph types are created automatically for CRDT projects, so we update them instead of creating them + var importFromMorphTypes = await importFrom.GetMorphTypes().ToArrayAsync(); + var existingMorphTypes = await importTo.GetMorphTypes().ToArrayAsync(); + await MorphTypeSync.Sync(existingMorphTypes, importFromMorphTypes, importTo); logger.LogInformation("Importing semantic domains"); await importTo.BulkImportSemanticDomains(importFrom.GetSemanticDomains()); diff --git a/backend/FwLite/LcmCrdt.Tests/Changes/UseChangesTests.cs b/backend/FwLite/LcmCrdt.Tests/Changes/UseChangesTests.cs index ed1d200660..828f5c73f7 100644 --- a/backend/FwLite/LcmCrdt.Tests/Changes/UseChangesTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/Changes/UseChangesTests.cs @@ -195,10 +195,7 @@ private static IEnumerable GetAllChanges() var createComplexFormComponentChange = new AddEntryComponentChange(complexFormComponent); yield return new ChangeWithDependencies(createComplexFormComponentChange, [createComplexFormEntryChange, createEntryChange, createSenseChange]); - var morphTypeName = new MultiString { { "en", "test morphtype" } }; - var morphTypeAbbreviation = new MultiString { { "en", "test mph" } }; - var morphTypeDescription = new RichMultiString { { "en", new RichString("test desc") } }; - var morphType = new MorphType { Id = Guid.NewGuid(), Name = morphTypeName, Abbreviation = morphTypeAbbreviation, Description = morphTypeDescription, SecondaryOrder = 0, Kind = MorphTypeKind.Root }; + var morphType = CanonicalMorphTypes.All[MorphTypeKind.Root].Copy(); var createMorphTypeChange = new CreateMorphTypeChange(morphType); yield return new ChangeWithDependencies(createMorphTypeChange); diff --git a/backend/FwLite/LcmCrdt.Tests/Data/BaseSerializationTest.cs b/backend/FwLite/LcmCrdt.Tests/Data/BaseSerializationTest.cs index 1d44312e4f..93d2eda5a4 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/BaseSerializationTest.cs +++ b/backend/FwLite/LcmCrdt.Tests/Data/BaseSerializationTest.cs @@ -51,6 +51,19 @@ private static AutoFakerConfig GetAutoFakerConfig() exampleSentenceChange.Translation = null; #pragma warning restore CS0618 } + }, true), + new SimpleOverride(context => + { + if (context.Instance is MorphType morphType) + { + // Only canonical morph types are supported, so align the generated Id (and Kind) with a canonical one. + if (!CanonicalMorphTypes.All.TryGetValue(morphType.Kind, out var canonical)) + { + canonical = CanonicalMorphTypes.All.Values.OrderBy(_ => Random.Shared.Next()).First(); + morphType.Kind = canonical.Kind; + } + morphType.Id = canonical.Id; + } }, true) ); return config; diff --git a/backend/FwLite/LcmCrdt.Tests/Data/FilteringTests.cs b/backend/FwLite/LcmCrdt.Tests/Data/FilteringTests.cs index 3c70a5184e..505a20b999 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/FilteringTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/Data/FilteringTests.cs @@ -12,9 +12,9 @@ public FilteringTests() _entries = [ new Entry { LexemeForm = { { "en", "123" } }, }, - new Entry { LexemeForm = { { "en", "456" } }, } + new Entry { LexemeForm = { { "en", "456" } }, }, ]; - _morphTypes = new MorphType[] { new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 } }.AsQueryable(); + _morphTypes = CanonicalMorphTypes.All.Values.ToArray().AsQueryable(); } [Theory] diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs index bbe2e496e1..b8c985e6c4 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs @@ -22,6 +22,7 @@ public class MigrationTests : IAsyncLifetime internal static void Init() { VerifySystemJson.Initialize(); + VerifierSettings.OmitContentFromException(); } public Task InitializeAsync() diff --git a/backend/FwLite/LcmCrdt.Tests/Data/RegressionTestHelper.cs b/backend/FwLite/LcmCrdt.Tests/Data/RegressionTestHelper.cs index 69c4f9f6ce..82cf03e878 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/RegressionTestHelper.cs +++ b/backend/FwLite/LcmCrdt.Tests/Data/RegressionTestHelper.cs @@ -79,6 +79,6 @@ private static string GetFilePath(string name, [CallerFilePath] string sourceFil public enum RegressionVersion { v1, - v2 + v2, } } diff --git a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt index d1b59f5016..fccae78d32 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt @@ -1613,7 +1613,7 @@ "Analysis": null }, "Id": "72bcb2dd-4d73-486c-d5df-e5d7b9a6a3eb", - "DeletedAt": null, + "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", diff --git a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt index 621fed6b72..3ffa18b2eb 100644 --- a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt @@ -192,6 +192,14 @@ DerivedType: CreateCustomViewChange, TypeDiscriminator: CreateCustomViewChange }, + { + DerivedType: EditCustomViewChange, + TypeDiscriminator: EditCustomViewChange + }, + { + DerivedType: DeleteChange, + TypeDiscriminator: delete:CustomView + }, { DerivedType: CreateMorphTypeChange, TypeDiscriminator: CreateMorphTypeChange diff --git a/backend/FwLite/LcmCrdt.Tests/MiniLcmApiFixture.cs b/backend/FwLite/LcmCrdt.Tests/MiniLcmApiFixture.cs index 0adf9acb29..d7f2e0f984 100644 --- a/backend/FwLite/LcmCrdt.Tests/MiniLcmApiFixture.cs +++ b/backend/FwLite/LcmCrdt.Tests/MiniLcmApiFixture.cs @@ -1,5 +1,6 @@ using System.Diagnostics; using LcmCrdt.MediaServer; +using LcmCrdt.Objects; using Meziantou.Extensions.Logging.Xunit; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; @@ -71,9 +72,12 @@ public async Task InitializeAsync(string projectName) _crdtDbContext = await _services.ServiceProvider.GetRequiredService>().CreateDbContextAsync(); await _crdtDbContext.Database.OpenConnectionAsync(); //can't use ProjectsService.CreateProject because it opens and closes the db context, this would wipe out the in memory db. + var projectData = new ProjectData("Sena 3", projectName, Guid.NewGuid(), null, Guid.NewGuid()); await CrdtProjectsService.InitProjectDb(_crdtDbContext, - new ProjectData("Sena 3", projectName, Guid.NewGuid(), null, Guid.NewGuid())); + projectData); await currentProjectService.RefreshProjectData(); + // CreateProject would also seed morph types — so we need to do it manually here + await PreDefinedData.AddPredefinedMorphTypes(_services.ServiceProvider.GetRequiredService(), projectData.ClientId); if (_seedWs) { await Api.CreateWritingSystem(new WritingSystem() diff --git a/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/SortingTests.cs b/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/SortingTests.cs index e32b8f355e..2f31d8f559 100644 --- a/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/SortingTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/SortingTests.cs @@ -24,19 +24,10 @@ public override async Task DisposeAsync() [InlineData("a", SortField.SearchRelevance)] // non-FTS public async Task SecondaryOrder_DefaultsToStem(string query, SortField sortField) { - MorphType[] morphTypes = [ - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 }, - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundStem, Name = { ["en"] = "BoundStem" }, SecondaryOrder = 2 }, - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Suffix, Name = { ["en"] = "Suffix" }, Postfix = "-", SecondaryOrder = 6 }, - ]; - - foreach (var morphType in morphTypes) - await Api.CreateMorphType(morphType); - Entry[] expected = [ - new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Unknown }, // SecondaryOrder defaults to Stem = 1 - new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.BoundStem }, // SecondaryOrder = 2 - new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Suffix }, // SecondaryOrder = 6 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Unknown }, // SecondaryOrder defaults to Stem = 0 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.BoundStem }, // SecondaryOrder = 10 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Suffix }, // SecondaryOrder = 70 ]; var ids = expected.Select(e => e.Id).ToHashSet(); diff --git a/backend/FwLite/LcmCrdt.Tests/MorphTypeSeedingTests.cs b/backend/FwLite/LcmCrdt.Tests/MorphTypeSeedingTests.cs new file mode 100644 index 0000000000..74f7cdd4d4 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/MorphTypeSeedingTests.cs @@ -0,0 +1,128 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; + +namespace LcmCrdt.Tests; + +public class MorphTypeSeedingTests +{ + [Fact] + public async Task NewProjectWithSeedData_HasAllCanonicalMorphTypes() + { + var code = "morph-type-seed-test"; + var sqliteFile = $"{code}.sqlite"; + if (File.Exists(sqliteFile)) File.Delete(sqliteFile); + var builder = Host.CreateEmptyApplicationBuilder(null); + builder.Services.AddTestLcmCrdtClient(); + using var host = builder.Build(); + await using var scope = host.Services.CreateAsyncScope(); + + var crdtProjectsService = scope.ServiceProvider.GetRequiredService(); + var crdtProject = await crdtProjectsService.CreateProject(new( + Name: "MorphTypeSeedTest", + Code: code, + Path: "", + SeedNewProjectData: true)); + + var api = (CrdtMiniLcmApi)await scope.ServiceProvider.OpenCrdtProject(crdtProject); + var morphTypes = await api.GetMorphTypes().ToArrayAsync(); + + morphTypes.Should().BeEquivalentTo(CanonicalMorphTypes.All.Values); + + await using var dbContext = await scope.ServiceProvider.GetRequiredService>().CreateDbContextAsync(); + await dbContext.Database.EnsureDeletedAsync(); + } + + [Fact] + public async Task ExistingProjectWithoutMorphTypes_GetsMorphTypesOnOpen() + { + var code = "morph-type-seed-existing"; + var sqliteFile = $"{code}.sqlite"; + if (File.Exists(sqliteFile)) File.Delete(sqliteFile); + var builder = Host.CreateEmptyApplicationBuilder(null); + builder.Services.AddTestLcmCrdtClient(); + using var host = builder.Build(); + await using var scope = host.Services.CreateAsyncScope(); + + var crdtProjectsService = scope.ServiceProvider.GetRequiredService(); + // Create project WITHOUT seeding + var crdtProject = await crdtProjectsService.CreateProject(new( + Name: "MorphTypeSeedExisting", + Code: code, + Path: "", + SeedNewProjectData: false)); + + // Opening the project triggers MigrateDb, which seeds morph types if missing + var api = (CrdtMiniLcmApi)await scope.ServiceProvider.OpenCrdtProject(crdtProject); + var morphTypes = await api.GetMorphTypes().ToArrayAsync(); + + morphTypes.Should().HaveCount(CanonicalMorphTypes.All.Count); + + await using var dbContext = await scope.ServiceProvider.GetRequiredService>().CreateDbContextAsync(); + await dbContext.Database.EnsureDeletedAsync(); + } + + [Fact] + public async Task SeedingIsIdempotent_OpeningProjectTwiceDoesNotDuplicate() + { + var code = "morph-type-seed-idempotent"; + var sqliteFile = $"{code}.sqlite"; + if (File.Exists(sqliteFile)) File.Delete(sqliteFile); + var builder = Host.CreateEmptyApplicationBuilder(null); + builder.Services.AddTestLcmCrdtClient(); + using var host = builder.Build(); + + // First open: seed morph types + { + await using var scope = host.Services.CreateAsyncScope(); + var crdtProjectsService = scope.ServiceProvider.GetRequiredService(); + var crdtProject = await crdtProjectsService.CreateProject(new( + Name: "MorphTypeSeedIdempotent", + Code: code, + Path: "", + SeedNewProjectData: true)); + var api = await crdtProjectsService.OpenProject(crdtProject, scope.ServiceProvider); + var morphTypes = await api.GetMorphTypes().ToArrayAsync(); + morphTypes.Should().HaveCount(CanonicalMorphTypes.All.Count, + "morph types should have been seeded"); + } + + // Second open: morph types + { + await using var scope = host.Services.CreateAsyncScope(); + var crdtProjectsService = scope.ServiceProvider.GetRequiredService(); + var crdtProject = crdtProjectsService.GetProject(code); + crdtProject.Should().NotBeNull(); + var api = await crdtProjectsService.OpenProject(crdtProject, scope.ServiceProvider); + // OpenProject calls MigrateDb(), which includes seeding morph types but only if they're not already seeded + var morphTypes = await api.GetMorphTypes().ToArrayAsync(); + morphTypes.Should().HaveCount(CanonicalMorphTypes.All.Count, + "morph types should not be duplicated"); + + await using var dbContext = await scope.ServiceProvider.GetRequiredService>().CreateDbContextAsync(); + await dbContext.Database.EnsureDeletedAsync(); + } + } + + [Fact] + public void CanonicalMorphTypes_CoverAllKindsExceptUnknown() + { + var allKinds = Enum.GetValues() + .Where(k => k != MorphTypeKind.Unknown) + .ToHashSet(); + + CanonicalMorphTypes.All.Keys.Should().BeEquivalentTo(allKinds); + } + + [Fact] + public void CanonicalMorphTypes_HaveRequiredFields() + { + foreach (var mt in CanonicalMorphTypes.All.Values) + { + mt.Id.Should().NotBe(Guid.Empty, $"MorphType {mt.Kind} should have a non-empty Id"); + mt.Name["en"].Should().NotBeNullOrWhiteSpace($"MorphType {mt.Kind} should have an English name"); + mt.Abbreviation["en"].Should().NotBeNullOrWhiteSpace($"MorphType {mt.Kind} should have an English abbreviation"); + mt.Description["en"].IsEmpty.Should().BeFalse($"MorphType {mt.Kind} should have an English description"); + } + } +} diff --git a/backend/FwLite/LcmCrdt.Tests/OpenProjectTests.cs b/backend/FwLite/LcmCrdt.Tests/OpenProjectTests.cs index 269ae2a0b2..997012e4c6 100644 --- a/backend/FwLite/LcmCrdt.Tests/OpenProjectTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/OpenProjectTests.cs @@ -51,7 +51,7 @@ public async Task ProjectDbIsDeletedIfCreateFails() [Fact] public async Task OpeningAProjectWorks() { - var sqliteConnectionString = "OpeningAProjectWorks.sqlite"; + var sqliteConnectionString = "opening-a-project-works.sqlite"; if (File.Exists(sqliteConnectionString)) File.Delete(sqliteConnectionString); var builder = Host.CreateEmptyApplicationBuilder(null); builder.Services.AddTestLcmCrdtClient(); diff --git a/backend/FwLite/LcmCrdt/Changes/CreateMorphTypeChange.cs b/backend/FwLite/LcmCrdt/Changes/CreateMorphTypeChange.cs index f513bd7440..5661cb2de6 100644 --- a/backend/FwLite/LcmCrdt/Changes/CreateMorphTypeChange.cs +++ b/backend/FwLite/LcmCrdt/Changes/CreateMorphTypeChange.cs @@ -11,9 +11,14 @@ namespace LcmCrdt.Changes; public class CreateMorphTypeChange : CreateChange, ISelfNamedType { [SetsRequiredMembers] - public CreateMorphTypeChange(MorphType morphType) : base(morphType.Id == Guid.Empty ? Guid.NewGuid() : morphType.Id) + public CreateMorphTypeChange(MorphType morphType) : base(morphType.Id) { - morphType.Id = EntityId; + if (!CanonicalMorphTypes.IsCanonical(morphType.Id)) + { + throw new ArgumentException( + $"Morph type Id {morphType.Id} is not a canonical morph-type Id. Custom morph types are not supported.", + nameof(morphType)); + } Name = morphType.Name; Abbreviation = morphType.Abbreviation; Description = morphType.Description; diff --git a/backend/FwLite/LcmCrdt/CrdtProjectsService.cs b/backend/FwLite/LcmCrdt/CrdtProjectsService.cs index 457fe2f12f..13526ad6c3 100644 --- a/backend/FwLite/LcmCrdt/CrdtProjectsService.cs +++ b/backend/FwLite/LcmCrdt/CrdtProjectsService.cs @@ -166,8 +166,12 @@ public virtual async Task CreateProject(CreateProjectRequest reques crdtProject.Data = projectData; await InitProjectDb(db, projectData); await currentProjectService.RefreshProjectData(); + // Morph types are predefined system data that must always exist — seed them + // unconditionally so they're available before AfterCreate (e.g. import) runs. + var dataModel = serviceScope.ServiceProvider.GetRequiredService(); + await PreDefinedData.AddPredefinedMorphTypes(dataModel, projectData.ClientId); if (request.SeedNewProjectData) - await SeedSystemData(serviceScope.ServiceProvider.GetRequiredService(), projectData.ClientId); + await SeedSystemData(dataModel, projectData.ClientId); await (request.AfterCreate?.Invoke(serviceScope.ServiceProvider, crdtProject) ?? Task.CompletedTask); } catch (Exception e) @@ -241,10 +245,11 @@ internal static async Task InitProjectDb(LcmCrdtDbContext db, ProjectData data) internal static async Task SeedSystemData(DataModel dataModel, Guid clientId) { - await PreDefinedData.PredefinedComplexFormTypes(dataModel, clientId); - await PreDefinedData.PredefinedPartsOfSpeech(dataModel, clientId); - await PreDefinedData.PredefinedSemanticDomains(dataModel, clientId); - await PreDefinedData.PredefinedCustomViews(dataModel, clientId); + // Note: AddPredefinedMorphTypes is seeded unconditionally in CreateProject, not here. + await PreDefinedData.AddPredefinedComplexFormTypes(dataModel, clientId); + await PreDefinedData.AddPredefinedPartsOfSpeech(dataModel, clientId); + await PreDefinedData.AddPredefinedSemanticDomains(dataModel, clientId); + await PreDefinedData.AddPredefinedCustomViews(dataModel, clientId); } [GeneratedRegex("^[a-zA-Z0-9][a-zA-Z0-9-_]+$")] diff --git a/backend/FwLite/LcmCrdt/CurrentProjectService.cs b/backend/FwLite/LcmCrdt/CurrentProjectService.cs index a31a6f7ed2..90a57f8d70 100644 --- a/backend/FwLite/LcmCrdt/CurrentProjectService.cs +++ b/backend/FwLite/LcmCrdt/CurrentProjectService.cs @@ -1,10 +1,12 @@ using System.Collections.Concurrent; using LcmCrdt.FullTextSearch; +using LcmCrdt.Objects; using LcmCrdt.Project; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; +using SIL.Harmony; namespace LcmCrdt; @@ -105,9 +107,20 @@ async Task Execute() { await using var dbContext = await DbContextFactory.CreateDbContextAsync(); await dbContext.Database.MigrateAsync(); + + // Seed morph-types if missing (for existing projects created before morph-type support). + // Must happen BEFORE FTS regeneration so headwords include morph-type tokens. + // (querying Commits instead of MorphTypes, because the commit may not be projected yet) + if (!await dbContext.Set().AsNoTracking().AnyAsync(c => c.Id == PreDefinedData.MorphTypesSeedCommitId)) + { + var dataModel = services.GetRequiredService(); + var projectData = await dbContext.ProjectData.AsNoTracking().FirstAsync(); + await PreDefinedData.AddPredefinedMorphTypes(dataModel, projectData.ClientId); + } + if (EntrySearchServiceFactory is not null) { - await using var ess = EntrySearchServiceFactory.CreateSearchService(dbContext); + await using var ess = EntrySearchServiceFactory.CreateSearchService(dbContext); await ess.RegenerateIfMissing(); } } diff --git a/backend/FwLite/LcmCrdt/Data/Sorting.cs b/backend/FwLite/LcmCrdt/Data/Sorting.cs index acb0690737..6a26954438 100644 --- a/backend/FwLite/LcmCrdt/Data/Sorting.cs +++ b/backend/FwLite/LcmCrdt/Data/Sorting.cs @@ -48,8 +48,8 @@ from e in entries join mt in morphTypes on e.MorphType equals mt.Kind into mtGroup from mt in mtGroup.DefaultIfEmpty() orderby - !string.IsNullOrEmpty(query) && SqlHelpers.StartsWithIgnoreCaseAccents(e.Headword(order.WritingSystem), query!) descending, - !string.IsNullOrEmpty(query) && SqlHelpers.ContainsIgnoreCaseAccents(e.Headword(order.WritingSystem), query!) descending, + !string.IsNullOrEmpty(query) && SqlHelpers.StartsWithIgnoreCaseAccents(e.HeadwordWithTokens(order.WritingSystem, mt.Prefix, mt.Postfix), query!) descending, + !string.IsNullOrEmpty(query) && SqlHelpers.ContainsIgnoreCaseAccents(e.HeadwordWithTokens(order.WritingSystem, mt.Prefix, mt.Postfix), query!) descending, e.Headword(order.WritingSystem).Length, e.Headword(order.WritingSystem), mt != null ? mt.SecondaryOrder : stemOrder.FirstOrDefault(), @@ -64,8 +64,8 @@ from e in entries join mt in morphTypes on e.MorphType equals mt.Kind into mtGroup from mt in mtGroup.DefaultIfEmpty() orderby - !string.IsNullOrEmpty(query) && SqlHelpers.StartsWithIgnoreCaseAccents(e.Headword(order.WritingSystem), query!), - !string.IsNullOrEmpty(query) && SqlHelpers.ContainsIgnoreCaseAccents(e.Headword(order.WritingSystem), query!), + !string.IsNullOrEmpty(query) && SqlHelpers.StartsWithIgnoreCaseAccents(e.HeadwordWithTokens(order.WritingSystem, mt.Prefix, mt.Postfix), query!), + !string.IsNullOrEmpty(query) && SqlHelpers.ContainsIgnoreCaseAccents(e.HeadwordWithTokens(order.WritingSystem, mt.Prefix, mt.Postfix), query!), e.Headword(order.WritingSystem).Length descending, e.Headword(order.WritingSystem) descending, (mt != null ? mt.SecondaryOrder : stemOrder.FirstOrDefault()) descending, diff --git a/backend/FwLite/LcmCrdt/Migrations/20260512104451_RegenerateSearchTableForMorphTypes.Designer.cs b/backend/FwLite/LcmCrdt/Migrations/20260512104451_RegenerateSearchTableForMorphTypes.Designer.cs new file mode 100644 index 0000000000..bb7bffb533 --- /dev/null +++ b/backend/FwLite/LcmCrdt/Migrations/20260512104451_RegenerateSearchTableForMorphTypes.Designer.cs @@ -0,0 +1,838 @@ +// +using System; +using System.Collections.Generic; +using LcmCrdt; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace LcmCrdt.Migrations +{ + [DbContext(typeof(LcmCrdtDbContext))] + [Migration("20260512104451_RegenerateSearchTableForMorphTypes")] + partial class RegenerateSearchTableForMorphTypes + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "9.0.6"); + + modelBuilder.Entity("LcmCrdt.FullTextSearch.EntrySearchRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("CitationForm") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Gloss") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Headword") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("LexemeForm") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.ToTable("EntrySearchRecord", null, t => + { + t.ExcludeFromMigrations(); + }); + }); + + modelBuilder.Entity("LcmCrdt.ProjectData", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("ClientId") + .HasColumnType("TEXT"); + + b.Property("Code") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("FwProjectId") + .HasColumnType("TEXT"); + + b.Property("LastUserId") + .HasColumnType("TEXT"); + + b.Property("LastUserName") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("OriginDomain") + .HasColumnType("TEXT"); + + b.Property("Role") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasDefaultValue("Editor"); + + b.HasKey("Id"); + + b.ToTable("ProjectData"); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormComponent", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("ComplexFormEntryId") + .HasColumnType("TEXT"); + + b.Property("ComplexFormHeadword") + .HasColumnType("TEXT"); + + b.Property("ComponentEntryId") + .HasColumnType("TEXT"); + + b.Property("ComponentHeadword") + .HasColumnType("TEXT"); + + b.Property("ComponentSenseId") + .HasColumnType("TEXT") + .HasColumnName("ComponentSenseId"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("ComponentEntryId"); + + b.HasIndex("ComponentSenseId"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.HasIndex("ComplexFormEntryId", "ComponentEntryId") + .IsUnique() + .HasFilter("ComponentSenseId IS NULL"); + + b.HasIndex("ComplexFormEntryId", "ComponentEntryId", "ComponentSenseId") + .IsUnique() + .HasFilter("ComponentSenseId IS NOT NULL"); + + b.ToTable("ComplexFormComponents", (string)null); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("ComplexFormType"); + }); + + modelBuilder.Entity("MiniLcm.Models.CustomView", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Analysis") + .HasColumnType("jsonb"); + + b.Property("Base") + .HasColumnType("INTEGER"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("EntryFields") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ExampleFields") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("SenseFields") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Vernacular") + .HasColumnType("jsonb"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("CustomView"); + }); + + modelBuilder.Entity("MiniLcm.Models.Entry", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("CitationForm") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ComplexFormTypes") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("LexemeForm") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("LiteralMeaning") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("MorphType") + .HasColumnType("INTEGER"); + + b.Property("Note") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("PublishIn") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("Entry"); + }); + + modelBuilder.Entity("MiniLcm.Models.ExampleSentence", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("Reference") + .HasColumnType("jsonb"); + + b.Property("SenseId") + .HasColumnType("TEXT"); + + b.Property("Sentence") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Translations") + .IsRequired() + .HasColumnType("jsonb"); + + b.HasKey("Id"); + + b.HasIndex("SenseId"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("ExampleSentence"); + }); + + modelBuilder.Entity("MiniLcm.Models.MorphType", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Abbreviation") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Description") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Kind") + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Postfix") + .HasColumnType("TEXT"); + + b.Property("Prefix") + .HasColumnType("TEXT"); + + b.Property("SecondaryOrder") + .HasColumnType("INTEGER"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("Kind") + .IsUnique(); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("MorphType"); + }); + + modelBuilder.Entity("MiniLcm.Models.PartOfSpeech", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Predefined") + .HasColumnType("INTEGER"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("PartOfSpeech"); + }); + + modelBuilder.Entity("MiniLcm.Models.Publication", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("Publication"); + }); + + modelBuilder.Entity("MiniLcm.Models.SemanticDomain", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Code") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Predefined") + .HasColumnType("INTEGER"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("SemanticDomain"); + }); + + modelBuilder.Entity("MiniLcm.Models.Sense", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Definition") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("EntryId") + .HasColumnType("TEXT"); + + b.Property("Gloss") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("PartOfSpeechId") + .HasColumnType("TEXT"); + + b.Property("SemanticDomains") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("EntryId"); + + b.HasIndex("PartOfSpeechId"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("Sense"); + }); + + modelBuilder.Entity("MiniLcm.Models.WritingSystem", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("Abbreviation") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("Exemplars") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Font") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Order") + .HasColumnType("REAL"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.Property("Type") + .HasColumnType("INTEGER"); + + b.Property("WsId") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.HasIndex("WsId", "Type") + .IsUnique(); + + b.ToTable("WritingSystem"); + }); + + modelBuilder.Entity("SIL.Harmony.Commit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("ClientId") + .HasColumnType("TEXT"); + + b.Property("Hash") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Metadata") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ParentHash") + .IsRequired() + .HasColumnType("TEXT"); + + b.ComplexProperty>("HybridDateTime", "SIL.Harmony.Commit.HybridDateTime#HybridDateTime", b1 => + { + b1.IsRequired(); + + b1.Property("Counter") + .HasColumnType("INTEGER") + .HasColumnName("Counter"); + + b1.Property("DateTime") + .HasColumnType("TEXT") + .HasColumnName("DateTime"); + }); + + b.HasKey("Id"); + + b.ToTable("Commits", (string)null); + }); + + modelBuilder.Entity("SIL.Harmony.Core.ChangeEntity", b => + { + b.Property("CommitId") + .HasColumnType("TEXT"); + + b.Property("Index") + .HasColumnType("INTEGER"); + + b.Property("Change") + .HasColumnType("jsonb"); + + b.Property("EntityId") + .HasColumnType("TEXT"); + + b.HasKey("CommitId", "Index"); + + b.ToTable("ChangeEntities", (string)null); + }); + + modelBuilder.Entity("SIL.Harmony.Db.ObjectSnapshot", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("CommitId") + .HasColumnType("TEXT"); + + b.Property("Entity") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("EntityId") + .HasColumnType("TEXT"); + + b.Property("EntityIsDeleted") + .HasColumnType("INTEGER"); + + b.Property("IsRoot") + .HasColumnType("INTEGER"); + + b.PrimitiveCollection("References") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TypeName") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("EntityId"); + + b.HasIndex("CommitId", "EntityId") + .IsUnique(); + + b.ToTable("Snapshots", (string)null); + }); + + modelBuilder.Entity("SIL.Harmony.Resource.LocalResource", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("LocalPath") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.ToTable("LocalResource"); + }); + + modelBuilder.Entity("SIL.Harmony.Resource.RemoteResource", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT"); + + b.Property("DeletedAt") + .HasColumnType("TEXT"); + + b.Property("RemoteId") + .HasColumnType("TEXT"); + + b.Property("SnapshotId") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("SnapshotId") + .IsUnique(); + + b.ToTable("RemoteResource"); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormComponent", b => + { + b.HasOne("MiniLcm.Models.Entry", null) + .WithMany("Components") + .HasForeignKey("ComplexFormEntryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("MiniLcm.Models.Entry", null) + .WithMany("ComplexForms") + .HasForeignKey("ComponentEntryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("MiniLcm.Models.Sense", null) + .WithMany() + .HasForeignKey("ComponentSenseId") + .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.ComplexFormComponent", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.ComplexFormType", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.ComplexFormType", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.CustomView", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.CustomView", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Entry", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.Entry", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.ExampleSentence", b => + { + b.HasOne("MiniLcm.Models.Sense", null) + .WithMany("ExampleSentences") + .HasForeignKey("SenseId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.ExampleSentence", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.MorphType", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.MorphType", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.PartOfSpeech", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.PartOfSpeech", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Publication", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.Publication", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.SemanticDomain", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.SemanticDomain", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Sense", b => + { + b.HasOne("MiniLcm.Models.Entry", null) + .WithMany("Senses") + .HasForeignKey("EntryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("MiniLcm.Models.PartOfSpeech", "PartOfSpeech") + .WithMany() + .HasForeignKey("PartOfSpeechId") + .OnDelete(DeleteBehavior.SetNull); + + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.Sense", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + + b.Navigation("PartOfSpeech"); + }); + + modelBuilder.Entity("MiniLcm.Models.WritingSystem", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("MiniLcm.Models.WritingSystem", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("SIL.Harmony.Core.ChangeEntity", b => + { + b.HasOne("SIL.Harmony.Commit", null) + .WithMany("ChangeEntities") + .HasForeignKey("CommitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("SIL.Harmony.Db.ObjectSnapshot", b => + { + b.HasOne("SIL.Harmony.Commit", "Commit") + .WithMany("Snapshots") + .HasForeignKey("CommitId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Commit"); + }); + + modelBuilder.Entity("SIL.Harmony.Resource.RemoteResource", b => + { + b.HasOne("SIL.Harmony.Db.ObjectSnapshot", null) + .WithOne() + .HasForeignKey("SIL.Harmony.Resource.RemoteResource", "SnapshotId") + .OnDelete(DeleteBehavior.SetNull); + }); + + modelBuilder.Entity("MiniLcm.Models.Entry", b => + { + b.Navigation("ComplexForms"); + + b.Navigation("Components"); + + b.Navigation("Senses"); + }); + + modelBuilder.Entity("MiniLcm.Models.Sense", b => + { + b.Navigation("ExampleSentences"); + }); + + modelBuilder.Entity("SIL.Harmony.Commit", b => + { + b.Navigation("ChangeEntities"); + + b.Navigation("Snapshots"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/backend/FwLite/LcmCrdt/Migrations/20260512104451_RegenerateSearchTableForMorphTypes.cs b/backend/FwLite/LcmCrdt/Migrations/20260512104451_RegenerateSearchTableForMorphTypes.cs new file mode 100644 index 0000000000..1ae1839f4b --- /dev/null +++ b/backend/FwLite/LcmCrdt/Migrations/20260512104451_RegenerateSearchTableForMorphTypes.cs @@ -0,0 +1,23 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace LcmCrdt.Migrations +{ + /// + public partial class RegenerateSearchTableForMorphTypes : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + // Force FTS rebuild so headwords include morph-type prefix/postfix tokens + migrationBuilder.Sql("DELETE FROM EntrySearchRecord;"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + // FTS table will be lazily regenerated + } + } +} diff --git a/backend/FwLite/LcmCrdt/Objects/PreDefinedData.cs b/backend/FwLite/LcmCrdt/Objects/PreDefinedData.cs index 37ab3d0db5..3551b87eb4 100644 --- a/backend/FwLite/LcmCrdt/Objects/PreDefinedData.cs +++ b/backend/FwLite/LcmCrdt/Objects/PreDefinedData.cs @@ -5,7 +5,7 @@ namespace LcmCrdt.Objects; public static class PreDefinedData { - internal static async Task PredefinedComplexFormTypes(DataModel dataModel, Guid clientId) + internal static async Task AddPredefinedComplexFormTypes(DataModel dataModel, Guid clientId) { await dataModel.AddChanges(clientId, [ @@ -15,7 +15,7 @@ await dataModel.AddChanges(clientId, new Guid("dc60d2a9-0cc2-48ed-803c-a238a14b6eae")); } - internal static async Task PredefinedSemanticDomains(DataModel dataModel, Guid clientId) + internal static async Task AddPredefinedSemanticDomains(DataModel dataModel, Guid clientId) { //todo load from xml instead of hardcoding and use real IDs await dataModel.AddChanges(clientId, @@ -31,7 +31,7 @@ await dataModel.AddChanges(clientId, new Guid("023faebb-711b-4d2f-a14f-a15621fc66bc")); } - public static async Task PredefinedPartsOfSpeech(DataModel dataModel, Guid clientId) + public static async Task AddPredefinedPartsOfSpeech(DataModel dataModel, Guid clientId) { //todo load from xml instead of hardcoding await dataModel.AddChanges(clientId, @@ -43,7 +43,7 @@ await dataModel.AddChanges(clientId, new Guid("023faebb-711b-4d2f-b34f-a15621fc66bb")); } - internal static async Task PredefinedCustomViews(DataModel dataModel, Guid clientId) + internal static async Task AddPredefinedCustomViews(DataModel dataModel, Guid clientId) { await dataModel.AddChanges(clientId, [ @@ -73,4 +73,13 @@ await dataModel.AddChanges(clientId, ], new Guid("b2c3d4e5-f6a7-8901-bcde-f12345678901")); } + + public static readonly Guid MorphTypesSeedCommitId = new("a7b2c3d4-e5f6-4a8b-9c0d-1e2f3a4b5c6d"); + + internal static async Task AddPredefinedMorphTypes(DataModel dataModel, Guid clientId) + { + await dataModel.AddChanges(clientId, + [.. CanonicalMorphTypes.All.Values.Select(mt => new CreateMorphTypeChange(mt))], + MorphTypesSeedCommitId); + } } diff --git a/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs b/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs index a8a63488fa..bc37968262 100644 --- a/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs +++ b/backend/FwLite/MiniLcm.Tests/QueryEntryTestsBase.cs @@ -523,14 +523,6 @@ public async Task PunctuationWorks(string searchTerm, string word) public async Task SearchEntries_MatchesLexeme(string searchTerm) { var prefixQuery = $"{searchTerm}-"; - await Api.CreateMorphType(new MorphType - { - Id = Guid.NewGuid(), - Kind = MorphTypeKind.Prefix, - Name = { ["en"] = "Prefix" }, - Postfix = "-", - SecondaryOrder = 3 - }); var lexemeOnlyMatchEntry = await Api.CreateEntry(new Entry { LexemeForm = { ["en"] = "mango" }, @@ -554,14 +546,6 @@ await Api.CreateMorphType(new MorphType public async Task SearchEntries_CitationFormOverridesMorphTokens(string searchTerm) { var prefixQuery = $"{searchTerm}-"; - await Api.CreateMorphType(new MorphType - { - Id = Guid.NewGuid(), - Kind = MorphTypeKind.Prefix, - Name = { ["en"] = "Prefix" }, - Postfix = "-", - SecondaryOrder = 3 - }); var entryWithOverriddenMorphToken = await Api.CreateEntry(new Entry { LexemeForm = { ["en"] = "mango" }, @@ -578,14 +562,6 @@ await Api.CreateMorphType(new MorphType [InlineData("o-")] // non-FTS public async Task MorphTokenSearch_FindsPrefixEntry(string searchTerm) { - await Api.CreateMorphType(new MorphType - { - Id = Guid.NewGuid(), - Kind = MorphTypeKind.Prefix, - Name = { ["en"] = "Prefix" }, - Postfix = "-", - SecondaryOrder = 3 - }); var id = Guid.NewGuid(); await Api.CreateEntry(new Entry { Id = id, LexemeForm = { ["en"] = "mango" }, MorphType = MorphTypeKind.Prefix }); @@ -598,14 +574,6 @@ await Api.CreateMorphType(new MorphType [InlineData("-m")] // non-FTS public async Task MorphTokenSearch_FindsSuffixEntry(string searchTerm) { - await Api.CreateMorphType(new MorphType - { - Id = Guid.NewGuid(), - Kind = MorphTypeKind.Suffix, - Name = { ["en"] = "Suffix" }, - Prefix = "-", - SecondaryOrder = 6 - }); var id = Guid.NewGuid(); await Api.CreateEntry(new Entry { Id = id, LexemeForm = { ["en"] = "mango" }, MorphType = MorphTypeKind.Suffix }); @@ -616,14 +584,6 @@ await Api.CreateMorphType(new MorphType [Fact] public async Task MorphTokenSearch_DoesNotMatchWithoutToken() { - await Api.CreateMorphType(new MorphType - { - Id = Guid.NewGuid(), - Kind = MorphTypeKind.Prefix, - Name = { ["en"] = "Prefix" }, - Postfix = "-", - SecondaryOrder = 3 - }); await Api.CreateEntry(new Entry { LexemeForm = { ["en"] = "mango" }, MorphType = MorphTypeKind.Root }); // Searching for "-mango" should NOT match a Root entry (no morph tokens) diff --git a/backend/FwLite/MiniLcm.Tests/SortingTestsBase.cs b/backend/FwLite/MiniLcm.Tests/SortingTestsBase.cs index a815324133..48ab0f8f97 100644 --- a/backend/FwLite/MiniLcm.Tests/SortingTestsBase.cs +++ b/backend/FwLite/MiniLcm.Tests/SortingTestsBase.cs @@ -55,6 +55,35 @@ await Api.GetEntries(new QueryOptions(new SortOptions(SortField.Headword, wsId)) .ToArrayAsync(); } + [Theory] + [InlineData("a-", SortField.Headword)] // non-FTS + [InlineData("a-", SortField.SearchRelevance)] // non-FTS + [InlineData("aaaa-", SortField.Headword)] // FTS + [InlineData("aaaa-", SortField.SearchRelevance)] // FTS + public async Task MorphTokenSearch_PrefixHeadwordBeatsIncidentalContains(string query, SortField sortField) + { + // An entry with lexeme "a" and MorphType=Prefix has headword "a-". + // An entry "toma-toma" incidentally contains "a-" in the middle. + // The prefix entry should sort first because it's a headword-starts-with match, + // not just an incidental contains match. + var baseForm = query.TrimEnd('-'); + Entry prefixEntry = new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = baseForm }, MorphType = MorphTypeKind.Prefix }; + Entry containsEntry = new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = $"tom{baseForm}-tom" }, MorphType = MorphTypeKind.Root }; + + var ids = new[] { prefixEntry.Id, containsEntry.Id }.ToHashSet(); + + // Insert in reverse order to ensure sorting is actually tested + await Api.CreateEntry(containsEntry); + await Api.CreateEntry(prefixEntry); + + var results = (await Api.SearchEntries(query, new(new(sortField))).ToArrayAsync()) + .Where(e => ids.Contains(e.Id)) + .ToList(); + + results.Should().BeEquivalentTo([prefixEntry, containsEntry], + options => options.WithStrictOrdering()); + } + [Theory] [InlineData("aaaa", SortField.Headword)] // FTS [InlineData("a", SortField.Headword)] // non-FTS @@ -62,24 +91,15 @@ await Api.GetEntries(new QueryOptions(new SortOptions(SortField.Headword, wsId)) [InlineData("a", SortField.SearchRelevance)] // non-FTS public async Task MorphTokens_DoNotAffectSortOrder(string query, SortField sortField) { - MorphType[] morphTypes = [ - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Root, Name = { ["en"] = "Root" }, SecondaryOrder = 1 }, - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Prefix, Name = { ["en"] = "Prefix" }, Prefix = "-", SecondaryOrder = 3 }, - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Suffix, Name = { ["en"] = "Suffix" }, Postfix = "-", SecondaryOrder = 6 }, - ]; - - foreach (var morphType in morphTypes) - await Api.CreateMorphType(morphType); - // All three entries have LexemeForm "aaaa". Their headwords are: // Root: "aaaa" (no tokens) // Prefix: "-aaaa" (leading token "-") // Suffix: "aaaa-" (trailing token "-") // Sort order should ignore morph tokens and differentiate only by SecondaryOrder. Entry[] expected = [ - new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Root }, // SecondaryOrder = 1 - new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Prefix }, // SecondaryOrder = 3 - new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Suffix }, // SecondaryOrder = 6 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Root }, // SecondaryOrder = 0 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Prefix }, // SecondaryOrder = 20 + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "aaaa" }, MorphType = MorphTypeKind.Suffix }, // SecondaryOrder = 70 ]; var ids = expected.Select(e => e.Id).ToHashSet(); @@ -100,25 +120,15 @@ public async Task MorphTokens_DoNotAffectSortOrder(string query, SortField sortF [InlineData("a")] // non-FTS rank public async Task SecondaryOrder_Relevance_LexemeForm(string searchTerm) { - MorphType[] morphTypes = [ - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Root, Name = { ["en"] = "Root" }, SecondaryOrder = 1 }, - // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 }, - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundRoot, Name = { ["en"] = "BoundRoot" }, SecondaryOrder = 2 }, - // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundStem, Name = { ["en"] = "BoundStem" }, SecondaryOrder = 2 }, - ]; - - foreach (var morphType in morphTypes) - await Api.CreateMorphType(morphType); - static Entry[] CreateSortedEntrySet(string headword) { return [ - // Root/Stem - SecondaryOrder: 1 + // Root/Stem - SecondaryOrder: 0 new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = headword }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = lexeme }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, - // BoundRoot/BoundStem - SecondaryOrder: 2 - new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = headword }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, - // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = lexeme }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, + // Prefix - SecondaryOrder: 20 (no leading token, so headword still starts with the lexeme) + new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = headword }, MorphType = MorphTypeKind.Prefix/*, HomographNumber = 1*/ }, + // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = lexeme }, MorphType = MorphTypeKind.Prefix, HomographNumber = 2 }, ]; } @@ -168,23 +178,13 @@ static Entry[] CreateSortedEntrySet(string headword) [InlineData("a")] // non-FTS rank public async Task SecondaryOrder_Relevance_CitationForm(string searchTerm) { - MorphType[] morphTypes = [ - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Root, Name = { ["en"] = "Root" }, SecondaryOrder = 1 }, - // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 }, - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundRoot, Name = { ["en"] = "BoundRoot" }, SecondaryOrder = 2 }, - // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundStem, Name = { ["en"] = "BoundStem" }, SecondaryOrder = 2 }, - ]; - - foreach (var morphType in morphTypes) - await Api.CreateMorphType(morphType); - static Entry[] CreateSortedEntrySet(string headword) { return [ - // Root/Stem - SecondaryOrder: 1 + // Root/Stem - SecondaryOrder: 0 new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = headword }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = headword }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, - // BoundRoot/BoundStem - SecondaryOrder: 2 + // BoundRoot/BoundStem - SecondaryOrder: 10 new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = headword }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = headword }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, ]; @@ -236,27 +236,17 @@ static Entry[] CreateSortedEntrySet(string headword) [InlineData("b")] // non-FTS rank public async Task SecondaryOrder_Headword_LexemeForm(string searchTerm) { - MorphType[] morphTypes = [ - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Root, Name = { ["en"] = "Root" }, SecondaryOrder = 1 }, - // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 }, - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundRoot, Name = { ["en"] = "BoundRoot" }, SecondaryOrder = 2 }, - // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundStem, Name = { ["en"] = "BoundStem" }, SecondaryOrder = 2 }, - ]; - - foreach (var morphType in morphTypes) - await Api.CreateMorphType(morphType); - Entry[] expected = [ - // Root/Stem - SecondaryOrder: 1 + // Root/Stem - SecondaryOrder: 0 new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "abaaa" }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "abaaa" }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, - // BoundRoot/BoundStem - SecondaryOrder: 2 + // BoundRoot/BoundStem - SecondaryOrder: 10 new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "abaaa" }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "abaaa" }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, - // Root/Stem - SecondaryOrder: 1 + // Root/Stem - SecondaryOrder: 0 new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "baaa" }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "baaa" }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, - // BoundRoot/BoundStem - SecondaryOrder: 2 + // BoundRoot/BoundStem - SecondaryOrder: 10 new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "baaa" }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), LexemeForm = { ["en"] = "baaa" }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, ]; @@ -281,27 +271,17 @@ public async Task SecondaryOrder_Headword_LexemeForm(string searchTerm) [InlineData("b")] // non-FTS rank public async Task SecondaryOrder_Headword_CitationForm(string searchTerm) { - MorphType[] morphTypes = [ - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Root, Name = { ["en"] = "Root" }, SecondaryOrder = 1 }, - // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.Stem, Name = { ["en"] = "Stem" }, SecondaryOrder = 1 }, - new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundRoot, Name = { ["en"] = "BoundRoot" }, SecondaryOrder = 2 }, - // new() { Id = Guid.NewGuid(), Kind = MorphTypeKind.BoundStem, Name = { ["en"] = "BoundStem" }, SecondaryOrder = 2 }, - ]; - - foreach (var morphType in morphTypes) - await Api.CreateMorphType(morphType); - Entry[] expected = [ - // Root/Stem - SecondaryOrder: 1 + // Root/Stem - SecondaryOrder: 0 new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "abaaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "abaaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, - // BoundRoot/BoundStem - SecondaryOrder: 2 + // BoundRoot/BoundStem - SecondaryOrder: 10 new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "abaaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "abaaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, - // Root/Stem - SecondaryOrder: 1 + // Root/Stem - SecondaryOrder: 0 new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "baaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Root/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "baaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.Stem, HomographNumber = 2 }, - // BoundRoot/BoundStem - SecondaryOrder: 2 + // BoundRoot/BoundStem - SecondaryOrder: 10 new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "baaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundRoot/*, HomographNumber = 1*/ }, // new() { Id = Guid.NewGuid(), CitationForm = { ["en"] = "baaa" }, LexemeForm = { ["en"] = "❌" }, MorphType = MorphTypeKind.BoundStem, HomographNumber = 2 }, ]; diff --git a/backend/FwLite/MiniLcm.Tests/Validators/MorphTypeValidatorTests.cs b/backend/FwLite/MiniLcm.Tests/Validators/MorphTypeValidatorTests.cs new file mode 100644 index 0000000000..20748df739 --- /dev/null +++ b/backend/FwLite/MiniLcm.Tests/Validators/MorphTypeValidatorTests.cs @@ -0,0 +1,79 @@ +using FluentValidation.TestHelper; +using MiniLcm.Validators; + +namespace MiniLcm.Tests.Validators; + +public class MorphTypeValidatorTests +{ + private readonly MorphTypeValidator _validator = new(); + + private static MorphType NewCanonicalMorphType(MorphTypeKind kind = MorphTypeKind.Root) + { + return CanonicalMorphTypes.All[kind].Copy(); + } + + [Fact] + public void Succeeds_WhenMorphTypeIsCanonical() + { + var morphType = NewCanonicalMorphType(); + _validator.TestValidate(morphType).ShouldNotHaveAnyValidationErrors(); + } + + [Theory] + [MemberData(nameof(CanonicalKinds))] + public void Succeeds_ForEveryCanonicalKind(MorphTypeKind kind) + { + var morphType = NewCanonicalMorphType(kind); + _validator.TestValidate(morphType).ShouldNotHaveAnyValidationErrors(); + } + + [Fact] + public void Fails_WhenIdIsNotCanonical() + { + var morphType = NewCanonicalMorphType(); + morphType.Id = Guid.NewGuid(); + _validator.TestValidate(morphType).ShouldHaveValidationErrorFor(mt => mt.Id); + } + + [Fact] + public void Fails_WhenIdIsEmpty() + { + var morphType = NewCanonicalMorphType(); + morphType.Id = Guid.Empty; + _validator.TestValidate(morphType).ShouldHaveValidationErrorFor(mt => mt.Id); + } + + [Fact] + public void Fails_WhenDeletedAtIsSet() + { + var morphType = NewCanonicalMorphType(); + morphType.DeletedAt = DateTimeOffset.UtcNow; + _validator.TestValidate(morphType).ShouldHaveValidationErrorFor(mt => mt.DeletedAt); + } + + [Fact] + public void Fails_WhenNameIsEmpty() + { + var morphType = NewCanonicalMorphType(); + morphType.Name = []; + _validator.TestValidate(morphType).ShouldHaveValidationErrorFor(mt => mt.Name); + } + + [Fact] + public void Fails_WhenAbbreviationIsEmpty() + { + var morphType = NewCanonicalMorphType(); + morphType.Abbreviation = []; + _validator.TestValidate(morphType).ShouldHaveValidationErrorFor(mt => mt.Abbreviation); + } + + public static TheoryData CanonicalKinds() + { + var data = new TheoryData(); + foreach (var kind in CanonicalMorphTypes.All.Keys) + { + data.Add(kind); + } + return data; + } +} diff --git a/backend/FwLite/MiniLcm/Models/CanonicalMorphTypes.cs b/backend/FwLite/MiniLcm/Models/CanonicalMorphTypes.cs new file mode 100644 index 0000000000..c26a8913bc --- /dev/null +++ b/backend/FwLite/MiniLcm/Models/CanonicalMorphTypes.cs @@ -0,0 +1,225 @@ +using System.Collections.Frozen; + +namespace MiniLcm.Models; + +/// +/// Canonical morph-type definitions copied from: +/// https://github.com/sillsdev/liblcm/blob/master/src/SIL.LCModel/Templates/NewLangProj.fwdata +/// +public static class CanonicalMorphTypes +{ + public static readonly FrozenDictionary All = CreateAll().ToFrozenDictionary(m => m.Kind); + + private static readonly FrozenSet CanonicalIds = All.Values.Select(m => m.Id).ToFrozenSet(); + + public static bool IsCanonical(Guid id) + { + return CanonicalIds.Contains(id); + } + + private static MorphType[] CreateAll() + { + return + [ + new() + { + Id = new Guid("d7f713e4-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.BoundRoot, + Name = new MultiString { { "en", "bound root" } }, + Abbreviation = new MultiString { { "en", "bd root" } }, + Description = new RichMultiString { { "en", new RichString("A bound root is a root which cannot occur as a separate word apart from any other morpheme.") } }, + Prefix = "*", + SecondaryOrder = 10, + }, + new() + { + Id = new Guid("d7f713e7-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.BoundStem, + Name = new MultiString { { "en", "bound stem" } }, + Abbreviation = new MultiString { { "en", "bd stem" } }, + Description = new RichMultiString { { "en", new RichString("A bound stem is a stem which cannot occur as a separate word apart from any other morpheme.") } }, + Prefix = "*", + SecondaryOrder = 10, + }, + new() + { + Id = new Guid("d7f713df-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.Circumfix, + Name = new MultiString { { "en", "circumfix" } }, + Abbreviation = new MultiString { { "en", "cfx" } }, + Description = new RichMultiString { { "en", new RichString("A circumfix is an affix made up of two separate parts which surround and attach to a root or stem.") } }, + SecondaryOrder = 0, + }, + new() + { + Id = new Guid("c2d140e5-7ca9-41f4-a69a-22fc7049dd2c"), + Kind = MorphTypeKind.Clitic, + Name = new MultiString { { "en", "clitic" } }, + Abbreviation = new MultiString { { "en", "clit" } }, + Description = new RichMultiString { { "en", new RichString("A clitic is a morpheme that has syntactic characteristics of a word, but shows evidence of being phonologically bound to another word. Orthographically, it stands alone.") } }, + SecondaryOrder = 0, + }, + new() + { + Id = new Guid("d7f713e1-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.Enclitic, + Name = new MultiString { { "en", "enclitic" } }, + Abbreviation = new MultiString { { "en", "enclit" } }, + Description = new RichMultiString { { "en", new RichString("An enclitic is a clitic that is phonologically joined at the end of a preceding word to form a single unit. Orthographically, it may attach to the preceding word.") } }, + Prefix = "=", + SecondaryOrder = 80, + }, + new() + { + Id = new Guid("d7f713da-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.Infix, + Name = new MultiString { { "en", "infix" } }, + Abbreviation = new MultiString { { "en", "ifx" } }, + Description = new RichMultiString { { "en", new RichString("An infix is an affix that is inserted within a root or stem.") } }, + Prefix = "-", + Postfix = "-", + SecondaryOrder = 40, + }, + new() + { + Id = new Guid("56db04bf-3d58-44cc-b292-4c8aa68538f4"), + Kind = MorphTypeKind.Particle, + Name = new MultiString { { "en", "particle" } }, + Abbreviation = new MultiString { { "en", "part" } }, + Description = new RichMultiString { { "en", new RichString("A particle is a word that does not belong to one of the main classes of words, is invariable in form, and typically has grammatical or pragmatic meaning.") } }, + SecondaryOrder = 0, + }, + new() + { + Id = new Guid("d7f713db-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.Prefix, + Name = new MultiString { { "en", "prefix" } }, + Abbreviation = new MultiString { { "en", "pfx" } }, + Description = new RichMultiString { { "en", new RichString("A prefix is an affix that is joined before a root or stem.") } }, + Postfix = "-", + SecondaryOrder = 20, + }, + new() + { + Id = new Guid("d7f713e2-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.Proclitic, + Name = new MultiString { { "en", "proclitic" } }, + Abbreviation = new MultiString { { "en", "proclit" } }, + Description = new RichMultiString { { "en", new RichString("A proclitic is a clitic that precedes the word to which it is phonologically joined. Orthographically, it may attach to the following word.") } }, + Postfix = "=", + SecondaryOrder = 30, + }, + new() + { + Id = new Guid("d7f713e5-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.Root, + Name = new MultiString { { "en", "root" } }, + Abbreviation = new MultiString { { "en", "ubd root" } }, + Description = new RichMultiString { { "en", new RichString("A root is the portion of a word that (i) is common to a set of derived or inflected forms, if any, when all affixes are removed, (ii) is not further analyzable into meaningful elements, being morphologically simple, and, (iii) carries the principal portion of meaning of the words in which it functions.") } }, + SecondaryOrder = 0, + }, + new() + { + Id = new Guid("d7f713dc-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.Simulfix, + Name = new MultiString { { "en", "simulfix" } }, + Abbreviation = new MultiString { { "en", "smfx" } }, + Description = new RichMultiString { { "en", new RichString("A simulfix is a change or replacement of vowels or consonants (usually vowels) which changes the meaning of a word. (Note: the parser does not currently handle simulfixes.)") } }, + Prefix = "=", + Postfix = "=", + SecondaryOrder = 60, + }, + new() + { + Id = new Guid("d7f713e8-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.Stem, + Name = new MultiString { { "en", "stem" } }, + Abbreviation = new MultiString { { "en", "ubd stem" } }, + Description = new RichMultiString { { "en", new RichString([ + new RichSpan { Text = "\"A stem is the root or roots of a word, together with any derivational affixes, to which inflectional affixes are added.\" (LinguaLinks Library). A stem \"may consist solely of a single root morpheme (i.e. a 'simple' stem as in " }, + new RichSpan { Text = "man", NamedStyle = "Emphasized Text" }, + new RichSpan { Text = "), or of two root morphemes (e.g. a 'compound' stem, as in " }, + new RichSpan { Text = "blackbird", NamedStyle = "Emphasized Text" }, + new RichSpan { Text = "), or of a root morpheme plus a derivational affix (i.e. a 'complex' stem, as in " }, + new RichSpan { Text = "manly", NamedStyle = "Emphasized Text" }, + new RichSpan { Text = ", " }, + new RichSpan { Text = "unmanly", NamedStyle = "Emphasized Text" }, + new RichSpan { Text = ", " }, + new RichSpan { Text = "manliness", NamedStyle = "Emphasized Text" }, + new RichSpan { Text = "). All have in common the notion that it is to the stem that inflectional affixes are attached.\" (Crystal, 1997:362)" }, + ]) } }, + SecondaryOrder = 0, + }, + new() + { + Id = new Guid("d7f713dd-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.Suffix, + Name = new MultiString { { "en", "suffix" } }, + Abbreviation = new MultiString { { "en", "sfx" } }, + Description = new RichMultiString { { "en", new RichString("A suffix is an affix that is attached to the end of a root or stem.") } }, + Prefix = "-", + SecondaryOrder = 70, + }, + new() + { + Id = new Guid("d7f713de-e8cf-11d3-9764-00c04f186933"), + Kind = MorphTypeKind.Suprafix, + Name = new MultiString { { "en", "suprafix" } }, + Abbreviation = new MultiString { { "en", "spfx" } }, + Description = new RichMultiString { { "en", new RichString("A suprafix is a kind of affix in which a suprasegmental is superimposed on one or more syllables of the root or stem, signalling a particular morphosyntactic operation. (Note: the parser does not currently handle suprafixes.)") } }, + Prefix = "~", + Postfix = "~", + SecondaryOrder = 50, + }, + new() + { + Id = new Guid("18d9b1c3-b5b6-4c07-b92c-2fe1d2281bd4"), + Kind = MorphTypeKind.InfixingInterfix, + Name = new MultiString { { "en", "infixing interfix" } }, + Abbreviation = new MultiString { { "en", "ifxnfx" } }, + Description = new RichMultiString { { "en", new RichString("An infixing interfix is an infix that can occur between two roots or stems.") } }, + Prefix = "-", + Postfix = "-", + SecondaryOrder = 0, + }, + new() + { + Id = new Guid("af6537b0-7175-4387-ba6a-36547d37fb13"), + Kind = MorphTypeKind.PrefixingInterfix, + Name = new MultiString { { "en", "prefixing interfix" } }, + Abbreviation = new MultiString { { "en", "pfxnfx" } }, + Description = new RichMultiString { { "en", new RichString("A prefixing interfix is a prefix that can occur between two roots or stems.") } }, + Postfix = "-", + SecondaryOrder = 0, + }, + new() + { + Id = new Guid("3433683d-08a9-4bae-ae53-2a7798f64068"), + Kind = MorphTypeKind.SuffixingInterfix, + Name = new MultiString { { "en", "suffixing interfix" } }, + Abbreviation = new MultiString { { "en", "sfxnfx" } }, + Description = new RichMultiString { { "en", new RichString("A suffixing interfix is a suffix that can occur between two roots or stems.") } }, + Prefix = "-", + SecondaryOrder = 0, + }, + new() + { + Id = new Guid("a23b6faa-1052-4f4d-984b-4b338bdaf95f"), + Kind = MorphTypeKind.Phrase, + Name = new MultiString { { "en", "phrase" } }, + Abbreviation = new MultiString { { "en", "phr" } }, + Description = new RichMultiString { { "en", new RichString("A phrase is a syntactic structure that consists of more than one word but lacks the subject-predicate organization of a clause.") } }, + SecondaryOrder = 0, + }, + new() + { + Id = new Guid("0cc8c35a-cee9-434d-be58-5d29130fba5b"), + Kind = MorphTypeKind.DiscontiguousPhrase, + Name = new MultiString { { "en", "discontiguous phrase" } }, + Abbreviation = new MultiString { { "en", "dis phr" } }, + Description = new RichMultiString { { "en", new RichString("A discontiguous phrase has discontiguous constituents which (a) are separated from each other by one or more intervening constituents, and (b) are considered either (i) syntactically contiguous and unitary, or (ii) realizing the same, single meaning. An example is French ne...pas.") } }, + SecondaryOrder = 0, + }, + ]; + } +} diff --git a/backend/FwLite/MiniLcm/Validators/MorphTypeValidator.cs b/backend/FwLite/MiniLcm/Validators/MorphTypeValidator.cs index 4a23261b2c..59a0f26c0a 100644 --- a/backend/FwLite/MiniLcm/Validators/MorphTypeValidator.cs +++ b/backend/FwLite/MiniLcm/Validators/MorphTypeValidator.cs @@ -7,8 +7,14 @@ public class MorphTypeValidator : AbstractValidator { public MorphTypeValidator() { + RuleFor(s => s.Id).Must(BeCanonicalGuid).WithMessage((s) => $"Id {s.Id} is not a canonical morph-type Id. Custom morph types are not supported. ({s.Name} - {s.Kind})"); RuleFor(m => m.DeletedAt).Null(); RuleFor(m => m.Name).NotNull().NotEmpty().WithMessage((m) => $"Name is required ({m.Kind} - {m.Id})"); RuleFor(m => m.Abbreviation).NotNull().NotEmpty().WithMessage((m) => $"Abbreviation is required ({m.Kind} - {m.Name} - {m.Id})"); } + + private bool BeCanonicalGuid(Guid id) + { + return CanonicalMorphTypes.IsCanonical(id); + } } From 649fb2c001c84b6269a83175174258037fd7ad7a Mon Sep 17 00:00:00 2001 From: Tim Haasdyk Date: Fri, 10 Apr 2026 13:36:41 +0200 Subject: [PATCH 5/6] Remove CreateMorphType and DeleteMorphType from MiniLcm API (#2221) --- .../Api/FwDataMiniLcmApi.cs | 12 ----- .../Import/ResumableTests.cs | 5 --- .../SyncTestHelpers.cs | 20 --------- .../FwLiteProjectSync.Tests/SyncTests.cs | 45 ------------------- .../FwLiteProjectSync/DryRunMiniLcmApi.cs | 13 ------ .../Import/ResumableImportApi.cs | 4 -- .../FwLiteWeb/Hubs/CrdtMiniLcmApiHub.cs | 7 --- .../FwLiteWeb/Hubs/MiniLcmApiHubBase.cs | 6 --- backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs | 22 --------- .../MiniLcm.Tests/MorphTypeSyncTests.cs | 36 +++++++++++++++ backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs | 2 - .../MiniLcm/SyncHelpers/MorphTypeSync.cs | 12 ++--- 12 files changed, 42 insertions(+), 142 deletions(-) create mode 100644 backend/FwLite/MiniLcm.Tests/MorphTypeSyncTests.cs diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs index a887a957ff..33609c887e 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs @@ -581,12 +581,6 @@ internal MorphType FromLcmMorphType(IMoMorphType morphType) }; } - public Task CreateMorphType(MorphType morphType) - { - // Creating new morph types not allowed in FwData projects, so silently ignore operation - return Task.FromResult(morphType); - } - public Task UpdateMorphType(Guid id, UpdateObjectInput update) { var lcmMorphType = MorphTypeRepository.GetObject(id); @@ -608,12 +602,6 @@ public async Task UpdateMorphType(MorphType before, MorphType after, return await GetMorphType(after.Id) ?? throw new NullReferenceException("unable to find morph type with id " + after.Id); } - public Task DeleteMorphType(Guid id) - { - // Deleting morph types not allowed in FwData projects, so silently ignore operation - return Task.CompletedTask; - } - public IAsyncEnumerable GetVariantTypes() { return VariantTypes.PossibilitiesOS diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs index 1c1f655e44..1dba5ad324 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/Import/ResumableTests.cs @@ -189,11 +189,6 @@ Task IMiniLcmWriteApi.CreateComplexFormType(ComplexFormType com ResumableTests.MaybeThrowRandom(random, 0.2); return _api.CreateComplexFormType(complexFormType); } - Task IMiniLcmWriteApi.CreateMorphType(MorphType morphType) - { - ResumableTests.MaybeThrowRandom(random, 0.02); - return _api.CreateMorphType(morphType); - } Task IMiniLcmWriteApi.CreateSemanticDomain(SemanticDomain semanticDomain) { ResumableTests.MaybeThrowRandom(random, 0.2); diff --git a/backend/FwLite/FwLiteProjectSync.Tests/SyncTestHelpers.cs b/backend/FwLite/FwLiteProjectSync.Tests/SyncTestHelpers.cs index 183fb63e0c..055c3566e0 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/SyncTestHelpers.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/SyncTestHelpers.cs @@ -1,29 +1,9 @@ -using FwDataMiniLcmBridge.Api; using MiniLcm.Models; namespace FwLiteProjectSync.Tests; public static class SyncTestHelpers { - public static MorphType CreateMorphType(MorphTypeKind kind, string? prefix = null, string? postfix = null, int secondaryOrder = 0) - { - var guid = LcmHelpers.ToLcmMorphTypeId(kind) ?? Guid.NewGuid(); - var name = $"Test {kind}"; - var abbr = $"Tst {kind}"; - var desc = $"Test morph type {kind}"; - return new MorphType - { - Id = guid, - Kind = kind, - Name = new MultiString() { { "en", name } }, - Abbreviation = new MultiString() { { "en", abbr } }, - Description = new RichMultiString() { { "en", new RichString(desc) } }, - Prefix = prefix, - Postfix = postfix, - SecondaryOrder = secondaryOrder, - }; - } - public static MorphType UpdateMorphType(MorphType orig, string? newName = null, string? newAbbreviation = null) { var newby = orig.Copy(); diff --git a/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs index b37237d59f..8f08107d1c 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs @@ -505,51 +505,6 @@ public async Task MorphTypeUpdatesSyncBothWays() fwdataStemAfterSync.Abbreviation["en"].Should().Be(newAbbr); } - [Fact] - [Trait("Category", "Integration")] - public async Task MorphTypeCreationDoesNotSyncCrdtToFw() - { - // FwDataMiniLcmApi.CreateMorphType is a no-op because FLEx forbids morph type creation or deletion - var crdtApi = _fixture.CrdtApi; - var fwdataApi = _fixture.FwDataApi; - await _syncService.Import(crdtApi, fwdataApi); - var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); - - var newMorphType = SyncTestHelpers.CreateMorphType(MorphTypeKind.Unknown, prefix: "!", postfix: "!"); - await crdtApi.CreateMorphType(newMorphType); - var syncResult = await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); - - var fwdataMorphTypes = await fwdataApi.GetMorphTypes().ToArrayAsync(); - var crdtMorphTypes = await crdtApi.GetMorphTypes().ToArrayAsync(); - crdtMorphTypes.Should().ContainEquivalentOf(newMorphType); - fwdataMorphTypes.Should().NotContainEquivalentOf(newMorphType); - crdtMorphTypes.Length.Should().Be(fwdataMorphTypes.Length + 1); - crdtMorphTypes.Where(m => m.Kind != MorphTypeKind.Unknown).Should().BeEquivalentTo(fwdataMorphTypes); - } - - [Fact] - [Trait("Category", "Integration")] - public async Task MorphTypeDeletionDoesNotSyncCrdtToFw() - { - // FwDataMiniLcmApi.DeleteMorphType is a no-op because FLEx forbids morph type creation or deletion - var crdtApi = _fixture.CrdtApi; - var fwdataApi = _fixture.FwDataApi; - await _syncService.Import(crdtApi, fwdataApi); - var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); - - var prefixingInterfix = await crdtApi.GetMorphType(MorphTypeKind.PrefixingInterfix); - prefixingInterfix.Should().NotBeNull(); - await crdtApi.DeleteMorphType(prefixingInterfix.Id); - var syncResult = await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); - - var fwdataMorphTypes = await fwdataApi.GetMorphTypes().ToArrayAsync(); - var crdtMorphTypes = await crdtApi.GetMorphTypes().ToArrayAsync(); - fwdataMorphTypes.Should().ContainEquivalentOf(prefixingInterfix); - crdtMorphTypes.Should().NotContainEquivalentOf(prefixingInterfix); - crdtMorphTypes.Length.Should().Be(fwdataMorphTypes.Length - 1); - crdtMorphTypes.Should().BeEquivalentTo(fwdataMorphTypes.Where(m => m.Kind != MorphTypeKind.PrefixingInterfix)); - } - [Fact] [Trait("Category", "Integration")] public async Task UpdatingAnEntryInEachProjectSyncsAcrossBoth() diff --git a/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs b/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs index 9d3257413b..698e98bb04 100644 --- a/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs +++ b/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs @@ -126,13 +126,6 @@ public Task DeleteComplexFormType(Guid id) return Task.CompletedTask; } - public Task CreateMorphType(MorphType morphType) - { - DryRunRecords.Add(new DryRunRecord(nameof(CreateMorphType), - $"Create morph type {morphType.Name}")); - return Task.FromResult(morphType); - } - public async Task UpdateMorphType(Guid id, UpdateObjectInput update) { DryRunRecords.Add(new DryRunRecord(nameof(UpdateMorphType), $"Update morph type {id}")); @@ -145,12 +138,6 @@ public Task UpdateMorphType(MorphType before, MorphType after, IMiniL return Task.FromResult(after); } - public Task DeleteMorphType(Guid id) - { - DryRunRecords.Add(new DryRunRecord(nameof(DeleteMorphType), $"Delete morph type {id}")); - return Task.CompletedTask; - } - public Task CreateEntry(Entry entry, CreateEntryOptions? options) { options ??= new CreateEntryOptions(); diff --git a/backend/FwLite/FwLiteProjectSync/Import/ResumableImportApi.cs b/backend/FwLite/FwLiteProjectSync/Import/ResumableImportApi.cs index c41c656517..3e562d8b3c 100644 --- a/backend/FwLite/FwLiteProjectSync/Import/ResumableImportApi.cs +++ b/backend/FwLite/FwLiteProjectSync/Import/ResumableImportApi.cs @@ -58,10 +58,6 @@ async Task IMiniLcmWriteApi.CreateComplexFormType(ComplexFormTy { return await HasCreated(complexFormType, _api.GetComplexFormTypes(), () => _api.CreateComplexFormType(complexFormType)); } - async Task IMiniLcmWriteApi.CreateMorphType(MorphType morphType) - { - return await HasCreated(morphType, _api.GetMorphTypes(), () => _api.CreateMorphType(morphType), m => m.Kind.ToString()); - } async Task IMiniLcmWriteApi.CreateSemanticDomain(SemanticDomain semanticDomain) { return await HasCreated(semanticDomain, _api.GetSemanticDomains(), () => _api.CreateSemanticDomain(semanticDomain)); diff --git a/backend/FwLite/FwLiteWeb/Hubs/CrdtMiniLcmApiHub.cs b/backend/FwLite/FwLiteWeb/Hubs/CrdtMiniLcmApiHub.cs index 649a08fcd1..f21ecd36cc 100644 --- a/backend/FwLite/FwLiteWeb/Hubs/CrdtMiniLcmApiHub.cs +++ b/backend/FwLite/FwLiteWeb/Hubs/CrdtMiniLcmApiHub.cs @@ -99,13 +99,6 @@ public override IAsyncEnumerable SearchEntries(string query, QueryOptions return base.SearchEntries(query, options); } - public override async Task CreateMorphType(MorphType morphType) - { - var newMorphType = await base.CreateMorphType(morphType); - TriggerSync(); - return newMorphType; - } - public override async Task UpdateMorphType(Guid id, JsonPatchDocument update) { var updatedMorphType = await base.UpdateMorphType(id, update); diff --git a/backend/FwLite/FwLiteWeb/Hubs/MiniLcmApiHubBase.cs b/backend/FwLite/FwLiteWeb/Hubs/MiniLcmApiHubBase.cs index 9a7f803b63..5c3b962423 100644 --- a/backend/FwLite/FwLiteWeb/Hubs/MiniLcmApiHubBase.cs +++ b/backend/FwLite/FwLiteWeb/Hubs/MiniLcmApiHubBase.cs @@ -47,12 +47,6 @@ public IAsyncEnumerable GetComplexFormTypes() return _miniLcmApi.GetComplexFormTypes(); } - public virtual async Task CreateMorphType(MorphType morphType) - { - var newMorphType = await _miniLcmApi.CreateMorphType(morphType); - return newMorphType; - } - public virtual async Task UpdateMorphType(Guid id, JsonPatchDocument update) { var updatedMorphType = await _miniLcmApi.UpdateMorphType(id, new UpdateObjectInput(update)); diff --git a/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs b/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs index 6aa0f6b501..5bd78128d0 100644 --- a/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs +++ b/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs @@ -370,23 +370,6 @@ public async IAsyncEnumerable GetMorphTypes() return await repo.MorphTypes.SingleOrDefaultAsync(m => m.Kind == kind); } - public async Task CreateMorphType(MorphType morphType) - { - await using var repo = await repoFactory.CreateRepoAsync(); - - // Duplicate MorphTypes (by kind) are not allowed - // Note: can't put this in validation wrapper since we need a repo - var exists = await repo.MorphTypes.AnyAsync(m => m.Kind == morphType.Kind); - if (exists) throw new DuplicateObjectException($"Morph type {morphType.Kind} already exists"); - - await AddChange(new CreateMorphTypeChange(morphType)); - // MorphTypeKind value must be unique in DB, so return by MorphType rather than Id in case a race condition - // ended up causing two CreateMorphType calls to happen at the same time. It's possible that the other - // call went through, creating a MorphType entry with a different GUID but the same Kind (which would - // violate the constraint). So we fetch by Kind rather than by Id here to mitigate that rare case. - return await repo.MorphTypes.SingleAsync(c => c.Kind == morphType.Kind); - } - public async Task UpdateMorphType(Guid id, UpdateObjectInput update) { await AddChange(new JsonPatchChange(id, update.Patch)); @@ -399,11 +382,6 @@ public async Task UpdateMorphType(MorphType before, MorphType after, return await GetMorphType(after.Id) ?? throw NotFoundException.ForType(after.Id); } - public async Task DeleteMorphType(Guid id) - { - await AddChange(new DeleteChange(id)); - } - public async Task CountEntries(string? query = null, FilterQueryOptions? options = null) { await using var repo = await repoFactory.CreateRepoAsync(); diff --git a/backend/FwLite/MiniLcm.Tests/MorphTypeSyncTests.cs b/backend/FwLite/MiniLcm.Tests/MorphTypeSyncTests.cs new file mode 100644 index 0000000000..d4b7df19ce --- /dev/null +++ b/backend/FwLite/MiniLcm.Tests/MorphTypeSyncTests.cs @@ -0,0 +1,36 @@ +using MiniLcm.SyncHelpers; + +namespace MiniLcm.Tests; + +public class MorphTypeSyncTests +{ + [Fact] + public async Task Sync_ThrowsOnAdd_WhenAfterContainsExtraMorphType() + { + var before = CanonicalMorphTypes.All.Values.ToArray(); + var extraMorphType = new MorphType + { + Id = Guid.NewGuid(), + Kind = MorphTypeKind.Unknown, + Name = new MultiString { { "en", "bogus" } }, + }; + var after = before.Append(extraMorphType).ToArray(); + + var act = () => MorphTypeSync.Sync(before, after, null!); + + await act.Should().ThrowAsync() + .WithMessage("*cannot be created*"); + } + + [Fact] + public async Task Sync_ThrowsOnRemove_WhenAfterIsMissingMorphType() + { + var before = CanonicalMorphTypes.All.Values.ToArray(); + var after = before.Skip(1).ToArray(); // drop one + + var act = () => MorphTypeSync.Sync(before, after, null!); + + await act.Should().ThrowAsync() + .WithMessage("*cannot be deleted*"); + } +} diff --git a/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs b/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs index e773df52a9..6d59b3e10c 100644 --- a/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs +++ b/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs @@ -45,10 +45,8 @@ Task UpdateWritingSystem(WritingSystemId id, #endregion #region MorphType - Task CreateMorphType(MorphType morphType); Task UpdateMorphType(Guid id, UpdateObjectInput update); Task UpdateMorphType(MorphType before, MorphType after, IMiniLcmApi? api = null); - Task DeleteMorphType(Guid id); #endregion #region Entry diff --git a/backend/FwLite/MiniLcm/SyncHelpers/MorphTypeSync.cs b/backend/FwLite/MiniLcm/SyncHelpers/MorphTypeSync.cs index a30e14d5aa..2a89dcadc8 100644 --- a/backend/FwLite/MiniLcm/SyncHelpers/MorphTypeSync.cs +++ b/backend/FwLite/MiniLcm/SyncHelpers/MorphTypeSync.cs @@ -56,16 +56,16 @@ public static async Task Sync(MorphType before, private class MorphTypeDiffApi(IMiniLcmApi api) : ObjectWithIdCollectionDiffApi { - public override async Task Add(MorphType currentMorphType) + public override Task Add(MorphType currentMorphType) { - await api.CreateMorphType(currentMorphType); - return 1; + throw new InvalidOperationException( + $"MorphTypes are predefined and cannot be created. Unexpected morph type: {currentMorphType.Kind} ({currentMorphType.Id}). This indicates a data inconsistency."); } - public override async Task Remove(MorphType beforeMorphType) + public override Task Remove(MorphType beforeMorphType) { - await api.DeleteMorphType(beforeMorphType.Id); - return 1; + throw new InvalidOperationException( + $"MorphTypes are predefined and cannot be deleted. Unexpected morph type removal: {beforeMorphType.Kind} ({beforeMorphType.Id}). This indicates a data inconsistency."); } public override Task Replace(MorphType beforeMorphType, MorphType afterMorphType) From 54eb419706054d983646e581f643ee228e992356 Mon Sep 17 00:00:00 2001 From: Tim Haasdyk Date: Fri, 10 Apr 2026 13:38:07 +0200 Subject: [PATCH 6/6] Add morph-type tests (#1850) --- .../MiniLcmTests/MorphTypeTests.cs | 12 +++ .../UpdateDiffTests.cs | 14 +++ .../MiniLcmTests/MorphTypeTests.cs | 19 ++++ .../MiniLcm.Tests/MorphTypeTestsBase.cs | 89 +++++++++++++++++++ 4 files changed, 134 insertions(+) create mode 100644 backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/MorphTypeTests.cs create mode 100644 backend/FwLite/LcmCrdt.Tests/MiniLcmTests/MorphTypeTests.cs create mode 100644 backend/FwLite/MiniLcm.Tests/MorphTypeTestsBase.cs diff --git a/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/MorphTypeTests.cs b/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/MorphTypeTests.cs new file mode 100644 index 0000000000..54dea92ab3 --- /dev/null +++ b/backend/FwLite/FwDataMiniLcmBridge.Tests/MiniLcmTests/MorphTypeTests.cs @@ -0,0 +1,12 @@ +using FwDataMiniLcmBridge.Tests.Fixtures; + +namespace FwDataMiniLcmBridge.Tests.MiniLcmTests; + +[Collection(ProjectLoaderFixture.Name)] +public class MorphTypeTests(ProjectLoaderFixture fixture) : MorphTypeTestsBase +{ + protected override Task NewApi() + { + return Task.FromResult(fixture.NewProjectApi("morph-type-test", "en", "en")); + } +} diff --git a/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs index cd63964d6d..4f0cbf9aa1 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs @@ -73,4 +73,18 @@ public void TranslationDiffShouldUpdateAllFields() before.Should().BeEquivalentTo(after, options => options .Excluding(x => x.Id)); } + + [Fact] + public void MorphTypeDiffShouldUpdateAllFields() + { + var before = new MorphType { Kind = MorphTypeKind.Stem }; + var after = AutoFaker.Generate(); + after.Kind = before.Kind; // Kind is immutable per MorphTypeUpdateValidator + var morphTypeDiffToUpdate = MorphTypeSync.MorphTypeDiffToUpdate(before, after); + ArgumentNullException.ThrowIfNull(morphTypeDiffToUpdate); + morphTypeDiffToUpdate.Apply(before); + before.Should().BeEquivalentTo(after, options => options + .Excluding(x => x.Id) + .Excluding(x => x.DeletedAt)); + } } diff --git a/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/MorphTypeTests.cs b/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/MorphTypeTests.cs new file mode 100644 index 0000000000..d248f215dc --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/MorphTypeTests.cs @@ -0,0 +1,19 @@ +namespace LcmCrdt.Tests.MiniLcmTests; + +public class MorphTypeTests : MorphTypeTestsBase +{ + private readonly MiniLcmApiFixture _fixture = new(); + + protected override async Task NewApi() + { + await _fixture.InitializeAsync(); + var api = _fixture.Api; + return api; + } + + public override async Task DisposeAsync() + { + await base.DisposeAsync(); + await _fixture.DisposeAsync(); + } +} diff --git a/backend/FwLite/MiniLcm.Tests/MorphTypeTestsBase.cs b/backend/FwLite/MiniLcm.Tests/MorphTypeTestsBase.cs new file mode 100644 index 0000000000..71a8fc986a --- /dev/null +++ b/backend/FwLite/MiniLcm.Tests/MorphTypeTestsBase.cs @@ -0,0 +1,89 @@ +namespace MiniLcm.Tests; + +public abstract class MorphTypeTestsBase : MiniLcmTestBase +{ + [Fact] + public async Task GetMorphTypes_ReturnsAllCanonicalMorphTypes() + { + var morphTypes = await Api.GetMorphTypes().ToArrayAsync(); + morphTypes.Should().NotBeEmpty(); + morphTypes.Should().AllSatisfy(mt => mt.Id.Should().NotBe(Guid.Empty)); + // All canonical kinds (except Unknown) should be present + var allKinds = Enum.GetValues().Where(k => k != MorphTypeKind.Unknown); + morphTypes.Select(mt => mt.Kind).Should().BeEquivalentTo(allKinds); + } + + [Fact] + public async Task GetMorphType_ById_ReturnsExpected() + { + var morphTypes = await Api.GetMorphTypes().ToArrayAsync(); + var stem = morphTypes.First(mt => mt.Kind == MorphTypeKind.Stem); + + var result = await Api.GetMorphType(stem.Id); + + result.Should().NotBeNull(); + result!.Kind.Should().Be(MorphTypeKind.Stem); + result.Id.Should().Be(stem.Id); + } + + [Fact] + public async Task GetMorphType_ByKind_ReturnsExpected() + { + var result = await Api.GetMorphType(MorphTypeKind.Prefix); + + result.Should().NotBeNull(); + result!.Kind.Should().Be(MorphTypeKind.Prefix); + } + + [Fact] + public async Task GetMorphType_ByKind_Unknown_ReturnsNull() + { + var result = await Api.GetMorphType(MorphTypeKind.Unknown); + result.Should().BeNull(); + } + + [Fact] + public async Task UpdateMorphType_UpdatesName() + { + var stem = await Api.GetMorphType(MorphTypeKind.Stem); + stem.Should().NotBeNull(); + + var updatedStem = stem!.Copy(); + updatedStem.Name["en"] = "Updated Stem Name"; + await Api.UpdateMorphType(stem, updatedStem); + + var result = await Api.GetMorphType(MorphTypeKind.Stem); + result.Should().NotBeNull(); + result!.Name["en"].Should().Be("Updated Stem Name"); + } + + [Fact] + public async Task UpdateMorphType_UpdatesAbbreviation() + { + var prefix = await Api.GetMorphType(MorphTypeKind.Prefix); + prefix.Should().NotBeNull(); + + var updated = prefix!.Copy(); + updated.Abbreviation["en"] = "updated pfx"; + await Api.UpdateMorphType(prefix, updated); + + var result = await Api.GetMorphType(MorphTypeKind.Prefix); + result.Should().NotBeNull(); + result!.Abbreviation["en"].Should().Be("updated pfx"); + } + + [Fact] + public async Task UpdateMorphType_NoChanges_DoesNotThrow() + { + var stem = await Api.GetMorphType(MorphTypeKind.Stem); + stem.Should().NotBeNull(); + + var copy = stem!.Copy(); + // No changes made - should be a no-op + await Api.UpdateMorphType(stem, copy); + + var result = await Api.GetMorphType(MorphTypeKind.Stem); + result.Should().NotBeNull(); + result.Should().BeEquivalentTo(stem); + } +}