diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs index 6449f42663..4d390f93f5 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/FwDataMiniLcmApi.cs @@ -33,6 +33,7 @@ public class FwDataMiniLcmApi( { private FwDataBridgeConfig Config => config.Value; public const string AudioVisualFolder = "AudioVisual"; + public const string PicturesFolder = "Pictures"; public LcmCache Cache { get @@ -52,9 +53,11 @@ public LcmCache Cache internal ILexEntryRepository EntriesRepository => Cache.ServiceLocator.GetInstance(); internal IRepository SenseRepository => Cache.ServiceLocator.GetInstance>(); private IRepository ExampleSentenceRepository => Cache.ServiceLocator.GetInstance>(); + private IRepository PictureRepository => Cache.ServiceLocator.GetInstance>(); private ILexEntryFactory LexEntryFactory => Cache.ServiceLocator.GetInstance(); private ILexSenseFactory LexSenseFactory => Cache.ServiceLocator.GetInstance(); private ILexExampleSentenceFactory LexExampleSentenceFactory => Cache.ServiceLocator.GetInstance(); + private ICmPictureFactory LcmPictureFactory => Cache.ServiceLocator.GetInstance(); private IMoMorphTypeRepository MorphTypeRepository => Cache.ServiceLocator.GetInstance(); private IPartOfSpeechRepository PartOfSpeechRepository => Cache.ServiceLocator.GetInstance(); private ILexEntryTypeRepository LexEntryTypeRepository => Cache.ServiceLocator.GetInstance(); @@ -795,6 +798,7 @@ private Sense FromLexSense(ILexSense sense) Definition = FromLcmMultiString(sense.Definition), PartOfSpeech = pos is null ? null : FromLcmPartOfSpeech(pos), PartOfSpeechId = pos?.Guid, + Pictures = [.. sense.PicturesOS.Select(picture => FromLcmPicture(sense.Guid, picture))], SemanticDomains = [.. sense.SemanticDomainsRC.Select(FromLcmSemanticDomain)], ExampleSentences = [.. sense.ExamplesOS.Select(sentence => FromLexExampleSentence(sense.Guid, sentence))] }; @@ -817,6 +821,27 @@ private ExampleSentence FromLexExampleSentence(Guid senseGuid, ILexExampleSenten }; } + internal MediaUri MediaUriFromLcmPicture(ICmPicture picture) + { + var mediaFilePath = picture.PictureFileRA?.AbsoluteInternalPath; + if (!string.IsNullOrEmpty(mediaFilePath)) + { + return mediaAdapter.MediaUriFromPath(mediaFilePath, Cache); + } + return MediaUri.NotFound; + } + + private Picture FromLcmPicture(Guid senseGuid, ICmPicture picture) + { + return new Picture + { + Id = picture.Guid, + Caption = FromLcmMultiString(picture.Caption), + MediaUri = MediaUriFromLcmPicture(picture), + Order = picture.IndexInOwner + 1, // Order property in CRDT indexes from 1 + }; + } + private MultiString FromLcmMultiString(ITsMultiString? multiString) { if (multiString is null) return []; @@ -1461,6 +1486,16 @@ private void ApplySenseToLexSense(Sense sense, ILexSense lexSense) { CreateExampleSentence(lexSense, exampleSentence); } + + if (sense.Pictures.Any()) + { + List pictures = [.. sense.Pictures]; + pictures.Sort(Picture.ComparePictures); + foreach (var picture in pictures) + { + CreatePicture(lexSense, picture); + } + } } public Task GetSense(Guid id) @@ -1780,6 +1815,148 @@ private static void ValidateOwnership(ILexExampleSentence lexExampleSentence, Gu } } + private static void ValidateOwnership(ICmPicture lcmPicture, Guid entryId, Guid senseId) + { + if (lcmPicture.Owner is ILexSense sense) + { + if (sense.Guid != senseId) throw new InvalidOperationException("Picture does not belong to sense"); + } + else + { + throw new InvalidOperationException("Picture does not belong to sense, it belongs to a " + + lcmPicture.Owner.ClassName); + } + } + + internal void InsertPicture(ILexSense lexSense, ICmPicture lcmPicture, BetweenPosition? between = null) + { + var previousPictureId = between?.Previous; + var nextPictureId = between?.Next; + + var previousPicture = previousPictureId.HasValue ? lexSense.PicturesOS.FirstOrDefault(s => s.Guid == previousPictureId) : null; + if (previousPicture is not null) + { + var insertI = lexSense.PicturesOS.IndexOf(previousPicture) + 1; + // ILcmOwningSequence treats an insert as a move if the item is already in it + lexSense.PicturesOS.Insert(insertI, lcmPicture); + return; + } + + var nextPicture = nextPictureId.HasValue ? lexSense.PicturesOS.FirstOrDefault(s => s.Guid == nextPictureId) : null; + if (nextPicture is not null) + { + var insertI = lexSense.PicturesOS.IndexOf(nextPicture); + // ILcmOwningSequence treats an insert as a move if the item is already in it + lexSense.PicturesOS.Insert(insertI, lcmPicture); + return; + } + + lexSense.PicturesOS.Add(lcmPicture); + } + + public Task GetPicture(Guid entryId, Guid senseId, Guid id) + { + PictureRepository.TryGetObject(id, out var lcmPicture); + ValidateOwnership(lcmPicture, entryId, senseId); + return Task.FromResult(lcmPicture is null ? null : FromLcmPicture(senseId, lcmPicture)); + } + + internal void CreatePicture(ILexSense lexSense, Picture picture, BetweenPosition? between = null) + { + if (picture.Id == default) picture.Id = Guid.NewGuid(); + var lcmPicture = LcmPictureFactory.Create(picture.Id); + UpdateLcmMultiString(lcmPicture.Caption, picture.Caption); + SetLcmPictureFile(lcmPicture, picture.MediaUri); + InsertPicture(lexSense, lcmPicture, between); + } + + internal void SetLcmPictureFile(ICmPicture lcmPicture, MediaUri mediaUri) + { + if (mediaUri == MediaUri.NotFound) return; + var fullPath = mediaAdapter.PathFromMediaUri(mediaUri, Cache); + if (fullPath is null) return; + // Passing 0 as writing system to UpdatePicture means "don't update caption, only file" + lcmPicture.UpdatePicture(fullPath, null, CmFolderTags.LocalPictures, 0); + } + + public Task CreatePicture(Guid entryId, Guid senseId, Picture picture, BetweenPosition? between = null) + { + if (picture.Id == default) picture.Id = Guid.NewGuid(); + if (!SenseRepository.TryGetObject(senseId, out var lexSense)) + throw new InvalidOperationException("Sense not found"); + UndoableUnitOfWorkHelper.DoUsingNewOrCurrentUOW("Create picture", + "Remove picture", + Cache.ServiceLocator.ActionHandler, + () => CreatePicture(lexSense, picture, between)); + return Task.FromResult( + FromLcmPicture(senseId, PictureRepository.GetObject(picture.Id))); + } + + public Task UpdatePicture(Guid entryId, + Guid senseId, + Guid pictureId, + UpdateObjectInput update) + { + var lcmPicture = PictureRepository.GetObject(pictureId); + ValidateOwnership(lcmPicture, entryId, senseId); + UndoableUnitOfWorkHelper.DoUsingNewOrCurrentUOW("Update picture", + "Revert picture", + Cache.ServiceLocator.ActionHandler, + () => + { + var updateProxy = new UpdatePictureProxy(lcmPicture, this); + update.Apply(updateProxy); + }); + return Task.FromResult(FromLcmPicture(senseId, lcmPicture)); + } + + public async Task UpdatePicture(Guid entryId, + Guid senseId, + Picture before, + Picture after, + IMiniLcmApi? api = null) + { + await Cache.DoUsingNewOrCurrentUOW("Update picture", + "Revert picture", + async () => + { + await PictureSync.Sync(entryId, senseId, before, after, api ?? this); + }); + return await GetPicture(entryId, senseId, after.Id) ?? throw new NullReferenceException("unable to find picture with id " + after.Id); + } + + public Task MovePicture(Guid entryId, Guid senseId, Guid pictureId, BetweenPosition between) + { + if (!EntriesRepository.TryGetObject(entryId, out var lexEntry)) + throw new InvalidOperationException("Entry not found"); + if (!SenseRepository.TryGetObject(senseId, out var lexSense)) + throw new InvalidOperationException("Sense not found"); + if (!PictureRepository.TryGetObject(pictureId, out var lcmPicture)) + throw new InvalidOperationException("Picture not found"); + + ValidateOwnership(lcmPicture, entryId, senseId); + + UndoableUnitOfWorkHelper.DoUsingNewOrCurrentUOW("Move picture", + "Move picture back", + Cache.ServiceLocator.ActionHandler, + () => + { + InsertPicture(lexSense, lcmPicture, between); + }); + return Task.CompletedTask; + } + + public Task DeletePicture(Guid entryId, Guid senseId, Guid pictureId) + { + var lcmPicture = PictureRepository.GetObject(pictureId); + ValidateOwnership(lcmPicture, entryId, senseId); + UndoableUnitOfWorkHelper.DoUsingNewOrCurrentUOW("Delete picture", + "Revert delete", + Cache.ServiceLocator.ActionHandler, + () => lcmPicture.Delete()); + return Task.CompletedTask; + } + public Task GetFileStream(MediaUri mediaUri) { if (mediaUri == MediaUri.NotFound) return Task.FromResult(new ReadFileResponse(ReadFileResult.NotFound)); @@ -1830,7 +2007,7 @@ private string TypeToLinkedFolder(string mimeType) { { } s when s.StartsWith("audio/") => AudioVisualFolder, { } s when s.StartsWith("video/") => AudioVisualFolder, - { } s when s.StartsWith("image/") => "Pictures", + { } s when s.StartsWith("image/") => PicturesFolder, _ => "Others" }; } diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdatePictureProxy.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdatePictureProxy.cs new file mode 100644 index 0000000000..6cdf88e571 --- /dev/null +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdatePictureProxy.cs @@ -0,0 +1,26 @@ +using MiniLcm.Media; +using MiniLcm.Models; +using SIL.LCModel; + +namespace FwDataMiniLcmBridge.Api.UpdateProxy; + +public class UpdatePictureProxy(ICmPicture picture, FwDataMiniLcmApi lexboxLcmApi) : Picture +{ + public override Guid Id + { + get => picture.Guid; + set => throw new NotImplementedException(); + } + + public override RichMultiString Caption + { + get => new UpdateRichMultiStringProxy(picture.Caption, lexboxLcmApi); + set => throw new NotImplementedException(); + } + + public override MediaUri MediaUri + { + get => lexboxLcmApi.MediaUriFromLcmPicture(picture); + set => lexboxLcmApi.SetLcmPictureFile(picture, value); + } +} diff --git a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSenseProxy.cs b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSenseProxy.cs index ac709e67d9..06e00d5254 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSenseProxy.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Api/UpdateProxy/UpdateSenseProxy.cs @@ -48,4 +48,10 @@ public override List ExampleSentences get => throw new NotImplementedException(); set => throw new NotImplementedException(); } + + public override List Pictures + { + get => throw new NotImplementedException(); + set => throw new NotImplementedException(); + } } diff --git a/backend/FwLite/FwDataMiniLcmBridge/Media/LocalMediaAdapter.cs b/backend/FwLite/FwDataMiniLcmBridge/Media/LocalMediaAdapter.cs index 658749b03d..e573a3d705 100644 --- a/backend/FwLite/FwDataMiniLcmBridge/Media/LocalMediaAdapter.cs +++ b/backend/FwLite/FwDataMiniLcmBridge/Media/LocalMediaAdapter.cs @@ -26,6 +26,7 @@ private Dictionary Paths(LcmCache cache) internal static Dictionary BuildPathsDictionary(string root, ILogger logger) { var paths = new Dictionary(); + if (!Directory.Exists(root)) return paths; foreach (var file in Directory.EnumerateFiles(root, "*", SearchOption.AllDirectories)) { var fileId = PathToUri(file).FileId; diff --git a/backend/FwLite/FwLiteProjectSync.Tests/EntrySyncTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/EntrySyncTests.cs index 21fa5a0355..e204582aeb 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/EntrySyncTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/EntrySyncTests.cs @@ -362,7 +362,8 @@ public async Task CanSyncRandomEntries(ApiType? roundTripApiType) .For(e => e.Senses).Exclude(s => s.Order) .For(e => e.Components).Exclude(c => c.Order) .For(e => e.ComplexForms).Exclude(c => c.Order) - .For(e => e.Senses).For(s => s.ExampleSentences).Exclude(e => e.Order); + .For(e => e.Senses).For(s => s.ExampleSentences).Exclude(e => e.Order) + .For(e => e.Senses).For(s => s.Pictures).Exclude(e => e.Order); // ComplexFormHeadword/ComponentHeadword are derived live from the referenced entry on read, // so they don't round-trip the randomly-generated values here; their behaviour is asserted in // ComplexFormComponentTestsBase (see ComplexFormComponentHeadwords_UpdateWhenReferencedEntriesChange). diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-04-09.verified.txt b/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-04-09.verified.txt index 26ab82938d..201867c247 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-04-09.verified.txt +++ b/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-04-09.verified.txt @@ -90,7 +90,8 @@ "SenseId": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -156,7 +157,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "6e869577-8f59-4ebe-bbff-a45c07f4e4c2", @@ -179,7 +181,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e8ef7f59-3646-459a-96c7-482d3c747e8f", @@ -202,7 +205,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "8b2c9d67-ff37-429f-a3ca-678fe960e001", @@ -225,7 +229,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -274,7 +279,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f34831ff-af51-4e62-b56f-4968e1f294fa", @@ -297,7 +303,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -363,7 +370,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e73d5de2-b5ec-4cc8-a679-7f7ca8f673f9", @@ -386,7 +394,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "04f6ebb2-31c2-4089-a9e8-68cc32b6d5d1", @@ -409,7 +418,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b2565e07-2e43-43cb-b533-247f100ac548", @@ -432,7 +442,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3360f2c7-1026-4558-a0fb-e9574aae16ee", @@ -455,7 +466,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -504,7 +516,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -553,7 +566,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -634,7 +648,8 @@ "SenseId": "9e9ad5c2-26f8-4ed1-9803-2af452088701", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -683,7 +698,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -732,7 +748,8 @@ }, "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -814,7 +831,8 @@ "SenseId": "892fa71e-e2cb-4e2f-9ca9-d37d77c5acda", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "13e26eb7-5809-40d3-a08d-78c704ba8a30", @@ -837,7 +855,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -878,7 +897,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -927,7 +947,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1035,7 +1056,8 @@ "SenseId": "67d78fa6-b914-4ac0-94c5-6acd1c2fe657", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1120,7 +1142,8 @@ "SenseId": "0f19a966-61e5-47ae-9388-cf8c4c6ef04c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1169,7 +1192,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1218,7 +1242,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1267,7 +1292,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3af2c61b-b41b-43f4-9915-bb2957437f18", @@ -1282,7 +1308,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1331,7 +1358,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1380,7 +1408,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1429,7 +1458,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1520,7 +1550,8 @@ "SenseId": "74fb07c9-24d4-4b19-b496-c66dc02011e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1586,7 +1617,8 @@ "SenseId": "983254a5-8270-438b-8bbc-09cbca7a6611", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1666,7 +1698,8 @@ "SenseId": "018a07df-4eac-4c21-becd-717530e1ff84", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1751,7 +1784,8 @@ "SenseId": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1812,7 +1846,8 @@ "SenseId": "d51d8ad2-5320-4551-a267-5d3379d91fb8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1896,7 +1931,8 @@ "SenseId": "fdd35987-d88b-4fba-b815-b255c72f8329", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1981,7 +2017,8 @@ "SenseId": "7cc77c4a-6c21-4d00-8d27-b032bc94803d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2066,7 +2103,8 @@ "SenseId": "496bf17c-c4c9-4aff-adf2-ed9aa9761409", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "61fe82af-1b62-47a8-9d3e-e0f7684b12fa", @@ -2098,7 +2136,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2187,7 +2226,8 @@ "SenseId": "d59756d9-3fe2-4cd6-9e2e-372ae603152a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2270,7 +2310,8 @@ "SenseId": "38b340b9-6fb4-4134-a7aa-e69a4000c9bf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2346,7 +2387,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2395,7 +2437,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2488,7 +2531,8 @@ "SenseId": "6f5ba1c7-2628-4669-899e-7615d7862b3d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2566,7 +2610,8 @@ "SenseId": "fea4ede0-f970-4b38-97eb-5d7075f0288b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2632,7 +2677,8 @@ "SenseId": "ef626122-aeda-4bd1-951b-63ba29d6e74a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2691,7 +2737,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2803,7 +2850,8 @@ "SenseId": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "333e5026-83bf-4acd-a0b0-af2f04e1687e", @@ -2851,7 +2899,8 @@ "SenseId": "333e5026-83bf-4acd-a0b0-af2f04e1687e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2927,7 +2976,8 @@ "SenseId": "09ccd17c-8e0a-4208-95dc-e41cb6b78de9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2993,7 +3043,8 @@ "SenseId": "ef8ce53f-c686-4c74-80c2-ada05ff8a85a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3059,7 +3110,8 @@ "SenseId": "58d47fd5-21e6-4a19-8ca9-768b77eb0c8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3118,7 +3170,8 @@ "SenseId": "cc7b9218-27a9-4ba7-9b69-79a469019855", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3179,7 +3232,8 @@ "SenseId": "a5ec694c-59ec-4765-af3b-314095d1bd7d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3254,7 +3308,8 @@ "SenseId": "6fa0e00f-3280-498a-b33b-cca6d76f3857", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3370,7 +3425,8 @@ "SenseId": "a88193aa-85c7-471f-8f05-939690f832b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3439,7 +3495,8 @@ "SenseId": "d028302e-d03b-4cc8-a588-5c3ef9e449e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3522,7 +3579,8 @@ "SenseId": "d4bf84ed-04fd-41a4-a4ca-312a0a8f171e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3588,7 +3646,8 @@ "SenseId": "bfe613da-5e41-4cce-ac69-4f4b4d1e29ff", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3671,7 +3730,8 @@ "SenseId": "82e9e4c7-3572-4246-8a6b-5dc29d16a278", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3732,7 +3792,8 @@ "SenseId": "40cf2e97-7ba4-4deb-953a-491f165099e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3810,7 +3871,8 @@ "SenseId": "6a92f97b-b8fd-47f4-9a0b-6bc48878475a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3903,7 +3965,8 @@ "SenseId": "161e717b-55e7-45a5-800b-4dc9e1c4fa30", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3962,7 +4025,8 @@ "SenseId": "b8639913-e8cf-4bbf-8598-0cb7c2421f01", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4035,7 +4099,8 @@ "SenseId": "c2a64c53-bb9f-4485-adce-56aa1bca3acc", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d74a27ca-630a-4e62-9ad1-0dce9252870f", @@ -4091,7 +4156,8 @@ "SenseId": "d74a27ca-630a-4e62-9ad1-0dce9252870f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4181,7 +4247,8 @@ "SenseId": "4b4e98b0-7b69-44a0-8444-9b447c5764b9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4316,7 +4383,8 @@ "SenseId": "79b8ab72-2b9c-4afa-ad44-47fefb074746", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4420,7 +4488,8 @@ "SenseId": "036e4c4f-31f1-4824-8ebe-51fa5a9fbe43", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4479,7 +4548,8 @@ "SenseId": "57bd9b42-76ed-4fa4-8a43-d8ca70973b03", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4538,7 +4608,8 @@ "SenseId": "e138d2ab-fea1-421d-bd27-1a901309ac1a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4596,7 +4667,8 @@ "SenseId": "229fdf0b-c330-423a-8eb2-6a0fc8c76d2b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4671,7 +4743,8 @@ "SenseId": "eea4e67f-9514-4bfb-9bfc-af148446d34f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4754,7 +4827,8 @@ "SenseId": "09c319ff-53fe-4453-b088-8327effb47b7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4832,7 +4906,8 @@ "SenseId": "3301cd02-b803-4fdd-8e0b-1fd9802b699d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4890,7 +4965,8 @@ "SenseId": "93dd2162-dedc-42bf-9fc6-49e6a765bdf8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4949,7 +5025,8 @@ "SenseId": "1dc5dfb2-e140-4fa2-85b4-ebf9c7cce900", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4998,7 +5075,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -5066,7 +5144,8 @@ "SenseId": "5ffe18b3-db9e-4cf9-9076-107940104d19", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5134,7 +5213,8 @@ "SenseId": "4517e997-6cec-46b3-9596-1e51ac14702d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", @@ -5198,7 +5278,8 @@ "SenseId": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5289,7 +5370,8 @@ "SenseId": "21bac99f-c587-4576-b08c-14ca69dadd83", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "35a38de9-1800-47e0-b4ad-5db19ac79db2", @@ -5312,7 +5394,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ef9ddb54-2d19-450d-9264-f872a8f94776", @@ -5335,7 +5418,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -5408,7 +5492,8 @@ "SenseId": "3fe67f6b-5514-47fc-be95-ac53ee7d8b56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5469,7 +5554,8 @@ "SenseId": "6edd952c-0bdc-4c73-bfb9-1051f163db9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5539,7 +5625,8 @@ "SenseId": "574b5528-5784-42ff-b9d9-fcc156dcc49f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5605,7 +5692,8 @@ "SenseId": "0d40e283-a355-41fa-9919-a800096e3319", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5664,7 +5752,8 @@ "SenseId": "5b98fbde-93bd-4cca-a342-180aa7b92411", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5795,7 +5884,8 @@ "SenseId": "528e7166-69ba-4991-b067-f411475442b1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fabcc53e-8dd3-4be5-9af5-4f81981ba5be", @@ -5818,7 +5908,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -5921,7 +6012,8 @@ "SenseId": "23a00ada-22b0-402a-a714-8264414db39e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5991,7 +6083,8 @@ "SenseId": "0ea6aae0-5081-4ec7-b418-80d6294553d5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6090,7 +6183,8 @@ "SenseId": "c15ddf45-a80c-411b-9dbc-d844af283e5f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6167,7 +6261,8 @@ "SenseId": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6e0952c8-002d-4c3c-b00a-313f65628c58", @@ -6190,7 +6285,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -6256,7 +6352,8 @@ "SenseId": "df9f4687-672d-4c65-a178-49a1b007c18e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6317,7 +6414,8 @@ "SenseId": "82f97729-0549-4583-876e-d3adf864f6c1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6427,7 +6525,8 @@ "SenseId": "d9a83e05-e52d-41e1-bbab-7733e09b0ca1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6518,7 +6617,8 @@ "SenseId": "14c24243-dc54-422a-880f-1d326cbad344", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "346cb2f1-ca16-47ec-bc29-5451f89fed1d", @@ -6541,7 +6641,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -6618,7 +6719,8 @@ "SenseId": "71fc904e-ac67-4964-8db3-f5c8f2d8c477", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6709,7 +6811,8 @@ "SenseId": "19034ed9-ec16-4284-92f7-905c3d5ef8f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6784,7 +6887,8 @@ "SenseId": "6cc2b1b5-5dbe-45f6-8afb-66b2449798be", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6876,7 +6980,8 @@ "SenseId": "73e108cc-db6b-4233-b1ad-b72688055779", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6937,7 +7042,8 @@ "SenseId": "3b192b76-c082-4f51-9c65-ce2dab292a7a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7021,7 +7127,8 @@ "SenseId": "7e2c9813-6bc2-42f9-906a-917aec1e20f5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7072,7 +7179,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -7155,7 +7263,8 @@ "SenseId": "dc3a436b-07c6-4c05-8c78-9bbe82ce5549", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7223,7 +7332,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -7314,7 +7424,8 @@ "SenseId": "18815e26-697e-4b5d-9054-5abac267dcd1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7409,7 +7520,8 @@ "SenseId": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7498,7 +7610,8 @@ "SenseId": "8cfdbb3a-856b-42cc-a288-34fbb0109fb4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7559,7 +7672,8 @@ "SenseId": "0ee1a56f-8c3a-4428-96bd-4789818e9c4b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7634,7 +7748,8 @@ "SenseId": "c854bbb5-a15d-4fb3-a044-712160f19483", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7695,7 +7810,8 @@ "SenseId": "7d4c55b8-b905-48ab-b1d5-063cb01ff3fb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7763,7 +7879,8 @@ "SenseId": "b5b7814e-a85d-4825-9ef0-5f4426d64031", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7812,7 +7929,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -7880,7 +7998,8 @@ "SenseId": "fb256afd-ba11-4319-817d-e4932fb704c3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7931,7 +8050,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -7972,7 +8092,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -8071,7 +8192,8 @@ "SenseId": "b84f1059-e013-43da-b6e8-6690c6220dee", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8149,7 +8271,8 @@ "SenseId": "1c0b81ea-659c-4336-8907-d943baa454af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8217,7 +8340,8 @@ "SenseId": "0e4f6dec-8624-4d51-93b4-f3b613a4872e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8295,7 +8419,8 @@ "SenseId": "46b94bc1-614c-4a32-9be0-3f8fc2a78fec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8363,7 +8488,8 @@ "SenseId": "40de284d-f04e-40c3-8546-aa7b293e3b75", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8431,7 +8557,8 @@ "SenseId": "7c838f3f-0518-4cc1-9468-43df99c9b9dc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8499,7 +8626,8 @@ "SenseId": "876f34e6-2f52-4365-8539-e22ae469c701", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8567,7 +8695,8 @@ "SenseId": "bcf0c7ea-17ee-4699-b6bc-d6cbd59d775d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8652,7 +8781,8 @@ "SenseId": "103e9e1d-c8fa-40ad-9854-16961c1966cb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8701,7 +8831,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -8800,7 +8931,8 @@ "SenseId": "f9599c2f-03c9-4b27-ade3-844499a60168", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8861,7 +8993,8 @@ "SenseId": "5e1535f3-c85a-493a-b58e-34e08ff7a3dc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8929,7 +9062,8 @@ "SenseId": "262c9ce4-ce33-4332-8ad0-5d93180cf438", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9005,7 +9139,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7d9e442d-044c-4766-8dad-435c6610a449", @@ -9055,7 +9190,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9145,7 +9281,8 @@ "SenseId": "daf3cc27-166e-4225-b673-0a7d9b691574", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6211b4a9-91ec-4828-9539-387ea6645bae", @@ -9168,7 +9305,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9229,7 +9367,8 @@ "SenseId": "47c21100-95f6-4f45-ac84-3f1472109473", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9297,7 +9436,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9358,7 +9498,8 @@ "SenseId": "6bacbaec-0a03-4a7d-91da-13c635e8db28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9419,7 +9560,8 @@ "SenseId": "22e9311b-db4b-4067-b2a7-3dfbfc153559", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9480,7 +9622,8 @@ "SenseId": "bdb94fca-9c10-4bd6-9980-74048048df01", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9531,7 +9674,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9597,7 +9741,8 @@ "SenseId": "1e3df798-e0fc-4e46-9c1d-8f2e0b09ff12", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9658,7 +9803,8 @@ "SenseId": "28d53a45-4107-441d-9931-5d878d16844a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9719,7 +9865,8 @@ "SenseId": "b66ba0ba-bf19-4f63-a1e1-aed0ad7f113a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9779,7 +9926,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9845,7 +9993,8 @@ "SenseId": "21facabb-a7f9-4f41-9fe3-8e6132dcbb66", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c4d03434-2267-4f9b-af23-85a1b3c4795d", @@ -9868,7 +10017,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9936,7 +10086,8 @@ "SenseId": "37ba838d-656a-4819-a527-ffea32a2a288", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10004,7 +10155,8 @@ "SenseId": "fa2dec63-26d6-4f6a-89f2-185b005d3b27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10087,7 +10239,8 @@ "SenseId": "8e2906ba-2068-4582-b306-9609e69a003e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10148,7 +10301,8 @@ "SenseId": "108cb187-a924-40c4-b5ea-fb903dc52593", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10216,7 +10370,8 @@ "SenseId": "e6857eda-73f7-44a1-94a1-94582543cc79", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10291,7 +10446,8 @@ "SenseId": "c8ba0704-0642-4800-9cd7-6b4aaf4c8878", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10376,7 +10532,8 @@ "SenseId": "3bbc4b24-cab8-4bc2-9746-6781d12d2cd5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10437,7 +10594,8 @@ "SenseId": "7d6aba3e-e816-42e1-89dc-d60080422343", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10498,7 +10656,8 @@ "SenseId": "01ee130a-b3dc-4f84-b7eb-669c3a06cf67", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10562,7 +10721,8 @@ "SenseId": "fb19e30f-b594-491f-bf4b-bb6f244eb325", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d7dc87e1-9a7d-4537-bb8d-bf93cb2bbcff", @@ -10585,7 +10745,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "151e4c76-30e4-4eed-b474-2d438c278906", @@ -10608,7 +10769,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ca12b919-bc83-4894-b6e3-3089415ff852", @@ -10631,7 +10793,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -10738,7 +10901,8 @@ "SenseId": "f82e5d68-7c90-4a5b-974d-1fc2381964cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10787,7 +10951,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -10855,7 +11020,8 @@ "SenseId": "d0b16565-d636-4342-9e70-fd81bf5cd259", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "51f20902-34e8-41f0-bab4-72173fecea6f", @@ -10895,7 +11061,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -10973,7 +11140,8 @@ "SenseId": "07086e7d-dfcc-4f4e-b0d6-0be7a7943f97", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11051,7 +11219,8 @@ "SenseId": "455056b1-a9dc-441e-9fce-95ce0c058bce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11121,7 +11290,8 @@ "SenseId": "938cda59-6ed4-482d-a5fb-23a3bc2d6f0c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11182,7 +11352,8 @@ "SenseId": "b9bb5f59-f628-4b10-a849-f98804e37846", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11243,7 +11414,8 @@ "SenseId": "ebe4d9f3-1e6d-40b8-be42-c47e67170f86", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11304,7 +11476,8 @@ "SenseId": "c1dba9c3-0682-4507-a6b7-bc983f25197f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11365,7 +11538,8 @@ "SenseId": "4135e832-8813-4ab3-a07a-2e4266735271", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11435,7 +11609,8 @@ "SenseId": "cc5334da-90ac-479b-a827-7e50b0dfed82", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11503,7 +11678,8 @@ "SenseId": "d8d36c69-d082-4474-a85d-b3cd6a549364", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11552,7 +11728,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -11630,7 +11807,8 @@ "SenseId": "2446f241-0aea-43cb-8f94-df126030df9c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11691,7 +11869,8 @@ "SenseId": "a0dd2817-6a0c-4123-8fd5-0e92d3e3f298", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11788,7 +11967,8 @@ "SenseId": "ab896c4e-a906-4937-ac67-898b7f8cdff7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11837,7 +12017,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -11922,7 +12103,8 @@ "SenseId": "f9b5a296-5d59-437e-a2ee-29c9a8b0680e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12007,7 +12189,8 @@ "SenseId": "33af2390-171d-4ea1-9aef-695eb3cb38f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12068,7 +12251,8 @@ "SenseId": "c947e1f9-14e9-4598-96de-2b3bb20331fa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12138,7 +12322,8 @@ "SenseId": "862251ea-bcf4-4e60-a115-6aeace6a308e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12225,7 +12410,8 @@ "SenseId": "0c868028-605f-4f16-a916-4f6861f296cf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12286,7 +12472,8 @@ "SenseId": "c482d897-19bc-4cf4-bb82-46621906e181", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12347,7 +12534,8 @@ "SenseId": "598cba57-6ea3-47b7-8545-7333e7080211", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12444,7 +12632,8 @@ "SenseId": "f2111a87-c2b3-4aba-85c5-6f988e989c56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12505,7 +12694,8 @@ "SenseId": "b608d3ff-420b-43b8-b839-a9ef23597f28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12598,7 +12788,8 @@ "SenseId": "35081858-7200-4c60-90b9-3ddc794dfef9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12673,7 +12864,8 @@ "SenseId": "e98d8742-759c-40bd-a462-485372657540", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12722,7 +12914,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -12790,7 +12983,8 @@ "SenseId": "e0644624-a939-4c56-b130-eda7980c29e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12858,7 +13052,8 @@ "SenseId": "4d4bafa5-6b53-4377-ad56-876de7ba1292", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0218bc31-f936-4d57-93e8-f87c15bf9f63", @@ -12890,7 +13085,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -12951,7 +13147,8 @@ "SenseId": "667eb258-45b0-413e-b101-f9ccc7cbb64c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13036,7 +13233,8 @@ "SenseId": "d16174f8-2b94-4c11-a10e-eb053d32ff07", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13104,7 +13302,8 @@ "SenseId": "0df2a01b-5501-4222-b5c4-3560033a535b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b979cb5e-7abc-429e-acdf-27475037a08c", @@ -13127,7 +13326,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -13178,7 +13378,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -13246,7 +13447,8 @@ "SenseId": "8af77e66-bc0e-4b3d-8860-5a7b8628de13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13314,7 +13516,8 @@ "SenseId": "b70c2d47-0841-4045-afac-e3779f3f7bdc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13373,7 +13576,8 @@ "SenseId": "feeafad4-6f4a-4514-ac5f-3a3e784346ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13439,7 +13643,8 @@ "SenseId": "a7cbae04-07cd-4468-8e0e-001bc7040c54", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", @@ -13510,7 +13715,8 @@ "SenseId": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13571,7 +13777,8 @@ "SenseId": "6634b06f-e8af-46a2-832b-e65f7e87387e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13648,7 +13855,8 @@ "SenseId": "b41d2ad6-a040-4971-8dba-b1173e7dbdd0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13709,7 +13917,8 @@ "SenseId": "7c0458ed-29b5-49fb-85ca-1be940e30804", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13786,7 +13995,8 @@ "SenseId": "cb2a8121-7277-419a-a9ba-e8ae7b74f41b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13854,7 +14064,8 @@ "SenseId": "41c948f2-73e7-4a07-b802-1b5434ddcf0b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13934,7 +14145,8 @@ "SenseId": "40678389-a031-4bb9-8947-2ecda2aab5d9", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "328fa8c2-8166-4a83-ba6a-35d3eb29acf4", @@ -13957,7 +14169,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -14042,7 +14255,8 @@ "SenseId": "62a80d7e-5461-43a3-92f4-1873889f3511", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14110,7 +14324,8 @@ "SenseId": "6812074c-a5f1-4d7a-bc3b-1c6f7a9d6d77", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14181,7 +14396,8 @@ "SenseId": "86614d59-54a3-4a59-9ddb-edb9d6645555", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14252,7 +14468,8 @@ "SenseId": "4fb83982-c268-4643-a079-ef6595b52ddf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14320,7 +14537,8 @@ "SenseId": "f4b27c24-e157-489c-8058-03974376986a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14386,7 +14604,8 @@ "SenseId": "e2d50560-29f2-45f5-b7f9-75ee665abd0d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14479,7 +14698,8 @@ "SenseId": "8ab4bf03-6757-4e6f-af7a-13262f5fc23c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14547,7 +14767,8 @@ "SenseId": "3b545c5d-5faa-4483-bbb4-810d89b8921a", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2ef6704b-a7cd-4c84-b9df-b6d7a07a6246", @@ -14570,7 +14791,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -14638,7 +14860,8 @@ "SenseId": "4f0765ac-5b8c-4689-bf46-2d740e9834b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14697,7 +14920,8 @@ "SenseId": "8f7d60b4-f32f-4879-8578-765623fd3331", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14765,7 +14989,8 @@ "SenseId": "b2981643-8242-45df-8155-4f9a1b89b784", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14833,7 +15058,8 @@ "SenseId": "be850366-c73f-40d7-b98f-3ec83fea6241", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14884,7 +15110,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -14945,7 +15172,8 @@ "SenseId": "87d914a0-8762-4a1d-939c-d73fe5ddd9db", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15013,7 +15241,8 @@ "SenseId": "866745ed-de98-43ba-8f7b-a1dd2945cd1b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6cf5b513-a228-45d4-aefe-8e3c25a10b5f", @@ -15036,7 +15265,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15104,7 +15334,8 @@ "SenseId": "15ad161e-ecf7-43b6-9e80-09d7e1cb662e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15172,7 +15403,8 @@ "SenseId": "be0fe661-be7d-47b9-b126-b4fae8a28ffc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15240,7 +15472,8 @@ "SenseId": "4c9a4100-6f5d-4474-aef6-d12e732a498c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15318,7 +15551,8 @@ "SenseId": "93d839b1-7318-4f4f-8279-90e8fda687a3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15395,7 +15629,8 @@ "SenseId": "bbbd1861-ae82-410e-abba-cf73b0e1cb50", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15463,7 +15698,8 @@ "SenseId": "0f5ad0c5-d4b8-4b7d-9954-a3e3467f74a7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15543,7 +15779,8 @@ "SenseId": "849c97b4-d0c2-4fa2-81c7-c2d734332f5e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15594,7 +15831,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "0adab179-a7f0-45a9-a1c3-1966d68bf45f", @@ -15616,7 +15854,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15684,7 +15923,8 @@ "SenseId": "50485a90-b701-4c13-8986-3b6a94d1e82f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "f5e72635-c18f-4558-bff8-af539d7f41c7", @@ -15707,7 +15947,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15775,7 +16016,8 @@ "SenseId": "2a506da0-ad78-4381-9286-07190c61fafd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15824,7 +16066,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15885,7 +16128,8 @@ "SenseId": "babf56f3-4d0a-48fb-8f26-4007551a15c9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15974,7 +16218,8 @@ "SenseId": "aad8f67f-05af-46a3-bc2f-39ef6c8ee715", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16042,7 +16287,8 @@ "SenseId": "dc95b51f-2e22-46fc-b264-95b7e1a465ea", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "260a0ff6-b53a-436c-a839-56f99b873cc5", @@ -16065,7 +16311,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16145,7 +16392,8 @@ "SenseId": "0a2ec452-a7c2-4cac-b65d-19e501818220", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16230,7 +16478,8 @@ "SenseId": "2642c7aa-5686-452c-b7c6-aff3f21700da", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6f50eb34-609e-49e1-b906-684bd2a6edd2", @@ -16270,7 +16519,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16347,7 +16597,8 @@ "SenseId": "256dc263-e16c-4140-90eb-5e8bba3369d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16417,7 +16668,8 @@ "SenseId": "068d955d-9dc7-486c-be44-152a2da1942a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16475,7 +16727,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16543,7 +16796,8 @@ "SenseId": "6be12455-6e00-4e76-8274-39af8a79bd8d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16611,7 +16865,8 @@ "SenseId": "8d6d7cf0-87fb-4eac-a2dd-5413f04a549c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16677,7 +16932,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16735,7 +16991,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16818,7 +17075,8 @@ "SenseId": "d0e2735c-ac38-4a03-a923-d706d5127e1c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16879,7 +17137,8 @@ "SenseId": "b4d055cf-e4e2-4d8f-b493-eccdb120b143", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16940,7 +17199,8 @@ "SenseId": "9efdf055-1117-41a7-a720-b7cd082d13b2", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b4c13621-6170-4f5d-a97e-02fd015450a1", @@ -16963,7 +17223,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -17029,7 +17290,8 @@ "SenseId": "001b2172-8005-4328-8673-d9118decfa35", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17090,7 +17352,8 @@ "SenseId": "51c5d694-274b-4ce5-8a5a-650ca5057ded", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17156,7 +17419,8 @@ "SenseId": "5b775015-98c2-4032-b74a-6e42fa1ab3d0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17215,7 +17479,8 @@ "SenseId": "0c2ac9ac-c39c-49c9-8fe0-8bba863230d5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17292,7 +17557,8 @@ "SenseId": "0da360ba-60c7-4ed4-a2de-fa27c149bfd6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17353,7 +17619,8 @@ "SenseId": "c266ea9d-0c6f-40f9-ae67-122f730c76fe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17436,7 +17703,8 @@ "SenseId": "1723b409-22e0-450d-b2f0-6bdd33b70700", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17502,7 +17770,8 @@ "SenseId": "0c36e0db-92bc-47d4-8008-430138d950eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17561,7 +17830,8 @@ "SenseId": "2c015b4a-ea22-4b7b-8440-20c0bb423b90", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17612,7 +17882,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -17680,7 +17951,8 @@ "SenseId": "dd4e70e7-f467-413f-84cd-56b25117171e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17765,7 +18037,8 @@ "SenseId": "c1d23b8f-a05f-4b3e-a205-00622c51d630", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17842,7 +18115,8 @@ "SenseId": "091a6d4f-7854-4fde-8ece-f8375261b979", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17915,7 +18189,8 @@ "SenseId": "32b82aa0-753b-4ef7-a13a-45171eb0ad8a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17964,7 +18239,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -18053,7 +18329,8 @@ "SenseId": "73f6e11c-62f5-48a3-bcc6-1a90c107b1a7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18129,7 +18406,8 @@ "SenseId": "0a1e1f25-1d28-46ff-b10f-61efeeff642a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18195,7 +18473,8 @@ "SenseId": "1dc81749-6059-4eef-a64c-abd0bc23375e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18280,7 +18559,8 @@ "SenseId": "25b5e61d-26ec-40e9-83e6-ba02026295cb", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e21ee24d-94d2-43ea-85fb-2661273563da", @@ -18303,7 +18583,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -18386,7 +18667,8 @@ "SenseId": "7cb4163f-0b09-4fa0-81d3-0c30d6e368d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18477,7 +18759,8 @@ "SenseId": "8d7526a3-26d2-4ebf-b427-2213caf65140", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18568,7 +18851,8 @@ "SenseId": "79e34609-699f-468b-9a02-c4dab39803de", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "64759618-9e6e-4d42-9839-5f582d66d270", @@ -18591,7 +18875,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -18694,7 +18979,8 @@ "SenseId": "58513bc2-508b-4185-8e3e-3c993e671006", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18760,7 +19046,8 @@ "SenseId": "1553bb4c-f571-4084-98ea-ddcf0632c9ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18828,7 +19115,8 @@ "SenseId": "fff0965a-ef07-4bfb-826c-ddffd0f6ecb3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18894,7 +19182,8 @@ "SenseId": "946efc4c-dce4-49b1-a7ff-09ea2de426ce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18960,7 +19249,8 @@ "SenseId": "140ed3cc-46e0-46ff-8380-36d88fbb018c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19021,7 +19311,8 @@ "SenseId": "bcc30797-cc4c-4e2e-990f-28425d5c87ce", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "12e66c70-299d-41eb-8d6a-44aacc3288d1", @@ -19044,7 +19335,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -19112,7 +19404,8 @@ "SenseId": "f16867d4-c4f5-4aff-afe8-77532ee2969e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19173,7 +19466,8 @@ "SenseId": "f6f134c4-459f-4207-bdd3-857b909318d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19234,7 +19528,8 @@ "SenseId": "c367950c-490b-4237-aabf-acde1d506b3c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19302,7 +19597,8 @@ "SenseId": "7ee86a66-6781-4a36-b47b-fa6ee731ff3f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19403,7 +19699,8 @@ "SenseId": "2ecf3be4-12b5-4622-8d44-15f8e81f60e6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19471,7 +19768,8 @@ "SenseId": "956aeb5d-0baf-4009-b523-0147285efbd0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19532,7 +19830,8 @@ "SenseId": "f888120f-95ec-43b9-a70a-2018c3f7966c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19633,7 +19932,8 @@ "SenseId": "8010f318-454b-404d-aa7e-92b76ab1e274", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19724,7 +20024,8 @@ "SenseId": "089f49ef-98ab-4903-8e66-1872c4fa94e6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3033d933-d549-4f5e-b519-644f16d2bd2b", @@ -19747,7 +20048,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -19825,7 +20127,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c6af0fa0-431c-4b33-a1d9-39b590222ee2", @@ -19848,7 +20151,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -19906,7 +20210,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -19990,7 +20295,8 @@ "SenseId": "90f0534c-8f34-4d2d-b5e7-3212a3cd309e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20056,7 +20362,8 @@ "SenseId": "a460530d-d2c1-49a7-bf74-7a217a0ce135", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20133,7 +20440,8 @@ "SenseId": "738f6d6e-7089-4821-a542-84ab425ace05", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20182,7 +20490,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -20250,7 +20559,8 @@ "SenseId": "9997f6d6-3ed5-4c52-b575-0bb3bfb52a4c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20359,7 +20669,8 @@ "SenseId": "979edecf-f56b-4062-8743-60c9c5c6b7df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20420,7 +20731,8 @@ "SenseId": "5e158006-75c7-40e0-8a9f-79ea9d6a1d24", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20479,7 +20791,8 @@ "SenseId": "b07605b1-1c48-4476-bf7f-f6a7b8064666", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20538,7 +20851,8 @@ "SenseId": "327fb629-2035-4497-a693-46b3c42b983c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20599,7 +20913,8 @@ "SenseId": "ddf2fda7-6c8c-41fa-ac13-a9d1a0fecf8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20648,7 +20963,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -20755,7 +21071,8 @@ "SenseId": "967c962b-d951-4995-a53d-dcaeacd7cb35", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20821,7 +21138,8 @@ "SenseId": "69f12f41-0c1d-417d-bd0c-2c6b6781d988", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20887,7 +21205,8 @@ "SenseId": "8d2e5fd4-e831-4be7-8486-e2189b72a192", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "56e8f620-7f27-4342-93eb-2352a0896146", @@ -20938,7 +21257,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21004,7 +21324,8 @@ "SenseId": "097bc15b-ca93-49ab-bb54-7ddc742be942", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21063,7 +21384,8 @@ "SenseId": "5f043f8f-1df7-4c70-9139-ff69c4333bfd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21129,7 +21451,8 @@ "SenseId": "72b9fc9f-db83-4f38-a154-91aa1f6457fb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21190,7 +21513,8 @@ "SenseId": "9cc5b875-1529-4343-8422-15e88e1e9ff9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21267,7 +21591,8 @@ "SenseId": "212df5f7-c4a1-4be9-8c7d-26730391610c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21335,7 +21660,8 @@ "SenseId": "9903681c-20e6-4e41-b0fa-99c86c518943", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21411,7 +21737,8 @@ "SenseId": "120863e9-9271-4d90-9f47-f1df0101b949", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "eb416cb0-0626-4fd7-81fe-299fd955e507", @@ -21444,7 +21771,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "35d20aad-653a-4dee-9af3-9bc37f3221b0", @@ -21467,7 +21795,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a0477f9f-4622-4ed6-8a4d-8a9672856428", @@ -21500,7 +21829,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21584,7 +21914,8 @@ "SenseId": "dd58d55c-4ca6-4726-a9c2-10f45bc21515", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21635,7 +21966,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21696,7 +22028,8 @@ "SenseId": "cbce6a29-7a85-4714-9c10-ef640500c220", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21774,7 +22107,8 @@ "SenseId": "6b8d3c6f-10ec-4b79-a267-e7fb490d27b3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21833,7 +22167,8 @@ "SenseId": "1476f06f-5d14-4d5e-b6e8-ab23e0ce6218", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21899,7 +22234,8 @@ "SenseId": "661ca6fd-1e8b-412c-977f-8ce7bda3c73a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21975,7 +22311,8 @@ "SenseId": "264e5106-44f9-4d15-b5b2-f0a4acc2237e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22053,7 +22390,8 @@ "SenseId": "961b8f0e-88f5-43a7-8ef6-0273413b6ade", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22136,7 +22474,8 @@ "SenseId": "d633d91a-a2d9-4d0b-bd63-76cfcab618df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22187,7 +22526,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -22253,7 +22593,8 @@ "SenseId": "ff02a48b-3cdb-45a0-8c0a-b16bb506aa9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22314,7 +22655,8 @@ "SenseId": "8b829fb0-227b-4ef9-8451-b04e7b3de29e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22390,7 +22732,8 @@ "SenseId": "5407cf61-e396-4fbe-bb1c-78bd5926d237", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22479,7 +22822,8 @@ "SenseId": "f3ca3e78-5b47-46f0-8964-7c7308675fbb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22564,7 +22908,8 @@ "SenseId": "0c26a49a-907c-4889-81c6-fc317afaca7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22630,7 +22975,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -22715,7 +23061,8 @@ "SenseId": "4ab7f4b4-6ac8-4409-8ce4-ad1684644bc3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22807,7 +23154,8 @@ "SenseId": "03e96b83-c7c5-49ce-85eb-9334869c954c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22858,7 +23206,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -22991,7 +23340,8 @@ "SenseId": "c9759c21-69d4-49f2-abf1-1b5189a166c9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23040,7 +23390,8 @@ }, "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23098,7 +23449,8 @@ }, "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23166,7 +23518,8 @@ "SenseId": "d1645b43-54ad-4ae3-86a8-2adc01b10b86", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23232,7 +23585,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23298,7 +23652,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", @@ -23371,7 +23726,8 @@ "SenseId": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23439,7 +23795,8 @@ "SenseId": "3336e632-6459-4a1c-a23d-905ffe86dd5a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23505,7 +23862,8 @@ "SenseId": "e60e481f-7833-4449-aa05-486579405700", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "143dddd7-c67c-47a4-8520-d7c97bfea5fb", @@ -23528,7 +23886,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23594,7 +23953,8 @@ "SenseId": "e4a2ddaf-3936-4686-b2c3-8a4207268d2f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23672,7 +24032,8 @@ "SenseId": "bea34cfa-cfd1-4785-b126-cab5ac699c34", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23742,7 +24103,8 @@ "SenseId": "ca6c691d-4d25-4930-9734-41c1fc6a80d3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23827,7 +24189,8 @@ "SenseId": "8a628d12-fc65-4fca-a4cd-b72fcfb3f4e9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23886,7 +24249,8 @@ "SenseId": "2f472c27-cbde-4af6-882c-332e088042be", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23937,7 +24301,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23988,7 +24353,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24056,7 +24422,8 @@ "SenseId": "aaa90268-96b6-4621-90c0-b15bdcae3797", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24107,7 +24474,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24168,7 +24536,8 @@ "SenseId": "32ab3b26-bde6-4c4e-b893-7bdebbba97f3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24271,7 +24640,8 @@ "SenseId": "1dfc498d-6fd3-4ab7-bf19-e132a6a65490", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24351,7 +24721,8 @@ "SenseId": "93fbb734-6c88-49d4-9b17-9eeb0c71173a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24402,7 +24773,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24461,7 +24833,8 @@ "SenseId": "08da4e99-a9f0-4f90-a25a-3f7d56bff893", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24527,7 +24900,8 @@ "SenseId": "3dcf0108-efef-48f1-932c-0c1f2b25a959", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24595,7 +24969,8 @@ "SenseId": "42ee67c5-c6a9-4c1a-984a-30c5df50572f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a024c2c5-3356-4b6d-95c0-f6b04c3eb1fb", @@ -24610,7 +24985,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24678,7 +25054,8 @@ "SenseId": "7e4ab6ec-915b-40b4-b04f-e6fae33c1958", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24763,7 +25140,8 @@ "SenseId": "93ce8887-85b4-4cfb-9d41-d3a78a59a674", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24848,7 +25226,8 @@ "SenseId": "c96968f6-3ba4-41dc-866f-46621635a4b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24909,7 +25288,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "484817a2-3fd3-4c6f-87a1-d9aa6d6c7720", @@ -24949,7 +25329,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b68b4b80-2291-4ad4-8489-5908f4a3ce32", @@ -24971,7 +25352,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25051,7 +25433,8 @@ "SenseId": "c7506d9e-5153-476e-a335-8809d256bb16", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25133,7 +25516,8 @@ "SenseId": "30c7b3aa-10e4-4946-ac04-e6d7a6be141c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25194,7 +25578,8 @@ "SenseId": "a4d763ac-cce7-4b81-85cf-55ef86f16cb2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25245,7 +25630,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25343,7 +25729,8 @@ "SenseId": "58c422e6-bf58-48f7-837b-0d694c46c178", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25404,7 +25791,8 @@ "SenseId": "1740df40-5673-47aa-847e-65c437550442", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25465,7 +25853,8 @@ "SenseId": "8637fd45-a2f1-4e08-95d3-8d79ca10a64f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "47f507af-496d-4983-8c2f-74ddd6843b5f", @@ -25488,7 +25877,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25549,7 +25939,8 @@ "SenseId": "adf88e54-3b71-4d63-bcb0-ddce4ff78565", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25610,7 +26001,8 @@ "SenseId": "8077a104-cdc7-4366-8bf5-b73997d3abfa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25670,7 +26062,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25754,7 +26147,8 @@ "SenseId": "14518a12-4f6b-457c-b059-31e8941432c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25822,7 +26216,8 @@ "SenseId": "c67be91a-7537-47ac-b4ac-f16dddba5dea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25890,7 +26285,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25941,7 +26337,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ea2ea2a2-daa4-4c5c-b880-bedc73e66594", @@ -25964,7 +26361,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26032,7 +26430,8 @@ "SenseId": "5121e7bd-4eb3-4e74-9779-d833fcbd6c33", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "209e52a4-dac0-4220-904d-bd2774dfb631", @@ -26095,7 +26494,8 @@ "SenseId": "209e52a4-dac0-4220-904d-bd2774dfb631", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26144,7 +26544,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26210,7 +26611,8 @@ "SenseId": "8b4ba5d6-8067-44f7-8484-35c96aa7d262", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26269,7 +26671,8 @@ "SenseId": "b3b6bbb6-5c84-4ff0-a8e6-1e2899d12400", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26354,7 +26757,8 @@ "SenseId": "8a8e149b-f056-4234-9810-4b90b3ffb19d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26432,7 +26836,8 @@ "SenseId": "1743274c-54d5-4ff5-b444-3d4153c77cb5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26498,7 +26903,8 @@ "SenseId": "b35a109a-8344-44cc-bf8f-3c9c70d5a868", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26549,7 +26955,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26627,7 +27034,8 @@ "SenseId": "8cdc935e-49af-4457-a414-d38b10ec906b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26718,7 +27126,8 @@ "SenseId": "a97c0f4d-73e0-4b95-931f-31c8a515729e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26786,7 +27195,8 @@ "SenseId": "04f6c79e-348b-43f0-9cd4-0725a74814d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26847,7 +27257,8 @@ "SenseId": "5b4c2c6a-3c8e-45d0-927d-385f7cbb75bd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26915,7 +27326,8 @@ "SenseId": "559be1cc-d82c-415d-b5b7-2043a9604511", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26993,7 +27405,8 @@ "SenseId": "07dc886f-0dba-4aa6-963a-3d891662d3bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27054,7 +27467,8 @@ "SenseId": "25b238b4-a5d7-4131-a98d-62f2238a4555", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0d63ae85-adf8-4fb0-a52a-58a5c41bfb86", @@ -27078,7 +27492,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -27139,7 +27554,8 @@ "SenseId": "4168c68a-7b17-4f1a-97f7-37f5575e39e1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "134179c7-370a-4bbb-8fe8-478cce52139d", @@ -27162,7 +27578,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -27223,7 +27640,8 @@ "SenseId": "1c9f2594-1004-425c-866f-d88e69fe7472", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27306,7 +27724,8 @@ "SenseId": "7502b8d4-c1a1-46c6-a985-46966413ff32", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27375,7 +27794,8 @@ "SenseId": "78a7affb-82be-4888-be1c-a5ece125682b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27436,7 +27856,8 @@ "SenseId": "2030a4db-c8e3-4492-8eee-ee03fa95cdae", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27520,7 +27941,8 @@ "SenseId": "aa2f490f-656d-4fac-85ba-f27ffd198fc7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27571,7 +27993,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -27632,7 +28055,8 @@ "SenseId": "d3eb5101-3c90-4cec-9ba8-abcca2cc7fd4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27725,7 +28149,8 @@ "SenseId": "6ccc4bda-d84e-44bc-b401-7a831fe7e78e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27810,7 +28235,8 @@ "SenseId": "8a75f1f8-dea3-4c3f-9e35-63b674b1d525", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27892,7 +28318,8 @@ "SenseId": "371d8c7f-e0eb-41e2-a9b0-ae1e8cf6daa3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27958,7 +28385,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28007,7 +28435,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a9da180c-b617-4897-bbc3-9483e3ec9fae", @@ -28030,7 +28459,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b7dd12e2-4eaa-40a1-a07e-8239b886f77f", @@ -28053,7 +28483,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ad95bb10-5844-4233-9481-227dc410fc16", @@ -28076,7 +28507,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28175,7 +28607,8 @@ "SenseId": "62af26f3-cd22-4b25-82dc-3dc7cb6ba886", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28224,7 +28657,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28282,7 +28716,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28350,7 +28785,8 @@ "SenseId": "b179aa5a-18b1-43c4-8802-225af8d2473a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28399,7 +28835,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28450,7 +28887,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28508,7 +28946,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28576,7 +29015,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28627,7 +29067,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28695,7 +29136,8 @@ "SenseId": "cbf8b07f-44e9-4847-beee-21ee79a0e073", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28761,7 +29203,8 @@ "SenseId": "e86f33e1-ff72-4335-a704-04954f4ebee1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28852,7 +29295,8 @@ "SenseId": "f24bb8e1-419f-4ff0-9020-ad57bec92129", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28920,7 +29364,8 @@ "SenseId": "41dc96b0-ec32-4968-adf5-420c21fa5a8b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28970,7 +29415,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29047,7 +29493,8 @@ "SenseId": "ef2dfd9b-673b-4948-8fea-0e44aa5e12a7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29096,7 +29543,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29145,7 +29593,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29194,7 +29643,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29260,7 +29710,8 @@ "SenseId": "6895e856-d373-4190-b7ac-8d185a18e4ce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29353,7 +29804,8 @@ "SenseId": "990acf6f-9eb5-4b84-b3c5-ac736813481b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9e09f628-2cc0-47f1-a747-f199af978acf", @@ -29409,7 +29861,8 @@ "SenseId": "9e09f628-2cc0-47f1-a747-f199af978acf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29458,7 +29911,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29507,7 +29961,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29575,7 +30030,8 @@ "SenseId": "c38c6c69-6d59-41a5-b9d4-cc259b30b56a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29626,7 +30082,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29684,7 +30141,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29733,7 +30191,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "02fdaa00-2856-4abc-85f8-7ceae651d8d4", @@ -29756,7 +30215,8 @@ }, "PartOfSpeechId": "730528ca-6a9b-4424-9839-a58bf66db779", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29805,7 +30265,8 @@ }, "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29871,7 +30332,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29920,7 +30382,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29986,7 +30449,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30052,7 +30516,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30101,7 +30566,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30159,7 +30625,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30208,7 +30675,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30266,7 +30734,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30315,7 +30784,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -30373,7 +30843,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "908d1ba5-dd47-4009-854e-4cc834f59559", @@ -30396,7 +30867,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f83e6701-d207-4261-a0ce-5de4c94449ee", @@ -30419,7 +30891,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b2521441-a2c1-41ba-af12-5b5ce51208b7", @@ -30442,7 +30915,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "8f9dbfe6-b955-4a56-9319-7315c1c03b14", @@ -30465,7 +30939,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30531,7 +31006,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "65b1dd23-3788-4968-860b-b29c8439c601", @@ -30554,7 +31030,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30603,7 +31080,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30669,7 +31147,8 @@ "SenseId": "0b844486-8001-4dec-bc3f-1836662621ea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -30754,7 +31233,8 @@ "SenseId": "09f516ad-9d5a-442e-92a3-c4095e3e343c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -30820,7 +31300,8 @@ "SenseId": "319aff20-994b-4b4d-b28c-15238443f956", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -30879,7 +31360,8 @@ "SenseId": "edc77eed-15d6-45df-90ce-4d484442249f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -30938,7 +31420,8 @@ "SenseId": "3ec38f1b-6eef-427f-8ff3-b8c2954de6a6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31023,7 +31506,8 @@ "SenseId": "4ffd0f96-ebcb-41b4-b896-e97d3dceb36a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31084,7 +31568,8 @@ "SenseId": "2826ed49-b83a-4b50-9c8a-05197cc50420", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31143,7 +31628,8 @@ "SenseId": "f9d28c7e-718b-4694-8d27-d1b8060ae4e0", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fb259a5a-3ee7-4a7c-b197-59c492d89384", @@ -31166,7 +31652,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31243,7 +31730,8 @@ "SenseId": "cd8ecd88-36e9-4e60-95ac-545ca3716063", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7fca8e82-3e78-4cb6-88fd-6f4e15177efb", @@ -31283,7 +31771,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31342,7 +31831,8 @@ "SenseId": "d6e01571-4afc-4a63-93d6-d252408e2eeb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31481,7 +31971,8 @@ "SenseId": "90b31605-76db-4597-baa8-45ec4fda706d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31540,7 +32031,8 @@ "SenseId": "4e52fc2c-f04f-4397-bf00-9145be555027", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31630,7 +32122,8 @@ "SenseId": "18350c76-4bb9-4557-94e5-001eeca8c77a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31696,7 +32189,8 @@ "SenseId": "4a8349d7-374b-4a3f-a008-2a8d036a6c72", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31772,7 +32266,8 @@ "SenseId": "ab06a13e-8c8a-4c08-ace1-1dbe151d6a1f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31850,7 +32345,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31916,7 +32412,8 @@ "SenseId": "c5a05a9b-8a7b-4b30-90b3-a22a0ede868c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31992,7 +32489,8 @@ "SenseId": "80130c84-3eb0-4670-b896-4cf854eb6103", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32051,7 +32549,8 @@ "SenseId": "318d5b28-51b2-4924-88a0-044bbbf75cf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32119,7 +32618,8 @@ "SenseId": "24907a9a-fa88-435d-bdd1-2a61fc122e4a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32185,7 +32685,8 @@ "SenseId": "5b80af28-d70b-41fa-b3e4-5a0e1431a220", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32251,7 +32752,8 @@ "SenseId": "604ebd63-fd39-460e-a0ca-93d6d9443e41", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32317,7 +32819,8 @@ "SenseId": "511eb02f-a823-4d38-aeb7-5a35da034431", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32383,7 +32886,8 @@ "SenseId": "7edf14c7-8c33-4222-8eea-e99b6e727de2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32458,7 +32962,8 @@ "SenseId": "9134f0c8-c69f-49d4-af7d-86d170ffff68", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32595,7 +33100,8 @@ "SenseId": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32678,7 +33184,8 @@ "SenseId": "01efa877-a8ff-43d5-9912-51eb18a83af9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32744,7 +33251,8 @@ "SenseId": "4bd3e2a9-e928-42b1-843f-6cde97a3ffa8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32803,7 +33311,8 @@ "SenseId": "6b4af1f4-5c2f-400e-bb9f-1c0ab4e75492", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32864,7 +33373,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -32962,7 +33472,8 @@ "SenseId": "6b44df76-bd2d-44b9-b086-0f1426f1a38f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33011,7 +33522,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33077,7 +33589,8 @@ "SenseId": "72a474a7-7a03-42a1-9a9c-9add30627592", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33207,7 +33720,8 @@ "SenseId": "94f4937a-3404-4d37-8cd8-027547d1b381", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33273,7 +33787,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "70ee8eb4-fc68-4a09-8074-9b51c70d3c3c", @@ -33295,7 +33810,8 @@ }, "PartOfSpeechId": "cf4b95e5-2362-412d-92a1-24846a4bab59", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33354,7 +33870,8 @@ "SenseId": "31ffccc7-f41d-4d9c-b82c-dedb94113c20", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33420,7 +33937,8 @@ "SenseId": "9ba6dc47-1937-4a0c-bbf4-43464a8ce714", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33496,7 +34014,8 @@ "SenseId": "4d37c94f-4809-4c0f-8082-1af196273387", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "43505c77-2177-4fd9-b646-01366fc6d214", @@ -33518,7 +34037,8 @@ }, "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "373e19da-a2fe-4b25-ac07-22dae481675a", @@ -33540,7 +34060,8 @@ }, "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33608,7 +34129,8 @@ "SenseId": "ce47cec8-8bfd-45ae-9f97-20dcf5d03892", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "eee643f8-98a4-499d-9d23-4cc23bab31ef", @@ -33631,7 +34153,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33716,7 +34239,8 @@ "SenseId": "0d2f5079-6737-4fde-97cb-006da839a693", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33775,7 +34299,8 @@ "SenseId": "0c1ff827-abd7-4cb3-803d-3c11dba1ff5c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33860,7 +34385,8 @@ "SenseId": "f7c942cb-bbf4-444c-a244-ce6ac9bd36fa", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "827e2351-ff14-4430-89e4-8a02747e0f94", @@ -33883,7 +34409,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7b4ed3bb-aea1-4906-8bab-37c602f04a6a", @@ -33906,7 +34433,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33967,7 +34495,8 @@ "SenseId": "f363c0f1-ede7-44f0-bd1b-75ba816911aa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34106,7 +34635,8 @@ "SenseId": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34201,7 +34731,8 @@ "SenseId": "6e63fbb8-5f43-44f0-b0b5-a27f49457178", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34284,7 +34815,8 @@ "SenseId": "6aa73def-278e-4751-b031-c9878ad3b838", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34352,7 +34884,8 @@ "SenseId": "35b11b7d-8b22-4ad9-945b-a537452d3a36", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34445,7 +34978,8 @@ "SenseId": "50240252-ca03-40bb-8d69-7d6762997929", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34494,7 +35028,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -34577,7 +35112,8 @@ "SenseId": "06e54dd2-932a-4bd0-a72f-f33bf6285750", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34643,7 +35179,8 @@ "SenseId": "98dafe91-7baa-41bf-9cb3-cd20fff87679", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34704,7 +35241,8 @@ "SenseId": "9dae3ae5-d349-4929-8fd0-d900777cdcde", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34763,7 +35301,8 @@ "SenseId": "f7551d4a-a6a8-431b-82ae-cc87738cf29d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34847,7 +35386,8 @@ "SenseId": "269f11ac-1cb3-4d45-885f-2b321b95e190", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34922,7 +35462,8 @@ "SenseId": "f2cbdf3f-b54d-4bdb-9dc7-b5b9a5e55722", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35005,7 +35546,8 @@ "SenseId": "4bec2e73-a2fa-4be6-976f-ba6ff9f7acc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35071,7 +35613,8 @@ "SenseId": "97259073-9a23-4056-8f5d-6a500118ec61", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35139,7 +35682,8 @@ "SenseId": "798afb72-f49f-478d-a1b9-1bb958494e15", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35209,7 +35753,8 @@ "SenseId": "c37de104-6633-4a7f-8334-fba322f0c89b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35294,7 +35839,8 @@ "SenseId": "cddee31a-556f-4a76-8e75-2be21302d85f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35385,7 +35931,8 @@ "SenseId": "1331035e-4a2d-4ede-b72a-8db3d2893ea6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35470,7 +36017,8 @@ "SenseId": "a45d7be9-f4bc-4a75-a43e-4d6d8c281bc8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35536,7 +36084,8 @@ "SenseId": "d64ed827-1d47-45ee-b253-1cc55d13b5d3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35618,7 +36167,8 @@ "SenseId": "dc9f82a8-e346-4734-a417-bfaee9c1b4c7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35696,7 +36246,8 @@ "SenseId": "1e1687c0-3394-4bc4-8bed-26c96d07c0de", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35757,7 +36308,8 @@ "SenseId": "5ea927e6-ee78-4f63-8ef9-bf46ff0b33f0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35818,7 +36370,8 @@ "SenseId": "067e18f7-8adc-447e-a072-a68ca8ff978b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35911,7 +36464,8 @@ "SenseId": "0f2c0668-a52f-4ce7-83e7-a492905e4f82", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6ee1d961-3dae-4b46-9579-e7e8e34163a6", @@ -35934,7 +36488,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -36011,7 +36566,8 @@ "SenseId": "17b61c66-081e-4e77-bd7e-dbd2aead3932", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36072,7 +36628,8 @@ "SenseId": "e1d99b98-3faa-4fdf-a883-46c21364b777", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36140,7 +36697,8 @@ "SenseId": "fd5ae1c9-56af-4bf4-85ce-e9e984550c42", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36206,7 +36764,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -36268,7 +36827,8 @@ "SenseId": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36327,7 +36887,8 @@ "SenseId": "471f30f4-6ef1-4306-b7be-bc5292a92b29", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36386,7 +36947,8 @@ "SenseId": "587d38d2-4461-4d26-bbb6-9ecf46861a1b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36445,7 +37007,8 @@ "SenseId": "6d090ec4-8a2f-4648-996d-426753654a77", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36523,7 +37086,8 @@ "SenseId": "c2a3421e-e0f7-4591-bf62-3380df4bf413", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36584,7 +37148,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -36659,7 +37224,8 @@ "SenseId": "339f2931-7da0-4c4f-b4ca-7d4b3317f496", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36710,7 +37276,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -36787,7 +37354,8 @@ "SenseId": "e233ed05-a5c5-4db6-a8a7-549a611a0ae5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "78f9be23-f46e-40f8-b9ae-feeb0fe345e1", @@ -36810,7 +37378,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -36871,7 +37440,8 @@ "SenseId": "f1ecb5b4-ec5f-4b06-9b7c-fd48f0a0fc08", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36959,7 +37529,8 @@ "SenseId": "acbba421-d6ef-4abb-b1b8-65c6402e4a49", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37073,7 +37644,8 @@ "SenseId": "2b9a6917-5d94-4491-a253-e34b36bde45e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37143,7 +37715,8 @@ "SenseId": "e8c7028d-3a47-4b64-b2be-7b1819997a5f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37204,7 +37777,8 @@ "SenseId": "fbdc0232-f0da-4dad-87fc-7717e704bca4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37272,7 +37846,8 @@ "SenseId": "184375ba-86e9-464f-9bdd-2993cd0263a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37340,7 +37915,8 @@ "SenseId": "b76f140c-bc70-46f5-8da6-3aad4c1b293a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37399,7 +37975,8 @@ "SenseId": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37484,7 +38061,8 @@ "SenseId": "e784f30d-32a6-4959-bd12-0eec6804bfa7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37533,7 +38111,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "026ea7ef-fa84-4805-a9ee-6ade8a5afea8", @@ -37556,7 +38135,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "33f29f92-bace-47d8-8596-91ba39570791", @@ -37579,7 +38159,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "59922af6-e73d-4d5f-afb3-4f3e0ff0d7fc", @@ -37602,7 +38183,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e455d9f3-c537-4fcc-b401-ab5f0d6e7a4e", @@ -37625,7 +38207,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37674,7 +38257,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "9b7682f7-c63b-4a46-982d-b9d011a84753", @@ -37697,7 +38281,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "4cef05db-5023-4826-a037-69997622e7d0", @@ -37720,7 +38305,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e8f56462-bd82-46dd-b660-56268c759606", @@ -37743,7 +38329,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37809,7 +38396,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37858,7 +38446,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37907,7 +38496,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37996,7 +38586,8 @@ "SenseId": "8c958583-0e11-4b66-b2c9-c3e570712355", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38092,7 +38683,8 @@ "SenseId": "7435327a-54ab-489b-912c-6cd4fcd4c701", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "56a695df-24fd-48b7-8fe5-e174a6a5ad31", @@ -38132,7 +38724,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "151fa841-74d5-4fd3-9159-00b98f673b22", @@ -38155,7 +38748,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a1db0f0d-f8e1-4edd-b6f6-14ae2441c385", @@ -38178,7 +38772,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38273,7 +38868,8 @@ "SenseId": "50029fb1-1687-4e3c-bb18-f56a4fff5ef0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38358,7 +38954,8 @@ "SenseId": "3f89b93b-bb37-4daa-acec-36437ce585cb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38407,7 +39004,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38489,7 +39087,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d7eddc38-92ea-4a69-90f3-f9d98070cfc4", @@ -38512,7 +39111,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38571,7 +39171,8 @@ "SenseId": "99c14abc-9fbf-48a4-931a-f30d37463fd8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38663,7 +39264,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38714,7 +39316,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38796,7 +39399,8 @@ "SenseId": "c65d2e3c-2af7-4397-9fc7-9513aec457bf", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7bb75da8-2d6d-4c36-a2ae-fdca2e05fccf", @@ -38819,7 +39423,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38926,7 +39531,8 @@ "SenseId": "66caea57-5e26-41fb-9075-e204d5d3c6a4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "19f70685-7f84-4c67-97bd-39c148b32a3d", @@ -38966,7 +39572,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39034,7 +39641,8 @@ "SenseId": "03ae5c91-0727-41a3-9667-dbd3115bf69e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39102,7 +39710,8 @@ "SenseId": "4da51546-5eef-463c-b1be-526c4b34bc36", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39163,7 +39772,8 @@ "SenseId": "0515b9b2-9f91-415e-9081-1ffa59094bac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39222,7 +39832,8 @@ "SenseId": "42c8d478-acca-448c-a512-3dbcd2d3f34c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39283,7 +39894,8 @@ "SenseId": "98996975-bc63-4c87-a7b7-79813e098bdc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39349,7 +39961,8 @@ "SenseId": "aa95d4f9-9ac2-432e-90e6-23b14f857d49", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39440,7 +40053,8 @@ "SenseId": "91688c53-43b6-4ecc-9194-bb960b61155b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39531,7 +40145,8 @@ "SenseId": "16a4d77d-f9ea-489b-ac07-bead9ecd8304", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39597,7 +40212,8 @@ "SenseId": "bb5431f8-9a7d-400b-90e3-176019ee4836", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39674,7 +40290,8 @@ "SenseId": "2f9dbe01-d3b5-4945-849e-797f9bc54d7f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39758,7 +40375,8 @@ "SenseId": "fb2f2bf4-bc58-4a1e-a4bc-fddad7670996", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39833,7 +40451,8 @@ "SenseId": "8637487d-15dc-4ea3-8a29-b69137af0d60", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4c2747b8-cffb-4030-8a96-bab2a7d514bc", @@ -39865,7 +40484,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39908,7 +40528,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "14713929-5278-41e9-82d2-7832394146c8", @@ -39922,7 +40543,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39990,7 +40612,8 @@ "SenseId": "6ef2f45c-a585-482a-b99f-32aaa9f0b91e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40056,7 +40679,8 @@ "SenseId": "92947ad8-fa32-4f8a-8bb7-5328ea99a859", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3ce820a3-cad2-4877-a735-e0ef244edba4", @@ -40112,7 +40736,8 @@ "SenseId": "3ce820a3-cad2-4877-a735-e0ef244edba4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40180,7 +40805,8 @@ "SenseId": "d3b00031-dcd0-45f4-ae35-ae7fa76830dd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8e87bcf4-8ce8-4cb5-9de7-543122c7fda2", @@ -40203,7 +40829,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40274,7 +40901,8 @@ "SenseId": "f3d8d3ed-b947-4fc4-baaf-90824ff64ae3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40342,7 +40970,8 @@ "SenseId": "ad99f7bd-09ab-4b5d-8043-6c59d31f62c7", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "01dafaba-c6cc-4d16-92a1-cded047655cf", @@ -40365,7 +40994,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40447,7 +41077,8 @@ "SenseId": "2912198b-fb50-4312-8458-7ea24b423fc9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40515,7 +41146,8 @@ "SenseId": "da536137-5182-4e26-94bc-6830787b1a7a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40583,7 +41215,8 @@ "SenseId": "cd54851f-e56c-42cf-b34e-32c7cfd30702", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6c626dd8-43ba-47a7-a415-35c43f322f31", @@ -40606,7 +41239,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40684,7 +41318,8 @@ "SenseId": "dea34b42-5731-4d82-82b0-d6748f0234b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40745,7 +41380,8 @@ "SenseId": "e417aa16-cff4-4288-835d-2da5443630eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40806,7 +41442,8 @@ "SenseId": "b9767f89-5b00-4986-8c3a-018ea8d05d85", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40855,7 +41492,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -40942,7 +41580,8 @@ "SenseId": "1674d7bb-216f-4b4e-b61b-15cc84c420e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41003,7 +41642,8 @@ "SenseId": "cc5dde39-7eb8-41f1-a833-564569ccd28b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41071,7 +41711,8 @@ "SenseId": "20cf4edd-301c-4989-86b7-de760562ba4e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0b996a63-cfca-49ce-9717-5b7b12d34c58", @@ -41094,7 +41735,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -41179,7 +41821,8 @@ "SenseId": "e8764c07-d5ea-42d5-b86c-d8e9979ab798", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "de112476-c4a7-4606-ac3c-5e0e44d9aa39", @@ -41219,7 +41862,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -41280,7 +41924,8 @@ "SenseId": "07b38b92-3a89-421b-befa-15fad6569e32", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41357,7 +42002,8 @@ "SenseId": "6aa3269d-8c92-4daf-b74e-5c8adc0a4fc1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41425,7 +42071,8 @@ "SenseId": "983b1d9f-0995-402b-bdf1-9925d8044db7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41493,7 +42140,8 @@ "SenseId": "ad4b7a60-ba81-464e-becf-6226fbf153bc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41561,7 +42209,8 @@ "SenseId": "6b525967-2c84-492b-b802-08372872cdf5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d33f8677-dabf-458f-80a8-e606bdb4cb0c", @@ -41584,7 +42233,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -41645,7 +42295,8 @@ "SenseId": "1229547d-d9de-4523-ba1e-891053df36a8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41723,7 +42374,8 @@ "SenseId": "3a89870c-b27f-490e-bed9-6f03a8074d9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41801,7 +42453,8 @@ "SenseId": "703d0fd4-773c-4915-99f6-0f9a461290f8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41872,7 +42525,8 @@ "SenseId": "98b0f1d8-b3f8-4876-9ec5-17e28a80a8b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41933,7 +42587,8 @@ "SenseId": "0a80dcf6-b583-4c1f-9e80-b636400cdfcb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41994,7 +42649,8 @@ "SenseId": "8f19f938-d264-4e3a-aa26-502445dd8266", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42079,7 +42735,8 @@ "SenseId": "940376b0-d627-4d5c-82c7-bc77aa4a772b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42145,7 +42802,8 @@ "SenseId": "df45b4f2-25bd-4f90-b89c-3cec51877f7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42225,7 +42883,8 @@ "SenseId": "e89b6243-a7c0-48c2-b34c-1bf1fc057d85", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42291,7 +42950,8 @@ "SenseId": "2d93aa5f-85c0-4262-a073-4c52725df0ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42382,7 +43042,8 @@ "SenseId": "14656f11-c542-4d0d-a8d8-1bf4404d8a50", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42467,7 +43128,8 @@ "SenseId": "b0b51446-4aca-4563-afde-fece60b50110", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42545,7 +43207,8 @@ "SenseId": "e9e0b4cd-f43e-4782-99e4-ebdbb9beface", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42613,7 +43276,8 @@ "SenseId": "6f252789-f43e-4ab9-861b-24a34a80be54", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42681,7 +43345,8 @@ "SenseId": "98a00a46-22ea-43b9-9c91-30592f12e9b8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42749,7 +43414,8 @@ "SenseId": "09e43ed4-56f0-486c-9716-df293f95bbc2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42817,7 +43483,8 @@ "SenseId": "21d335a6-7d87-4e70-ac02-23010d17dcf2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42878,7 +43545,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -42944,7 +43612,8 @@ "SenseId": "ad5209b6-e450-44ea-9e26-7843d1400eef", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43010,7 +43679,8 @@ "SenseId": "1a2af823-093d-4226-b1af-71906c968a91", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43095,7 +43765,8 @@ "SenseId": "fbdc42ce-d4b0-45b8-8385-d9096064ba6f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43186,7 +43857,8 @@ "SenseId": "45ef7e48-d380-41f2-9ec2-7ce2f5616944", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43247,7 +43919,8 @@ "SenseId": "a5cf564d-fa0d-4818-94dd-e542b59f80a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43317,7 +43990,8 @@ "SenseId": "f6191876-68d6-4e06-877f-24ef94aa31d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43428,7 +44102,8 @@ "SenseId": "27e52026-b6f1-47b3-a588-e7891b63d80f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43496,7 +44171,8 @@ "SenseId": "7639dce1-8ea5-40de-b8e9-681656497f59", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "94a44008-2b57-45cf-abf8-56a29b881810", @@ -43519,7 +44195,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -43610,7 +44287,8 @@ "SenseId": "f1d582f4-f8a1-4e6c-99f3-039650900166", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43699,7 +44377,8 @@ "SenseId": "cbe5cf38-4025-4302-a67f-f288ae0d0b1f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43760,7 +44439,8 @@ "SenseId": "a87fe186-90f5-4664-b096-faa0c8d73c83", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43830,7 +44510,8 @@ "SenseId": "a48b6a25-3b5b-4749-b75c-5b54f2465c2f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ec56155f-e5b8-435d-a475-7a774c86a3d3", @@ -43845,7 +44526,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -43904,7 +44586,8 @@ "SenseId": "3ffb5f73-0470-40c2-b53d-79dcdd45d2a7", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4c579b8c-15d9-4217-91d2-a801e123a806", @@ -43944,7 +44627,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44012,7 +44696,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44073,7 +44758,8 @@ "SenseId": "b2804ad1-af28-4a1a-9e64-4219db3dfd42", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44141,7 +44827,8 @@ "SenseId": "ea0b55a0-af6b-4491-af06-4fa4ca2f95c7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44216,7 +44903,8 @@ "SenseId": "48671a5c-801b-4f46-b57a-33a713431e3e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44275,7 +44963,8 @@ "SenseId": "611bc6d1-791c-4d82-a45f-7721e8b7b7cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44336,7 +45025,8 @@ "SenseId": "122c9804-0c81-46bf-a059-eff5a71114d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44397,7 +45087,8 @@ "SenseId": "45cfd084-6fcc-4918-8aa8-1f448a585505", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44455,7 +45146,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44544,7 +45236,8 @@ "SenseId": "a0e195ba-db0d-4e06-8512-0d683e9d9cb5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44620,7 +45313,8 @@ "SenseId": "88f99db9-c0c5-44b5-a9af-b2c4f61fe87f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44681,7 +45375,8 @@ "SenseId": "7bbab562-1e09-4b3c-84ce-f59fbfe201ae", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44758,7 +45453,8 @@ "SenseId": "a625dc05-4f89-44fb-a88a-3e2f564442dd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2ed3a10f-6c6d-40b2-b807-38bbe00a07a0", @@ -44790,7 +45486,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44851,7 +45548,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44936,7 +45634,8 @@ "SenseId": "461c78a8-d2b1-4d57-9c9a-bc14e85364d1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9b148078-a552-4b81-91fa-c5313a4badc9", @@ -44968,7 +45667,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45036,7 +45736,8 @@ "SenseId": "ef7144af-9ed2-45d2-8ae0-5e8f11d5cce5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45097,7 +45798,8 @@ "SenseId": "f80ea820-9403-463b-aaf5-e0e7747d95d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45146,7 +45848,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45214,7 +45917,8 @@ "SenseId": "2c63aca2-095f-4b6c-a2ad-f0b45abc4345", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45275,7 +45979,8 @@ "SenseId": "a4b55442-7b5f-4da4-8df5-f41a07a7a07a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45341,7 +46046,8 @@ "SenseId": "8d2938b5-66df-4628-a5d2-331356818b90", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e4f8f769-2814-4cf2-b98d-b03db5840f52", @@ -45364,7 +46070,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45425,7 +46132,8 @@ "SenseId": "8af45d7c-067b-4bac-9eb4-0c0e6bd35c9c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45474,7 +46182,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45523,7 +46232,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45591,7 +46301,8 @@ "SenseId": "89e08ce0-76fe-4600-909c-a6ef6ddc369f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45668,7 +46379,8 @@ "SenseId": "7be81c0e-c674-4ffc-8c2e-e74e5f87a429", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45746,7 +46458,8 @@ "SenseId": "1f2bfb53-00f2-4797-9b6b-e516e0ce179f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "52d378cc-8bee-46e9-be52-68d791d04080", @@ -45768,7 +46481,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45829,7 +46543,8 @@ "SenseId": "3fbf73de-bc50-4b0e-a81d-4d4a7274fe31", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45897,7 +46612,8 @@ "SenseId": "5e8265a3-3165-4af9-a937-69e5f2a6139a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45961,7 +46677,8 @@ "SenseId": "efc09d29-c9cd-465c-90dd-e7b1573aa8c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46039,7 +46756,8 @@ "SenseId": "e15307e9-af9b-4c96-b500-7da6cae75fc3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46105,7 +46823,8 @@ "SenseId": "c6142fea-e652-40b7-b102-80fa25f41171", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46226,7 +46945,8 @@ "SenseId": "db1b84b1-735e-4654-b942-bf0785e5c957", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46327,7 +47047,8 @@ "SenseId": "fb463714-a764-41a6-930d-72042a2d09ec", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "75e9c0e7-e53d-45b6-84cc-09eb21401f99", @@ -46350,7 +47071,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b37cebbd-6125-438b-aebd-e65174d9f464", @@ -46373,7 +47095,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e3873582-d497-4056-8de1-fc93329a7edf", @@ -46396,7 +47119,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46480,7 +47204,8 @@ "SenseId": "ec144453-8e8a-45cc-b506-495ca91ba00f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46563,7 +47288,8 @@ "SenseId": "4e518d15-c861-4f3b-bd03-c757d9598bf8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46624,7 +47350,8 @@ "SenseId": "8910df53-b949-4206-9f66-bf799a42c9cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46683,7 +47410,8 @@ "SenseId": "11782e46-c080-4795-843b-96fb819cba28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46734,7 +47462,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46783,7 +47512,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46842,7 +47572,8 @@ "SenseId": "319b5368-715d-4ff1-a6f5-01de219b6be7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46965,7 +47696,8 @@ "SenseId": "38b1819b-80b8-4894-992e-80f3da0b48a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47042,7 +47774,8 @@ "SenseId": "0388212f-ad6d-42ce-a72f-4441945f5547", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47103,7 +47836,8 @@ "SenseId": "1d53a476-c543-4f58-bc95-92ac73bcee5a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47198,7 +47932,8 @@ "SenseId": "d7ff011f-0022-4533-902b-56e93efdab6a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47305,7 +48040,8 @@ "SenseId": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47366,7 +48102,8 @@ "SenseId": "e67054cc-f854-4ea7-b572-aade7b6ad1cf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47459,7 +48196,8 @@ "SenseId": "10f0881e-85ec-4486-ac2f-e6ea88516505", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", @@ -47523,7 +48261,8 @@ "SenseId": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47610,7 +48349,8 @@ "SenseId": "b6779c26-0a60-4de2-b6f2-110d923d6882", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47697,7 +48437,8 @@ "SenseId": "a6beb173-ee69-45f7-ad58-2834e81cc4f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47758,7 +48499,8 @@ "SenseId": "e3433c1a-13bb-4aa1-ade7-cc7f2ac780c2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47854,7 +48596,8 @@ "SenseId": "4f53bb12-ebc7-4893-af3f-efc435cb6333", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47922,7 +48665,8 @@ "SenseId": "f772d5cf-e5e9-4a1b-a3a1-ddbe27ae2f14", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "60b0f55b-d605-4ca1-a1cd-c8e82a49707e", @@ -47945,7 +48689,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -48037,7 +48782,8 @@ "SenseId": "84a2be95-35ad-49a6-8366-4f77b22b7737", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48107,7 +48853,8 @@ "SenseId": "89ce983e-4216-43b0-8096-a826d80c20e7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48216,7 +48963,8 @@ "SenseId": "1f32c1cb-884c-49ef-b610-9179b3454c30", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ee07fe98-80ff-4cc7-a2ec-e27deeb7df23", @@ -48239,7 +48987,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -48288,7 +49037,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -48356,7 +49106,8 @@ "SenseId": "c1eecd5c-342e-4d45-9ae0-f7351d18ed55", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48422,7 +49173,8 @@ "SenseId": "fcd8d925-5562-419a-a0f7-729609a2a7fe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48497,7 +49249,8 @@ "SenseId": "b20a8b8c-6dbe-404b-9e5f-5a1803329125", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48574,7 +49327,8 @@ "SenseId": "5d316f71-9f38-4273-9963-c04cc1446167", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48642,7 +49396,8 @@ "SenseId": "1063b7d7-a239-46cc-b345-96631b31fede", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48710,7 +49465,8 @@ "SenseId": "34976250-13b2-4ddf-b6da-d9737e7365ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48769,7 +49525,8 @@ "SenseId": "43c943ac-02b2-438d-9c5c-0c8dc5f5495d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48830,7 +49587,8 @@ "SenseId": "85e6f588-f11b-4c33-a357-397479f3d9ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48891,7 +49649,8 @@ "SenseId": "f2cdf68d-32bc-4d0d-9adf-050026c3c84b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48961,7 +49720,8 @@ "SenseId": "bf91ed99-0560-4fb0-b3ef-4b6bc1888b80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49029,7 +49789,8 @@ "SenseId": "c04a03f5-5139-4ee7-b9c7-c49ae92c8e2f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0822131f-95c9-4c5b-b28a-f7203db30f55", @@ -49052,7 +49813,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e9000da3-e344-44b0-824d-b9977e535d49", @@ -49075,7 +49837,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -49150,7 +49913,8 @@ "SenseId": "0f531ecf-0f20-44fa-a102-1d2f124709e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49225,7 +49989,8 @@ "SenseId": "06bc691e-5a54-4a35-ab95-849b45b7721a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49293,7 +50058,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -49352,7 +50118,8 @@ "SenseId": "0daee1c3-bf0a-4a64-8d6a-705ab4ab5c14", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49411,7 +50178,8 @@ "SenseId": "d70e028c-2bf8-4dcc-aa25-54f372ec9dd4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49496,7 +50264,8 @@ "SenseId": "f96c1723-a60f-42db-83da-de68fff7b641", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49573,7 +50342,8 @@ "SenseId": "11d1070b-3b98-4b55-9242-02b6674d2a78", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49632,7 +50402,8 @@ "SenseId": "a46c1374-9f24-47bb-8a61-db6f0e7fc85e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49701,7 +50472,8 @@ "SenseId": "ae58f54b-7f05-4d1d-a022-02ebc5405989", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49769,7 +50541,8 @@ "SenseId": "486fcf0c-de3f-4a30-bf62-dd75b7e096d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49837,7 +50610,8 @@ "SenseId": "c9990577-4e77-4b4f-aed5-3ecbbf15a1f6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49905,7 +50679,8 @@ "SenseId": "97315f66-6358-4771-96f7-4ee76436ff8f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49989,7 +50764,8 @@ "SenseId": "a8fd0ff5-f64b-4419-9154-1be2e583c29c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "322b1569-3d3c-486d-91ad-615a6a43cd52", @@ -50012,7 +50788,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -50090,7 +50867,8 @@ "SenseId": "35278c37-466e-4194-9da0-faae2cd7908d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50168,7 +50946,8 @@ "SenseId": "ec8fb8f1-c0bd-4c7b-a67c-2e48a1bb044b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50253,7 +51032,8 @@ "SenseId": "dd98267d-b7b7-465c-a61d-128f0ec3dd27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50338,7 +51118,8 @@ "SenseId": "5adef85a-9ff2-477b-a967-a5d519664767", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50389,7 +51170,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -50457,7 +51239,8 @@ "SenseId": "889a81df-a63f-4e76-93b9-7873aab77714", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50525,7 +51308,8 @@ "SenseId": "aebb266e-130f-433e-adce-2399c4f7ffdd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50574,7 +51358,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -50651,7 +51436,8 @@ "SenseId": "70a1de9b-c5eb-4ca7-a214-1b33f85127f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50729,7 +51515,8 @@ "SenseId": "b48232bf-44e2-48f4-9c2a-6a0136d092df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50812,7 +51599,8 @@ "SenseId": "824ec104-b330-42f6-b353-123cb03998b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50878,7 +51666,8 @@ "SenseId": "4cb5708d-0ba7-46f7-afbe-13d9d987ad91", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50944,7 +51733,8 @@ "SenseId": "55345d98-6fd0-484b-950d-e2fa12b6aec4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51027,7 +51817,8 @@ "SenseId": "305ecbd1-ba98-4ff9-8bad-985b4e1f48ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51095,7 +51886,8 @@ "SenseId": "b096a890-d21c-4734-b0ef-2c8ef0de6ea5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51170,7 +51962,8 @@ "SenseId": "605f204e-b617-44b4-9732-995b23d1a14f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51257,7 +52050,8 @@ "SenseId": "87b14641-5673-443e-938a-2700deea5b0a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51340,7 +52134,8 @@ "SenseId": "14af0b49-0487-46f8-ad04-1fc2a860f289", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51408,7 +52203,8 @@ "SenseId": "41724d8b-53b5-4d0e-af28-3c864b0e39b1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51485,7 +52281,8 @@ "SenseId": "752f6980-2888-411b-bd45-a37bad94f428", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "1132c791-3980-4fe1-af2e-99e766f8ac01", @@ -51500,7 +52297,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "6ad40996-9427-4951-8596-61a482180cf5", @@ -51534,7 +52332,8 @@ "SenseId": "6ad40996-9427-4951-8596-61a482180cf5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51612,7 +52411,8 @@ "SenseId": "57945f8a-40d5-4ca4-9c89-f8cecc68f8b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51690,7 +52490,8 @@ "SenseId": "bdb7385d-b828-4b3a-95c3-6392cf178925", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51756,7 +52557,8 @@ "SenseId": "6114e22f-0bf4-4987-97f0-e4f9e4fc09aa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51817,7 +52619,8 @@ "SenseId": "2083395f-5ad8-47e1-84da-9570b2571584", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51895,7 +52698,8 @@ "SenseId": "eb4e8cdf-de54-4ee4-89d4-5fab25b9c7c3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51956,7 +52760,8 @@ "SenseId": "6f250ea0-f41e-40e9-9ab4-c5c26b1e52e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52024,7 +52829,8 @@ "SenseId": "1c8cae0e-aa0b-486b-a195-55538dbe67df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52085,7 +52891,8 @@ "SenseId": "cf09ea68-25fe-423a-b238-edd3ca05e9b6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "60561d0d-5be7-43af-b3f7-619b74510ef0", @@ -52107,7 +52914,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -52182,7 +52990,8 @@ "SenseId": "888c502e-7006-4841-9087-e8500209b257", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8c04a4dd-084f-4496-bb4b-76429767a4d7", @@ -52224,7 +53033,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -52275,7 +53085,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -52343,7 +53154,8 @@ "SenseId": "7b087c80-53a1-41e8-ad08-7e5aea18410c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52404,7 +53216,8 @@ "SenseId": "bae12644-8d47-42e6-8fce-28076b38da88", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52472,7 +53285,8 @@ "SenseId": "d2673bb4-023b-4497-838c-3be9db01dfc6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52540,7 +53354,8 @@ "SenseId": "c4c668f4-1dad-4606-a6d0-14b5ed1684e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52617,7 +53432,8 @@ "SenseId": "462d9ee6-1d42-409f-824e-5a25e6ac1a48", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52666,7 +53482,8 @@ }, "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -52734,7 +53551,8 @@ "SenseId": "e59940fe-9ebc-4531-8f0f-606d65db189c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52800,7 +53618,8 @@ "SenseId": "1882c819-4011-4b47-ba67-4af189d622da", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52868,7 +53687,8 @@ "SenseId": "1cb19796-f0b4-459b-80ed-4ed620027d8e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ad086c20-5484-4369-a988-86d1bee667a9", @@ -52891,7 +53711,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -52969,7 +53790,8 @@ "SenseId": "0de5de90-4272-4d51-878c-12b83a619769", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53037,7 +53859,8 @@ "SenseId": "11b748dc-ab4a-4525-9cbb-a6de4b85caf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53098,7 +53921,8 @@ "SenseId": "3c4ba6f1-e3b9-41f4-8331-47704488975f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53166,7 +53990,8 @@ "SenseId": "5da5191e-c7c9-4c91-b4eb-16e52fd275ae", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2392de10-0208-4840-9154-35f146b14662", @@ -53189,7 +54014,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -53267,7 +54093,8 @@ "SenseId": "2b1557be-9bd5-42d7-87da-7e53334a49f1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53316,7 +54143,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -53375,7 +54203,8 @@ "SenseId": "43584f6e-c0da-49e1-b3ae-2f3c5dfa0618", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53443,7 +54272,8 @@ "SenseId": "66347a27-02b1-4634-9e15-6e558eea1975", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53511,7 +54341,8 @@ "SenseId": "9854719e-fc52-413f-bd46-923c7ed16dc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53579,7 +54410,8 @@ "SenseId": "0ebd98cc-38b8-4548-8f65-85df6f081421", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53647,7 +54479,8 @@ "SenseId": "70922f18-954d-4d45-838b-9e8add104260", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53708,7 +54541,8 @@ "SenseId": "615cba3f-626c-411f-a90c-bb76ca15d1f5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53785,7 +54619,8 @@ "SenseId": "309c1c0c-cb5e-466b-a081-427e61ca781b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53853,7 +54688,8 @@ "SenseId": "75eada5f-2469-4558-ab57-256655ef86d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53914,7 +54750,8 @@ "SenseId": "9acfd40f-6073-4cb3-b6e4-38be96b09fb8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53955,7 +54792,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -54050,7 +54888,8 @@ "SenseId": "0aed8037-a007-49e4-9953-3aab76aa6f21", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fe140ec7-3093-4e13-99b5-9d34e707c2c8", @@ -54082,7 +54921,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -54177,7 +55017,8 @@ "SenseId": "214820fd-bc1f-4271-9191-2be4725a8e78", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54245,7 +55086,8 @@ "SenseId": "165d58e1-9723-4410-9075-7f30d84d20ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54313,7 +55155,8 @@ "SenseId": "772629ab-f835-4320-9b39-0e243b405e41", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54381,7 +55224,8 @@ "SenseId": "b8e47d4a-1a2e-4ebe-9de1-5dfc1ea46e89", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54479,7 +55323,8 @@ "SenseId": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", @@ -54543,7 +55388,8 @@ "SenseId": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54620,7 +55466,8 @@ "SenseId": "21b1db45-dee8-44d8-a566-eee8e8705670", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54681,7 +55528,8 @@ "SenseId": "5c7c257e-0536-4cc9-bcd7-1e00db08655b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54749,7 +55597,8 @@ "SenseId": "861141fa-1b5e-4a3d-9f45-7f0d0ea8af4a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54815,7 +55664,8 @@ "SenseId": "bdfdd59e-ed0a-4ae0-9c8e-9e6f7a334597", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54876,7 +55726,8 @@ "SenseId": "98e18f17-178e-41c1-bc63-3816771bb6d1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54927,7 +55778,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -54995,7 +55847,8 @@ "SenseId": "63f05f21-fbeb-434d-8077-9437deda278a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55096,7 +55949,8 @@ "SenseId": "22b81191-b1d1-4237-8dcd-3f702b915b39", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55164,7 +56018,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -55225,7 +56080,8 @@ "SenseId": "dcfe92de-cfe6-42ed-8b46-531865b930e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55293,7 +56149,8 @@ "SenseId": "bc7bf292-711c-4bf3-8525-beee57ca6e80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55361,7 +56218,8 @@ "SenseId": "bcc80d0b-d814-4902-8d8a-87ffec430eaa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55422,7 +56280,8 @@ "SenseId": "87920a43-1881-459f-8c78-1cffc1b0bdf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55490,7 +56349,8 @@ "SenseId": "040f83f5-5fe3-41ee-a842-4b68fff56408", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "852eeee5-cde7-4ed8-8dde-6b44e024bbf0", @@ -55513,7 +56373,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -55574,7 +56435,8 @@ "SenseId": "70a4dfae-de3d-4145-981c-36f0b64f6ff3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55635,7 +56497,8 @@ "SenseId": "92397de3-9477-4955-8c94-c40a0bf6fe2d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55734,7 +56597,8 @@ "SenseId": "468a08fd-147d-413b-9293-0c15ad234fdb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55810,7 +56674,8 @@ "SenseId": "d947c334-dc46-4a84-a6ad-7ac54d5b0cca", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55878,7 +56743,8 @@ "SenseId": "bb8e6660-085a-49ea-9abe-d83b4a21ec9b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "1e0b35df-2ff6-4377-93af-b1a9d46e828d", @@ -55901,7 +56767,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -55969,7 +56836,8 @@ "SenseId": "feb3247b-c2bc-4efa-a83e-148624d67b3f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56037,7 +56905,8 @@ "SenseId": "ba5ea089-ff71-4a77-918b-8d4e53457026", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "aaef54b6-11fd-4168-98ba-34a318302138", @@ -56060,7 +56929,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -56128,7 +56998,8 @@ "SenseId": "ef3e6d0f-d7b6-4da6-bae0-b550acc9c2a3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56189,7 +57060,8 @@ "SenseId": "417f91fc-c905-46ae-a30d-a9c7dcbea044", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a6723888-7ae9-4164-b4ca-eb34c31d1227", @@ -56212,7 +57084,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -56280,7 +57153,8 @@ "SenseId": "1c7f7bef-ff98-4eae-a377-d1249ab9a97f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56348,7 +57222,8 @@ "SenseId": "efa90080-56eb-4e15-a23b-b4eb8b46e3c6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56416,7 +57291,8 @@ "SenseId": "ea684ee3-06d3-4063-afbb-43f292bab934", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56484,7 +57360,8 @@ "SenseId": "5303273f-e59f-4559-a7b9-3ed8c67e51b9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56561,7 +57438,8 @@ "SenseId": "3b1b4dd2-b71d-475c-b4ed-9029d40d6706", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56622,7 +57500,8 @@ "SenseId": "8de9acbd-0b74-4049-953c-071c405075b0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56690,7 +57569,8 @@ "SenseId": "12ce5655-1077-43f3-a428-865c2382c5e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56777,7 +57657,8 @@ "SenseId": "bd155a2e-4da5-4494-b51f-f7bc9c45af90", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8b7f1749-dcc7-449d-8cf4-0f6e4388567d", @@ -56800,7 +57681,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -56870,7 +57752,8 @@ "SenseId": "0c5b6e48-e724-4096-8551-38adf6522032", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56938,7 +57821,8 @@ "SenseId": "357da00b-4a0a-416b-b7d5-6715c0bcab9f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57014,7 +57898,8 @@ "SenseId": "988e3974-d24e-4b28-a11d-874f58604081", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57090,7 +57975,8 @@ "SenseId": "712de4ef-13ce-4516-a450-4f4e3aa1c027", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57139,7 +58025,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57188,7 +58075,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "364ab0ef-fa39-447f-9c41-d78e853f381f", @@ -57211,7 +58099,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57260,7 +58149,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "2daa296d-5b51-4db0-a4b4-8449bcf151d7", @@ -57283,7 +58173,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57349,7 +58240,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57415,7 +58307,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57464,7 +58357,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3772337f-c06f-4b59-952f-dbef86b873c2", @@ -57487,7 +58381,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "4537b0a3-9b5b-4e72-b418-0552ef04aa72", @@ -57510,7 +58405,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "0b76d8e9-2402-4147-ab7d-b2aebab1da19", @@ -57533,7 +58429,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "01a8a3b9-3c28-409b-ae74-34b50a0ccca8", @@ -57556,7 +58453,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57622,7 +58520,8 @@ "SenseId": "13c46c1a-2ac2-45df-92be-c20dc7e0d86c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "57294a93-e733-48c9-b02a-56cad22c300b", @@ -57662,7 +58561,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57739,7 +58639,8 @@ "SenseId": "f665aec3-2f08-4a10-b642-2f66e15e2bff", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "70bb1144-bbca-4db0-97ad-a74eb8f8b25b", @@ -57771,7 +58672,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "9643cb57-d654-47bd-90d3-a518f9a215c8", @@ -57803,7 +58705,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "06101c3f-a84c-4e12-a07c-dced6a45c73e", @@ -57826,7 +58729,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57910,7 +58814,8 @@ "SenseId": "e00f99ea-0c54-4d3d-8f24-3f8dc374945c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57990,7 +58895,8 @@ "SenseId": "f168eebc-3acb-494f-a2da-d9609f6649b4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58058,7 +58964,8 @@ "SenseId": "ae8a5db3-1ba4-4825-8ee9-29f59d4c08b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58145,7 +59052,8 @@ "SenseId": "f38e8bd0-8595-4387-bbf7-853da1166ab1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "404d6557-8056-4240-bc97-83bfa1d1f1b5", @@ -58177,7 +59085,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58255,7 +59164,8 @@ "SenseId": "d90b15f9-cd4f-457f-bf85-1482092df52f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58323,7 +59233,8 @@ "SenseId": "ecc01f99-48a1-461d-b8b2-46b4c5a30477", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58391,7 +59302,8 @@ "SenseId": "b3b494e2-9733-4146-a050-7d78eb3a38ce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58452,7 +59364,8 @@ "SenseId": "32e7178d-8d3c-464c-9a73-999018fc8600", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58513,7 +59426,8 @@ "SenseId": "641c6360-fd59-4722-bd66-0172e3106381", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58590,7 +59504,8 @@ "SenseId": "0ec79a63-c04d-4cad-89a8-8202b248e9d6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2335ea36-7ae3-4407-96c0-6c56ab0ab85f", @@ -58630,7 +59545,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58715,7 +59631,8 @@ "SenseId": "4b00452e-9f58-40ee-b5bc-144ca16cfa99", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58800,7 +59717,8 @@ "SenseId": "7b534357-4f34-4296-83f7-d34117562e34", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58882,7 +59800,8 @@ "SenseId": "908ddf2c-332a-4e9f-8de1-27614a904271", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0331c633-2be2-47d7-8ff0-1274ed7032b3", @@ -58904,7 +59823,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58982,7 +59902,8 @@ "SenseId": "c4548c5d-eb50-42fc-aa93-d77c26546fad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59050,7 +59971,8 @@ "SenseId": "f03e03a1-ebda-4820-b607-fdf73a942456", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59116,7 +60038,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "2c21fc5d-994d-43b6-b2c3-bf6328e19ca3", @@ -59139,7 +60062,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59207,7 +60131,8 @@ "SenseId": "bd970f05-4571-49f5-8d72-9edcb5a29ad9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59268,7 +60193,8 @@ "SenseId": "8b42f1fc-1bc7-45b9-9184-2322751e795b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59345,7 +60271,8 @@ "SenseId": "33678318-e191-47d2-a4a9-dc78b956e157", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59413,7 +60340,8 @@ "SenseId": "0f9ea974-8b29-46fd-b490-063e7f63a89e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59489,7 +60417,8 @@ "SenseId": "32460030-3965-4ee7-a77b-17f8090d2d13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59550,7 +60479,8 @@ "SenseId": "341b8689-f950-49c5-9640-16886ac1afbd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59611,7 +60541,8 @@ "SenseId": "42c30da5-0ade-4f3e-a11d-8d7c275ab9ed", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59671,7 +60602,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59741,7 +60673,8 @@ "SenseId": "31fd829f-9a38-48f3-be66-5673df90f25d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "62b1a7ca-26cd-4c6a-94ce-3db720f3a146", @@ -59765,7 +60698,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59852,7 +60786,8 @@ "SenseId": "388e6630-6231-4ea8-86a6-1a98d2d01126", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c4d3b653-3207-4b86-942e-080107bd75c3", @@ -59875,7 +60810,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59943,7 +60879,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60037,7 +60974,8 @@ "SenseId": "99e2fd45-de4f-443f-83d9-cd97bdf26699", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a8047ab7-12d6-478e-9278-7743d479ec39", @@ -60060,7 +60998,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60138,7 +61077,8 @@ "SenseId": "076b345f-c4d7-4b07-885a-532a69eb125d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60206,7 +61146,8 @@ "SenseId": "5ba8a7d2-70af-4f14-a5ad-278d876ca7d6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60267,7 +61208,8 @@ "SenseId": "9fce6360-d80f-49b6-a498-d3d726f75294", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60345,7 +61287,8 @@ "SenseId": "cfc7cb6e-8204-4830-89ef-aa7830363a26", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60413,7 +61356,8 @@ "SenseId": "3ff43d51-b217-43f3-ab1c-0cb615a286e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60481,7 +61425,8 @@ "SenseId": "aa7a8c63-d69a-4759-87d8-34238f762bfd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e9979cef-9619-4a0f-a40e-0f5fee9c7abc", @@ -60504,7 +61449,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60555,7 +61501,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60654,7 +61601,8 @@ "SenseId": "53786682-eef8-4218-90af-5487843ce2b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60732,7 +61680,8 @@ "SenseId": "4f26b963-72b1-4641-982e-ed005da28c13", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "86d323e5-7bc2-49b4-8fdd-6f71388040e6", @@ -60755,7 +61704,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60839,7 +61789,8 @@ "SenseId": "89941ef6-3dc0-4209-8c58-663a48ff909f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60948,7 +61899,8 @@ "SenseId": "0ab0f6a4-dddc-453f-b697-9b81d146dd74", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61016,7 +61968,8 @@ "SenseId": "6824a970-23bb-4beb-b27f-9eac8bffec68", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61077,7 +62030,8 @@ "SenseId": "415d29e4-86f1-4212-95db-6a46fe5f3113", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61145,7 +62099,8 @@ "SenseId": "995cf936-0b6c-4adf-944b-e4df71b077c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61206,7 +62161,8 @@ "SenseId": "66eb9ca3-95dd-4fe1-9094-63afa7c3e680", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "18d57b4e-3f2e-4610-97f7-aba495ff2487", @@ -61229,7 +62185,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -61290,7 +62247,8 @@ "SenseId": "852e2a11-565d-4805-968f-190fd8762284", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61351,7 +62309,8 @@ "SenseId": "34c3242c-a674-4917-8e84-9e6a2accb8c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61419,7 +62378,8 @@ "SenseId": "88565280-c9db-42a1-8127-41bff919d2c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61468,7 +62428,8 @@ }, "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -61529,7 +62490,8 @@ "SenseId": "60410caf-4e30-421d-8379-d51dd28fba3e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61605,7 +62567,8 @@ "SenseId": "bc62d271-7625-47f5-8066-fc4fde24cf79", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61673,7 +62636,8 @@ "SenseId": "b91c9f15-752a-43da-91b7-c3cc29b2633c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0092d1f9-866f-4644-a648-bdc723461976", @@ -61696,7 +62660,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -61764,7 +62729,8 @@ "SenseId": "6ebf8305-6707-4317-ac40-0f30a3f592fc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61825,7 +62791,8 @@ "SenseId": "5b424532-f191-4a43-ab9b-9750458c38f8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61910,7 +62877,8 @@ "SenseId": "a780e1c6-949e-467a-bd6a-17181cdec72c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61987,7 +62955,8 @@ "SenseId": "e82993d5-549f-41b6-8844-105962d58f45", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62055,7 +63024,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62150,7 +63120,8 @@ "SenseId": "2493ddcf-62d9-425a-8879-e3817c075560", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62201,7 +63172,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "146ced19-5712-4550-b442-89ce02a200b7", @@ -62243,7 +63215,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62321,7 +63294,8 @@ "SenseId": "306efdb8-0e89-4f71-9456-4980caf881ea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62406,7 +63380,8 @@ "SenseId": "dc8c21cf-b752-4ba0-abed-a80e4bd1759c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62474,7 +63449,8 @@ "SenseId": "30970938-00cf-4d44-b45f-b92256f4d132", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62523,7 +63499,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62687,7 +63664,8 @@ "SenseId": "84e5150e-3043-4652-9f64-849cf192fee4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "68e58260-9383-41f8-bb1a-7aa551e89fac", @@ -62727,7 +63705,8 @@ }, "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "91120e17-4e49-43c0-b416-00176448fdd2", @@ -62750,7 +63729,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "fee1a6ff-3d64-44fa-9515-b51e7068b1d6", @@ -62790,7 +63770,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d1e7a1fe-5475-4eae-99eb-d56f7248f6c4", @@ -62830,7 +63811,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "cbad219c-e1bc-479c-877c-c0017a425ac1", @@ -62870,7 +63852,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62953,7 +63936,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63019,7 +64003,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63085,7 +64070,8 @@ "SenseId": "7ff262e6-44c0-407c-bf42-49805e8b6848", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63167,7 +64153,8 @@ "SenseId": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63250,7 +64237,8 @@ "SenseId": "cbcb955f-a907-4e80-89ea-ef01f43eabfa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63309,7 +64297,8 @@ "SenseId": "e306b70f-d7bb-402a-b7bb-ffcd6628c784", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63387,7 +64376,8 @@ "SenseId": "caca5235-796e-488e-b651-93816bb5e38e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63455,7 +64445,8 @@ "SenseId": "01c0dd6b-8bb7-4a5d-98e7-3f2fc550bd0e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63523,7 +64514,8 @@ "SenseId": "e9831e86-8361-44fa-a4df-08394a608984", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63584,7 +64576,8 @@ "SenseId": "aabd42d8-a97a-4377-a2fa-6240fcb9c6b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63652,7 +64645,8 @@ "SenseId": "4a4e6088-2f32-4bb8-a4cc-c5a0b66d9778", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63720,7 +64714,8 @@ "SenseId": "b52cc4bc-7dd7-4336-893f-071ed4fabd7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63788,7 +64783,8 @@ "SenseId": "867f42cd-6511-458c-8659-c84de78e21f9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63856,7 +64852,8 @@ "SenseId": "9998867c-65bf-4126-aecb-73c98e6864a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63917,7 +64914,8 @@ "SenseId": "33fa5883-44e0-4bf6-9181-5ae1dbbbdd17", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63976,7 +64974,8 @@ "SenseId": "cb806a3e-0460-41d5-87e0-519fb87d80cd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64037,7 +65036,8 @@ "SenseId": "5c6f03eb-38ca-403c-abce-77d6572100b1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64098,7 +65098,8 @@ "SenseId": "ea84d2b7-4063-4074-a75c-c8d9e267d3e6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7178a762-8c87-45db-b944-e7edd9e93ddb", @@ -64130,7 +65131,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -64189,7 +65191,8 @@ "SenseId": "cd9690f9-7c5e-48a5-b8fb-1c5b1a47e90c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64250,7 +65253,8 @@ "SenseId": "24539709-eea2-44ec-9baa-f90a11eb703b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64300,7 +65304,8 @@ }, "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -64366,7 +65371,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -64425,7 +65431,8 @@ "SenseId": "dc447c6a-13f0-48ef-a0c3-9ad940af245c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64511,7 +65518,8 @@ "SenseId": "0cba0865-daa8-453e-9d82-08da268cea8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64577,7 +65585,8 @@ "SenseId": "ba2a787f-ed2a-40f6-a418-225c50d3fc52", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": { @@ -64635,7 +65644,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -64693,7 +65703,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -64752,7 +65763,8 @@ "SenseId": "ac662c72-e719-47cf-b6a3-a20bfce8186a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64818,7 +65830,8 @@ "SenseId": "86b544d8-af64-4fdd-8677-5c137f6bdd25", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64939,7 +65952,8 @@ "SenseId": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0e99aea0-3a09-40af-ba14-2fe5d0f42961", @@ -64962,7 +65976,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65030,7 +66045,8 @@ "SenseId": "dbc383e0-acd4-458e-86b1-db9668dac4eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65138,7 +66154,8 @@ "SenseId": "2e84850b-05d1-4de0-8db5-4bfeef18f8f3", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a639ec9c-35db-45f5-b3f5-85293483b4cd", @@ -65161,7 +66178,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65246,7 +66264,8 @@ "SenseId": "50757f29-2ed9-4987-ad65-7822e66355ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65319,7 +66338,8 @@ "SenseId": "ce84b386-6ca6-461e-99b0-8df1e879e369", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", @@ -65376,7 +66396,8 @@ "SenseId": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65456,7 +66477,8 @@ "SenseId": "ee429f51-e92f-4d59-9a87-05531b6c7aab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65524,7 +66546,8 @@ "SenseId": "3394d689-385c-40b1-ad04-0256836a3a66", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65603,7 +66626,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65652,7 +66676,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65693,7 +66718,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65784,7 +66810,8 @@ "SenseId": "f0b5bd45-51b9-4280-a34a-aa993749ccad", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b718b6fb-d131-474c-9799-1a805b94c89f", @@ -65807,7 +66834,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65858,7 +66886,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65933,7 +66962,8 @@ "SenseId": "b4a02fc9-2ae5-4c96-ae87-ceec6845871e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66009,7 +67039,8 @@ "SenseId": "dfad5d62-b5e7-46e0-b26e-e062147e72c5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66068,7 +67099,8 @@ "SenseId": "1e0627cb-c81f-4fa9-9b31-f7b364bf443c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66143,7 +67175,8 @@ "SenseId": "22f12a7c-237a-4aec-be5a-9785f8839977", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66211,7 +67244,8 @@ "SenseId": "8abb551d-571b-4612-a4cd-85d065bca104", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66279,7 +67313,8 @@ "SenseId": "df313b4b-f760-4864-a5f8-9854dff3af73", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "33493618-0bdb-4baa-aa80-235f7009c5a0", @@ -66302,7 +67337,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66370,7 +67406,8 @@ "SenseId": "634a8b59-c02c-402f-8387-a6ad5cfc7917", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66438,7 +67475,8 @@ "SenseId": "3f9fe653-77fb-4e5a-9e41-9f1da6877f9b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66513,7 +67551,8 @@ "SenseId": "bfb0f5db-2dcf-4720-bfe9-4f53685c2fa0", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "edad5197-9710-431f-b970-60c3c6ccab59", @@ -66536,7 +67575,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c99b7977-dd4e-4e57-8809-62c65952d51e", @@ -66559,7 +67599,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66642,7 +67683,8 @@ "SenseId": "f93d7fa2-5a29-4a66-96c1-8817f4800897", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66691,7 +67733,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66757,7 +67800,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66823,7 +67867,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66898,7 +67943,8 @@ "SenseId": "0073f2a7-9b27-4e09-a640-992836a26b27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67029,7 +68075,8 @@ "SenseId": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "941c7da8-d6b8-43c5-801b-f2eff707378e", @@ -67071,7 +68118,8 @@ "SenseId": "941c7da8-d6b8-43c5-801b-f2eff707378e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67153,7 +68201,8 @@ "SenseId": "e5999ac9-691d-4b18-a0f9-3bfcece80bf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67221,7 +68270,8 @@ "SenseId": "4b3aed28-7c60-4c92-a7db-dccc8c1a3c0c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "11febd8d-c6dc-481b-a7b7-cc2049d33e5b", @@ -67244,7 +68294,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67321,7 +68372,8 @@ "SenseId": "d2a9a738-926f-401e-973f-a6b8fe2c8469", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67387,7 +68439,8 @@ "SenseId": "dd429be7-30dd-4676-93f5-e6d5bd3c74d7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67464,7 +68517,8 @@ "SenseId": "c3791ccf-4988-4217-ad9c-b417c5a0ae43", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67532,7 +68586,8 @@ "SenseId": "f8441f5e-a2cc-4d41-bded-5bf5723d04e8", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "cb86900f-db45-4b50-95fb-641a1cacb51f", @@ -67555,7 +68610,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67631,7 +68687,8 @@ "SenseId": "07e57d85-0a08-40a8-b523-6abc7b1ce65b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ba2430a3-7f68-4648-ab7f-fb36dd932532", @@ -67671,7 +68728,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67727,7 +68785,8 @@ "SenseId": "d6000cc0-db88-465a-9396-556304110322", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "59e4c607-6f2a-4db2-8c4a-65c90227b5d4", @@ -67741,7 +68800,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67807,7 +68867,8 @@ "SenseId": "925dad47-cb4b-449c-98e4-cceea3111df3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67875,7 +68936,8 @@ "SenseId": "18cc7ade-d219-4a9e-acf0-01aa4d9f051d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67936,7 +68998,8 @@ "SenseId": "6f19ba77-d81e-4695-97e2-64c8b4493c57", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67995,7 +69058,8 @@ "SenseId": "03557652-bd0d-4571-9ae6-08f6e2f9da4e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "381d322a-1473-4da9-96b4-9029da3dae48", @@ -68018,7 +69082,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68089,7 +69154,8 @@ "SenseId": "b8a598b9-d0d4-4f2f-8104-bbd334fc5693", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "bbff3938-1a96-4945-ba82-54a48ba05b30", @@ -68112,7 +69178,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68189,7 +69256,8 @@ "SenseId": "61068445-c27a-4c9c-8143-7808c5edb94e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68255,7 +69323,8 @@ "SenseId": "ae9a251a-d0bb-44df-b71a-249fbfc73ab5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68323,7 +69392,8 @@ "SenseId": "77484c2b-276c-43d1-9a25-da14726f62d0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68384,7 +69454,8 @@ "SenseId": "df9aa41b-00fd-45c3-97d6-b523dd11dc8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68452,7 +69523,8 @@ "SenseId": "a5de0fd4-03ac-453b-8fa3-8de5d9c42862", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68518,7 +69590,8 @@ "SenseId": "c5f10432-68e2-4f53-b8e0-99775f6a5b4c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68603,7 +69676,8 @@ "SenseId": "83098d50-1738-4b23-9e81-af91ed942dc6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68669,7 +69743,8 @@ "SenseId": "ed1379bc-8a34-4d0a-ba8c-46436283e6e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68737,7 +69812,8 @@ "SenseId": "49224fa1-f421-498a-b1ae-fb1ce0465824", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68828,7 +69904,8 @@ "SenseId": "e535a688-81bd-4303-9087-b7001e6f7617", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2b4cf9c3-f860-430d-bf08-fa0b5b4db0fd", @@ -68851,7 +69928,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -69001,7 +70079,8 @@ "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69069,7 +70148,8 @@ "SenseId": "44452f74-92ff-4438-9feb-203af775465e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69146,7 +70226,8 @@ "SenseId": "bb70b8cd-bead-40e9-a912-6f480ba3875e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69223,7 +70304,8 @@ "SenseId": "256f16b7-b704-452b-b830-945038083837", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69291,7 +70373,8 @@ "SenseId": "8ff6235e-b9c6-40f9-bf32-b229db57e9d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69387,7 +70470,8 @@ "SenseId": "31e99354-68f6-4fa4-9f58-9c0debddd09c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69455,7 +70539,8 @@ "SenseId": "e5840cc6-20ef-4564-ae10-6428aafe6d41", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69514,7 +70599,8 @@ "SenseId": "22bb3b03-c9de-4d51-bd30-7ce30b7041a2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69573,7 +70659,8 @@ "SenseId": "42168c00-4637-4588-99d2-3551d7ce021f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69641,7 +70728,8 @@ "SenseId": "e124eab7-6dfc-425a-ada3-332b4fbd5b85", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "37a98331-4024-40ae-9a5f-f2e8f7113d28", @@ -69664,7 +70752,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -69725,7 +70814,8 @@ "SenseId": "5b4100f7-c8a1-40b1-9b48-a152f5ea057f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69803,7 +70893,8 @@ "SenseId": "2c43a5b2-f283-4e9f-bc26-8a4cbcb666ab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69871,7 +70962,8 @@ "SenseId": "36d939f0-1c27-43d4-ae1c-93dd6dbf721d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69939,7 +71031,8 @@ "SenseId": "8b0b5a08-d690-415f-bc4e-f66f5f76884c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70007,7 +71100,8 @@ "SenseId": "d7c1ad3e-fa9d-4da0-b819-ce5c82060463", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70096,7 +71190,8 @@ "SenseId": "79166c0b-9275-4425-8cf4-94fd058f41d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70164,7 +71259,8 @@ "SenseId": "7ebcd115-fbd1-468d-883d-51b754651a08", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70241,7 +71337,8 @@ "SenseId": "ecfc1d9c-8d25-475a-8881-a12e26ca80b3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70318,7 +71415,8 @@ "SenseId": "35baece7-ece9-448f-aa11-2c2d6752992f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70384,7 +71482,8 @@ "SenseId": "4d43343e-235c-47a8-963e-8ed7a1923e55", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70461,7 +71560,8 @@ "SenseId": "8125329e-2b09-4073-b9d2-566190f5f940", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "af077c3d-81fb-440f-9bc9-28fa60edf42b", @@ -70484,7 +71584,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -70543,7 +71644,8 @@ "SenseId": "0ef06b58-d563-41f4-b376-9ad16943b667", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70604,7 +71706,8 @@ "SenseId": "72479316-4b29-4461-8617-689a52c54e8d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70670,7 +71773,8 @@ "SenseId": "f4b02198-cc6f-42b9-b379-87670671b181", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70740,7 +71844,8 @@ "SenseId": "1b4adbf5-c01a-4e04-92f6-5c8b793281e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70818,7 +71923,8 @@ "SenseId": "36456952-2f14-41c9-9495-eb9f1487b8fe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70879,7 +71985,8 @@ "SenseId": "14a9995f-76c2-4c3c-847a-c62b2248db58", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70940,7 +72047,8 @@ "SenseId": "ade16bb8-0425-4ff0-9a24-8076659a7882", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71008,7 +72116,8 @@ "SenseId": "fb77ce64-c8af-435a-ac39-07b05d2972d1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71078,7 +72187,8 @@ "SenseId": "0448ef5d-878b-498a-9d1d-93fe68eadca9", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "836479c2-ab88-4892-81d9-91e29ecf5dc2", @@ -71118,7 +72228,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "64fb2069-f0dc-4c51-affe-8e6ed5f660ab", @@ -71158,7 +72269,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -71224,7 +72336,8 @@ "SenseId": "f93ba876-786d-4e5d-92b1-efc5bd29d173", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71308,7 +72421,8 @@ "SenseId": "f4ee7520-0ff3-432a-a66f-8bbf6e0d14a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71376,7 +72490,8 @@ "SenseId": "f121b1d7-df23-4725-809b-477f508a3d18", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71437,7 +72552,8 @@ "SenseId": "ef0ec71a-ffef-46be-8306-f1bfdac5e28d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71505,7 +72621,8 @@ "SenseId": "97120ba0-66d8-4012-8c14-169f1d59b0e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71583,7 +72700,8 @@ "SenseId": "cd22832b-fb54-4642-9d51-084ef52d6a3c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71643,7 +72761,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -71732,7 +72851,8 @@ "SenseId": "a4eb22b0-f699-4eef-8156-c514c3071eec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71791,7 +72911,8 @@ "SenseId": "879cc03d-9848-46a6-ba1e-ec3d9de38e7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71852,7 +72973,8 @@ "SenseId": "8cd62410-e96b-493f-8296-5b403542952b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71940,7 +73062,8 @@ "SenseId": "cc33f8eb-6b18-4198-b799-51af781eb949", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72001,7 +73124,8 @@ "SenseId": "e47855c9-9760-478c-9e97-851e893540a6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72062,7 +73186,8 @@ "SenseId": "d580baf8-e5f3-4c90-bbbc-5ee1b78e7b2e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72123,7 +73248,8 @@ "SenseId": "6adddc4c-c9b5-40a1-bd9e-f3a784a9f8bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72191,7 +73317,8 @@ "SenseId": "a9f862a5-44a1-4dbb-a58c-43bbfe24b43b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72259,7 +73386,8 @@ "SenseId": "6c78a046-71b7-498f-b3ea-e48b920eab7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72327,7 +73455,8 @@ "SenseId": "368b3592-de73-4b0b-a65d-654e61cec4ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72412,7 +73541,8 @@ "SenseId": "94bb8014-0932-47e3-a9e3-bc6cac35811c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72500,7 +73630,8 @@ "SenseId": "2d75b87d-a82c-452f-9b8d-2b62f54547f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72587,7 +73718,8 @@ "SenseId": "f9ff4d93-0056-4ed5-b596-c2a754e15795", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72648,7 +73780,8 @@ "SenseId": "14e0886b-48f4-4a78-94bc-3ee0ab625a34", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72725,7 +73858,8 @@ "SenseId": "1bfd809b-9c02-4c32-b618-cd50e06769af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72793,7 +73927,8 @@ "SenseId": "7987d576-84a1-49c9-86f4-8b1933683d4f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72884,7 +74019,8 @@ "SenseId": "d415fe28-d9e0-4c91-ba73-a4179d2edbe2", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4db5aa57-a073-428b-b732-689c302aede4", @@ -72907,7 +74043,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -72985,7 +74122,8 @@ "SenseId": "0b8858cb-989e-41b3-a6fc-79f04fd8dcc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73053,7 +74191,8 @@ "SenseId": "5daf8137-2e36-4e03-bd23-7b41707adcde", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73121,7 +74260,8 @@ "SenseId": "ab4edb17-b51d-4258-b349-4bdfd1dff7d6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73182,7 +74322,8 @@ "SenseId": "3cd74405-3950-4399-872f-dc1ca7d328df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73250,7 +74391,8 @@ "SenseId": "ab5b910f-08b2-4b66-93fd-596b2858cc56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73318,7 +74460,8 @@ "SenseId": "0b80953f-959c-4364-bbec-484c1626a7c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73379,7 +74522,8 @@ "SenseId": "19791fae-9fdc-4d6f-a48f-07875c335123", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73428,7 +74572,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -73511,7 +74656,8 @@ "SenseId": "851805bb-5ca7-4f6e-9f1d-1ee3e47880a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73572,7 +74718,8 @@ "SenseId": "a865c6d4-b15e-4fd4-9493-24405b7f5e5d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6d230db6-8a2f-4132-9e49-1187bf3ff03e", @@ -73595,7 +74742,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -73680,7 +74828,8 @@ "SenseId": "6860e918-e83d-43eb-8424-6b9e630b92fd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73748,7 +74897,8 @@ "SenseId": "5f151b0e-769b-43ea-8a62-ef105f427854", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73807,7 +74957,8 @@ "SenseId": "7bd437c5-f64a-42c2-8e0e-3bc9abcb0cc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73890,7 +75041,8 @@ "SenseId": "1d3819b6-d016-41a6-941c-99244adac796", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73958,7 +75110,8 @@ "SenseId": "bab5b338-8f1e-4850-8077-ab3a1edd6b4e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74019,7 +75172,8 @@ "SenseId": "feddbc06-ceaa-4395-9e93-23220f990226", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74087,7 +75241,8 @@ "SenseId": "f8b04c28-6bd1-4988-8de5-5f02c4a769c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74148,7 +75303,8 @@ "SenseId": "ffe085a6-ebcc-4a15-8564-f006328b0d33", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74216,7 +75372,8 @@ "SenseId": "100834ce-ed34-4f91-b36d-ef47034ec7b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74307,7 +75464,8 @@ "SenseId": "d974749d-666b-4d63-9b8d-156ad768e9b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74368,7 +75526,8 @@ "SenseId": "659a1576-f97c-4613-baec-9e6c64986014", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74429,7 +75588,8 @@ "SenseId": "c95f1739-469b-4753-b871-afe192303f69", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74504,7 +75664,8 @@ "SenseId": "90c935cb-79d1-4644-ad82-74d34cca515c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74565,7 +75726,8 @@ "SenseId": "8cfcb6cb-208e-40dc-ba97-89d7832abeab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74626,7 +75788,8 @@ "SenseId": "495e4687-518a-4bd8-8c2b-66a69dd4b275", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74713,7 +75876,8 @@ "SenseId": "2fdb0790-644f-4d6f-a123-4d88a0f842ea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74779,7 +75943,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -74845,7 +76010,8 @@ "SenseId": "11486f77-4bb3-4882-a1c0-045fb45d216b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74913,7 +76079,8 @@ "SenseId": "8ecaca7b-0fd8-4dda-bc35-3d914fd897a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74981,7 +76148,8 @@ "SenseId": "688c63ab-91b6-43f2-821f-71d3ec409900", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75042,7 +76210,8 @@ "SenseId": "3dc4981b-71d2-4d87-9ba3-b3be486eca63", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75108,7 +76277,8 @@ "SenseId": "23541917-3a2c-44c3-ba49-8970a207eeb6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75176,7 +76346,8 @@ "SenseId": "566a7159-a3f7-4d7e-8878-78da37d657d7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75237,7 +76408,8 @@ "SenseId": "358c3a82-6cb9-4f98-9279-411ed528fb86", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75303,7 +76475,8 @@ "SenseId": "3b4c5a61-8b47-4c5d-8616-070fb2a66296", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75392,7 +76565,8 @@ "SenseId": "05060894-c1ca-462e-8fb4-008eb27df73b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75453,7 +76627,8 @@ "SenseId": "999ab06c-80a3-4baf-998e-63a288376c10", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75540,7 +76715,8 @@ "SenseId": "fde8ceed-ce62-404a-b0ff-89f51bfe846a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75591,7 +76767,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -75668,7 +76845,8 @@ "SenseId": "aac9e30b-ddff-43c7-a81b-ab10fde04118", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75757,7 +76935,8 @@ "SenseId": "ad2de11b-1f83-49d6-b52e-7e4f608bfd6d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75825,7 +77004,8 @@ "SenseId": "b8db0515-daaa-4a7c-a992-5d59faa5ac10", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75876,7 +77056,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -75935,7 +77116,8 @@ "SenseId": "3021e436-8d59-431a-923e-6675fef9338c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76024,7 +77206,8 @@ "SenseId": "635276eb-6ed8-4b78-8c27-204adecdf03c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76100,7 +77283,8 @@ "SenseId": "8431ffc5-7a7a-4959-b414-4f5b8a4f5af9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76195,7 +77379,8 @@ "SenseId": "b113ea41-e7b3-4a5d-a5bc-221da8935393", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76290,7 +77475,8 @@ "SenseId": "e97eb2cc-192e-4975-923f-3c1a6de8df0e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76374,7 +77560,8 @@ "SenseId": "a4f8b6ad-d902-4e14-947e-696ffdc396ec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76440,7 +77627,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -76524,7 +77712,8 @@ "SenseId": "e3029014-e00b-4144-a33c-cf8c91c5ed5b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76626,7 +77815,8 @@ "SenseId": "ff10bede-29cb-4bd1-96bc-c5dd503f8ed6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76713,7 +77903,8 @@ "SenseId": "a4f6c11e-9abb-4bc2-9303-66945fb7e2f7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76779,7 +77970,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -76847,7 +78039,8 @@ "SenseId": "8e191820-913b-4f14-b6ad-c445e44c0a92", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76924,7 +78117,8 @@ "SenseId": "6f7a5db1-0591-4c48-af24-9f9eb2bffca3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76992,7 +78186,8 @@ "SenseId": "80a94d07-3222-4db9-8c81-dc0b5d0f72a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77069,7 +78264,8 @@ "SenseId": "6502591c-41f0-45ea-8126-df8a747c1ee5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77135,7 +78331,8 @@ "SenseId": "e81ec0f7-ef1b-469d-a6a3-6f6dcd5a4b13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77194,7 +78391,8 @@ "SenseId": "78303856-fbc9-49b6-9fb8-487990aacddd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77260,7 +78458,8 @@ "SenseId": "c2c9938c-a798-43e6-a720-5fbb815afaab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77321,7 +78520,8 @@ "SenseId": "0b0a57d5-c230-42a6-89ca-56f677db2e3d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77387,7 +78587,8 @@ "SenseId": "81cd6c56-0d05-45fa-b101-f42183055887", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77462,7 +78663,8 @@ "SenseId": "55a92fd8-0ced-486d-ad63-a44033517c10", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77528,7 +78730,8 @@ "SenseId": "706da4f3-c698-4f9c-a850-aa18ebd8af13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77597,7 +78800,8 @@ "SenseId": "98a8489b-53d8-4498-8c4d-39db5a3351a0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77663,7 +78867,8 @@ "SenseId": "6b2ccc71-e17b-4b23-83ce-c55d93d405e8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77733,7 +78938,8 @@ "SenseId": "65226cdb-93f2-4c6e-9d8a-46efc17f30ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77792,7 +78998,8 @@ "SenseId": "c55a5fd1-efd5-4069-afde-a04f621c695f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77851,7 +79058,8 @@ "SenseId": "b50cb098-aec2-47aa-9a3c-79dc42f5140e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77917,7 +79125,8 @@ "SenseId": "a899604f-eb0f-49aa-bcee-ff35bfb31929", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77993,7 +79202,8 @@ "SenseId": "77e42cbd-8448-4559-90e9-43b6afbef901", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78052,7 +79262,8 @@ "SenseId": "88be5194-7358-4a16-93c0-b40ed7081384", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "12466f00-d0d2-47b3-8500-e63420d61e83", @@ -78075,7 +79286,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -78141,7 +79353,8 @@ "SenseId": "57c4f23c-09e7-48b6-8652-ce1d91acaeaf", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fc1d89f8-d156-485e-8a87-1e52f5ff4f54", @@ -78164,7 +79377,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -78223,7 +79437,8 @@ "SenseId": "1ac1edb2-e1c0-4132-af39-a8f05581d963", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78289,7 +79504,8 @@ "SenseId": "b91e4033-75fb-44ad-b0ed-76c4684e4933", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78355,7 +79571,8 @@ "SenseId": "5a8385e0-a9bf-4d95-9f19-75704214b093", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78404,7 +79621,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -78463,7 +79681,8 @@ "SenseId": "85ae067e-bdc2-41bc-838a-e6859e16ad51", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78529,7 +79748,8 @@ "SenseId": "53c8b485-af48-4e9f-8caa-bcec1e7fe66a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78598,7 +79818,8 @@ "SenseId": "88185ef7-0946-4133-88a3-00efb760e4e1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78676,7 +79897,8 @@ "SenseId": "e2394edc-16a7-4558-ab4f-163a80a8b095", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d73db95c-3883-4848-a2b6-d6b16a9989b0", @@ -78698,7 +79920,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -78766,7 +79989,8 @@ "SenseId": "65f74be4-09d7-4350-8d36-d175af72fadb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78832,7 +80056,8 @@ "SenseId": "0b6332ab-c4b6-43e6-a2ec-6e8803e2b524", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78907,7 +80132,8 @@ "SenseId": "41b1a905-20e2-468f-bf42-8f4a963112a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78985,7 +80211,8 @@ "SenseId": "b60d62f9-0ee8-4b1c-8a4a-d79be94424a4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "98e5e096-618a-48f9-a711-52c2f1fefbc0", @@ -79018,7 +80245,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79086,7 +80314,8 @@ "SenseId": "2333b0a2-0459-4779-adf0-915c7fc632d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79145,7 +80374,8 @@ "SenseId": "ca489d31-36ba-4184-b468-507c8d97ec05", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79211,7 +80441,8 @@ "SenseId": "f95a8db0-2124-443f-bb9e-f1b842f4ee23", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79272,7 +80503,8 @@ "SenseId": "793be52b-5f0e-4dfc-8e66-1ee2087be5e6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "55a0d8b6-b407-41ea-be39-458bdb197473", @@ -79295,7 +80527,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79363,7 +80596,8 @@ "SenseId": "e81f57e9-8551-4014-81be-661d69576fc9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79429,7 +80663,8 @@ "SenseId": "5927f31d-3bb0-4201-a042-3f46ee311c07", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79495,7 +80730,8 @@ "SenseId": "73a9f31b-4988-40cd-ae46-ac58775ed9ff", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79597,7 +80833,8 @@ "SenseId": "7ddf80ef-f9b0-440c-aa72-ac59d78baadf", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9ba68ba6-39f7-4b0c-a084-7574eb1425c5", @@ -79620,7 +80857,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79689,7 +80927,8 @@ "SenseId": "eb384ce8-1bb2-47a5-9ba6-fb1e8aa1ab92", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79764,7 +81003,8 @@ "SenseId": "94bc3a57-f0e9-4554-bf68-a1e48f9c1128", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79847,7 +81087,8 @@ "SenseId": "9bf15869-a62b-46b3-97f7-6e9755eefcb9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79930,7 +81171,8 @@ "SenseId": "d69ce9d9-b848-4d2f-ae20-139cc5c39a4f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80008,7 +81250,8 @@ "SenseId": "ea83300d-198d-4a01-a5c7-02d69e8ecb6d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80076,7 +81319,8 @@ "SenseId": "86f75dd8-5f35-49b6-bad7-b56faeee989e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80152,7 +81396,8 @@ "SenseId": "8fb899f4-3e60-4da5-ae2f-bc193922ee2b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80221,7 +81466,8 @@ "SenseId": "0add00b4-215f-48b4-9cd9-4a6ea9cdea9e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80354,7 +81600,8 @@ "SenseId": "97adf28c-c672-4948-8fa6-9a5c480c3d28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80450,7 +81697,8 @@ "SenseId": "1d8b9835-607a-4a5f-a7e0-d36258e48b85", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80509,7 +81757,8 @@ "SenseId": "74ecc498-4610-44d3-8bf1-e94e0a6bf71c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80577,7 +81826,8 @@ "SenseId": "f1b22f18-4fff-468a-b40c-d38b79a4e1e9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80643,7 +81893,8 @@ "SenseId": "9a0e9e70-85ee-4730-abd3-06b24cd7f4b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80720,7 +81971,8 @@ "SenseId": "e7864414-f020-4453-a46a-a2e783a319bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80771,7 +82023,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -80837,7 +82090,8 @@ "SenseId": "87a4f889-f5e3-4a58-b4d2-851f7994fd50", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80896,7 +82150,8 @@ "SenseId": "713209b8-5687-42da-8a9f-0c4194df9c33", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80957,7 +82212,8 @@ "SenseId": "aa3dbb29-03c4-4bbd-9cae-d6d7e43d31c9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81018,7 +82274,8 @@ "SenseId": "be6b1547-a452-400b-8bfb-b4911b6f3cb9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81086,7 +82343,8 @@ "SenseId": "c903a4d7-2f95-4fe9-908b-9878d753aba3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81168,7 +82426,8 @@ "SenseId": "2d50f802-27d2-438a-8761-fa5c754d237a", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "abc99545-0202-43ed-be8f-7264687ca3e9", @@ -81232,7 +82491,8 @@ "SenseId": "abc99545-0202-43ed-be8f-7264687ca3e9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81283,7 +82543,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -81344,7 +82605,8 @@ "SenseId": "01066106-cffb-43a3-8bb5-c62b81b88f48", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "83979ad4-d05c-440d-8979-55584e2cd670", @@ -81367,7 +82629,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -81428,7 +82691,8 @@ "SenseId": "72f793c5-1b2c-43f0-9754-7dc192c6d153", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81496,7 +82760,8 @@ "SenseId": "0eab6051-3e88-4006-94c2-bf686688ff8c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81557,7 +82822,8 @@ "SenseId": "1d7e19fe-4e89-4473-9b0d-b1daf3378f4a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81625,7 +82891,8 @@ "SenseId": "ceccd7ea-1268-4e04-a017-c929c4c6ccf6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81686,7 +82953,8 @@ "SenseId": "2c910b6c-cf3c-4bd5-b975-55217a5e15f3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81754,7 +83022,8 @@ "SenseId": "16f52de8-f3c0-4eb0-bb16-e5ead6689294", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81881,7 +83150,8 @@ "SenseId": "307e4826-e570-4309-a661-0c09ce55f8ee", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e1fae09d-3261-4997-872c-f478b9ee9c7b", @@ -81904,7 +83174,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -81972,7 +83243,8 @@ "SenseId": "3e08d5cd-0d4b-4a8d-a2da-30e0c85d4309", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82040,7 +83312,8 @@ "SenseId": "43eb9d22-183b-4e8f-8b62-76711d9d9c4e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82131,7 +83404,8 @@ "SenseId": "7fdfd1bd-5073-4c74-8d99-a0272b0b7817", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82201,7 +83475,8 @@ "SenseId": "01660702-0cff-44c1-bca0-7299180d70d3", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c8df1ccd-8f18-4c95-a4e3-04c0f25a714e", @@ -82224,7 +83499,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -82292,7 +83568,8 @@ "SenseId": "fe25565c-e101-47c5-b92e-2f699c7f72c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82343,7 +83620,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -82411,7 +83689,8 @@ "SenseId": "f5a038ca-f12d-4786-a7b5-76cb62c0c806", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82494,7 +83773,8 @@ "SenseId": "5f08fd4c-f27d-4990-959b-ded9fc67887f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82560,7 +83840,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3fa0cb72-e407-45bc-a90f-38adc5041151", @@ -82583,7 +83864,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ea73ff7d-66be-492b-8932-ac0a9f169045", @@ -82606,7 +83888,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d063c9c8-0783-4e95-815a-80c2d90a0685", @@ -82629,7 +83912,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a79dae5d-2a1f-466c-91e2-16dd9ba73ea3", @@ -82652,7 +83936,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "0f2ca062-34a9-4860-a750-ba6b2e746e1b", @@ -82675,7 +83960,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -82724,7 +84010,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -82824,7 +84111,8 @@ "SenseId": "ddff3979-8797-4434-a5cd-d9cc036eec8c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82892,7 +84180,8 @@ "SenseId": "085bd1d5-7d44-49ce-b2f1-d99e07f27725", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82981,7 +84270,8 @@ "SenseId": "e41243fa-94bb-4fea-9ff7-b6fd65218271", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83085,7 +84375,8 @@ "SenseId": "fdd9782e-30a8-4beb-ae64-e0b6a49d4611", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83153,7 +84444,8 @@ "SenseId": "31eae4ca-af01-4b5f-b43e-7030a1904e30", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83228,7 +84520,8 @@ "SenseId": "10bf25f6-c827-4e17-b1a8-77abcee2c7d5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83326,7 +84619,8 @@ "SenseId": "b56a7877-3732-479b-981e-13bde2cf3199", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83385,7 +84679,8 @@ "SenseId": "2a1c424c-57fe-4c5e-bbfa-4a5f46f3ad04", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83436,7 +84731,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83525,7 +84821,8 @@ "SenseId": "69dd5abb-75c8-43c9-a9de-e9d0a54d0f5f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83574,7 +84871,8 @@ }, "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83635,7 +84933,8 @@ "SenseId": "ce86d5d3-44ed-43d9-8a49-ec1fcf09b1ec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83701,7 +85000,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83759,7 +85059,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -83829,7 +85130,8 @@ "SenseId": "af2f2f67-3c07-40eb-b0e9-a6666c9851be", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83897,7 +85199,8 @@ "SenseId": "123cfb49-e66b-4a7e-9997-0d690f191eb1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "510fd70c-f3b5-4486-a739-ea40c1013314", @@ -83920,7 +85223,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -84009,7 +85313,8 @@ "SenseId": "9422102a-ec7f-49ec-a216-c9d0d99a6581", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84077,7 +85382,8 @@ "SenseId": "cc18e2d7-e581-4fae-bdeb-d70406e2c2bc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84145,7 +85451,8 @@ "SenseId": "e18ad564-feaf-4720-86dd-505f28398a27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84206,7 +85513,8 @@ "SenseId": "288640d4-e9da-429d-ae09-563930a2ff83", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84274,7 +85582,8 @@ "SenseId": "50d9fda5-66fd-4161-afdc-e43a62fbf669", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84335,7 +85644,8 @@ "SenseId": "4e05471f-c25c-49b6-bde0-ef91ee7a87d7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84443,7 +85753,8 @@ "SenseId": "d761126d-b38c-44ee-99c5-fcca3c1d8595", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "169ce7e6-e82d-4e74-8ac1-3c36f8882e71", @@ -84466,7 +85777,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -84532,7 +85844,8 @@ "SenseId": "ef2a35dd-f9b5-4411-83b0-947b8f42060d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8785332a-5ca6-4ff9-b13a-1c8788ce703e", @@ -84556,7 +85869,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -84647,7 +85961,8 @@ "SenseId": "7b954282-dabd-4a06-bfd7-4ab1d972d915", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84706,7 +86021,8 @@ "SenseId": "d196009f-a66a-4004-9a72-cfb51309720a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84772,7 +86088,8 @@ "SenseId": "39572c63-f53e-474b-bbcb-f16a69029fd3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84840,7 +86157,8 @@ "SenseId": "d578529c-8a83-4ee1-b74c-6818d74f6761", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "85493eee-1e87-42b3-97f3-de8668ed9d5e", @@ -84863,7 +86181,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -84929,7 +86248,8 @@ "SenseId": "75d60067-185b-4e4c-98a1-a0c8d39f3f31", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84990,7 +86310,8 @@ "SenseId": "65861da3-3916-4daa-83ed-56289478af5e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85056,7 +86377,8 @@ "SenseId": "7871daba-766d-4236-a452-353b1d106d6f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85136,7 +86458,8 @@ "SenseId": "954048a2-1a8e-44cb-8203-8b52aa29c3f0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85185,7 +86508,8 @@ }, "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -85243,7 +86567,8 @@ }, "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -85301,7 +86626,8 @@ "SenseId": "81cc027d-824b-4fc1-9808-36d64a737ac2", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d8a94a11-85f5-4067-88ef-1d5c78b4da4a", @@ -85316,7 +86642,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -85377,7 +86704,8 @@ "SenseId": "84e0a019-cb57-458a-823e-d32007d7a545", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85445,7 +86773,8 @@ "SenseId": "5cadb5a3-cbd7-46b5-b4cb-ef93b8ffd14b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85515,7 +86844,8 @@ "SenseId": "9462d765-6d98-4b26-9e9b-bb4a4d2ee805", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85583,7 +86913,8 @@ "SenseId": "cbd52040-b1d0-4c01-af17-accc2d5ae22e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85686,7 +87017,8 @@ "SenseId": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", @@ -85742,7 +87074,8 @@ "SenseId": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", @@ -85798,7 +87131,8 @@ "SenseId": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d4106031-2175-4339-951b-86db166cd624", @@ -85821,7 +87155,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -85903,7 +87238,8 @@ "SenseId": "71fcd994-9fdf-41b5-a70e-4fff1395ec6b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85971,7 +87307,8 @@ "SenseId": "73ac71aa-df75-446e-9939-6baced57d246", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86037,7 +87374,8 @@ "SenseId": "ca4a133b-e0f9-4a56-b60f-16718a39ddae", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86124,7 +87462,8 @@ "SenseId": "e8eff102-aef9-45bf-94e7-aa718bf94a73", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86192,7 +87531,8 @@ "SenseId": "1ac4751d-c0f9-40c7-ad01-f392c2424abd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86243,7 +87583,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -86320,7 +87661,8 @@ "SenseId": "c1d4fa07-ebf9-40ab-a269-cebbd8e8e4e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86388,7 +87730,8 @@ "SenseId": "d96c0e30-122f-4965-b2f2-7a28c5919eda", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86456,7 +87799,8 @@ "SenseId": "722a07be-8f96-4584-896b-5d4a1be2ff09", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86524,7 +87868,8 @@ "SenseId": "2f3702c7-fb24-4c15-8848-170402959bce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86592,7 +87937,8 @@ "SenseId": "7ec31552-edd9-4071-9e74-ea6e4ea8cf26", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86670,7 +88016,8 @@ "SenseId": "34c84c1d-1627-4a45-805d-8a613c39f8fb", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e1928272-94d5-4a99-b51c-8c79299b2b06", @@ -86693,7 +88040,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -86754,7 +88102,8 @@ "SenseId": "86c9f6ef-1382-442b-81c5-535496307803", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86822,7 +88171,8 @@ "SenseId": "55e6af15-103c-4b41-9e10-da36ee20f5da", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86890,7 +88240,8 @@ "SenseId": "49ea4ff8-7c73-4fad-950d-b3d2dec9ad8b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86961,7 +88312,8 @@ "SenseId": "908cc39a-c4ae-4aab-a8a1-4cb2794ef409", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87029,7 +88381,8 @@ "SenseId": "98c38a96-d34b-4581-aca1-17ff2dc2c62e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4fe54fea-afdf-4ce3-8789-da578722a5f6", @@ -87052,7 +88405,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c300c23f-9269-4a24-8be8-b91847605697", @@ -87075,7 +88429,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -87136,7 +88491,8 @@ "SenseId": "1665923c-551f-4e87-aa3e-a0c01859612c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87204,7 +88560,8 @@ "SenseId": "f17ee35f-9e3a-47b7-8aed-0abffa9e539e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87295,7 +88652,8 @@ "SenseId": "5607b315-66cf-4c69-9cc1-54040e31e662", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87363,7 +88721,8 @@ "SenseId": "4076b0ba-747a-4966-ad7e-4caa4c2cabc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87440,7 +88799,8 @@ "SenseId": "dc267b94-4a33-4731-aaaf-d484830ec3d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87508,7 +88868,8 @@ "SenseId": "aa981b11-04ff-4af2-ae44-796234cb159b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87576,7 +88937,8 @@ "SenseId": "246c0387-eb1b-44f3-9b1f-a7bdaa8df9b5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "06977799-bc47-4b69-ac51-4e669399e821", @@ -87599,7 +88961,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -87667,7 +89030,8 @@ "SenseId": "38351af5-160a-449f-b6f5-334748970449", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87733,7 +89097,8 @@ "SenseId": "2f28a937-b7ad-4ce4-b967-9faad084543b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87811,7 +89176,8 @@ "SenseId": "58ed32da-a923-470e-b739-1ee2521c1dbb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87881,7 +89247,8 @@ "SenseId": "d0e03952-92d9-4bf5-b7ac-d63a37ee3910", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87942,7 +89309,8 @@ "SenseId": "766a0dcd-11a0-48dc-ba1e-53c6d6a63354", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88010,7 +89378,8 @@ "SenseId": "0e15ca96-23ed-4faa-87c8-ca7a0d64e87f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88071,7 +89440,8 @@ "SenseId": "4b64743d-8234-4efd-bee6-01929aa5925b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88142,7 +89512,8 @@ "SenseId": "cc721689-3c6e-4e3d-8b48-304f1144ee8a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88227,7 +89598,8 @@ "SenseId": "2da1985b-4c8e-48c6-b819-be26a601b9c1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88293,7 +89665,8 @@ "SenseId": "4b483281-d3c1-432d-a5ff-1e7df777fc23", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88371,7 +89744,8 @@ "SenseId": "fb4d0840-35ad-4b51-a991-d3caac72b07b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9c5ab5d0-b755-41e7-8bfc-38cf4ac7476a", @@ -88394,7 +89768,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -88462,7 +89837,8 @@ "SenseId": "a29d6ebc-5c8a-4267-93f5-7acbb56f0a82", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0f025d44-7074-4e04-868e-cc0a74db6931", @@ -88477,7 +89853,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -88538,7 +89915,8 @@ "SenseId": "310bbea4-dfd1-44b0-b6e5-cfb9ee73fd33", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88599,7 +89977,8 @@ "SenseId": "1d741e8d-7136-465d-8d8c-f699482d7e7a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88667,7 +90046,8 @@ "SenseId": "4bfb6430-34b1-4953-ac6f-1d14a55368e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88735,7 +90115,8 @@ "SenseId": "e68fa0ae-00e9-401e-8939-1cdbcbf38a8f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88813,7 +90194,8 @@ "SenseId": "22454890-7c2d-4a3b-beaf-c7a5a4dc141d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88891,7 +90273,8 @@ "SenseId": "98ae9c6a-49c6-4f2f-ae64-bcd03ce4e6c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88959,7 +90342,8 @@ "SenseId": "2581c234-84f5-4ef9-ae06-3be67d528c6a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89018,7 +90402,8 @@ "SenseId": "882560fc-27d5-4ea8-add0-8335b97c5032", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89106,7 +90491,8 @@ "SenseId": "e352f748-01e6-471f-a6d1-978b74e6c6a5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "90054694-7f6e-4674-a525-b3e59e05f58d", @@ -89138,7 +90524,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -89215,7 +90602,8 @@ "SenseId": "5c0b6467-8c7a-48ac-af53-c5b81c079967", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89264,7 +90652,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a3846ed9-9b20-4c5f-8abb-873f9ff99a17", @@ -89287,7 +90676,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "fdff4835-a887-4305-952a-4089525f3e62", @@ -89310,7 +90700,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "182f783d-7703-4dc6-8aaa-d4c995ec11e0", @@ -89333,7 +90724,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d7932d5f-f27f-4cbb-b264-52061d0b3253", @@ -89356,7 +90748,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -89405,7 +90798,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -89456,7 +90850,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "2251956c-607a-41dd-b047-c16ad95f04ef", @@ -89479,7 +90874,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -89568,7 +90964,8 @@ "SenseId": "10d326c8-2805-4ecf-91c3-2d933a063863", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89653,7 +91050,8 @@ "SenseId": "06909499-5a12-4fdc-b48e-5805606fe878", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89731,7 +91129,8 @@ "SenseId": "6257b3a4-5c21-474e-8045-768ac98bd030", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89797,7 +91196,8 @@ "SenseId": "ec9e2a2a-4acf-4873-be17-33c22215f214", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89858,7 +91258,8 @@ "SenseId": "9604e24e-0b32-4036-b99f-029dad305317", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89909,7 +91310,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90008,7 +91410,8 @@ "SenseId": "9e3d001b-8dbd-47bd-843d-545ae2eeedc8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90085,7 +91488,8 @@ "SenseId": "f452c5e8-330c-4323-862b-aba0ec42a2c4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", @@ -90127,7 +91531,8 @@ "SenseId": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "198c45b5-e301-484e-ae81-fa801eb01331", @@ -90150,7 +91555,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90220,7 +91626,8 @@ "SenseId": "051bfd1e-a26e-46e2-b13a-f3b00478e092", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90298,7 +91705,8 @@ "SenseId": "ff74f41d-6ccb-4d1a-be68-010a4320ed00", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90376,7 +91784,8 @@ "SenseId": "b419d979-913b-4cf5-8a8d-c3982e3c2093", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90437,7 +91846,8 @@ "SenseId": "0f7f7d77-6064-4ce1-b6a3-f80826d62a99", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ad61964d-ef71-4857-89cb-5205ab969a8b", @@ -90460,7 +91870,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90535,7 +91946,8 @@ "SenseId": "a3baa2ad-79c0-41b1-9a24-e007e6d0b931", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c796903a-0d54-404a-a971-a11c1a968a61", @@ -90558,7 +91970,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90626,7 +92039,8 @@ "SenseId": "e35e3997-6b2c-4db4-81ed-13929160c341", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90779,7 +92193,8 @@ "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90857,7 +92272,8 @@ "SenseId": "d9cb4e6f-d542-4847-9ffd-72997d708f48", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90946,7 +92362,8 @@ "SenseId": "0a837b13-3198-4f8c-9049-c7a6b2ae0d4f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91014,7 +92431,8 @@ "SenseId": "dd0805ee-73c0-4c9d-8f0c-5b99eba335ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91080,7 +92498,8 @@ "SenseId": "a1393013-96f3-4f9c-9dd4-9c3d1b95747d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91141,7 +92560,8 @@ "SenseId": "3feaedde-d34f-48b6-b61a-657a7768e7f7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91207,7 +92627,8 @@ "SenseId": "7126b5f1-a48d-4788-8c37-e9837e25f274", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91273,7 +92694,8 @@ "SenseId": "fafade83-795b-4355-bcb8-9873dbad754f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91350,7 +92772,8 @@ "SenseId": "aefd8f47-6a88-499f-9860-41598b0821ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91418,7 +92841,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f2daba17-f3c7-4f16-94f6-f475f0a3cee4", @@ -91441,7 +92865,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -91509,7 +92934,8 @@ "SenseId": "58670c9a-5c67-4b4b-87ef-5d221763088d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91577,7 +93003,8 @@ "SenseId": "7607ede7-857f-4bc2-bc8a-ffa119369041", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91645,7 +93072,8 @@ "SenseId": "416479f0-f40d-42a8-9f53-0b36644f6a0e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91713,7 +93141,8 @@ "SenseId": "10b12fa3-9914-416a-8fa1-d2468ad75a80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91774,7 +93203,8 @@ "SenseId": "0ccaed89-b1ea-46df-be4b-6e3783022746", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91835,7 +93265,8 @@ "SenseId": "b2a7e770-d42a-4824-be0e-573da2378774", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91901,7 +93332,8 @@ "SenseId": "df21a85f-bac3-4b99-a803-11ab3cb0f03e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91969,7 +93401,8 @@ "SenseId": "32a60fd6-a381-4384-9736-388b2b757260", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92037,7 +93470,8 @@ "SenseId": "71c418ed-430e-42bb-b4b1-9b182da8db95", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92095,7 +93529,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3ee1ca91-7b0a-4567-bb1f-a4fdd123eebf", @@ -92127,7 +93562,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -92193,7 +93629,8 @@ "SenseId": "58397013-05a0-4187-a402-4b7531a3d1f6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92252,7 +93689,8 @@ "SenseId": "076bf5e2-f0dc-4475-b4b5-13f3a82fcd9d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92330,7 +93768,8 @@ "SenseId": "82120296-420f-4bc3-a316-ff1ef6f5823c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92381,7 +93820,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -92440,7 +93880,8 @@ "SenseId": "229f1945-8679-4417-a15f-0dc777567523", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92522,7 +93963,8 @@ "SenseId": "1f91440d-e07b-4444-b306-820bc3c62d78", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92590,7 +94032,8 @@ "SenseId": "1b86fc97-a86d-4edb-a856-501eaf8b9e6c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92658,7 +94101,8 @@ "SenseId": "f9374269-8d7c-433e-a4d1-2fbc6cd04fa5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92726,7 +94170,8 @@ "SenseId": "8aaa121c-0d62-46ec-a3f8-932b53ec00f0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92794,7 +94239,8 @@ "SenseId": "bc9918ca-3931-45f2-a346-37e20a6eb6b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92862,7 +94308,8 @@ "SenseId": "f35b7645-f5d6-4526-9ff8-cfa0a2bfff9f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92932,7 +94379,8 @@ "SenseId": "3df4e095-0ab3-4e63-b349-4085ad7ea31d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92993,7 +94441,8 @@ "SenseId": "8e5ddd13-ed8e-4e0e-ac77-f6c630ff5e1c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93063,7 +94512,8 @@ "SenseId": "edaca876-4e83-48b2-a21c-43f30e9ec1f9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93133,7 +94583,8 @@ "SenseId": "9b3f4461-b2be-4678-bcd9-ef1fe0f95d6f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6a17df72-0935-4972-8df4-37a444a3e609", @@ -93156,7 +94607,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -93217,7 +94669,8 @@ "SenseId": "d5594291-e8d7-448b-8c98-356280a9beff", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93340,7 +94793,8 @@ "SenseId": "92b77272-33f6-4ae9-9593-8884890d1596", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93399,7 +94853,8 @@ "SenseId": "6a7921e6-0eed-496f-8fce-251cc73f54b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93467,7 +94922,8 @@ "SenseId": "22d82ffc-5fb1-433d-b1d7-ea2f0cf74946", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "971be336-8e62-4ad2-97e7-47562f7cf80d", @@ -93490,7 +94946,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -93549,7 +95006,8 @@ "SenseId": "d3d45414-258a-41bf-b107-dc316f5eb53e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93617,7 +95075,8 @@ "SenseId": "5ce4fc2d-6488-4049-be7b-3d6685c21093", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93694,7 +95153,8 @@ "SenseId": "23e2e383-ef7c-4d19-a72f-1621ef30e0ed", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93779,7 +95239,8 @@ "SenseId": "28376e7b-02a2-41bb-87bd-7161ce3ac904", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93845,7 +95306,8 @@ "SenseId": "5c30367b-6a13-44e2-9d98-b41917c9eb99", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93911,7 +95373,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -93960,7 +95423,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -94035,7 +95499,8 @@ "SenseId": "41acb687-44b9-4c4d-b448-122dea15f267", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94096,7 +95561,8 @@ "SenseId": "e103ab2e-f827-4438-96bf-86ef4267e9aa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94166,7 +95632,8 @@ "SenseId": "d4030108-039e-48d9-a868-901c2072385d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94214,7 +95681,8 @@ }, "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -94280,7 +95748,8 @@ "SenseId": "94ee3153-27ce-49a1-9a8a-5fc0afa329c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94371,7 +95840,8 @@ "SenseId": "57bfaa1f-735b-4c81-97aa-69b2efd9b530", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94439,7 +95909,8 @@ "SenseId": "eca32c60-3044-4c43-9ba3-7192e3155034", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94500,7 +95971,8 @@ "SenseId": "ea17990f-9b07-43fe-b097-597f7e238156", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94570,7 +96042,8 @@ "SenseId": "54abd687-0f45-4550-8779-511abb42721d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "32467084-7626-49a5-81ad-ffd52563622c", @@ -94641,7 +96114,8 @@ "SenseId": "32467084-7626-49a5-81ad-ffd52563622c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94709,7 +96183,8 @@ "SenseId": "feb33bce-b6eb-4ceb-ac7d-4576e2624962", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b9579104-0efb-4b6b-9e41-023c12911774", @@ -94732,7 +96207,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -94793,7 +96269,8 @@ "SenseId": "8057b6f0-b920-4858-88d2-309e1eed6b9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94854,7 +96331,8 @@ "SenseId": "8e74c118-c9ef-4a6e-8c67-13d0f309763e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94977,7 +96455,8 @@ "SenseId": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95061,7 +96540,8 @@ "SenseId": "1f752860-a94c-40e1-8e00-e21a9de5f0cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95122,7 +96602,8 @@ "SenseId": "3638e80f-f10d-4940-870c-8e11a37c1741", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95206,7 +96687,8 @@ "SenseId": "56aa7d5b-4657-48a4-9279-8ae8d6b1d47d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95274,7 +96756,8 @@ "SenseId": "e7918fd5-b343-4516-9e0f-47742369c08e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95342,7 +96825,8 @@ "SenseId": "31c1e263-4dbc-402f-a0f3-82d860f258f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95417,7 +96901,8 @@ "SenseId": "c8b58fac-14b5-4eb0-8a25-03a5f365ea4c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95485,7 +96970,8 @@ "SenseId": "f411efec-e9a4-42da-9842-8ef770cbf71a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95544,7 +97030,8 @@ "SenseId": "398a49fe-4e56-4627-ae97-cb65ba976267", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95612,7 +97099,8 @@ "SenseId": "d06ecf71-49da-4964-9580-9579fd3f4d19", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95680,7 +97168,8 @@ "SenseId": "1cf49a8e-38e9-414f-b537-8f83f8b48dc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95748,7 +97237,8 @@ "SenseId": "13b95c7a-e9f5-4949-a5fa-4ee19fabe2b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95816,7 +97306,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -95867,7 +97358,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -95933,7 +97425,8 @@ "SenseId": "ef17635e-7bf6-4081-9faa-89b79f750a92", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96001,7 +97494,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -96069,7 +97563,8 @@ "SenseId": "ffa46537-54b5-4f01-a275-fce0693eea51", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96135,7 +97630,8 @@ "SenseId": "b9f6b2b3-fe70-4b2b-9d90-47d4b36194bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96201,7 +97697,8 @@ "SenseId": "35b68d05-0492-4bc2-9003-a3b443d6bb08", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96262,7 +97759,8 @@ "SenseId": "daeef4ba-0630-46d0-85f7-d42aea9bdc51", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96323,7 +97821,8 @@ "SenseId": "fd6925ea-62b7-484d-b7f3-3e26652c2876", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96391,7 +97890,8 @@ "SenseId": "2b1e6e5c-832b-4c98-bab7-3aab2e4ed099", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96466,7 +97966,8 @@ "SenseId": "275e89aa-2531-4a04-8cc4-c633939186af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96551,7 +98052,8 @@ "SenseId": "be445097-46a4-456d-9ce2-cd5df74eedb0", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3ce69d12-3a32-44e4-8761-314d11d493b0", @@ -96591,7 +98093,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "082609f1-948d-4d7e-88a8-bdbdf9c07aa8", @@ -96631,7 +98134,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "9de92b45-c94c-4ad6-b43a-a91c3627b415", @@ -96671,7 +98175,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "604b2b52-bb1a-4a4f-a945-58d91f6583ff", @@ -96711,7 +98216,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -96772,7 +98278,8 @@ "SenseId": "9db6aecc-bae4-42fe-9a51-0e6141043296", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96963,7 +98470,8 @@ "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97029,7 +98537,8 @@ "SenseId": "a8395899-5677-4b10-ad80-d2e54c4d5b30", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97184,7 +98693,8 @@ "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7d04a11e-a1cc-4c15-a02c-1867b204ccd1", @@ -97207,7 +98717,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97267,7 +98778,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97328,7 +98840,8 @@ "SenseId": "0cff3926-500e-48fa-a76e-586fa07b315b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97389,7 +98902,8 @@ "SenseId": "78ffd0fa-3cef-472b-95ba-5212d0fd9cc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97440,7 +98954,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97499,7 +99014,8 @@ "SenseId": "9bc220f0-6d26-4dab-9dcd-ee5814702e7e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "103c6d03-e0ce-4210-8c46-543c91a9a4fc", @@ -97522,7 +99038,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97581,7 +99098,8 @@ "SenseId": "4bd08dc0-41cf-4d75-93c7-8767c81179d1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d016f216-ef2f-4307-ac89-f31679d2e8fe", @@ -97595,7 +99113,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97663,7 +99182,8 @@ "SenseId": "09b9897f-e966-4ebb-b14b-4d39f7cffae1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97724,7 +99244,8 @@ "SenseId": "c4e98335-0d70-47d8-b43d-f7ee335ad565", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97785,7 +99306,8 @@ "SenseId": "1f5908d1-d132-4290-b5cf-9c45bd76e15d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "636a6a22-a647-4966-aa8a-50d018f0a58b", @@ -97808,7 +99330,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97876,7 +99399,8 @@ "SenseId": "e834c2bb-bd64-45cf-ac25-8cfa82fd4f4d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97944,7 +99468,8 @@ "SenseId": "3a72249d-72e0-4470-98b2-6fb64a0bd357", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98039,7 +99564,8 @@ "SenseId": "04aaab1a-5495-42b1-a958-3f72ca3de6e8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98124,7 +99650,8 @@ "SenseId": "59b235d0-71ff-4d3d-9050-eb56582b40ca", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98190,7 +99717,8 @@ "SenseId": "178130d5-6ddd-4fcf-8a25-2da2b42a9fef", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98249,7 +99777,8 @@ "SenseId": "7ef4f01e-1158-4b4f-8f05-427691f8a458", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98319,7 +99848,8 @@ "SenseId": "5b6d85ba-d915-4ab4-a276-64c26534135b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98377,7 +99907,8 @@ "SenseId": "17f9b2ab-451b-492b-905f-9429e4abc8ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98438,7 +99969,8 @@ "SenseId": "6115d59e-4e92-405f-bcfb-459907d99e66", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "12fae128-5dc7-4143-8ebd-dc84bc3af794", @@ -98461,7 +99993,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98527,7 +100060,8 @@ "SenseId": "de0c5b8a-9f70-4dd3-890c-43931b7907fc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98576,7 +100110,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98646,7 +100181,8 @@ "SenseId": "04116e62-fca1-4b32-b2c0-ca82646efe3a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98724,7 +100260,8 @@ "SenseId": "ad2949d1-f16f-4086-a94e-3331fab7072d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98800,7 +100337,8 @@ "SenseId": "ed7a308d-7bec-4372-8253-d13abd1945b1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98866,7 +100404,8 @@ "SenseId": "505400d3-1e4a-42ce-acef-758b92bed1fc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98943,7 +100482,8 @@ "SenseId": "13592c25-2d1e-4c60-98ad-9ea4ccd6a6a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99004,7 +100544,8 @@ "SenseId": "94749a03-836e-4bd5-a4f1-9da4b3f5b05b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99065,7 +100606,8 @@ "SenseId": "3c5e68c4-1133-4d06-8f01-c33987ba51eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99166,7 +100708,8 @@ "SenseId": "a8c34399-4446-4f34-8064-5850c2d0f45a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99234,7 +100777,8 @@ "SenseId": "bc5958ca-8e90-45de-8354-59d185422059", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99295,7 +100839,8 @@ "SenseId": "2a82aa97-31cf-43c3-a14b-09ffe761131e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99346,7 +100891,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -99437,7 +100983,8 @@ "SenseId": "98979afc-58f8-4894-bc22-f9daa3d857e1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ea8dcc79-5ac4-448c-9326-f727516e7bf4", @@ -99460,7 +101007,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -99519,7 +101067,8 @@ "SenseId": "a764da34-5c43-421d-9aac-e3260e289725", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99585,7 +101134,8 @@ "SenseId": "94f68ad2-1d69-41de-8aee-0185e99f8ccf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99644,7 +101194,8 @@ "SenseId": "890eb70c-54b8-4a4d-b031-db9451dc98ab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99705,7 +101256,8 @@ "SenseId": "9a261001-cf61-46f3-8e58-7cae8273b3ba", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7d75b23b-4960-47e8-93f1-d4a3136f04b9", @@ -99728,7 +101280,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -99794,7 +101347,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -99853,7 +101407,8 @@ "SenseId": "d2332721-57bf-4367-8f26-fa188d1386cb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99914,7 +101469,8 @@ "SenseId": "94991b8a-9d06-43f6-8903-159c9b5ee9df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99972,7 +101528,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -100047,7 +101604,8 @@ "SenseId": "05fc5ede-c5ac-4b95-ac1d-ce44536dd56a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100137,7 +101695,8 @@ "SenseId": "8d3b472d-b11b-46c5-b440-3e0c3b93465f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100219,7 +101778,8 @@ "SenseId": "459bd1a5-34de-49d8-b98f-03aa6705b13d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100268,7 +101828,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -100334,7 +101895,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d22c2b0d-2c83-42d2-973b-c20afdcc9398", @@ -100357,7 +101919,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -100418,7 +101981,8 @@ "SenseId": "194662d7-732d-4c3c-8a38-39c3ec910646", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100467,7 +102031,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -100517,7 +102082,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -100585,7 +102151,8 @@ "SenseId": "625ce16c-7cca-4209-8052-c78dddfed8cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100675,7 +102242,8 @@ "SenseId": "8c76e0a3-47d5-4412-b5e6-c8b8338538a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100764,7 +102332,8 @@ "SenseId": "be876ecb-1662-4abf-ab67-4e7b43d600de", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b429c752-8136-42a4-b68d-e0d1adb7ed22", @@ -100787,7 +102356,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -100848,7 +102418,8 @@ "SenseId": "3fd82d2b-b8a1-490a-acc6-708d88540bcd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100916,7 +102487,8 @@ "SenseId": "b547ec3a-2566-4f59-8d7b-5d6b607fb74e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100994,7 +102566,8 @@ "SenseId": "843731e3-603e-4249-ba99-754a719865e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101072,7 +102645,8 @@ "SenseId": "fdcdb28b-0bc6-4e95-82bc-45e2e0418405", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101123,7 +102697,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101206,7 +102781,8 @@ "SenseId": "02ebdfc0-2508-409a-9bec-019437e80fc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101257,7 +102833,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101306,7 +102883,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101372,7 +102950,8 @@ "SenseId": "cb4114f3-6b9c-4d10-83da-15aa3707622f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8a1aab3b-5e70-4283-afd6-e169458cdf69", @@ -101395,7 +102974,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "18938887-46cf-45ca-b2c9-9d432d9de64a", @@ -101418,7 +102998,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101527,7 +103108,8 @@ "SenseId": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6b33c75b-bfe6-48e5-b698-7c2386f22c25", @@ -101550,7 +103132,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101616,7 +103199,8 @@ "SenseId": "4e1623b7-2320-48c6-a4d2-1d535a22a87f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101739,7 +103323,8 @@ "SenseId": "ce9787bb-6789-49f9-9981-27b1724cef66", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d8c5c5b8-9b61-4fea-95b3-7ec530fd4644", @@ -101762,7 +103347,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101823,7 +103409,8 @@ "SenseId": "2ec29c07-952c-4c22-94e9-f18d655c3133", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101872,7 +103459,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101955,7 +103543,8 @@ "SenseId": "3736a2ed-4afc-47be-98f0-c1fd28d42f84", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102048,7 +103637,8 @@ "SenseId": "99872666-823a-445c-8f3a-0d5c8798ef7e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102107,7 +103697,8 @@ "SenseId": "c4f3e215-8ab4-4bd0-ad3c-1347ecccfbc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102173,7 +103764,8 @@ "SenseId": "236decb1-bb94-472b-8a02-4b46e83fcd67", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102234,7 +103826,8 @@ "SenseId": "035b3bfa-5694-4c35-9c0d-2f8d70250156", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102302,7 +103895,8 @@ "SenseId": "8756ef8f-b016-4c53-ae52-ebe134672b80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102395,7 +103989,8 @@ "SenseId": "6e95dee1-8398-4fa4-ada9-0bfebb343542", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "59373346-8f5d-4d04-bfda-f4aa384c0c81", @@ -102435,7 +104030,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102503,7 +104099,8 @@ "SenseId": "807fc0c7-a3db-40ac-b74b-2f32418f3715", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102571,7 +104168,8 @@ "SenseId": "b3d7c131-2e6c-4715-a476-9cd2f74be96e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102637,7 +104235,8 @@ "SenseId": "56055ad6-781e-40d4-bc90-a92ad2e6a316", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102714,7 +104313,8 @@ "SenseId": "4b5edab8-2284-4fba-8fa2-3c9c714de3b8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102782,7 +104382,8 @@ "SenseId": "c28f868d-c826-40d1-934c-d591cdd190b7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102850,7 +104451,8 @@ "SenseId": "83c39fed-42c6-446e-91d1-2b40af74eff5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102901,7 +104503,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102971,7 +104574,8 @@ "SenseId": "bc0108a7-1dfb-483f-a67a-4882cad7e919", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103032,7 +104636,8 @@ "SenseId": "41f653c0-8007-444f-9095-cc5af134f584", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103102,7 +104707,8 @@ "SenseId": "5647f2a9-9d0a-4599-9e48-cf98cd9624c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103170,7 +104776,8 @@ "SenseId": "95b6047b-3637-4494-9779-6216b4014a80", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8a4af5f4-a71e-47c5-a292-630923ada7bf", @@ -103210,7 +104817,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103276,7 +104884,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "6b48f7a4-471f-4b15-8b03-17a83b9de0d3", @@ -103299,7 +104908,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "af7ab1cc-2536-4251-bdde-ae723e46a105", @@ -103314,7 +104924,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c3f8b8ee-f1ea-4a6b-b8a3-34b0ca297629", @@ -103337,7 +104948,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a0b813dc-f06c-41c9-9496-fdb656b331e0", @@ -103360,7 +104972,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103438,7 +105051,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103487,7 +105101,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f4ae1775-b605-4604-8546-3cfcb6ca1c31", @@ -103510,7 +105125,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "65b694cd-f545-4444-8763-fcfb46f3c401", @@ -103533,7 +105149,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7ec7b783-215f-442a-b660-d00b071a64d8", @@ -103556,7 +105173,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103605,7 +105223,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "bca44468-9d04-4f0d-9e65-38694978d312", @@ -103628,7 +105247,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d2b54291-bb8e-4645-b3f2-0d77890118b9", @@ -103651,7 +105271,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103700,7 +105321,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103766,7 +105388,8 @@ "SenseId": "135250b8-31fa-4d05-b3dd-3422225a9006", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103864,7 +105487,8 @@ "SenseId": "9f8f51bf-aa51-4686-b839-fdbc9d17f1bc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103953,7 +105577,8 @@ "SenseId": "8f55e116-bffe-43cc-b63e-3fc7fb464906", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104021,7 +105646,8 @@ "SenseId": "194ed05c-dc3a-4cec-bda9-f913d397f4c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104087,7 +105713,8 @@ "SenseId": "094f4d6a-81eb-4cc1-b0b8-34cf24c90da7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104153,7 +105780,8 @@ "SenseId": "ea48f99d-9b4e-41b4-99b3-a70c040a881d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104219,7 +105847,8 @@ "SenseId": "90e822b6-9c0a-4815-b20c-498954c79e55", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104285,7 +105914,8 @@ "SenseId": "9171df95-1a24-41d1-9194-d61abfa19488", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3e1edd79-92fa-4512-86a0-c4ba64c8cd07", @@ -104308,7 +105938,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104404,7 +106035,8 @@ "SenseId": "4bfb0395-c6fc-4db5-8b04-cfe1c2bdcc8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104486,7 +106118,8 @@ "SenseId": "136a7fae-16be-4f69-9cc1-783a5c5d074c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104547,7 +106180,8 @@ "SenseId": "78c00a11-2e56-4697-b5bf-80904626cdf3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104613,7 +106247,8 @@ "SenseId": "4b976689-b5df-47fe-bec3-756897ca779e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104679,7 +106314,8 @@ "SenseId": "24295910-8cbe-4dfb-888c-798376ffc7fa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104755,7 +106391,8 @@ "SenseId": "6cecf1f9-7a8f-4595-bfc4-c217bf8b81f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104839,7 +106476,8 @@ "SenseId": "eca2562a-400e-4845-af66-21b452a16723", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104888,7 +106526,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104954,7 +106593,8 @@ "SenseId": "e088214d-88f2-4594-8f98-1f4f7c29dc65", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c7ca7796-1ba2-4bdd-be82-40e4d3de066c", @@ -104977,7 +106617,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105026,7 +106667,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105101,7 +106743,8 @@ "SenseId": "358f3141-e7ab-4c29-ad51-ca223360afe8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105159,7 +106802,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105210,7 +106854,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105271,7 +106916,8 @@ "SenseId": "f99e2076-dadf-4143-99d7-1d5d173fcf7b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105354,7 +107000,8 @@ "SenseId": "ababeddc-08c3-4780-8012-7198cf761d05", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105403,7 +107050,8 @@ }, "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105464,7 +107112,8 @@ "SenseId": "51aaf249-32a7-421b-87a3-3205be891797", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105539,7 +107188,8 @@ "SenseId": "de3c9399-15af-4edf-8aaa-68f96d56637e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105617,7 +107267,8 @@ "SenseId": "fc67e6a9-5387-43f2-91a3-216cfd5e65a8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105701,7 +107352,8 @@ "SenseId": "97a7c86c-6550-4e5c-a49f-a5a80330d9af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105762,7 +107414,8 @@ "SenseId": "25b7c888-d2fe-4c54-ace2-9b299e7a899d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105828,7 +107481,8 @@ "SenseId": "42083ae6-df49-4ae6-bfc8-48aef6b280d0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105889,7 +107543,8 @@ "SenseId": "4a4ca0ac-1ed7-4dd5-baa8-b61eaf61553e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105938,7 +107593,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106006,7 +107662,8 @@ "SenseId": "c5f58059-dd3b-4770-a432-4ac43c2a8668", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106091,7 +107748,8 @@ "SenseId": "1aa877de-615f-46be-a264-9b91635662f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106166,7 +107824,8 @@ "SenseId": "09aabb85-a312-493f-8800-86735acf18fb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106215,7 +107874,8 @@ }, "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106276,7 +107936,8 @@ "SenseId": "ee0c1ccb-2141-41f8-aeea-f2830dba0dfb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106342,7 +108003,8 @@ "SenseId": "bf71bf48-b8d3-455b-bc29-4a7b4ce04870", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106410,7 +108072,8 @@ "SenseId": "24ed647a-dafd-4897-bd4a-1914c517f2c8", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "5deb9301-9b9c-4e6a-8f46-aa6653c0e987", @@ -106450,7 +108113,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106516,7 +108180,8 @@ "SenseId": "bbb4c1c3-fa11-47cd-8150-e0d73818da0c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2ab4c07f-c6c3-400a-bf12-4bdede2672ff", @@ -106548,7 +108213,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106631,7 +108297,8 @@ "SenseId": "c658fc3b-450b-4488-a2b7-fcefd7d38652", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106714,7 +108381,8 @@ "SenseId": "c63b0bac-a53f-4029-8fb1-6fc0af61f894", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106799,7 +108467,8 @@ "SenseId": "718eb928-04fd-4cd9-862e-9fd86ee62a56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106867,7 +108536,8 @@ "SenseId": "e81c7af1-aa5c-4fcd-8971-36e4bfc4500d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106935,7 +108605,8 @@ "SenseId": "ae460c9e-400a-4e70-b9e1-cd27313bf09f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107003,7 +108674,8 @@ "SenseId": "509975b3-3a61-48be-b929-d47adaf4a2ec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107069,7 +108741,8 @@ "SenseId": "0c68f1e7-423b-4ba3-93e4-f2748477abca", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107130,7 +108803,8 @@ "SenseId": "0ca24aef-ba6a-4288-903a-66d7bf45158c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107191,7 +108865,8 @@ "SenseId": "8bad9278-024a-46c0-b0b9-8fed75472d38", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "16e9b698-06c4-49a8-bd83-b8d5a36f8589", @@ -107214,7 +108889,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "db214e78-7505-4899-b49a-0637749e2d13", @@ -107256,7 +108932,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107322,7 +108999,8 @@ "SenseId": "5179d490-ee47-45a5-b49d-cdb783960229", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107390,7 +109068,8 @@ "SenseId": "177fe980-b229-4630-aaf9-8522bc6e3d8b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107485,7 +109164,8 @@ "SenseId": "b3b3016f-337d-4ea6-a6d2-9bc3ebc9a2ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107553,7 +109233,8 @@ "SenseId": "a5918398-1bfb-4cfb-85b3-c0b6972fac0d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8780309e-9d9a-4afe-9424-c239c3b77b09", @@ -107576,7 +109257,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107625,7 +109307,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107693,7 +109376,8 @@ "SenseId": "a1062067-0b74-4f5b-b8a0-df0698229773", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107770,7 +109454,8 @@ "SenseId": "2f75bf8c-4b92-46fd-a51f-b2cf2f60c732", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107838,7 +109523,8 @@ "SenseId": "ae62dd24-2425-4d9c-bf98-12f9af6e7573", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "56914d82-0650-4b31-bb28-a77197eca5ac", @@ -107861,7 +109547,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107910,7 +109597,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107971,7 +109659,8 @@ "SenseId": "a5cec45e-99e3-4c49-82f9-08602426527b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108030,7 +109719,8 @@ "SenseId": "435e2d57-8d6f-4c27-97a1-12affa2d82a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108098,7 +109788,8 @@ "SenseId": "f93f82cc-9b40-4c81-b3c7-3001a88166e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108176,7 +109867,8 @@ "SenseId": "1ebd1836-16c2-4bc8-a232-5785ffb40d66", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108237,7 +109929,8 @@ "SenseId": "552b7e9b-d424-47a8-866c-82f290bd2c7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108328,7 +110021,8 @@ "SenseId": "4145d3ff-05ab-40d4-9211-ab3874f5aeb9", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3db9a9fe-2081-41be-9949-3c7789ccff52", @@ -108351,7 +110045,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -108421,7 +110116,8 @@ "SenseId": "cf11d0dd-67c4-4564-a4d4-c05dd5bbd1a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108521,7 +110217,8 @@ "SenseId": "bdc37e88-cc8d-40eb-b8a7-d41715ff2201", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "5f0ee744-8b92-46cb-8fee-0cd0fa449a5f", @@ -108553,7 +110250,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -108619,7 +110317,8 @@ "SenseId": "610bd39c-d07d-4f3a-8dcf-6a1c45858f94", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108687,7 +110386,8 @@ "SenseId": "94d56b46-19b2-4ecb-aa89-c971ff0e51cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108753,7 +110453,8 @@ "SenseId": "896de921-857b-416f-9b2f-2530d6878a3e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108819,7 +110520,8 @@ "SenseId": "6582a79f-77d9-498b-9d3d-13aefb6c2187", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108878,7 +110580,8 @@ "SenseId": "12fb344a-78ae-4185-96d8-448329aaac16", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108927,7 +110630,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -108986,7 +110690,8 @@ "SenseId": "c19b8053-71d1-4d12-ae64-ba1e3e5725c2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109064,7 +110769,8 @@ "SenseId": "1e636329-5e53-4a16-8383-d26a31811711", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109130,7 +110836,8 @@ "SenseId": "6de663de-116b-405f-b3a2-3415c5f276f9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109179,7 +110886,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109247,7 +110955,8 @@ "SenseId": "586ad21a-8694-415b-afb2-5843bcb03885", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109313,7 +111022,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109395,7 +111105,8 @@ "SenseId": "1b7e5eae-e787-4201-bd5d-54355fe1da19", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109456,7 +111167,8 @@ "SenseId": "d79e67f4-9836-4e45-a2cb-02574110442f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109517,7 +111229,8 @@ "SenseId": "ada56c3e-c584-4f09-8914-978ad628ecbe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109578,7 +111291,8 @@ "SenseId": "38c76c00-9ab7-487d-bb63-2e355f82f7c1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109627,7 +111341,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "098fb96c-aaff-447e-9620-7463d45a2a2b", @@ -109650,7 +111365,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c86e5e35-bb32-40b6-aaae-d17dea00c907", @@ -109673,7 +111389,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "098bb9a9-ead5-4fdb-80d9-41054d1151f8", @@ -109696,7 +111413,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "1e72e29e-1e83-4754-a073-e5edbf7da6bb", @@ -109719,7 +111437,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109848,7 +111567,8 @@ "SenseId": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109925,7 +111645,8 @@ "SenseId": "0383e271-64d7-43ef-93c0-bd43385dfa6f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109986,7 +111707,8 @@ "SenseId": "0be25da3-89e3-4991-a1fa-318fcdf6d736", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110047,7 +111769,8 @@ "SenseId": "88ea6f68-239a-43d3-a2fc-3cd209661132", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110115,7 +111838,8 @@ "SenseId": "86618e0a-35d0-4abd-b1ef-3bccb313c9b4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110176,7 +111900,8 @@ "SenseId": "1458ae34-3a2e-45f5-b334-391ba0448c43", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-06-18.verified.txt b/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-06-18.verified.txt index 7d97540be1..37f9fde0ec 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-06-18.verified.txt +++ b/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2026-06-18.verified.txt @@ -90,7 +90,8 @@ "SenseId": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -157,7 +158,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "6e869577-8f59-4ebe-bbff-a45c07f4e4c2", @@ -180,7 +182,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e8ef7f59-3646-459a-96c7-482d3c747e8f", @@ -203,7 +206,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "8b2c9d67-ff37-429f-a3ca-678fe960e001", @@ -226,7 +230,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -276,7 +281,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f34831ff-af51-4e62-b56f-4968e1f294fa", @@ -299,7 +305,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -366,7 +373,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e73d5de2-b5ec-4cc8-a679-7f7ca8f673f9", @@ -389,7 +397,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "04f6ebb2-31c2-4089-a9e8-68cc32b6d5d1", @@ -412,7 +421,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b2565e07-2e43-43cb-b533-247f100ac548", @@ -435,7 +445,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3360f2c7-1026-4558-a0fb-e9574aae16ee", @@ -458,7 +469,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -508,7 +520,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -558,7 +571,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -640,7 +654,8 @@ "SenseId": "9e9ad5c2-26f8-4ed1-9803-2af452088701", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -690,7 +705,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -740,7 +756,8 @@ }, "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -823,7 +840,8 @@ "SenseId": "892fa71e-e2cb-4e2f-9ca9-d37d77c5acda", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "13e26eb7-5809-40d3-a08d-78c704ba8a30", @@ -846,7 +864,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -888,7 +907,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -938,7 +958,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1047,7 +1068,8 @@ "SenseId": "67d78fa6-b914-4ac0-94c5-6acd1c2fe657", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1133,7 +1155,8 @@ "SenseId": "0f19a966-61e5-47ae-9388-cf8c4c6ef04c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1183,7 +1206,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1233,7 +1257,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1283,7 +1308,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3af2c61b-b41b-43f4-9915-bb2957437f18", @@ -1298,7 +1324,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1348,7 +1375,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1398,7 +1426,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1448,7 +1477,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1540,7 +1570,8 @@ "SenseId": "74fb07c9-24d4-4b19-b496-c66dc02011e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1607,7 +1638,8 @@ "SenseId": "983254a5-8270-438b-8bbc-09cbca7a6611", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1688,7 +1720,8 @@ "SenseId": "018a07df-4eac-4c21-becd-717530e1ff84", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1774,7 +1807,8 @@ "SenseId": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1836,7 +1870,8 @@ "SenseId": "d51d8ad2-5320-4551-a267-5d3379d91fb8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1921,7 +1956,8 @@ "SenseId": "fdd35987-d88b-4fba-b815-b255c72f8329", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2007,7 +2043,8 @@ "SenseId": "7cc77c4a-6c21-4d00-8d27-b032bc94803d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2093,7 +2130,8 @@ "SenseId": "496bf17c-c4c9-4aff-adf2-ed9aa9761409", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "61fe82af-1b62-47a8-9d3e-e0f7684b12fa", @@ -2125,7 +2163,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2215,7 +2254,8 @@ "SenseId": "d59756d9-3fe2-4cd6-9e2e-372ae603152a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2299,7 +2339,8 @@ "SenseId": "38b340b9-6fb4-4134-a7aa-e69a4000c9bf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2376,7 +2417,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2426,7 +2468,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2520,7 +2563,8 @@ "SenseId": "6f5ba1c7-2628-4669-899e-7615d7862b3d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2599,7 +2643,8 @@ "SenseId": "fea4ede0-f970-4b38-97eb-5d7075f0288b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2666,7 +2711,8 @@ "SenseId": "ef626122-aeda-4bd1-951b-63ba29d6e74a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2726,7 +2772,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2839,7 +2886,8 @@ "SenseId": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "333e5026-83bf-4acd-a0b0-af2f04e1687e", @@ -2887,7 +2935,8 @@ "SenseId": "333e5026-83bf-4acd-a0b0-af2f04e1687e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2964,7 +3013,8 @@ "SenseId": "09ccd17c-8e0a-4208-95dc-e41cb6b78de9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3031,7 +3081,8 @@ "SenseId": "ef8ce53f-c686-4c74-80c2-ada05ff8a85a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3098,7 +3149,8 @@ "SenseId": "58d47fd5-21e6-4a19-8ca9-768b77eb0c8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3158,7 +3210,8 @@ "SenseId": "cc7b9218-27a9-4ba7-9b69-79a469019855", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3220,7 +3273,8 @@ "SenseId": "a5ec694c-59ec-4765-af3b-314095d1bd7d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3296,7 +3350,8 @@ "SenseId": "6fa0e00f-3280-498a-b33b-cca6d76f3857", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3413,7 +3468,8 @@ "SenseId": "a88193aa-85c7-471f-8f05-939690f832b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3483,7 +3539,8 @@ "SenseId": "d028302e-d03b-4cc8-a588-5c3ef9e449e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3567,7 +3624,8 @@ "SenseId": "d4bf84ed-04fd-41a4-a4ca-312a0a8f171e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3634,7 +3692,8 @@ "SenseId": "bfe613da-5e41-4cce-ac69-4f4b4d1e29ff", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3718,7 +3777,8 @@ "SenseId": "82e9e4c7-3572-4246-8a6b-5dc29d16a278", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3780,7 +3840,8 @@ "SenseId": "40cf2e97-7ba4-4deb-953a-491f165099e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3859,7 +3920,8 @@ "SenseId": "6a92f97b-b8fd-47f4-9a0b-6bc48878475a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3953,7 +4015,8 @@ "SenseId": "161e717b-55e7-45a5-800b-4dc9e1c4fa30", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4013,7 +4076,8 @@ "SenseId": "b8639913-e8cf-4bbf-8598-0cb7c2421f01", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4087,7 +4151,8 @@ "SenseId": "c2a64c53-bb9f-4485-adce-56aa1bca3acc", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d74a27ca-630a-4e62-9ad1-0dce9252870f", @@ -4143,7 +4208,8 @@ "SenseId": "d74a27ca-630a-4e62-9ad1-0dce9252870f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4234,7 +4300,8 @@ "SenseId": "4b4e98b0-7b69-44a0-8444-9b447c5764b9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4370,7 +4437,8 @@ "SenseId": "79b8ab72-2b9c-4afa-ad44-47fefb074746", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4475,7 +4543,8 @@ "SenseId": "036e4c4f-31f1-4824-8ebe-51fa5a9fbe43", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4535,7 +4604,8 @@ "SenseId": "57bd9b42-76ed-4fa4-8a43-d8ca70973b03", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4595,7 +4665,8 @@ "SenseId": "e138d2ab-fea1-421d-bd27-1a901309ac1a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4654,7 +4725,8 @@ "SenseId": "229fdf0b-c330-423a-8eb2-6a0fc8c76d2b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4730,7 +4802,8 @@ "SenseId": "eea4e67f-9514-4bfb-9bfc-af148446d34f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4814,7 +4887,8 @@ "SenseId": "09c319ff-53fe-4453-b088-8327effb47b7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4893,7 +4967,8 @@ "SenseId": "3301cd02-b803-4fdd-8e0b-1fd9802b699d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4952,7 +5027,8 @@ "SenseId": "93dd2162-dedc-42bf-9fc6-49e6a765bdf8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5012,7 +5088,8 @@ "SenseId": "1dc5dfb2-e140-4fa2-85b4-ebf9c7cce900", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5062,7 +5139,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -5131,7 +5209,8 @@ "SenseId": "5ffe18b3-db9e-4cf9-9076-107940104d19", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5200,7 +5279,8 @@ "SenseId": "4517e997-6cec-46b3-9596-1e51ac14702d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", @@ -5264,7 +5344,8 @@ "SenseId": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5356,7 +5437,8 @@ "SenseId": "21bac99f-c587-4576-b08c-14ca69dadd83", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "35a38de9-1800-47e0-b4ad-5db19ac79db2", @@ -5379,7 +5461,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ef9ddb54-2d19-450d-9264-f872a8f94776", @@ -5402,7 +5485,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -5476,7 +5560,8 @@ "SenseId": "3fe67f6b-5514-47fc-be95-ac53ee7d8b56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5538,7 +5623,8 @@ "SenseId": "6edd952c-0bdc-4c73-bfb9-1051f163db9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5609,7 +5695,8 @@ "SenseId": "574b5528-5784-42ff-b9d9-fcc156dcc49f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5676,7 +5763,8 @@ "SenseId": "0d40e283-a355-41fa-9919-a800096e3319", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5736,7 +5824,8 @@ "SenseId": "5b98fbde-93bd-4cca-a342-180aa7b92411", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5868,7 +5957,8 @@ "SenseId": "528e7166-69ba-4991-b067-f411475442b1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fabcc53e-8dd3-4be5-9af5-4f81981ba5be", @@ -5891,7 +5981,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -5995,7 +6086,8 @@ "SenseId": "23a00ada-22b0-402a-a714-8264414db39e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6066,7 +6158,8 @@ "SenseId": "0ea6aae0-5081-4ec7-b418-80d6294553d5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6166,7 +6259,8 @@ "SenseId": "c15ddf45-a80c-411b-9dbc-d844af283e5f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6244,7 +6338,8 @@ "SenseId": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6e0952c8-002d-4c3c-b00a-313f65628c58", @@ -6267,7 +6362,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -6334,7 +6430,8 @@ "SenseId": "df9f4687-672d-4c65-a178-49a1b007c18e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6396,7 +6493,8 @@ "SenseId": "82f97729-0549-4583-876e-d3adf864f6c1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6507,7 +6605,8 @@ "SenseId": "d9a83e05-e52d-41e1-bbab-7733e09b0ca1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6599,7 +6698,8 @@ "SenseId": "14c24243-dc54-422a-880f-1d326cbad344", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "346cb2f1-ca16-47ec-bc29-5451f89fed1d", @@ -6622,7 +6722,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -6700,7 +6801,8 @@ "SenseId": "71fc904e-ac67-4964-8db3-f5c8f2d8c477", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6792,7 +6894,8 @@ "SenseId": "19034ed9-ec16-4284-92f7-905c3d5ef8f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6868,7 +6971,8 @@ "SenseId": "6cc2b1b5-5dbe-45f6-8afb-66b2449798be", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6961,7 +7065,8 @@ "SenseId": "73e108cc-db6b-4233-b1ad-b72688055779", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7023,7 +7128,8 @@ "SenseId": "3b192b76-c082-4f51-9c65-ce2dab292a7a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7108,7 +7214,8 @@ "SenseId": "7e2c9813-6bc2-42f9-906a-917aec1e20f5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7160,7 +7267,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -7244,7 +7352,8 @@ "SenseId": "dc3a436b-07c6-4c05-8c78-9bbe82ce5549", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7313,7 +7422,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -7405,7 +7515,8 @@ "SenseId": "18815e26-697e-4b5d-9054-5abac267dcd1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7501,7 +7612,8 @@ "SenseId": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7591,7 +7703,8 @@ "SenseId": "8cfdbb3a-856b-42cc-a288-34fbb0109fb4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7653,7 +7766,8 @@ "SenseId": "0ee1a56f-8c3a-4428-96bd-4789818e9c4b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7729,7 +7843,8 @@ "SenseId": "c854bbb5-a15d-4fb3-a044-712160f19483", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7791,7 +7906,8 @@ "SenseId": "7d4c55b8-b905-48ab-b1d5-063cb01ff3fb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7860,7 +7976,8 @@ "SenseId": "b5b7814e-a85d-4825-9ef0-5f4426d64031", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7910,7 +8027,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -7979,7 +8097,8 @@ "SenseId": "fb256afd-ba11-4319-817d-e4932fb704c3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8031,7 +8150,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -8073,7 +8193,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -8173,7 +8294,8 @@ "SenseId": "b84f1059-e013-43da-b6e8-6690c6220dee", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8252,7 +8374,8 @@ "SenseId": "1c0b81ea-659c-4336-8907-d943baa454af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8321,7 +8444,8 @@ "SenseId": "0e4f6dec-8624-4d51-93b4-f3b613a4872e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8400,7 +8524,8 @@ "SenseId": "46b94bc1-614c-4a32-9be0-3f8fc2a78fec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8469,7 +8594,8 @@ "SenseId": "40de284d-f04e-40c3-8546-aa7b293e3b75", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8538,7 +8664,8 @@ "SenseId": "7c838f3f-0518-4cc1-9468-43df99c9b9dc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8607,7 +8734,8 @@ "SenseId": "876f34e6-2f52-4365-8539-e22ae469c701", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8676,7 +8804,8 @@ "SenseId": "bcf0c7ea-17ee-4699-b6bc-d6cbd59d775d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8762,7 +8891,8 @@ "SenseId": "103e9e1d-c8fa-40ad-9854-16961c1966cb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8812,7 +8942,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -8912,7 +9043,8 @@ "SenseId": "f9599c2f-03c9-4b27-ade3-844499a60168", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8974,7 +9106,8 @@ "SenseId": "5e1535f3-c85a-493a-b58e-34e08ff7a3dc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9043,7 +9176,8 @@ "SenseId": "262c9ce4-ce33-4332-8ad0-5d93180cf438", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9120,7 +9254,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7d9e442d-044c-4766-8dad-435c6610a449", @@ -9170,7 +9305,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9261,7 +9397,8 @@ "SenseId": "daf3cc27-166e-4225-b673-0a7d9b691574", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6211b4a9-91ec-4828-9539-387ea6645bae", @@ -9284,7 +9421,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9346,7 +9484,8 @@ "SenseId": "47c21100-95f6-4f45-ac84-3f1472109473", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9415,7 +9554,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9477,7 +9617,8 @@ "SenseId": "6bacbaec-0a03-4a7d-91da-13c635e8db28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9539,7 +9680,8 @@ "SenseId": "22e9311b-db4b-4067-b2a7-3dfbfc153559", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9601,7 +9743,8 @@ "SenseId": "bdb94fca-9c10-4bd6-9980-74048048df01", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9653,7 +9796,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9720,7 +9864,8 @@ "SenseId": "1e3df798-e0fc-4e46-9c1d-8f2e0b09ff12", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9782,7 +9927,8 @@ "SenseId": "28d53a45-4107-441d-9931-5d878d16844a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9844,7 +9990,8 @@ "SenseId": "b66ba0ba-bf19-4f63-a1e1-aed0ad7f113a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9905,7 +10052,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9972,7 +10120,8 @@ "SenseId": "21facabb-a7f9-4f41-9fe3-8e6132dcbb66", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c4d03434-2267-4f9b-af23-85a1b3c4795d", @@ -9995,7 +10144,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -10064,7 +10214,8 @@ "SenseId": "37ba838d-656a-4819-a527-ffea32a2a288", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10133,7 +10284,8 @@ "SenseId": "fa2dec63-26d6-4f6a-89f2-185b005d3b27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10217,7 +10369,8 @@ "SenseId": "8e2906ba-2068-4582-b306-9609e69a003e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10279,7 +10432,8 @@ "SenseId": "108cb187-a924-40c4-b5ea-fb903dc52593", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10348,7 +10502,8 @@ "SenseId": "e6857eda-73f7-44a1-94a1-94582543cc79", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10424,7 +10579,8 @@ "SenseId": "c8ba0704-0642-4800-9cd7-6b4aaf4c8878", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10510,7 +10666,8 @@ "SenseId": "3bbc4b24-cab8-4bc2-9746-6781d12d2cd5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10572,7 +10729,8 @@ "SenseId": "7d6aba3e-e816-42e1-89dc-d60080422343", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10634,7 +10792,8 @@ "SenseId": "01ee130a-b3dc-4f84-b7eb-669c3a06cf67", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10699,7 +10858,8 @@ "SenseId": "fb19e30f-b594-491f-bf4b-bb6f244eb325", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d7dc87e1-9a7d-4537-bb8d-bf93cb2bbcff", @@ -10722,7 +10882,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "151e4c76-30e4-4eed-b474-2d438c278906", @@ -10745,7 +10906,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ca12b919-bc83-4894-b6e3-3089415ff852", @@ -10768,7 +10930,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -10876,7 +11039,8 @@ "SenseId": "f82e5d68-7c90-4a5b-974d-1fc2381964cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10926,7 +11090,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -10995,7 +11160,8 @@ "SenseId": "d0b16565-d636-4342-9e70-fd81bf5cd259", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "51f20902-34e8-41f0-bab4-72173fecea6f", @@ -11035,7 +11201,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -11114,7 +11281,8 @@ "SenseId": "07086e7d-dfcc-4f4e-b0d6-0be7a7943f97", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11193,7 +11361,8 @@ "SenseId": "455056b1-a9dc-441e-9fce-95ce0c058bce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11264,7 +11433,8 @@ "SenseId": "938cda59-6ed4-482d-a5fb-23a3bc2d6f0c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11326,7 +11496,8 @@ "SenseId": "b9bb5f59-f628-4b10-a849-f98804e37846", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11388,7 +11559,8 @@ "SenseId": "ebe4d9f3-1e6d-40b8-be42-c47e67170f86", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11450,7 +11622,8 @@ "SenseId": "c1dba9c3-0682-4507-a6b7-bc983f25197f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11512,7 +11685,8 @@ "SenseId": "4135e832-8813-4ab3-a07a-2e4266735271", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11583,7 +11757,8 @@ "SenseId": "cc5334da-90ac-479b-a827-7e50b0dfed82", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11652,7 +11827,8 @@ "SenseId": "d8d36c69-d082-4474-a85d-b3cd6a549364", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11702,7 +11878,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -11781,7 +11958,8 @@ "SenseId": "2446f241-0aea-43cb-8f94-df126030df9c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11843,7 +12021,8 @@ "SenseId": "a0dd2817-6a0c-4123-8fd5-0e92d3e3f298", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11941,7 +12120,8 @@ "SenseId": "ab896c4e-a906-4937-ac67-898b7f8cdff7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11991,7 +12171,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -12077,7 +12258,8 @@ "SenseId": "f9b5a296-5d59-437e-a2ee-29c9a8b0680e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12163,7 +12345,8 @@ "SenseId": "33af2390-171d-4ea1-9aef-695eb3cb38f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12225,7 +12408,8 @@ "SenseId": "c947e1f9-14e9-4598-96de-2b3bb20331fa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12296,7 +12480,8 @@ "SenseId": "862251ea-bcf4-4e60-a115-6aeace6a308e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12384,7 +12569,8 @@ "SenseId": "0c868028-605f-4f16-a916-4f6861f296cf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12446,7 +12632,8 @@ "SenseId": "c482d897-19bc-4cf4-bb82-46621906e181", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12508,7 +12695,8 @@ "SenseId": "598cba57-6ea3-47b7-8545-7333e7080211", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12606,7 +12794,8 @@ "SenseId": "f2111a87-c2b3-4aba-85c5-6f988e989c56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12668,7 +12857,8 @@ "SenseId": "b608d3ff-420b-43b8-b839-a9ef23597f28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12762,7 +12952,8 @@ "SenseId": "35081858-7200-4c60-90b9-3ddc794dfef9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12838,7 +13029,8 @@ "SenseId": "e98d8742-759c-40bd-a462-485372657540", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12888,7 +13080,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -12957,7 +13150,8 @@ "SenseId": "e0644624-a939-4c56-b130-eda7980c29e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13026,7 +13220,8 @@ "SenseId": "4d4bafa5-6b53-4377-ad56-876de7ba1292", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0218bc31-f936-4d57-93e8-f87c15bf9f63", @@ -13058,7 +13253,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -13120,7 +13316,8 @@ "SenseId": "667eb258-45b0-413e-b101-f9ccc7cbb64c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13206,7 +13403,8 @@ "SenseId": "d16174f8-2b94-4c11-a10e-eb053d32ff07", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13275,7 +13473,8 @@ "SenseId": "0df2a01b-5501-4222-b5c4-3560033a535b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b979cb5e-7abc-429e-acdf-27475037a08c", @@ -13298,7 +13497,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -13350,7 +13550,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -13419,7 +13620,8 @@ "SenseId": "8af77e66-bc0e-4b3d-8860-5a7b8628de13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13488,7 +13690,8 @@ "SenseId": "b70c2d47-0841-4045-afac-e3779f3f7bdc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13548,7 +13751,8 @@ "SenseId": "feeafad4-6f4a-4514-ac5f-3a3e784346ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13615,7 +13819,8 @@ "SenseId": "a7cbae04-07cd-4468-8e0e-001bc7040c54", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", @@ -13686,7 +13891,8 @@ "SenseId": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13748,7 +13954,8 @@ "SenseId": "6634b06f-e8af-46a2-832b-e65f7e87387e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13826,7 +14033,8 @@ "SenseId": "b41d2ad6-a040-4971-8dba-b1173e7dbdd0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13888,7 +14096,8 @@ "SenseId": "7c0458ed-29b5-49fb-85ca-1be940e30804", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13966,7 +14175,8 @@ "SenseId": "cb2a8121-7277-419a-a9ba-e8ae7b74f41b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14035,7 +14245,8 @@ "SenseId": "41c948f2-73e7-4a07-b802-1b5434ddcf0b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14116,7 +14327,8 @@ "SenseId": "40678389-a031-4bb9-8947-2ecda2aab5d9", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "328fa8c2-8166-4a83-ba6a-35d3eb29acf4", @@ -14139,7 +14351,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -14225,7 +14438,8 @@ "SenseId": "62a80d7e-5461-43a3-92f4-1873889f3511", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14294,7 +14508,8 @@ "SenseId": "6812074c-a5f1-4d7a-bc3b-1c6f7a9d6d77", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14366,7 +14581,8 @@ "SenseId": "86614d59-54a3-4a59-9ddb-edb9d6645555", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14438,7 +14654,8 @@ "SenseId": "4fb83982-c268-4643-a079-ef6595b52ddf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14507,7 +14724,8 @@ "SenseId": "f4b27c24-e157-489c-8058-03974376986a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14574,7 +14792,8 @@ "SenseId": "e2d50560-29f2-45f5-b7f9-75ee665abd0d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14668,7 +14887,8 @@ "SenseId": "8ab4bf03-6757-4e6f-af7a-13262f5fc23c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14737,7 +14957,8 @@ "SenseId": "3b545c5d-5faa-4483-bbb4-810d89b8921a", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2ef6704b-a7cd-4c84-b9df-b6d7a07a6246", @@ -14760,7 +14981,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -14829,7 +15051,8 @@ "SenseId": "4f0765ac-5b8c-4689-bf46-2d740e9834b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14889,7 +15112,8 @@ "SenseId": "8f7d60b4-f32f-4879-8578-765623fd3331", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14958,7 +15182,8 @@ "SenseId": "b2981643-8242-45df-8155-4f9a1b89b784", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15027,7 +15252,8 @@ "SenseId": "be850366-c73f-40d7-b98f-3ec83fea6241", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15079,7 +15305,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15141,7 +15368,8 @@ "SenseId": "87d914a0-8762-4a1d-939c-d73fe5ddd9db", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15210,7 +15438,8 @@ "SenseId": "866745ed-de98-43ba-8f7b-a1dd2945cd1b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6cf5b513-a228-45d4-aefe-8e3c25a10b5f", @@ -15233,7 +15462,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15302,7 +15532,8 @@ "SenseId": "15ad161e-ecf7-43b6-9e80-09d7e1cb662e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15371,7 +15602,8 @@ "SenseId": "be0fe661-be7d-47b9-b126-b4fae8a28ffc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15440,7 +15672,8 @@ "SenseId": "4c9a4100-6f5d-4474-aef6-d12e732a498c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15519,7 +15752,8 @@ "SenseId": "93d839b1-7318-4f4f-8279-90e8fda687a3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15597,7 +15831,8 @@ "SenseId": "bbbd1861-ae82-410e-abba-cf73b0e1cb50", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15666,7 +15901,8 @@ "SenseId": "0f5ad0c5-d4b8-4b7d-9954-a3e3467f74a7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15747,7 +15983,8 @@ "SenseId": "849c97b4-d0c2-4fa2-81c7-c2d734332f5e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15799,7 +16036,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "0adab179-a7f0-45a9-a1c3-1966d68bf45f", @@ -15821,7 +16059,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15890,7 +16129,8 @@ "SenseId": "50485a90-b701-4c13-8986-3b6a94d1e82f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "f5e72635-c18f-4558-bff8-af539d7f41c7", @@ -15913,7 +16153,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15982,7 +16223,8 @@ "SenseId": "2a506da0-ad78-4381-9286-07190c61fafd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16032,7 +16274,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16094,7 +16337,8 @@ "SenseId": "babf56f3-4d0a-48fb-8f26-4007551a15c9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16184,7 +16428,8 @@ "SenseId": "aad8f67f-05af-46a3-bc2f-39ef6c8ee715", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16253,7 +16498,8 @@ "SenseId": "dc95b51f-2e22-46fc-b264-95b7e1a465ea", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "260a0ff6-b53a-436c-a839-56f99b873cc5", @@ -16276,7 +16522,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16357,7 +16604,8 @@ "SenseId": "0a2ec452-a7c2-4cac-b65d-19e501818220", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16443,7 +16691,8 @@ "SenseId": "2642c7aa-5686-452c-b7c6-aff3f21700da", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6f50eb34-609e-49e1-b906-684bd2a6edd2", @@ -16483,7 +16732,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16561,7 +16811,8 @@ "SenseId": "256dc263-e16c-4140-90eb-5e8bba3369d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16632,7 +16883,8 @@ "SenseId": "068d955d-9dc7-486c-be44-152a2da1942a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16691,7 +16943,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16760,7 +17013,8 @@ "SenseId": "6be12455-6e00-4e76-8274-39af8a79bd8d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16829,7 +17083,8 @@ "SenseId": "8d6d7cf0-87fb-4eac-a2dd-5413f04a549c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16896,7 +17151,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16955,7 +17211,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -17039,7 +17296,8 @@ "SenseId": "d0e2735c-ac38-4a03-a923-d706d5127e1c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17101,7 +17359,8 @@ "SenseId": "b4d055cf-e4e2-4d8f-b493-eccdb120b143", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17163,7 +17422,8 @@ "SenseId": "9efdf055-1117-41a7-a720-b7cd082d13b2", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b4c13621-6170-4f5d-a97e-02fd015450a1", @@ -17186,7 +17446,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -17253,7 +17514,8 @@ "SenseId": "001b2172-8005-4328-8673-d9118decfa35", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17315,7 +17577,8 @@ "SenseId": "51c5d694-274b-4ce5-8a5a-650ca5057ded", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17382,7 +17645,8 @@ "SenseId": "5b775015-98c2-4032-b74a-6e42fa1ab3d0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17442,7 +17706,8 @@ "SenseId": "0c2ac9ac-c39c-49c9-8fe0-8bba863230d5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17520,7 +17785,8 @@ "SenseId": "0da360ba-60c7-4ed4-a2de-fa27c149bfd6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17582,7 +17848,8 @@ "SenseId": "c266ea9d-0c6f-40f9-ae67-122f730c76fe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17666,7 +17933,8 @@ "SenseId": "1723b409-22e0-450d-b2f0-6bdd33b70700", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17733,7 +18001,8 @@ "SenseId": "0c36e0db-92bc-47d4-8008-430138d950eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17793,7 +18062,8 @@ "SenseId": "2c015b4a-ea22-4b7b-8440-20c0bb423b90", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17845,7 +18115,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -17914,7 +18185,8 @@ "SenseId": "dd4e70e7-f467-413f-84cd-56b25117171e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18000,7 +18272,8 @@ "SenseId": "c1d23b8f-a05f-4b3e-a205-00622c51d630", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18078,7 +18351,8 @@ "SenseId": "091a6d4f-7854-4fde-8ece-f8375261b979", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18152,7 +18426,8 @@ "SenseId": "32b82aa0-753b-4ef7-a13a-45171eb0ad8a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18202,7 +18477,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -18292,7 +18568,8 @@ "SenseId": "73f6e11c-62f5-48a3-bcc6-1a90c107b1a7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18369,7 +18646,8 @@ "SenseId": "0a1e1f25-1d28-46ff-b10f-61efeeff642a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18436,7 +18714,8 @@ "SenseId": "1dc81749-6059-4eef-a64c-abd0bc23375e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18522,7 +18801,8 @@ "SenseId": "25b5e61d-26ec-40e9-83e6-ba02026295cb", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e21ee24d-94d2-43ea-85fb-2661273563da", @@ -18545,7 +18825,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -18629,7 +18910,8 @@ "SenseId": "7cb4163f-0b09-4fa0-81d3-0c30d6e368d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18721,7 +19003,8 @@ "SenseId": "8d7526a3-26d2-4ebf-b427-2213caf65140", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18813,7 +19096,8 @@ "SenseId": "79e34609-699f-468b-9a02-c4dab39803de", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "64759618-9e6e-4d42-9839-5f582d66d270", @@ -18836,7 +19120,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -18940,7 +19225,8 @@ "SenseId": "58513bc2-508b-4185-8e3e-3c993e671006", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19007,7 +19293,8 @@ "SenseId": "1553bb4c-f571-4084-98ea-ddcf0632c9ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19076,7 +19363,8 @@ "SenseId": "fff0965a-ef07-4bfb-826c-ddffd0f6ecb3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19143,7 +19431,8 @@ "SenseId": "946efc4c-dce4-49b1-a7ff-09ea2de426ce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19210,7 +19499,8 @@ "SenseId": "140ed3cc-46e0-46ff-8380-36d88fbb018c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19272,7 +19562,8 @@ "SenseId": "bcc30797-cc4c-4e2e-990f-28425d5c87ce", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "12e66c70-299d-41eb-8d6a-44aacc3288d1", @@ -19295,7 +19586,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -19364,7 +19656,8 @@ "SenseId": "f16867d4-c4f5-4aff-afe8-77532ee2969e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19426,7 +19719,8 @@ "SenseId": "f6f134c4-459f-4207-bdd3-857b909318d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19488,7 +19782,8 @@ "SenseId": "c367950c-490b-4237-aabf-acde1d506b3c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19557,7 +19852,8 @@ "SenseId": "7ee86a66-6781-4a36-b47b-fa6ee731ff3f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19659,7 +19955,8 @@ "SenseId": "2ecf3be4-12b5-4622-8d44-15f8e81f60e6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19728,7 +20025,8 @@ "SenseId": "956aeb5d-0baf-4009-b523-0147285efbd0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19790,7 +20088,8 @@ "SenseId": "f888120f-95ec-43b9-a70a-2018c3f7966c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19892,7 +20191,8 @@ "SenseId": "8010f318-454b-404d-aa7e-92b76ab1e274", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19984,7 +20284,8 @@ "SenseId": "089f49ef-98ab-4903-8e66-1872c4fa94e6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3033d933-d549-4f5e-b519-644f16d2bd2b", @@ -20007,7 +20308,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -20086,7 +20388,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c6af0fa0-431c-4b33-a1d9-39b590222ee2", @@ -20109,7 +20412,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -20168,7 +20472,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -20253,7 +20558,8 @@ "SenseId": "90f0534c-8f34-4d2d-b5e7-3212a3cd309e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20320,7 +20626,8 @@ "SenseId": "a460530d-d2c1-49a7-bf74-7a217a0ce135", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20398,7 +20705,8 @@ "SenseId": "738f6d6e-7089-4821-a542-84ab425ace05", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20448,7 +20756,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -20517,7 +20826,8 @@ "SenseId": "9997f6d6-3ed5-4c52-b575-0bb3bfb52a4c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20627,7 +20937,8 @@ "SenseId": "979edecf-f56b-4062-8743-60c9c5c6b7df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20689,7 +21000,8 @@ "SenseId": "5e158006-75c7-40e0-8a9f-79ea9d6a1d24", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20749,7 +21061,8 @@ "SenseId": "b07605b1-1c48-4476-bf7f-f6a7b8064666", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20809,7 +21122,8 @@ "SenseId": "327fb629-2035-4497-a693-46b3c42b983c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20871,7 +21185,8 @@ "SenseId": "ddf2fda7-6c8c-41fa-ac13-a9d1a0fecf8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20921,7 +21236,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21029,7 +21345,8 @@ "SenseId": "967c962b-d951-4995-a53d-dcaeacd7cb35", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21096,7 +21413,8 @@ "SenseId": "69f12f41-0c1d-417d-bd0c-2c6b6781d988", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21163,7 +21481,8 @@ "SenseId": "8d2e5fd4-e831-4be7-8486-e2189b72a192", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "56e8f620-7f27-4342-93eb-2352a0896146", @@ -21214,7 +21533,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21281,7 +21601,8 @@ "SenseId": "097bc15b-ca93-49ab-bb54-7ddc742be942", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21341,7 +21662,8 @@ "SenseId": "5f043f8f-1df7-4c70-9139-ff69c4333bfd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21408,7 +21730,8 @@ "SenseId": "72b9fc9f-db83-4f38-a154-91aa1f6457fb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21470,7 +21793,8 @@ "SenseId": "9cc5b875-1529-4343-8422-15e88e1e9ff9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21548,7 +21872,8 @@ "SenseId": "212df5f7-c4a1-4be9-8c7d-26730391610c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21617,7 +21942,8 @@ "SenseId": "9903681c-20e6-4e41-b0fa-99c86c518943", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21694,7 +22020,8 @@ "SenseId": "120863e9-9271-4d90-9f47-f1df0101b949", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "eb416cb0-0626-4fd7-81fe-299fd955e507", @@ -21727,7 +22054,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "35d20aad-653a-4dee-9af3-9bc37f3221b0", @@ -21750,7 +22078,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a0477f9f-4622-4ed6-8a4d-8a9672856428", @@ -21783,7 +22112,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21868,7 +22198,8 @@ "SenseId": "dd58d55c-4ca6-4726-a9c2-10f45bc21515", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21920,7 +22251,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21982,7 +22314,8 @@ "SenseId": "cbce6a29-7a85-4714-9c10-ef640500c220", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22061,7 +22394,8 @@ "SenseId": "6b8d3c6f-10ec-4b79-a267-e7fb490d27b3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22121,7 +22455,8 @@ "SenseId": "1476f06f-5d14-4d5e-b6e8-ab23e0ce6218", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22188,7 +22523,8 @@ "SenseId": "661ca6fd-1e8b-412c-977f-8ce7bda3c73a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22265,7 +22601,8 @@ "SenseId": "264e5106-44f9-4d15-b5b2-f0a4acc2237e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22344,7 +22681,8 @@ "SenseId": "961b8f0e-88f5-43a7-8ef6-0273413b6ade", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22428,7 +22766,8 @@ "SenseId": "d633d91a-a2d9-4d0b-bd63-76cfcab618df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22480,7 +22819,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -22547,7 +22887,8 @@ "SenseId": "ff02a48b-3cdb-45a0-8c0a-b16bb506aa9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22609,7 +22950,8 @@ "SenseId": "8b829fb0-227b-4ef9-8451-b04e7b3de29e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22686,7 +23028,8 @@ "SenseId": "5407cf61-e396-4fbe-bb1c-78bd5926d237", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22776,7 +23119,8 @@ "SenseId": "f3ca3e78-5b47-46f0-8964-7c7308675fbb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22862,7 +23206,8 @@ "SenseId": "0c26a49a-907c-4889-81c6-fc317afaca7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22929,7 +23274,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23015,7 +23361,8 @@ "SenseId": "4ab7f4b4-6ac8-4409-8ce4-ad1684644bc3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23108,7 +23455,8 @@ "SenseId": "03e96b83-c7c5-49ce-85eb-9334869c954c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23160,7 +23508,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23294,7 +23643,8 @@ "SenseId": "c9759c21-69d4-49f2-abf1-1b5189a166c9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23344,7 +23694,8 @@ }, "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23403,7 +23754,8 @@ }, "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23472,7 +23824,8 @@ "SenseId": "d1645b43-54ad-4ae3-86a8-2adc01b10b86", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23539,7 +23892,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23606,7 +23960,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", @@ -23679,7 +24034,8 @@ "SenseId": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23748,7 +24104,8 @@ "SenseId": "3336e632-6459-4a1c-a23d-905ffe86dd5a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23815,7 +24172,8 @@ "SenseId": "e60e481f-7833-4449-aa05-486579405700", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "143dddd7-c67c-47a4-8520-d7c97bfea5fb", @@ -23838,7 +24196,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23905,7 +24264,8 @@ "SenseId": "e4a2ddaf-3936-4686-b2c3-8a4207268d2f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23984,7 +24344,8 @@ "SenseId": "bea34cfa-cfd1-4785-b126-cab5ac699c34", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24055,7 +24416,8 @@ "SenseId": "ca6c691d-4d25-4930-9734-41c1fc6a80d3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24141,7 +24503,8 @@ "SenseId": "8a628d12-fc65-4fca-a4cd-b72fcfb3f4e9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24201,7 +24564,8 @@ "SenseId": "2f472c27-cbde-4af6-882c-332e088042be", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24253,7 +24617,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24305,7 +24670,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24374,7 +24740,8 @@ "SenseId": "aaa90268-96b6-4621-90c0-b15bdcae3797", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24426,7 +24793,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24488,7 +24856,8 @@ "SenseId": "32ab3b26-bde6-4c4e-b893-7bdebbba97f3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24592,7 +24961,8 @@ "SenseId": "1dfc498d-6fd3-4ab7-bf19-e132a6a65490", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24673,7 +25043,8 @@ "SenseId": "93fbb734-6c88-49d4-9b17-9eeb0c71173a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24725,7 +25096,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24785,7 +25157,8 @@ "SenseId": "08da4e99-a9f0-4f90-a25a-3f7d56bff893", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24852,7 +25225,8 @@ "SenseId": "3dcf0108-efef-48f1-932c-0c1f2b25a959", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24921,7 +25295,8 @@ "SenseId": "42ee67c5-c6a9-4c1a-984a-30c5df50572f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a024c2c5-3356-4b6d-95c0-f6b04c3eb1fb", @@ -24936,7 +25311,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25005,7 +25381,8 @@ "SenseId": "7e4ab6ec-915b-40b4-b04f-e6fae33c1958", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25091,7 +25468,8 @@ "SenseId": "93ce8887-85b4-4cfb-9d41-d3a78a59a674", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25177,7 +25555,8 @@ "SenseId": "c96968f6-3ba4-41dc-866f-46621635a4b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25239,7 +25618,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "484817a2-3fd3-4c6f-87a1-d9aa6d6c7720", @@ -25279,7 +25659,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b68b4b80-2291-4ad4-8489-5908f4a3ce32", @@ -25301,7 +25682,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25382,7 +25764,8 @@ "SenseId": "c7506d9e-5153-476e-a335-8809d256bb16", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25465,7 +25848,8 @@ "SenseId": "30c7b3aa-10e4-4946-ac04-e6d7a6be141c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25527,7 +25911,8 @@ "SenseId": "a4d763ac-cce7-4b81-85cf-55ef86f16cb2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25579,7 +25964,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25678,7 +26064,8 @@ "SenseId": "58c422e6-bf58-48f7-837b-0d694c46c178", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25740,7 +26127,8 @@ "SenseId": "1740df40-5673-47aa-847e-65c437550442", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25802,7 +26190,8 @@ "SenseId": "8637fd45-a2f1-4e08-95d3-8d79ca10a64f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "47f507af-496d-4983-8c2f-74ddd6843b5f", @@ -25825,7 +26214,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25887,7 +26277,8 @@ "SenseId": "adf88e54-3b71-4d63-bcb0-ddce4ff78565", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25949,7 +26340,8 @@ "SenseId": "8077a104-cdc7-4366-8bf5-b73997d3abfa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26010,7 +26402,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26095,7 +26488,8 @@ "SenseId": "14518a12-4f6b-457c-b059-31e8941432c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26164,7 +26558,8 @@ "SenseId": "c67be91a-7537-47ac-b4ac-f16dddba5dea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26233,7 +26628,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26285,7 +26681,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ea2ea2a2-daa4-4c5c-b880-bedc73e66594", @@ -26308,7 +26705,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26377,7 +26775,8 @@ "SenseId": "5121e7bd-4eb3-4e74-9779-d833fcbd6c33", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "209e52a4-dac0-4220-904d-bd2774dfb631", @@ -26440,7 +26839,8 @@ "SenseId": "209e52a4-dac0-4220-904d-bd2774dfb631", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26490,7 +26890,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26557,7 +26958,8 @@ "SenseId": "8b4ba5d6-8067-44f7-8484-35c96aa7d262", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26617,7 +27019,8 @@ "SenseId": "b3b6bbb6-5c84-4ff0-a8e6-1e2899d12400", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26703,7 +27106,8 @@ "SenseId": "8a8e149b-f056-4234-9810-4b90b3ffb19d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26782,7 +27186,8 @@ "SenseId": "1743274c-54d5-4ff5-b444-3d4153c77cb5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26849,7 +27254,8 @@ "SenseId": "b35a109a-8344-44cc-bf8f-3c9c70d5a868", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26901,7 +27307,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26980,7 +27387,8 @@ "SenseId": "8cdc935e-49af-4457-a414-d38b10ec906b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27072,7 +27480,8 @@ "SenseId": "a97c0f4d-73e0-4b95-931f-31c8a515729e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27141,7 +27550,8 @@ "SenseId": "04f6c79e-348b-43f0-9cd4-0725a74814d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27203,7 +27613,8 @@ "SenseId": "5b4c2c6a-3c8e-45d0-927d-385f7cbb75bd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27272,7 +27683,8 @@ "SenseId": "559be1cc-d82c-415d-b5b7-2043a9604511", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27351,7 +27763,8 @@ "SenseId": "07dc886f-0dba-4aa6-963a-3d891662d3bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27413,7 +27826,8 @@ "SenseId": "25b238b4-a5d7-4131-a98d-62f2238a4555", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0d63ae85-adf8-4fb0-a52a-58a5c41bfb86", @@ -27437,7 +27851,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -27499,7 +27914,8 @@ "SenseId": "4168c68a-7b17-4f1a-97f7-37f5575e39e1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "134179c7-370a-4bbb-8fe8-478cce52139d", @@ -27522,7 +27938,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -27584,7 +28001,8 @@ "SenseId": "1c9f2594-1004-425c-866f-d88e69fe7472", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27668,7 +28086,8 @@ "SenseId": "7502b8d4-c1a1-46c6-a985-46966413ff32", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27738,7 +28157,8 @@ "SenseId": "78a7affb-82be-4888-be1c-a5ece125682b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27800,7 +28220,8 @@ "SenseId": "2030a4db-c8e3-4492-8eee-ee03fa95cdae", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27885,7 +28306,8 @@ "SenseId": "aa2f490f-656d-4fac-85ba-f27ffd198fc7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27937,7 +28359,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -27999,7 +28422,8 @@ "SenseId": "d3eb5101-3c90-4cec-9ba8-abcca2cc7fd4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28093,7 +28517,8 @@ "SenseId": "6ccc4bda-d84e-44bc-b401-7a831fe7e78e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28179,7 +28604,8 @@ "SenseId": "8a75f1f8-dea3-4c3f-9e35-63b674b1d525", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28262,7 +28688,8 @@ "SenseId": "371d8c7f-e0eb-41e2-a9b0-ae1e8cf6daa3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28329,7 +28756,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28379,7 +28807,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a9da180c-b617-4897-bbc3-9483e3ec9fae", @@ -28402,7 +28831,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b7dd12e2-4eaa-40a1-a07e-8239b886f77f", @@ -28425,7 +28855,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ad95bb10-5844-4233-9481-227dc410fc16", @@ -28448,7 +28879,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28548,7 +28980,8 @@ "SenseId": "62af26f3-cd22-4b25-82dc-3dc7cb6ba886", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28598,7 +29031,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28657,7 +29091,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28726,7 +29161,8 @@ "SenseId": "b179aa5a-18b1-43c4-8802-225af8d2473a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28776,7 +29212,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28828,7 +29265,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28887,7 +29325,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28956,7 +29395,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29008,7 +29448,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29077,7 +29518,8 @@ "SenseId": "cbf8b07f-44e9-4847-beee-21ee79a0e073", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29144,7 +29586,8 @@ "SenseId": "e86f33e1-ff72-4335-a704-04954f4ebee1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29236,7 +29679,8 @@ "SenseId": "f24bb8e1-419f-4ff0-9020-ad57bec92129", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29305,7 +29749,8 @@ "SenseId": "41dc96b0-ec32-4968-adf5-420c21fa5a8b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29356,7 +29801,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29434,7 +29880,8 @@ "SenseId": "ef2dfd9b-673b-4948-8fea-0e44aa5e12a7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29484,7 +29931,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29534,7 +29982,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29584,7 +30033,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29651,7 +30101,8 @@ "SenseId": "6895e856-d373-4190-b7ac-8d185a18e4ce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29745,7 +30196,8 @@ "SenseId": "990acf6f-9eb5-4b84-b3c5-ac736813481b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9e09f628-2cc0-47f1-a747-f199af978acf", @@ -29801,7 +30253,8 @@ "SenseId": "9e09f628-2cc0-47f1-a747-f199af978acf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29851,7 +30304,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29901,7 +30355,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29970,7 +30425,8 @@ "SenseId": "c38c6c69-6d59-41a5-b9d4-cc259b30b56a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -30022,7 +30478,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30081,7 +30538,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30131,7 +30589,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "02fdaa00-2856-4abc-85f8-7ceae651d8d4", @@ -30154,7 +30613,8 @@ }, "PartOfSpeechId": "730528ca-6a9b-4424-9839-a58bf66db779", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30204,7 +30664,8 @@ }, "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30271,7 +30732,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30321,7 +30783,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30388,7 +30851,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30455,7 +30919,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30505,7 +30970,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30564,7 +31030,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30614,7 +31081,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30673,7 +31141,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30723,7 +31192,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -30782,7 +31252,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "908d1ba5-dd47-4009-854e-4cc834f59559", @@ -30805,7 +31276,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f83e6701-d207-4261-a0ce-5de4c94449ee", @@ -30828,7 +31300,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b2521441-a2c1-41ba-af12-5b5ce51208b7", @@ -30851,7 +31324,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "8f9dbfe6-b955-4a56-9319-7315c1c03b14", @@ -30874,7 +31348,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30941,7 +31416,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "65b1dd23-3788-4968-860b-b29c8439c601", @@ -30964,7 +31440,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31014,7 +31491,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31081,7 +31559,8 @@ "SenseId": "0b844486-8001-4dec-bc3f-1836662621ea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31167,7 +31646,8 @@ "SenseId": "09f516ad-9d5a-442e-92a3-c4095e3e343c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31234,7 +31714,8 @@ "SenseId": "319aff20-994b-4b4d-b28c-15238443f956", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31294,7 +31775,8 @@ "SenseId": "edc77eed-15d6-45df-90ce-4d484442249f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31354,7 +31836,8 @@ "SenseId": "3ec38f1b-6eef-427f-8ff3-b8c2954de6a6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31440,7 +31923,8 @@ "SenseId": "4ffd0f96-ebcb-41b4-b896-e97d3dceb36a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31502,7 +31986,8 @@ "SenseId": "2826ed49-b83a-4b50-9c8a-05197cc50420", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31562,7 +32047,8 @@ "SenseId": "f9d28c7e-718b-4694-8d27-d1b8060ae4e0", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fb259a5a-3ee7-4a7c-b197-59c492d89384", @@ -31585,7 +32071,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31663,7 +32150,8 @@ "SenseId": "cd8ecd88-36e9-4e60-95ac-545ca3716063", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7fca8e82-3e78-4cb6-88fd-6f4e15177efb", @@ -31703,7 +32191,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31763,7 +32252,8 @@ "SenseId": "d6e01571-4afc-4a63-93d6-d252408e2eeb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31903,7 +32393,8 @@ "SenseId": "90b31605-76db-4597-baa8-45ec4fda706d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31963,7 +32454,8 @@ "SenseId": "4e52fc2c-f04f-4397-bf00-9145be555027", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32054,7 +32546,8 @@ "SenseId": "18350c76-4bb9-4557-94e5-001eeca8c77a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32121,7 +32614,8 @@ "SenseId": "4a8349d7-374b-4a3f-a008-2a8d036a6c72", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32198,7 +32692,8 @@ "SenseId": "ab06a13e-8c8a-4c08-ace1-1dbe151d6a1f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32277,7 +32772,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -32344,7 +32840,8 @@ "SenseId": "c5a05a9b-8a7b-4b30-90b3-a22a0ede868c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32421,7 +32918,8 @@ "SenseId": "80130c84-3eb0-4670-b896-4cf854eb6103", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32481,7 +32979,8 @@ "SenseId": "318d5b28-51b2-4924-88a0-044bbbf75cf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32550,7 +33049,8 @@ "SenseId": "24907a9a-fa88-435d-bdd1-2a61fc122e4a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32617,7 +33117,8 @@ "SenseId": "5b80af28-d70b-41fa-b3e4-5a0e1431a220", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32684,7 +33185,8 @@ "SenseId": "604ebd63-fd39-460e-a0ca-93d6d9443e41", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32751,7 +33253,8 @@ "SenseId": "511eb02f-a823-4d38-aeb7-5a35da034431", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32818,7 +33321,8 @@ "SenseId": "7edf14c7-8c33-4222-8eea-e99b6e727de2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32894,7 +33398,8 @@ "SenseId": "9134f0c8-c69f-49d4-af7d-86d170ffff68", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33032,7 +33537,8 @@ "SenseId": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33116,7 +33622,8 @@ "SenseId": "01efa877-a8ff-43d5-9912-51eb18a83af9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33183,7 +33690,8 @@ "SenseId": "4bd3e2a9-e928-42b1-843f-6cde97a3ffa8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33243,7 +33751,8 @@ "SenseId": "6b4af1f4-5c2f-400e-bb9f-1c0ab4e75492", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33305,7 +33814,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33404,7 +33914,8 @@ "SenseId": "6b44df76-bd2d-44b9-b086-0f1426f1a38f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33454,7 +33965,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33521,7 +34033,8 @@ "SenseId": "72a474a7-7a03-42a1-9a9c-9add30627592", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33652,7 +34165,8 @@ "SenseId": "94f4937a-3404-4d37-8cd8-027547d1b381", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33719,7 +34233,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "70ee8eb4-fc68-4a09-8074-9b51c70d3c3c", @@ -33741,7 +34256,8 @@ }, "PartOfSpeechId": "cf4b95e5-2362-412d-92a1-24846a4bab59", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33801,7 +34317,8 @@ "SenseId": "31ffccc7-f41d-4d9c-b82c-dedb94113c20", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33868,7 +34385,8 @@ "SenseId": "9ba6dc47-1937-4a0c-bbf4-43464a8ce714", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33945,7 +34463,8 @@ "SenseId": "4d37c94f-4809-4c0f-8082-1af196273387", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "43505c77-2177-4fd9-b646-01366fc6d214", @@ -33967,7 +34486,8 @@ }, "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "373e19da-a2fe-4b25-ac07-22dae481675a", @@ -33989,7 +34509,8 @@ }, "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -34058,7 +34579,8 @@ "SenseId": "ce47cec8-8bfd-45ae-9f97-20dcf5d03892", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "eee643f8-98a4-499d-9d23-4cc23bab31ef", @@ -34081,7 +34603,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -34167,7 +34690,8 @@ "SenseId": "0d2f5079-6737-4fde-97cb-006da839a693", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34227,7 +34751,8 @@ "SenseId": "0c1ff827-abd7-4cb3-803d-3c11dba1ff5c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34313,7 +34838,8 @@ "SenseId": "f7c942cb-bbf4-444c-a244-ce6ac9bd36fa", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "827e2351-ff14-4430-89e4-8a02747e0f94", @@ -34336,7 +34862,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7b4ed3bb-aea1-4906-8bab-37c602f04a6a", @@ -34359,7 +34886,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -34421,7 +34949,8 @@ "SenseId": "f363c0f1-ede7-44f0-bd1b-75ba816911aa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34561,7 +35090,8 @@ "SenseId": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34657,7 +35187,8 @@ "SenseId": "6e63fbb8-5f43-44f0-b0b5-a27f49457178", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34741,7 +35272,8 @@ "SenseId": "6aa73def-278e-4751-b031-c9878ad3b838", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34810,7 +35342,8 @@ "SenseId": "35b11b7d-8b22-4ad9-945b-a537452d3a36", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34904,7 +35437,8 @@ "SenseId": "50240252-ca03-40bb-8d69-7d6762997929", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34954,7 +35488,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -35038,7 +35573,8 @@ "SenseId": "06e54dd2-932a-4bd0-a72f-f33bf6285750", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35105,7 +35641,8 @@ "SenseId": "98dafe91-7baa-41bf-9cb3-cd20fff87679", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35167,7 +35704,8 @@ "SenseId": "9dae3ae5-d349-4929-8fd0-d900777cdcde", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35227,7 +35765,8 @@ "SenseId": "f7551d4a-a6a8-431b-82ae-cc87738cf29d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35312,7 +35851,8 @@ "SenseId": "269f11ac-1cb3-4d45-885f-2b321b95e190", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35388,7 +35928,8 @@ "SenseId": "f2cbdf3f-b54d-4bdb-9dc7-b5b9a5e55722", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35472,7 +36013,8 @@ "SenseId": "4bec2e73-a2fa-4be6-976f-ba6ff9f7acc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35539,7 +36081,8 @@ "SenseId": "97259073-9a23-4056-8f5d-6a500118ec61", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35608,7 +36151,8 @@ "SenseId": "798afb72-f49f-478d-a1b9-1bb958494e15", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35679,7 +36223,8 @@ "SenseId": "c37de104-6633-4a7f-8334-fba322f0c89b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35765,7 +36310,8 @@ "SenseId": "cddee31a-556f-4a76-8e75-2be21302d85f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35857,7 +36403,8 @@ "SenseId": "1331035e-4a2d-4ede-b72a-8db3d2893ea6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35943,7 +36490,8 @@ "SenseId": "a45d7be9-f4bc-4a75-a43e-4d6d8c281bc8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36010,7 +36558,8 @@ "SenseId": "d64ed827-1d47-45ee-b253-1cc55d13b5d3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36093,7 +36642,8 @@ "SenseId": "dc9f82a8-e346-4734-a417-bfaee9c1b4c7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36172,7 +36722,8 @@ "SenseId": "1e1687c0-3394-4bc4-8bed-26c96d07c0de", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36234,7 +36785,8 @@ "SenseId": "5ea927e6-ee78-4f63-8ef9-bf46ff0b33f0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36296,7 +36848,8 @@ "SenseId": "067e18f7-8adc-447e-a072-a68ca8ff978b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36390,7 +36943,8 @@ "SenseId": "0f2c0668-a52f-4ce7-83e7-a492905e4f82", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6ee1d961-3dae-4b46-9579-e7e8e34163a6", @@ -36413,7 +36967,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -36491,7 +37046,8 @@ "SenseId": "17b61c66-081e-4e77-bd7e-dbd2aead3932", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36553,7 +37109,8 @@ "SenseId": "e1d99b98-3faa-4fdf-a883-46c21364b777", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36622,7 +37179,8 @@ "SenseId": "fd5ae1c9-56af-4bf4-85ce-e9e984550c42", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36689,7 +37247,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -36752,7 +37311,8 @@ "SenseId": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36812,7 +37372,8 @@ "SenseId": "471f30f4-6ef1-4306-b7be-bc5292a92b29", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36872,7 +37433,8 @@ "SenseId": "587d38d2-4461-4d26-bbb6-9ecf46861a1b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36932,7 +37494,8 @@ "SenseId": "6d090ec4-8a2f-4648-996d-426753654a77", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37011,7 +37574,8 @@ "SenseId": "c2a3421e-e0f7-4591-bf62-3380df4bf413", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37073,7 +37637,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37149,7 +37714,8 @@ "SenseId": "339f2931-7da0-4c4f-b4ca-7d4b3317f496", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37201,7 +37767,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37279,7 +37846,8 @@ "SenseId": "e233ed05-a5c5-4db6-a8a7-549a611a0ae5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "78f9be23-f46e-40f8-b9ae-feeb0fe345e1", @@ -37302,7 +37870,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37364,7 +37933,8 @@ "SenseId": "f1ecb5b4-ec5f-4b06-9b7c-fd48f0a0fc08", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37453,7 +38023,8 @@ "SenseId": "acbba421-d6ef-4abb-b1b8-65c6402e4a49", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37568,7 +38139,8 @@ "SenseId": "2b9a6917-5d94-4491-a253-e34b36bde45e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37639,7 +38211,8 @@ "SenseId": "e8c7028d-3a47-4b64-b2be-7b1819997a5f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37701,7 +38274,8 @@ "SenseId": "fbdc0232-f0da-4dad-87fc-7717e704bca4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37770,7 +38344,8 @@ "SenseId": "184375ba-86e9-464f-9bdd-2993cd0263a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37839,7 +38414,8 @@ "SenseId": "b76f140c-bc70-46f5-8da6-3aad4c1b293a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37899,7 +38475,8 @@ "SenseId": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37985,7 +38562,8 @@ "SenseId": "e784f30d-32a6-4959-bd12-0eec6804bfa7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38035,7 +38613,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "026ea7ef-fa84-4805-a9ee-6ade8a5afea8", @@ -38058,7 +38637,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "33f29f92-bace-47d8-8596-91ba39570791", @@ -38081,7 +38661,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "59922af6-e73d-4d5f-afb3-4f3e0ff0d7fc", @@ -38104,7 +38685,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e455d9f3-c537-4fcc-b401-ab5f0d6e7a4e", @@ -38127,7 +38709,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38177,7 +38760,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "9b7682f7-c63b-4a46-982d-b9d011a84753", @@ -38200,7 +38784,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "4cef05db-5023-4826-a037-69997622e7d0", @@ -38223,7 +38808,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e8f56462-bd82-46dd-b660-56268c759606", @@ -38246,7 +38832,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38313,7 +38900,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38363,7 +38951,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38413,7 +39002,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38503,7 +39093,8 @@ "SenseId": "8c958583-0e11-4b66-b2c9-c3e570712355", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38600,7 +39191,8 @@ "SenseId": "7435327a-54ab-489b-912c-6cd4fcd4c701", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "56a695df-24fd-48b7-8fe5-e174a6a5ad31", @@ -38640,7 +39232,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "151fa841-74d5-4fd3-9159-00b98f673b22", @@ -38663,7 +39256,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a1db0f0d-f8e1-4edd-b6f6-14ae2441c385", @@ -38686,7 +39280,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38782,7 +39377,8 @@ "SenseId": "50029fb1-1687-4e3c-bb18-f56a4fff5ef0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38868,7 +39464,8 @@ "SenseId": "3f89b93b-bb37-4daa-acec-36437ce585cb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38918,7 +39515,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39001,7 +39599,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d7eddc38-92ea-4a69-90f3-f9d98070cfc4", @@ -39024,7 +39623,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39084,7 +39684,8 @@ "SenseId": "99c14abc-9fbf-48a4-931a-f30d37463fd8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39177,7 +39778,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39229,7 +39831,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39312,7 +39915,8 @@ "SenseId": "c65d2e3c-2af7-4397-9fc7-9513aec457bf", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7bb75da8-2d6d-4c36-a2ae-fdca2e05fccf", @@ -39335,7 +39939,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39443,7 +40048,8 @@ "SenseId": "66caea57-5e26-41fb-9075-e204d5d3c6a4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "19f70685-7f84-4c67-97bd-39c148b32a3d", @@ -39483,7 +40089,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39552,7 +40159,8 @@ "SenseId": "03ae5c91-0727-41a3-9667-dbd3115bf69e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39621,7 +40229,8 @@ "SenseId": "4da51546-5eef-463c-b1be-526c4b34bc36", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39683,7 +40292,8 @@ "SenseId": "0515b9b2-9f91-415e-9081-1ffa59094bac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39743,7 +40353,8 @@ "SenseId": "42c8d478-acca-448c-a512-3dbcd2d3f34c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39805,7 +40416,8 @@ "SenseId": "98996975-bc63-4c87-a7b7-79813e098bdc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39872,7 +40484,8 @@ "SenseId": "aa95d4f9-9ac2-432e-90e6-23b14f857d49", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39964,7 +40577,8 @@ "SenseId": "91688c53-43b6-4ecc-9194-bb960b61155b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40056,7 +40670,8 @@ "SenseId": "16a4d77d-f9ea-489b-ac07-bead9ecd8304", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40123,7 +40738,8 @@ "SenseId": "bb5431f8-9a7d-400b-90e3-176019ee4836", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40201,7 +40817,8 @@ "SenseId": "2f9dbe01-d3b5-4945-849e-797f9bc54d7f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40286,7 +40903,8 @@ "SenseId": "fb2f2bf4-bc58-4a1e-a4bc-fddad7670996", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40362,7 +40980,8 @@ "SenseId": "8637487d-15dc-4ea3-8a29-b69137af0d60", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4c2747b8-cffb-4030-8a96-bab2a7d514bc", @@ -40394,7 +41013,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40438,7 +41058,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "14713929-5278-41e9-82d2-7832394146c8", @@ -40452,7 +41073,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40521,7 +41143,8 @@ "SenseId": "6ef2f45c-a585-482a-b99f-32aaa9f0b91e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40588,7 +41211,8 @@ "SenseId": "92947ad8-fa32-4f8a-8bb7-5328ea99a859", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3ce820a3-cad2-4877-a735-e0ef244edba4", @@ -40644,7 +41268,8 @@ "SenseId": "3ce820a3-cad2-4877-a735-e0ef244edba4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40713,7 +41338,8 @@ "SenseId": "d3b00031-dcd0-45f4-ae35-ae7fa76830dd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8e87bcf4-8ce8-4cb5-9de7-543122c7fda2", @@ -40736,7 +41362,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40808,7 +41435,8 @@ "SenseId": "f3d8d3ed-b947-4fc4-baaf-90824ff64ae3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40877,7 +41505,8 @@ "SenseId": "ad99f7bd-09ab-4b5d-8043-6c59d31f62c7", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "01dafaba-c6cc-4d16-92a1-cded047655cf", @@ -40900,7 +41529,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40983,7 +41613,8 @@ "SenseId": "2912198b-fb50-4312-8458-7ea24b423fc9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41052,7 +41683,8 @@ "SenseId": "da536137-5182-4e26-94bc-6830787b1a7a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41121,7 +41753,8 @@ "SenseId": "cd54851f-e56c-42cf-b34e-32c7cfd30702", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6c626dd8-43ba-47a7-a415-35c43f322f31", @@ -41144,7 +41777,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -41223,7 +41857,8 @@ "SenseId": "dea34b42-5731-4d82-82b0-d6748f0234b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41285,7 +41920,8 @@ "SenseId": "e417aa16-cff4-4288-835d-2da5443630eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41347,7 +41983,8 @@ "SenseId": "b9767f89-5b00-4986-8c3a-018ea8d05d85", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41397,7 +42034,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -41485,7 +42123,8 @@ "SenseId": "1674d7bb-216f-4b4e-b61b-15cc84c420e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41547,7 +42186,8 @@ "SenseId": "cc5dde39-7eb8-41f1-a833-564569ccd28b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41616,7 +42256,8 @@ "SenseId": "20cf4edd-301c-4989-86b7-de760562ba4e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0b996a63-cfca-49ce-9717-5b7b12d34c58", @@ -41639,7 +42280,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -41725,7 +42367,8 @@ "SenseId": "e8764c07-d5ea-42d5-b86c-d8e9979ab798", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "de112476-c4a7-4606-ac3c-5e0e44d9aa39", @@ -41765,7 +42408,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -41827,7 +42471,8 @@ "SenseId": "07b38b92-3a89-421b-befa-15fad6569e32", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41905,7 +42550,8 @@ "SenseId": "6aa3269d-8c92-4daf-b74e-5c8adc0a4fc1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41974,7 +42620,8 @@ "SenseId": "983b1d9f-0995-402b-bdf1-9925d8044db7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42043,7 +42690,8 @@ "SenseId": "ad4b7a60-ba81-464e-becf-6226fbf153bc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42112,7 +42760,8 @@ "SenseId": "6b525967-2c84-492b-b802-08372872cdf5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d33f8677-dabf-458f-80a8-e606bdb4cb0c", @@ -42135,7 +42784,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -42197,7 +42847,8 @@ "SenseId": "1229547d-d9de-4523-ba1e-891053df36a8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42276,7 +42927,8 @@ "SenseId": "3a89870c-b27f-490e-bed9-6f03a8074d9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42355,7 +43007,8 @@ "SenseId": "703d0fd4-773c-4915-99f6-0f9a461290f8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42427,7 +43080,8 @@ "SenseId": "98b0f1d8-b3f8-4876-9ec5-17e28a80a8b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42489,7 +43143,8 @@ "SenseId": "0a80dcf6-b583-4c1f-9e80-b636400cdfcb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42551,7 +43206,8 @@ "SenseId": "8f19f938-d264-4e3a-aa26-502445dd8266", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42637,7 +43293,8 @@ "SenseId": "940376b0-d627-4d5c-82c7-bc77aa4a772b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42704,7 +43361,8 @@ "SenseId": "df45b4f2-25bd-4f90-b89c-3cec51877f7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42785,7 +43443,8 @@ "SenseId": "e89b6243-a7c0-48c2-b34c-1bf1fc057d85", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42852,7 +43511,8 @@ "SenseId": "2d93aa5f-85c0-4262-a073-4c52725df0ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42944,7 +43604,8 @@ "SenseId": "14656f11-c542-4d0d-a8d8-1bf4404d8a50", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43030,7 +43691,8 @@ "SenseId": "b0b51446-4aca-4563-afde-fece60b50110", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43109,7 +43771,8 @@ "SenseId": "e9e0b4cd-f43e-4782-99e4-ebdbb9beface", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43178,7 +43841,8 @@ "SenseId": "6f252789-f43e-4ab9-861b-24a34a80be54", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43247,7 +43911,8 @@ "SenseId": "98a00a46-22ea-43b9-9c91-30592f12e9b8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43316,7 +43981,8 @@ "SenseId": "09e43ed4-56f0-486c-9716-df293f95bbc2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43385,7 +44051,8 @@ "SenseId": "21d335a6-7d87-4e70-ac02-23010d17dcf2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43447,7 +44114,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -43514,7 +44182,8 @@ "SenseId": "ad5209b6-e450-44ea-9e26-7843d1400eef", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43581,7 +44250,8 @@ "SenseId": "1a2af823-093d-4226-b1af-71906c968a91", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43667,7 +44337,8 @@ "SenseId": "fbdc42ce-d4b0-45b8-8385-d9096064ba6f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43759,7 +44430,8 @@ "SenseId": "45ef7e48-d380-41f2-9ec2-7ce2f5616944", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43821,7 +44493,8 @@ "SenseId": "a5cf564d-fa0d-4818-94dd-e542b59f80a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43892,7 +44565,8 @@ "SenseId": "f6191876-68d6-4e06-877f-24ef94aa31d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44004,7 +44678,8 @@ "SenseId": "27e52026-b6f1-47b3-a588-e7891b63d80f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44073,7 +44748,8 @@ "SenseId": "7639dce1-8ea5-40de-b8e9-681656497f59", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "94a44008-2b57-45cf-abf8-56a29b881810", @@ -44096,7 +44772,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44188,7 +44865,8 @@ "SenseId": "f1d582f4-f8a1-4e6c-99f3-039650900166", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44278,7 +44956,8 @@ "SenseId": "cbe5cf38-4025-4302-a67f-f288ae0d0b1f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44340,7 +45019,8 @@ "SenseId": "a87fe186-90f5-4664-b096-faa0c8d73c83", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44411,7 +45091,8 @@ "SenseId": "a48b6a25-3b5b-4749-b75c-5b54f2465c2f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ec56155f-e5b8-435d-a475-7a774c86a3d3", @@ -44426,7 +45107,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44486,7 +45168,8 @@ "SenseId": "3ffb5f73-0470-40c2-b53d-79dcdd45d2a7", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4c579b8c-15d9-4217-91d2-a801e123a806", @@ -44526,7 +45209,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44595,7 +45279,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44657,7 +45342,8 @@ "SenseId": "b2804ad1-af28-4a1a-9e64-4219db3dfd42", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44726,7 +45412,8 @@ "SenseId": "ea0b55a0-af6b-4491-af06-4fa4ca2f95c7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44802,7 +45489,8 @@ "SenseId": "48671a5c-801b-4f46-b57a-33a713431e3e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44862,7 +45550,8 @@ "SenseId": "611bc6d1-791c-4d82-a45f-7721e8b7b7cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44924,7 +45613,8 @@ "SenseId": "122c9804-0c81-46bf-a059-eff5a71114d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44986,7 +45676,8 @@ "SenseId": "45cfd084-6fcc-4918-8aa8-1f448a585505", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45045,7 +45736,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45135,7 +45827,8 @@ "SenseId": "a0e195ba-db0d-4e06-8512-0d683e9d9cb5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45212,7 +45905,8 @@ "SenseId": "88f99db9-c0c5-44b5-a9af-b2c4f61fe87f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45274,7 +45968,8 @@ "SenseId": "7bbab562-1e09-4b3c-84ce-f59fbfe201ae", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45352,7 +46047,8 @@ "SenseId": "a625dc05-4f89-44fb-a88a-3e2f564442dd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2ed3a10f-6c6d-40b2-b807-38bbe00a07a0", @@ -45384,7 +46080,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45446,7 +46143,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45532,7 +46230,8 @@ "SenseId": "461c78a8-d2b1-4d57-9c9a-bc14e85364d1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9b148078-a552-4b81-91fa-c5313a4badc9", @@ -45564,7 +46263,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45633,7 +46333,8 @@ "SenseId": "ef7144af-9ed2-45d2-8ae0-5e8f11d5cce5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45695,7 +46396,8 @@ "SenseId": "f80ea820-9403-463b-aaf5-e0e7747d95d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45745,7 +46447,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45814,7 +46517,8 @@ "SenseId": "2c63aca2-095f-4b6c-a2ad-f0b45abc4345", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45876,7 +46580,8 @@ "SenseId": "a4b55442-7b5f-4da4-8df5-f41a07a7a07a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45943,7 +46648,8 @@ "SenseId": "8d2938b5-66df-4628-a5d2-331356818b90", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e4f8f769-2814-4cf2-b98d-b03db5840f52", @@ -45966,7 +46672,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46028,7 +46735,8 @@ "SenseId": "8af45d7c-067b-4bac-9eb4-0c0e6bd35c9c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46078,7 +46786,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46128,7 +46837,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46197,7 +46907,8 @@ "SenseId": "89e08ce0-76fe-4600-909c-a6ef6ddc369f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46275,7 +46986,8 @@ "SenseId": "7be81c0e-c674-4ffc-8c2e-e74e5f87a429", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46354,7 +47066,8 @@ "SenseId": "1f2bfb53-00f2-4797-9b6b-e516e0ce179f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "52d378cc-8bee-46e9-be52-68d791d04080", @@ -46376,7 +47089,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46438,7 +47152,8 @@ "SenseId": "3fbf73de-bc50-4b0e-a81d-4d4a7274fe31", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46507,7 +47222,8 @@ "SenseId": "5e8265a3-3165-4af9-a937-69e5f2a6139a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46572,7 +47288,8 @@ "SenseId": "efc09d29-c9cd-465c-90dd-e7b1573aa8c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46651,7 +47368,8 @@ "SenseId": "e15307e9-af9b-4c96-b500-7da6cae75fc3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46718,7 +47436,8 @@ "SenseId": "c6142fea-e652-40b7-b102-80fa25f41171", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46840,7 +47559,8 @@ "SenseId": "db1b84b1-735e-4654-b942-bf0785e5c957", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46942,7 +47662,8 @@ "SenseId": "fb463714-a764-41a6-930d-72042a2d09ec", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "75e9c0e7-e53d-45b6-84cc-09eb21401f99", @@ -46965,7 +47686,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b37cebbd-6125-438b-aebd-e65174d9f464", @@ -46988,7 +47710,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e3873582-d497-4056-8de1-fc93329a7edf", @@ -47011,7 +47734,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -47096,7 +47820,8 @@ "SenseId": "ec144453-8e8a-45cc-b506-495ca91ba00f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47180,7 +47905,8 @@ "SenseId": "4e518d15-c861-4f3b-bd03-c757d9598bf8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47242,7 +47968,8 @@ "SenseId": "8910df53-b949-4206-9f66-bf799a42c9cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47302,7 +48029,8 @@ "SenseId": "11782e46-c080-4795-843b-96fb819cba28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47354,7 +48082,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -47404,7 +48133,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -47464,7 +48194,8 @@ "SenseId": "319b5368-715d-4ff1-a6f5-01de219b6be7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47588,7 +48319,8 @@ "SenseId": "38b1819b-80b8-4894-992e-80f3da0b48a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47666,7 +48398,8 @@ "SenseId": "0388212f-ad6d-42ce-a72f-4441945f5547", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47728,7 +48461,8 @@ "SenseId": "1d53a476-c543-4f58-bc95-92ac73bcee5a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47824,7 +48558,8 @@ "SenseId": "d7ff011f-0022-4533-902b-56e93efdab6a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47932,7 +48667,8 @@ "SenseId": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47994,7 +48730,8 @@ "SenseId": "e67054cc-f854-4ea7-b572-aade7b6ad1cf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48088,7 +48825,8 @@ "SenseId": "10f0881e-85ec-4486-ac2f-e6ea88516505", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", @@ -48152,7 +48890,8 @@ "SenseId": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48240,7 +48979,8 @@ "SenseId": "b6779c26-0a60-4de2-b6f2-110d923d6882", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48328,7 +49068,8 @@ "SenseId": "a6beb173-ee69-45f7-ad58-2834e81cc4f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48390,7 +49131,8 @@ "SenseId": "e3433c1a-13bb-4aa1-ade7-cc7f2ac780c2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48487,7 +49229,8 @@ "SenseId": "4f53bb12-ebc7-4893-af3f-efc435cb6333", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48556,7 +49299,8 @@ "SenseId": "f772d5cf-e5e9-4a1b-a3a1-ddbe27ae2f14", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "60b0f55b-d605-4ca1-a1cd-c8e82a49707e", @@ -48579,7 +49323,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -48672,7 +49417,8 @@ "SenseId": "84a2be95-35ad-49a6-8366-4f77b22b7737", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48743,7 +49489,8 @@ "SenseId": "89ce983e-4216-43b0-8096-a826d80c20e7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48853,7 +49600,8 @@ "SenseId": "1f32c1cb-884c-49ef-b610-9179b3454c30", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ee07fe98-80ff-4cc7-a2ec-e27deeb7df23", @@ -48876,7 +49624,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -48926,7 +49675,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -48995,7 +49745,8 @@ "SenseId": "c1eecd5c-342e-4d45-9ae0-f7351d18ed55", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49062,7 +49813,8 @@ "SenseId": "fcd8d925-5562-419a-a0f7-729609a2a7fe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49138,7 +49890,8 @@ "SenseId": "b20a8b8c-6dbe-404b-9e5f-5a1803329125", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49216,7 +49969,8 @@ "SenseId": "5d316f71-9f38-4273-9963-c04cc1446167", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49285,7 +50039,8 @@ "SenseId": "1063b7d7-a239-46cc-b345-96631b31fede", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49354,7 +50109,8 @@ "SenseId": "34976250-13b2-4ddf-b6da-d9737e7365ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49414,7 +50170,8 @@ "SenseId": "43c943ac-02b2-438d-9c5c-0c8dc5f5495d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49476,7 +50233,8 @@ "SenseId": "85e6f588-f11b-4c33-a357-397479f3d9ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49538,7 +50296,8 @@ "SenseId": "f2cdf68d-32bc-4d0d-9adf-050026c3c84b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49609,7 +50368,8 @@ "SenseId": "bf91ed99-0560-4fb0-b3ef-4b6bc1888b80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49678,7 +50438,8 @@ "SenseId": "c04a03f5-5139-4ee7-b9c7-c49ae92c8e2f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0822131f-95c9-4c5b-b28a-f7203db30f55", @@ -49701,7 +50462,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e9000da3-e344-44b0-824d-b9977e535d49", @@ -49724,7 +50486,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -49800,7 +50563,8 @@ "SenseId": "0f531ecf-0f20-44fa-a102-1d2f124709e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49876,7 +50640,8 @@ "SenseId": "06bc691e-5a54-4a35-ab95-849b45b7721a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49945,7 +50710,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -50005,7 +50771,8 @@ "SenseId": "0daee1c3-bf0a-4a64-8d6a-705ab4ab5c14", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50065,7 +50832,8 @@ "SenseId": "d70e028c-2bf8-4dcc-aa25-54f372ec9dd4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50151,7 +50919,8 @@ "SenseId": "f96c1723-a60f-42db-83da-de68fff7b641", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50229,7 +50998,8 @@ "SenseId": "11d1070b-3b98-4b55-9242-02b6674d2a78", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50289,7 +51059,8 @@ "SenseId": "a46c1374-9f24-47bb-8a61-db6f0e7fc85e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50359,7 +51130,8 @@ "SenseId": "ae58f54b-7f05-4d1d-a022-02ebc5405989", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50428,7 +51200,8 @@ "SenseId": "486fcf0c-de3f-4a30-bf62-dd75b7e096d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50497,7 +51270,8 @@ "SenseId": "c9990577-4e77-4b4f-aed5-3ecbbf15a1f6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50566,7 +51340,8 @@ "SenseId": "97315f66-6358-4771-96f7-4ee76436ff8f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50651,7 +51426,8 @@ "SenseId": "a8fd0ff5-f64b-4419-9154-1be2e583c29c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "322b1569-3d3c-486d-91ad-615a6a43cd52", @@ -50674,7 +51450,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -50753,7 +51530,8 @@ "SenseId": "35278c37-466e-4194-9da0-faae2cd7908d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50832,7 +51610,8 @@ "SenseId": "ec8fb8f1-c0bd-4c7b-a67c-2e48a1bb044b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50918,7 +51697,8 @@ "SenseId": "dd98267d-b7b7-465c-a61d-128f0ec3dd27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51004,7 +51784,8 @@ "SenseId": "5adef85a-9ff2-477b-a967-a5d519664767", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51056,7 +51837,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -51125,7 +51907,8 @@ "SenseId": "889a81df-a63f-4e76-93b9-7873aab77714", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51194,7 +51977,8 @@ "SenseId": "aebb266e-130f-433e-adce-2399c4f7ffdd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51244,7 +52028,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -51322,7 +52107,8 @@ "SenseId": "70a1de9b-c5eb-4ca7-a214-1b33f85127f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51401,7 +52187,8 @@ "SenseId": "b48232bf-44e2-48f4-9c2a-6a0136d092df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51485,7 +52272,8 @@ "SenseId": "824ec104-b330-42f6-b353-123cb03998b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51552,7 +52340,8 @@ "SenseId": "4cb5708d-0ba7-46f7-afbe-13d9d987ad91", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51619,7 +52408,8 @@ "SenseId": "55345d98-6fd0-484b-950d-e2fa12b6aec4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51703,7 +52493,8 @@ "SenseId": "305ecbd1-ba98-4ff9-8bad-985b4e1f48ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51772,7 +52563,8 @@ "SenseId": "b096a890-d21c-4734-b0ef-2c8ef0de6ea5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51848,7 +52640,8 @@ "SenseId": "605f204e-b617-44b4-9732-995b23d1a14f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51936,7 +52729,8 @@ "SenseId": "87b14641-5673-443e-938a-2700deea5b0a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52020,7 +52814,8 @@ "SenseId": "14af0b49-0487-46f8-ad04-1fc2a860f289", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52089,7 +52884,8 @@ "SenseId": "41724d8b-53b5-4d0e-af28-3c864b0e39b1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52167,7 +52963,8 @@ "SenseId": "752f6980-2888-411b-bd45-a37bad94f428", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "1132c791-3980-4fe1-af2e-99e766f8ac01", @@ -52182,7 +52979,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "6ad40996-9427-4951-8596-61a482180cf5", @@ -52216,7 +53014,8 @@ "SenseId": "6ad40996-9427-4951-8596-61a482180cf5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52295,7 +53094,8 @@ "SenseId": "57945f8a-40d5-4ca4-9c89-f8cecc68f8b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52374,7 +53174,8 @@ "SenseId": "bdb7385d-b828-4b3a-95c3-6392cf178925", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52441,7 +53242,8 @@ "SenseId": "6114e22f-0bf4-4987-97f0-e4f9e4fc09aa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52503,7 +53305,8 @@ "SenseId": "2083395f-5ad8-47e1-84da-9570b2571584", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52582,7 +53385,8 @@ "SenseId": "eb4e8cdf-de54-4ee4-89d4-5fab25b9c7c3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52644,7 +53448,8 @@ "SenseId": "6f250ea0-f41e-40e9-9ab4-c5c26b1e52e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52713,7 +53518,8 @@ "SenseId": "1c8cae0e-aa0b-486b-a195-55538dbe67df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52775,7 +53581,8 @@ "SenseId": "cf09ea68-25fe-423a-b238-edd3ca05e9b6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "60561d0d-5be7-43af-b3f7-619b74510ef0", @@ -52797,7 +53604,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -52873,7 +53681,8 @@ "SenseId": "888c502e-7006-4841-9087-e8500209b257", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8c04a4dd-084f-4496-bb4b-76429767a4d7", @@ -52915,7 +53724,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -52967,7 +53777,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -53036,7 +53847,8 @@ "SenseId": "7b087c80-53a1-41e8-ad08-7e5aea18410c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53098,7 +53910,8 @@ "SenseId": "bae12644-8d47-42e6-8fce-28076b38da88", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53167,7 +53980,8 @@ "SenseId": "d2673bb4-023b-4497-838c-3be9db01dfc6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53236,7 +54050,8 @@ "SenseId": "c4c668f4-1dad-4606-a6d0-14b5ed1684e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53314,7 +54129,8 @@ "SenseId": "462d9ee6-1d42-409f-824e-5a25e6ac1a48", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53364,7 +54180,8 @@ }, "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -53433,7 +54250,8 @@ "SenseId": "e59940fe-9ebc-4531-8f0f-606d65db189c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53500,7 +54318,8 @@ "SenseId": "1882c819-4011-4b47-ba67-4af189d622da", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53569,7 +54388,8 @@ "SenseId": "1cb19796-f0b4-459b-80ed-4ed620027d8e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ad086c20-5484-4369-a988-86d1bee667a9", @@ -53592,7 +54412,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -53671,7 +54492,8 @@ "SenseId": "0de5de90-4272-4d51-878c-12b83a619769", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53740,7 +54562,8 @@ "SenseId": "11b748dc-ab4a-4525-9cbb-a6de4b85caf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53802,7 +54625,8 @@ "SenseId": "3c4ba6f1-e3b9-41f4-8331-47704488975f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53871,7 +54695,8 @@ "SenseId": "5da5191e-c7c9-4c91-b4eb-16e52fd275ae", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2392de10-0208-4840-9154-35f146b14662", @@ -53894,7 +54719,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -53973,7 +54799,8 @@ "SenseId": "2b1557be-9bd5-42d7-87da-7e53334a49f1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54023,7 +54850,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -54083,7 +54911,8 @@ "SenseId": "43584f6e-c0da-49e1-b3ae-2f3c5dfa0618", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54152,7 +54981,8 @@ "SenseId": "66347a27-02b1-4634-9e15-6e558eea1975", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54221,7 +55051,8 @@ "SenseId": "9854719e-fc52-413f-bd46-923c7ed16dc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54290,7 +55121,8 @@ "SenseId": "0ebd98cc-38b8-4548-8f65-85df6f081421", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54359,7 +55191,8 @@ "SenseId": "70922f18-954d-4d45-838b-9e8add104260", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54421,7 +55254,8 @@ "SenseId": "615cba3f-626c-411f-a90c-bb76ca15d1f5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54499,7 +55333,8 @@ "SenseId": "309c1c0c-cb5e-466b-a081-427e61ca781b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54568,7 +55403,8 @@ "SenseId": "75eada5f-2469-4558-ab57-256655ef86d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54630,7 +55466,8 @@ "SenseId": "9acfd40f-6073-4cb3-b6e4-38be96b09fb8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54672,7 +55509,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -54768,7 +55606,8 @@ "SenseId": "0aed8037-a007-49e4-9953-3aab76aa6f21", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fe140ec7-3093-4e13-99b5-9d34e707c2c8", @@ -54800,7 +55639,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -54896,7 +55736,8 @@ "SenseId": "214820fd-bc1f-4271-9191-2be4725a8e78", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54965,7 +55806,8 @@ "SenseId": "165d58e1-9723-4410-9075-7f30d84d20ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55034,7 +55876,8 @@ "SenseId": "772629ab-f835-4320-9b39-0e243b405e41", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55103,7 +55946,8 @@ "SenseId": "b8e47d4a-1a2e-4ebe-9de1-5dfc1ea46e89", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55202,7 +56046,8 @@ "SenseId": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", @@ -55266,7 +56111,8 @@ "SenseId": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55344,7 +56190,8 @@ "SenseId": "21b1db45-dee8-44d8-a566-eee8e8705670", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55406,7 +56253,8 @@ "SenseId": "5c7c257e-0536-4cc9-bcd7-1e00db08655b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55475,7 +56323,8 @@ "SenseId": "861141fa-1b5e-4a3d-9f45-7f0d0ea8af4a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55542,7 +56391,8 @@ "SenseId": "bdfdd59e-ed0a-4ae0-9c8e-9e6f7a334597", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55604,7 +56454,8 @@ "SenseId": "98e18f17-178e-41c1-bc63-3816771bb6d1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55656,7 +56507,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -55725,7 +56577,8 @@ "SenseId": "63f05f21-fbeb-434d-8077-9437deda278a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55827,7 +56680,8 @@ "SenseId": "22b81191-b1d1-4237-8dcd-3f702b915b39", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55896,7 +56750,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -55958,7 +56813,8 @@ "SenseId": "dcfe92de-cfe6-42ed-8b46-531865b930e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56027,7 +56883,8 @@ "SenseId": "bc7bf292-711c-4bf3-8525-beee57ca6e80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56096,7 +56953,8 @@ "SenseId": "bcc80d0b-d814-4902-8d8a-87ffec430eaa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56158,7 +57016,8 @@ "SenseId": "87920a43-1881-459f-8c78-1cffc1b0bdf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56227,7 +57086,8 @@ "SenseId": "040f83f5-5fe3-41ee-a842-4b68fff56408", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "852eeee5-cde7-4ed8-8dde-6b44e024bbf0", @@ -56250,7 +57110,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -56312,7 +57173,8 @@ "SenseId": "70a4dfae-de3d-4145-981c-36f0b64f6ff3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56374,7 +57236,8 @@ "SenseId": "92397de3-9477-4955-8c94-c40a0bf6fe2d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56474,7 +57337,8 @@ "SenseId": "468a08fd-147d-413b-9293-0c15ad234fdb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56551,7 +57415,8 @@ "SenseId": "d947c334-dc46-4a84-a6ad-7ac54d5b0cca", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56620,7 +57485,8 @@ "SenseId": "bb8e6660-085a-49ea-9abe-d83b4a21ec9b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "1e0b35df-2ff6-4377-93af-b1a9d46e828d", @@ -56643,7 +57509,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -56712,7 +57579,8 @@ "SenseId": "feb3247b-c2bc-4efa-a83e-148624d67b3f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56781,7 +57649,8 @@ "SenseId": "ba5ea089-ff71-4a77-918b-8d4e53457026", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "aaef54b6-11fd-4168-98ba-34a318302138", @@ -56804,7 +57673,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -56873,7 +57743,8 @@ "SenseId": "ef3e6d0f-d7b6-4da6-bae0-b550acc9c2a3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56935,7 +57806,8 @@ "SenseId": "417f91fc-c905-46ae-a30d-a9c7dcbea044", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a6723888-7ae9-4164-b4ca-eb34c31d1227", @@ -56958,7 +57830,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57027,7 +57900,8 @@ "SenseId": "1c7f7bef-ff98-4eae-a377-d1249ab9a97f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57096,7 +57970,8 @@ "SenseId": "efa90080-56eb-4e15-a23b-b4eb8b46e3c6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57165,7 +58040,8 @@ "SenseId": "ea684ee3-06d3-4063-afbb-43f292bab934", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57234,7 +58110,8 @@ "SenseId": "5303273f-e59f-4559-a7b9-3ed8c67e51b9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57312,7 +58189,8 @@ "SenseId": "3b1b4dd2-b71d-475c-b4ed-9029d40d6706", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57374,7 +58252,8 @@ "SenseId": "8de9acbd-0b74-4049-953c-071c405075b0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57443,7 +58322,8 @@ "SenseId": "12ce5655-1077-43f3-a428-865c2382c5e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57531,7 +58411,8 @@ "SenseId": "bd155a2e-4da5-4494-b51f-f7bc9c45af90", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8b7f1749-dcc7-449d-8cf4-0f6e4388567d", @@ -57554,7 +58435,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57625,7 +58507,8 @@ "SenseId": "0c5b6e48-e724-4096-8551-38adf6522032", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57694,7 +58577,8 @@ "SenseId": "357da00b-4a0a-416b-b7d5-6715c0bcab9f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57771,7 +58655,8 @@ "SenseId": "988e3974-d24e-4b28-a11d-874f58604081", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57848,7 +58733,8 @@ "SenseId": "712de4ef-13ce-4516-a450-4f4e3aa1c027", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57898,7 +58784,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57948,7 +58835,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "364ab0ef-fa39-447f-9c41-d78e853f381f", @@ -57971,7 +58859,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58021,7 +58910,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "2daa296d-5b51-4db0-a4b4-8449bcf151d7", @@ -58044,7 +58934,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58111,7 +59002,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58178,7 +59070,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58228,7 +59121,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3772337f-c06f-4b59-952f-dbef86b873c2", @@ -58251,7 +59145,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "4537b0a3-9b5b-4e72-b418-0552ef04aa72", @@ -58274,7 +59169,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "0b76d8e9-2402-4147-ab7d-b2aebab1da19", @@ -58297,7 +59193,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "01a8a3b9-3c28-409b-ae74-34b50a0ccca8", @@ -58320,7 +59217,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58387,7 +59285,8 @@ "SenseId": "13c46c1a-2ac2-45df-92be-c20dc7e0d86c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "57294a93-e733-48c9-b02a-56cad22c300b", @@ -58427,7 +59326,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58505,7 +59405,8 @@ "SenseId": "f665aec3-2f08-4a10-b642-2f66e15e2bff", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "70bb1144-bbca-4db0-97ad-a74eb8f8b25b", @@ -58537,7 +59438,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "9643cb57-d654-47bd-90d3-a518f9a215c8", @@ -58569,7 +59471,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "06101c3f-a84c-4e12-a07c-dced6a45c73e", @@ -58592,7 +59495,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58677,7 +59581,8 @@ "SenseId": "e00f99ea-0c54-4d3d-8f24-3f8dc374945c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58758,7 +59663,8 @@ "SenseId": "f168eebc-3acb-494f-a2da-d9609f6649b4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58827,7 +59733,8 @@ "SenseId": "ae8a5db3-1ba4-4825-8ee9-29f59d4c08b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58915,7 +59822,8 @@ "SenseId": "f38e8bd0-8595-4387-bbf7-853da1166ab1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "404d6557-8056-4240-bc97-83bfa1d1f1b5", @@ -58947,7 +59855,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59026,7 +59935,8 @@ "SenseId": "d90b15f9-cd4f-457f-bf85-1482092df52f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59095,7 +60005,8 @@ "SenseId": "ecc01f99-48a1-461d-b8b2-46b4c5a30477", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59164,7 +60075,8 @@ "SenseId": "b3b494e2-9733-4146-a050-7d78eb3a38ce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59226,7 +60138,8 @@ "SenseId": "32e7178d-8d3c-464c-9a73-999018fc8600", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59288,7 +60201,8 @@ "SenseId": "641c6360-fd59-4722-bd66-0172e3106381", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59366,7 +60280,8 @@ "SenseId": "0ec79a63-c04d-4cad-89a8-8202b248e9d6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2335ea36-7ae3-4407-96c0-6c56ab0ab85f", @@ -59406,7 +60321,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59492,7 +60408,8 @@ "SenseId": "4b00452e-9f58-40ee-b5bc-144ca16cfa99", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59578,7 +60495,8 @@ "SenseId": "7b534357-4f34-4296-83f7-d34117562e34", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59661,7 +60579,8 @@ "SenseId": "908ddf2c-332a-4e9f-8de1-27614a904271", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0331c633-2be2-47d7-8ff0-1274ed7032b3", @@ -59683,7 +60602,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59762,7 +60682,8 @@ "SenseId": "c4548c5d-eb50-42fc-aa93-d77c26546fad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59831,7 +60752,8 @@ "SenseId": "f03e03a1-ebda-4820-b607-fdf73a942456", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59898,7 +60820,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "2c21fc5d-994d-43b6-b2c3-bf6328e19ca3", @@ -59921,7 +60844,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59990,7 +60914,8 @@ "SenseId": "bd970f05-4571-49f5-8d72-9edcb5a29ad9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60052,7 +60977,8 @@ "SenseId": "8b42f1fc-1bc7-45b9-9184-2322751e795b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60130,7 +61056,8 @@ "SenseId": "33678318-e191-47d2-a4a9-dc78b956e157", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60199,7 +61126,8 @@ "SenseId": "0f9ea974-8b29-46fd-b490-063e7f63a89e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60276,7 +61204,8 @@ "SenseId": "32460030-3965-4ee7-a77b-17f8090d2d13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60338,7 +61267,8 @@ "SenseId": "341b8689-f950-49c5-9640-16886ac1afbd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60400,7 +61330,8 @@ "SenseId": "42c30da5-0ade-4f3e-a11d-8d7c275ab9ed", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60461,7 +61392,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60532,7 +61464,8 @@ "SenseId": "31fd829f-9a38-48f3-be66-5673df90f25d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "62b1a7ca-26cd-4c6a-94ce-3db720f3a146", @@ -60556,7 +61489,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60644,7 +61578,8 @@ "SenseId": "388e6630-6231-4ea8-86a6-1a98d2d01126", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c4d3b653-3207-4b86-942e-080107bd75c3", @@ -60667,7 +61602,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60736,7 +61672,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60831,7 +61768,8 @@ "SenseId": "99e2fd45-de4f-443f-83d9-cd97bdf26699", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a8047ab7-12d6-478e-9278-7743d479ec39", @@ -60854,7 +61792,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60933,7 +61872,8 @@ "SenseId": "076b345f-c4d7-4b07-885a-532a69eb125d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61002,7 +61942,8 @@ "SenseId": "5ba8a7d2-70af-4f14-a5ad-278d876ca7d6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61064,7 +62005,8 @@ "SenseId": "9fce6360-d80f-49b6-a498-d3d726f75294", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61143,7 +62085,8 @@ "SenseId": "cfc7cb6e-8204-4830-89ef-aa7830363a26", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61212,7 +62155,8 @@ "SenseId": "3ff43d51-b217-43f3-ab1c-0cb615a286e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61281,7 +62225,8 @@ "SenseId": "aa7a8c63-d69a-4759-87d8-34238f762bfd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e9979cef-9619-4a0f-a40e-0f5fee9c7abc", @@ -61304,7 +62249,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -61356,7 +62302,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -61456,7 +62403,8 @@ "SenseId": "53786682-eef8-4218-90af-5487843ce2b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61535,7 +62483,8 @@ "SenseId": "4f26b963-72b1-4641-982e-ed005da28c13", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "86d323e5-7bc2-49b4-8fdd-6f71388040e6", @@ -61558,7 +62507,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -61643,7 +62593,8 @@ "SenseId": "89941ef6-3dc0-4209-8c58-663a48ff909f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61753,7 +62704,8 @@ "SenseId": "0ab0f6a4-dddc-453f-b697-9b81d146dd74", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61822,7 +62774,8 @@ "SenseId": "6824a970-23bb-4beb-b27f-9eac8bffec68", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61884,7 +62837,8 @@ "SenseId": "415d29e4-86f1-4212-95db-6a46fe5f3113", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61953,7 +62907,8 @@ "SenseId": "995cf936-0b6c-4adf-944b-e4df71b077c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62015,7 +62970,8 @@ "SenseId": "66eb9ca3-95dd-4fe1-9094-63afa7c3e680", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "18d57b4e-3f2e-4610-97f7-aba495ff2487", @@ -62038,7 +62994,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62100,7 +63057,8 @@ "SenseId": "852e2a11-565d-4805-968f-190fd8762284", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62162,7 +63120,8 @@ "SenseId": "34c3242c-a674-4917-8e84-9e6a2accb8c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62231,7 +63190,8 @@ "SenseId": "88565280-c9db-42a1-8127-41bff919d2c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62281,7 +63241,8 @@ }, "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62343,7 +63304,8 @@ "SenseId": "60410caf-4e30-421d-8379-d51dd28fba3e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62420,7 +63382,8 @@ "SenseId": "bc62d271-7625-47f5-8066-fc4fde24cf79", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62489,7 +63452,8 @@ "SenseId": "b91c9f15-752a-43da-91b7-c3cc29b2633c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0092d1f9-866f-4644-a648-bdc723461976", @@ -62512,7 +63476,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62581,7 +63546,8 @@ "SenseId": "6ebf8305-6707-4317-ac40-0f30a3f592fc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62643,7 +63609,8 @@ "SenseId": "5b424532-f191-4a43-ab9b-9750458c38f8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62729,7 +63696,8 @@ "SenseId": "a780e1c6-949e-467a-bd6a-17181cdec72c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62807,7 +63775,8 @@ "SenseId": "e82993d5-549f-41b6-8844-105962d58f45", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62876,7 +63845,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62972,7 +63942,8 @@ "SenseId": "2493ddcf-62d9-425a-8879-e3817c075560", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63024,7 +63995,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "146ced19-5712-4550-b442-89ce02a200b7", @@ -63066,7 +64038,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63145,7 +64118,8 @@ "SenseId": "306efdb8-0e89-4f71-9456-4980caf881ea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63231,7 +64205,8 @@ "SenseId": "dc8c21cf-b752-4ba0-abed-a80e4bd1759c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63300,7 +64275,8 @@ "SenseId": "30970938-00cf-4d44-b45f-b92256f4d132", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63350,7 +64326,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63515,7 +64492,8 @@ "SenseId": "84e5150e-3043-4652-9f64-849cf192fee4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "68e58260-9383-41f8-bb1a-7aa551e89fac", @@ -63555,7 +64533,8 @@ }, "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "91120e17-4e49-43c0-b416-00176448fdd2", @@ -63578,7 +64557,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "fee1a6ff-3d64-44fa-9515-b51e7068b1d6", @@ -63618,7 +64598,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d1e7a1fe-5475-4eae-99eb-d56f7248f6c4", @@ -63658,7 +64639,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "cbad219c-e1bc-479c-877c-c0017a425ac1", @@ -63698,7 +64680,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63782,7 +64765,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63849,7 +64833,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63916,7 +64901,8 @@ "SenseId": "7ff262e6-44c0-407c-bf42-49805e8b6848", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63999,7 +64985,8 @@ "SenseId": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64083,7 +65070,8 @@ "SenseId": "cbcb955f-a907-4e80-89ea-ef01f43eabfa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64143,7 +65131,8 @@ "SenseId": "e306b70f-d7bb-402a-b7bb-ffcd6628c784", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64222,7 +65211,8 @@ "SenseId": "caca5235-796e-488e-b651-93816bb5e38e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64291,7 +65281,8 @@ "SenseId": "01c0dd6b-8bb7-4a5d-98e7-3f2fc550bd0e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64360,7 +65351,8 @@ "SenseId": "e9831e86-8361-44fa-a4df-08394a608984", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64422,7 +65414,8 @@ "SenseId": "aabd42d8-a97a-4377-a2fa-6240fcb9c6b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64491,7 +65484,8 @@ "SenseId": "4a4e6088-2f32-4bb8-a4cc-c5a0b66d9778", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64560,7 +65554,8 @@ "SenseId": "b52cc4bc-7dd7-4336-893f-071ed4fabd7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64629,7 +65624,8 @@ "SenseId": "867f42cd-6511-458c-8659-c84de78e21f9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64698,7 +65694,8 @@ "SenseId": "9998867c-65bf-4126-aecb-73c98e6864a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64760,7 +65757,8 @@ "SenseId": "33fa5883-44e0-4bf6-9181-5ae1dbbbdd17", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64820,7 +65818,8 @@ "SenseId": "cb806a3e-0460-41d5-87e0-519fb87d80cd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64882,7 +65881,8 @@ "SenseId": "5c6f03eb-38ca-403c-abce-77d6572100b1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64944,7 +65944,8 @@ "SenseId": "ea84d2b7-4063-4074-a75c-c8d9e267d3e6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7178a762-8c87-45db-b944-e7edd9e93ddb", @@ -64976,7 +65977,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65036,7 +66038,8 @@ "SenseId": "cd9690f9-7c5e-48a5-b8fb-1c5b1a47e90c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65098,7 +66101,8 @@ "SenseId": "24539709-eea2-44ec-9baa-f90a11eb703b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65149,7 +66153,8 @@ }, "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65216,7 +66221,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65276,7 +66282,8 @@ "SenseId": "dc447c6a-13f0-48ef-a0c3-9ad940af245c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65363,7 +66370,8 @@ "SenseId": "0cba0865-daa8-453e-9d82-08da268cea8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65430,7 +66438,8 @@ "SenseId": "ba2a787f-ed2a-40f6-a418-225c50d3fc52", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": { @@ -65489,7 +66498,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -65548,7 +66558,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65608,7 +66619,8 @@ "SenseId": "ac662c72-e719-47cf-b6a3-a20bfce8186a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65675,7 +66687,8 @@ "SenseId": "86b544d8-af64-4fdd-8677-5c137f6bdd25", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65797,7 +66810,8 @@ "SenseId": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0e99aea0-3a09-40af-ba14-2fe5d0f42961", @@ -65820,7 +66834,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65889,7 +66904,8 @@ "SenseId": "dbc383e0-acd4-458e-86b1-db9668dac4eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65998,7 +67014,8 @@ "SenseId": "2e84850b-05d1-4de0-8db5-4bfeef18f8f3", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a639ec9c-35db-45f5-b3f5-85293483b4cd", @@ -66021,7 +67038,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66107,7 +67125,8 @@ "SenseId": "50757f29-2ed9-4987-ad65-7822e66355ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66181,7 +67200,8 @@ "SenseId": "ce84b386-6ca6-461e-99b0-8df1e879e369", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", @@ -66238,7 +67258,8 @@ "SenseId": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66319,7 +67340,8 @@ "SenseId": "ee429f51-e92f-4d59-9a87-05531b6c7aab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66388,7 +67410,8 @@ "SenseId": "3394d689-385c-40b1-ad04-0256836a3a66", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66468,7 +67491,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66518,7 +67542,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66560,7 +67585,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66652,7 +67678,8 @@ "SenseId": "f0b5bd45-51b9-4280-a34a-aa993749ccad", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b718b6fb-d131-474c-9799-1a805b94c89f", @@ -66675,7 +67702,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66727,7 +67755,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66803,7 +67832,8 @@ "SenseId": "b4a02fc9-2ae5-4c96-ae87-ceec6845871e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66880,7 +67910,8 @@ "SenseId": "dfad5d62-b5e7-46e0-b26e-e062147e72c5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66940,7 +67971,8 @@ "SenseId": "1e0627cb-c81f-4fa9-9b31-f7b364bf443c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67016,7 +68048,8 @@ "SenseId": "22f12a7c-237a-4aec-be5a-9785f8839977", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67085,7 +68118,8 @@ "SenseId": "8abb551d-571b-4612-a4cd-85d065bca104", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67154,7 +68188,8 @@ "SenseId": "df313b4b-f760-4864-a5f8-9854dff3af73", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "33493618-0bdb-4baa-aa80-235f7009c5a0", @@ -67177,7 +68212,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67246,7 +68282,8 @@ "SenseId": "634a8b59-c02c-402f-8387-a6ad5cfc7917", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67315,7 +68352,8 @@ "SenseId": "3f9fe653-77fb-4e5a-9e41-9f1da6877f9b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67391,7 +68429,8 @@ "SenseId": "bfb0f5db-2dcf-4720-bfe9-4f53685c2fa0", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "edad5197-9710-431f-b970-60c3c6ccab59", @@ -67414,7 +68453,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c99b7977-dd4e-4e57-8809-62c65952d51e", @@ -67437,7 +68477,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67521,7 +68562,8 @@ "SenseId": "f93d7fa2-5a29-4a66-96c1-8817f4800897", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67571,7 +68613,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67638,7 +68681,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67705,7 +68749,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67781,7 +68826,8 @@ "SenseId": "0073f2a7-9b27-4e09-a640-992836a26b27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67913,7 +68959,8 @@ "SenseId": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "941c7da8-d6b8-43c5-801b-f2eff707378e", @@ -67955,7 +69002,8 @@ "SenseId": "941c7da8-d6b8-43c5-801b-f2eff707378e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68038,7 +69086,8 @@ "SenseId": "e5999ac9-691d-4b18-a0f9-3bfcece80bf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68107,7 +69156,8 @@ "SenseId": "4b3aed28-7c60-4c92-a7db-dccc8c1a3c0c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "11febd8d-c6dc-481b-a7b7-cc2049d33e5b", @@ -68130,7 +69180,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68208,7 +69259,8 @@ "SenseId": "d2a9a738-926f-401e-973f-a6b8fe2c8469", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68275,7 +69327,8 @@ "SenseId": "dd429be7-30dd-4676-93f5-e6d5bd3c74d7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68353,7 +69406,8 @@ "SenseId": "c3791ccf-4988-4217-ad9c-b417c5a0ae43", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68422,7 +69476,8 @@ "SenseId": "f8441f5e-a2cc-4d41-bded-5bf5723d04e8", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "cb86900f-db45-4b50-95fb-641a1cacb51f", @@ -68445,7 +69500,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68522,7 +69578,8 @@ "SenseId": "07e57d85-0a08-40a8-b523-6abc7b1ce65b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ba2430a3-7f68-4648-ab7f-fb36dd932532", @@ -68562,7 +69619,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68619,7 +69677,8 @@ "SenseId": "d6000cc0-db88-465a-9396-556304110322", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "59e4c607-6f2a-4db2-8c4a-65c90227b5d4", @@ -68633,7 +69692,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68700,7 +69760,8 @@ "SenseId": "925dad47-cb4b-449c-98e4-cceea3111df3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68769,7 +69830,8 @@ "SenseId": "18cc7ade-d219-4a9e-acf0-01aa4d9f051d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68831,7 +69893,8 @@ "SenseId": "6f19ba77-d81e-4695-97e2-64c8b4493c57", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68891,7 +69954,8 @@ "SenseId": "03557652-bd0d-4571-9ae6-08f6e2f9da4e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "381d322a-1473-4da9-96b4-9029da3dae48", @@ -68914,7 +69978,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68986,7 +70051,8 @@ "SenseId": "b8a598b9-d0d4-4f2f-8104-bbd334fc5693", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "bbff3938-1a96-4945-ba82-54a48ba05b30", @@ -69009,7 +70075,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -69087,7 +70154,8 @@ "SenseId": "61068445-c27a-4c9c-8143-7808c5edb94e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69154,7 +70222,8 @@ "SenseId": "ae9a251a-d0bb-44df-b71a-249fbfc73ab5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69223,7 +70292,8 @@ "SenseId": "77484c2b-276c-43d1-9a25-da14726f62d0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69285,7 +70355,8 @@ "SenseId": "df9aa41b-00fd-45c3-97d6-b523dd11dc8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69354,7 +70425,8 @@ "SenseId": "a5de0fd4-03ac-453b-8fa3-8de5d9c42862", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69421,7 +70493,8 @@ "SenseId": "c5f10432-68e2-4f53-b8e0-99775f6a5b4c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69507,7 +70580,8 @@ "SenseId": "83098d50-1738-4b23-9e81-af91ed942dc6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69574,7 +70648,8 @@ "SenseId": "ed1379bc-8a34-4d0a-ba8c-46436283e6e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69643,7 +70718,8 @@ "SenseId": "49224fa1-f421-498a-b1ae-fb1ce0465824", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69735,7 +70811,8 @@ "SenseId": "e535a688-81bd-4303-9087-b7001e6f7617", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2b4cf9c3-f860-430d-bf08-fa0b5b4db0fd", @@ -69758,7 +70835,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -69909,7 +70987,8 @@ "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69978,7 +71057,8 @@ "SenseId": "44452f74-92ff-4438-9feb-203af775465e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70056,7 +71136,8 @@ "SenseId": "bb70b8cd-bead-40e9-a912-6f480ba3875e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70134,7 +71215,8 @@ "SenseId": "256f16b7-b704-452b-b830-945038083837", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70203,7 +71285,8 @@ "SenseId": "8ff6235e-b9c6-40f9-bf32-b229db57e9d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70300,7 +71383,8 @@ "SenseId": "31e99354-68f6-4fa4-9f58-9c0debddd09c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70369,7 +71453,8 @@ "SenseId": "e5840cc6-20ef-4564-ae10-6428aafe6d41", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70429,7 +71514,8 @@ "SenseId": "22bb3b03-c9de-4d51-bd30-7ce30b7041a2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70489,7 +71575,8 @@ "SenseId": "42168c00-4637-4588-99d2-3551d7ce021f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70558,7 +71645,8 @@ "SenseId": "e124eab7-6dfc-425a-ada3-332b4fbd5b85", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "37a98331-4024-40ae-9a5f-f2e8f7113d28", @@ -70581,7 +71669,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -70643,7 +71732,8 @@ "SenseId": "5b4100f7-c8a1-40b1-9b48-a152f5ea057f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70722,7 +71812,8 @@ "SenseId": "2c43a5b2-f283-4e9f-bc26-8a4cbcb666ab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70791,7 +71882,8 @@ "SenseId": "36d939f0-1c27-43d4-ae1c-93dd6dbf721d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70860,7 +71952,8 @@ "SenseId": "8b0b5a08-d690-415f-bc4e-f66f5f76884c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70929,7 +72022,8 @@ "SenseId": "d7c1ad3e-fa9d-4da0-b819-ce5c82060463", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71019,7 +72113,8 @@ "SenseId": "79166c0b-9275-4425-8cf4-94fd058f41d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71088,7 +72183,8 @@ "SenseId": "7ebcd115-fbd1-468d-883d-51b754651a08", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71166,7 +72262,8 @@ "SenseId": "ecfc1d9c-8d25-475a-8881-a12e26ca80b3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71244,7 +72341,8 @@ "SenseId": "35baece7-ece9-448f-aa11-2c2d6752992f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71311,7 +72409,8 @@ "SenseId": "4d43343e-235c-47a8-963e-8ed7a1923e55", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71389,7 +72488,8 @@ "SenseId": "8125329e-2b09-4073-b9d2-566190f5f940", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "af077c3d-81fb-440f-9bc9-28fa60edf42b", @@ -71412,7 +72512,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -71472,7 +72573,8 @@ "SenseId": "0ef06b58-d563-41f4-b376-9ad16943b667", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71534,7 +72636,8 @@ "SenseId": "72479316-4b29-4461-8617-689a52c54e8d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71601,7 +72704,8 @@ "SenseId": "f4b02198-cc6f-42b9-b379-87670671b181", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71672,7 +72776,8 @@ "SenseId": "1b4adbf5-c01a-4e04-92f6-5c8b793281e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71751,7 +72856,8 @@ "SenseId": "36456952-2f14-41c9-9495-eb9f1487b8fe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71813,7 +72919,8 @@ "SenseId": "14a9995f-76c2-4c3c-847a-c62b2248db58", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71875,7 +72982,8 @@ "SenseId": "ade16bb8-0425-4ff0-9a24-8076659a7882", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71944,7 +73052,8 @@ "SenseId": "fb77ce64-c8af-435a-ac39-07b05d2972d1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72015,7 +73124,8 @@ "SenseId": "0448ef5d-878b-498a-9d1d-93fe68eadca9", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "836479c2-ab88-4892-81d9-91e29ecf5dc2", @@ -72055,7 +73165,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "64fb2069-f0dc-4c51-affe-8e6ed5f660ab", @@ -72095,7 +73206,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -72162,7 +73274,8 @@ "SenseId": "f93ba876-786d-4e5d-92b1-efc5bd29d173", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72247,7 +73360,8 @@ "SenseId": "f4ee7520-0ff3-432a-a66f-8bbf6e0d14a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72316,7 +73430,8 @@ "SenseId": "f121b1d7-df23-4725-809b-477f508a3d18", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72378,7 +73493,8 @@ "SenseId": "ef0ec71a-ffef-46be-8306-f1bfdac5e28d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72447,7 +73563,8 @@ "SenseId": "97120ba0-66d8-4012-8c14-169f1d59b0e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72526,7 +73643,8 @@ "SenseId": "cd22832b-fb54-4642-9d51-084ef52d6a3c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72587,7 +73705,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -72677,7 +73796,8 @@ "SenseId": "a4eb22b0-f699-4eef-8156-c514c3071eec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72737,7 +73857,8 @@ "SenseId": "879cc03d-9848-46a6-ba1e-ec3d9de38e7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72799,7 +73920,8 @@ "SenseId": "8cd62410-e96b-493f-8296-5b403542952b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72888,7 +74010,8 @@ "SenseId": "cc33f8eb-6b18-4198-b799-51af781eb949", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72950,7 +74073,8 @@ "SenseId": "e47855c9-9760-478c-9e97-851e893540a6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73012,7 +74136,8 @@ "SenseId": "d580baf8-e5f3-4c90-bbbc-5ee1b78e7b2e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73074,7 +74199,8 @@ "SenseId": "6adddc4c-c9b5-40a1-bd9e-f3a784a9f8bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73143,7 +74269,8 @@ "SenseId": "a9f862a5-44a1-4dbb-a58c-43bbfe24b43b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73212,7 +74339,8 @@ "SenseId": "6c78a046-71b7-498f-b3ea-e48b920eab7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73281,7 +74409,8 @@ "SenseId": "368b3592-de73-4b0b-a65d-654e61cec4ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73367,7 +74496,8 @@ "SenseId": "94bb8014-0932-47e3-a9e3-bc6cac35811c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73456,7 +74586,8 @@ "SenseId": "2d75b87d-a82c-452f-9b8d-2b62f54547f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73544,7 +74675,8 @@ "SenseId": "f9ff4d93-0056-4ed5-b596-c2a754e15795", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73606,7 +74738,8 @@ "SenseId": "14e0886b-48f4-4a78-94bc-3ee0ab625a34", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73684,7 +74817,8 @@ "SenseId": "1bfd809b-9c02-4c32-b618-cd50e06769af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73753,7 +74887,8 @@ "SenseId": "7987d576-84a1-49c9-86f4-8b1933683d4f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73845,7 +74980,8 @@ "SenseId": "d415fe28-d9e0-4c91-ba73-a4179d2edbe2", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4db5aa57-a073-428b-b732-689c302aede4", @@ -73868,7 +75004,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -73947,7 +75084,8 @@ "SenseId": "0b8858cb-989e-41b3-a6fc-79f04fd8dcc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74016,7 +75154,8 @@ "SenseId": "5daf8137-2e36-4e03-bd23-7b41707adcde", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74085,7 +75224,8 @@ "SenseId": "ab4edb17-b51d-4258-b349-4bdfd1dff7d6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74147,7 +75287,8 @@ "SenseId": "3cd74405-3950-4399-872f-dc1ca7d328df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74216,7 +75357,8 @@ "SenseId": "ab5b910f-08b2-4b66-93fd-596b2858cc56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74285,7 +75427,8 @@ "SenseId": "0b80953f-959c-4364-bbec-484c1626a7c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74347,7 +75490,8 @@ "SenseId": "19791fae-9fdc-4d6f-a48f-07875c335123", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74397,7 +75541,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -74481,7 +75626,8 @@ "SenseId": "851805bb-5ca7-4f6e-9f1d-1ee3e47880a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74543,7 +75689,8 @@ "SenseId": "a865c6d4-b15e-4fd4-9493-24405b7f5e5d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6d230db6-8a2f-4132-9e49-1187bf3ff03e", @@ -74566,7 +75713,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -74652,7 +75800,8 @@ "SenseId": "6860e918-e83d-43eb-8424-6b9e630b92fd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74721,7 +75870,8 @@ "SenseId": "5f151b0e-769b-43ea-8a62-ef105f427854", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74781,7 +75931,8 @@ "SenseId": "7bd437c5-f64a-42c2-8e0e-3bc9abcb0cc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74865,7 +76016,8 @@ "SenseId": "1d3819b6-d016-41a6-941c-99244adac796", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74934,7 +76086,8 @@ "SenseId": "bab5b338-8f1e-4850-8077-ab3a1edd6b4e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74996,7 +76149,8 @@ "SenseId": "feddbc06-ceaa-4395-9e93-23220f990226", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75065,7 +76219,8 @@ "SenseId": "f8b04c28-6bd1-4988-8de5-5f02c4a769c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75127,7 +76282,8 @@ "SenseId": "ffe085a6-ebcc-4a15-8564-f006328b0d33", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75196,7 +76352,8 @@ "SenseId": "100834ce-ed34-4f91-b36d-ef47034ec7b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75288,7 +76445,8 @@ "SenseId": "d974749d-666b-4d63-9b8d-156ad768e9b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75350,7 +76508,8 @@ "SenseId": "659a1576-f97c-4613-baec-9e6c64986014", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75412,7 +76571,8 @@ "SenseId": "c95f1739-469b-4753-b871-afe192303f69", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75488,7 +76648,8 @@ "SenseId": "90c935cb-79d1-4644-ad82-74d34cca515c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75550,7 +76711,8 @@ "SenseId": "8cfcb6cb-208e-40dc-ba97-89d7832abeab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75612,7 +76774,8 @@ "SenseId": "495e4687-518a-4bd8-8c2b-66a69dd4b275", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75700,7 +76863,8 @@ "SenseId": "2fdb0790-644f-4d6f-a123-4d88a0f842ea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75767,7 +76931,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -75834,7 +76999,8 @@ "SenseId": "11486f77-4bb3-4882-a1c0-045fb45d216b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75903,7 +77069,8 @@ "SenseId": "8ecaca7b-0fd8-4dda-bc35-3d914fd897a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75972,7 +77139,8 @@ "SenseId": "688c63ab-91b6-43f2-821f-71d3ec409900", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76034,7 +77202,8 @@ "SenseId": "3dc4981b-71d2-4d87-9ba3-b3be486eca63", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76101,7 +77270,8 @@ "SenseId": "23541917-3a2c-44c3-ba49-8970a207eeb6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76170,7 +77340,8 @@ "SenseId": "566a7159-a3f7-4d7e-8878-78da37d657d7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76232,7 +77403,8 @@ "SenseId": "358c3a82-6cb9-4f98-9279-411ed528fb86", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76299,7 +77471,8 @@ "SenseId": "3b4c5a61-8b47-4c5d-8616-070fb2a66296", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76389,7 +77562,8 @@ "SenseId": "05060894-c1ca-462e-8fb4-008eb27df73b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76451,7 +77625,8 @@ "SenseId": "999ab06c-80a3-4baf-998e-63a288376c10", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76539,7 +77714,8 @@ "SenseId": "fde8ceed-ce62-404a-b0ff-89f51bfe846a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76591,7 +77767,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -76669,7 +77846,8 @@ "SenseId": "aac9e30b-ddff-43c7-a81b-ab10fde04118", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76759,7 +77937,8 @@ "SenseId": "ad2de11b-1f83-49d6-b52e-7e4f608bfd6d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76828,7 +78007,8 @@ "SenseId": "b8db0515-daaa-4a7c-a992-5d59faa5ac10", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76880,7 +78060,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -76940,7 +78121,8 @@ "SenseId": "3021e436-8d59-431a-923e-6675fef9338c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77030,7 +78212,8 @@ "SenseId": "635276eb-6ed8-4b78-8c27-204adecdf03c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77107,7 +78290,8 @@ "SenseId": "8431ffc5-7a7a-4959-b414-4f5b8a4f5af9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77203,7 +78387,8 @@ "SenseId": "b113ea41-e7b3-4a5d-a5bc-221da8935393", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77299,7 +78484,8 @@ "SenseId": "e97eb2cc-192e-4975-923f-3c1a6de8df0e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77384,7 +78570,8 @@ "SenseId": "a4f8b6ad-d902-4e14-947e-696ffdc396ec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77451,7 +78638,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -77536,7 +78724,8 @@ "SenseId": "e3029014-e00b-4144-a33c-cf8c91c5ed5b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77639,7 +78828,8 @@ "SenseId": "ff10bede-29cb-4bd1-96bc-c5dd503f8ed6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77727,7 +78917,8 @@ "SenseId": "a4f6c11e-9abb-4bc2-9303-66945fb7e2f7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77794,7 +78985,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -77863,7 +79055,8 @@ "SenseId": "8e191820-913b-4f14-b6ad-c445e44c0a92", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77941,7 +79134,8 @@ "SenseId": "6f7a5db1-0591-4c48-af24-9f9eb2bffca3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78010,7 +79204,8 @@ "SenseId": "80a94d07-3222-4db9-8c81-dc0b5d0f72a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78088,7 +79283,8 @@ "SenseId": "6502591c-41f0-45ea-8126-df8a747c1ee5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78155,7 +79351,8 @@ "SenseId": "e81ec0f7-ef1b-469d-a6a3-6f6dcd5a4b13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78215,7 +79412,8 @@ "SenseId": "78303856-fbc9-49b6-9fb8-487990aacddd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78282,7 +79480,8 @@ "SenseId": "c2c9938c-a798-43e6-a720-5fbb815afaab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78344,7 +79543,8 @@ "SenseId": "0b0a57d5-c230-42a6-89ca-56f677db2e3d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78411,7 +79611,8 @@ "SenseId": "81cd6c56-0d05-45fa-b101-f42183055887", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78487,7 +79688,8 @@ "SenseId": "55a92fd8-0ced-486d-ad63-a44033517c10", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78554,7 +79756,8 @@ "SenseId": "706da4f3-c698-4f9c-a850-aa18ebd8af13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78624,7 +79827,8 @@ "SenseId": "98a8489b-53d8-4498-8c4d-39db5a3351a0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78691,7 +79895,8 @@ "SenseId": "6b2ccc71-e17b-4b23-83ce-c55d93d405e8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78762,7 +79967,8 @@ "SenseId": "65226cdb-93f2-4c6e-9d8a-46efc17f30ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78822,7 +80028,8 @@ "SenseId": "c55a5fd1-efd5-4069-afde-a04f621c695f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78882,7 +80089,8 @@ "SenseId": "b50cb098-aec2-47aa-9a3c-79dc42f5140e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78949,7 +80157,8 @@ "SenseId": "a899604f-eb0f-49aa-bcee-ff35bfb31929", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79026,7 +80235,8 @@ "SenseId": "77e42cbd-8448-4559-90e9-43b6afbef901", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79086,7 +80296,8 @@ "SenseId": "88be5194-7358-4a16-93c0-b40ed7081384", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "12466f00-d0d2-47b3-8500-e63420d61e83", @@ -79109,7 +80320,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79176,7 +80388,8 @@ "SenseId": "57c4f23c-09e7-48b6-8652-ce1d91acaeaf", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fc1d89f8-d156-485e-8a87-1e52f5ff4f54", @@ -79199,7 +80412,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79259,7 +80473,8 @@ "SenseId": "1ac1edb2-e1c0-4132-af39-a8f05581d963", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79326,7 +80541,8 @@ "SenseId": "b91e4033-75fb-44ad-b0ed-76c4684e4933", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79393,7 +80609,8 @@ "SenseId": "5a8385e0-a9bf-4d95-9f19-75704214b093", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79443,7 +80660,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79503,7 +80721,8 @@ "SenseId": "85ae067e-bdc2-41bc-838a-e6859e16ad51", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79570,7 +80789,8 @@ "SenseId": "53c8b485-af48-4e9f-8caa-bcec1e7fe66a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79640,7 +80860,8 @@ "SenseId": "88185ef7-0946-4133-88a3-00efb760e4e1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79719,7 +80940,8 @@ "SenseId": "e2394edc-16a7-4558-ab4f-163a80a8b095", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d73db95c-3883-4848-a2b6-d6b16a9989b0", @@ -79741,7 +80963,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79810,7 +81033,8 @@ "SenseId": "65f74be4-09d7-4350-8d36-d175af72fadb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79877,7 +81101,8 @@ "SenseId": "0b6332ab-c4b6-43e6-a2ec-6e8803e2b524", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79953,7 +81178,8 @@ "SenseId": "41b1a905-20e2-468f-bf42-8f4a963112a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80032,7 +81258,8 @@ "SenseId": "b60d62f9-0ee8-4b1c-8a4a-d79be94424a4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "98e5e096-618a-48f9-a711-52c2f1fefbc0", @@ -80065,7 +81292,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -80134,7 +81362,8 @@ "SenseId": "2333b0a2-0459-4779-adf0-915c7fc632d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80194,7 +81423,8 @@ "SenseId": "ca489d31-36ba-4184-b468-507c8d97ec05", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80261,7 +81491,8 @@ "SenseId": "f95a8db0-2124-443f-bb9e-f1b842f4ee23", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80323,7 +81554,8 @@ "SenseId": "793be52b-5f0e-4dfc-8e66-1ee2087be5e6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "55a0d8b6-b407-41ea-be39-458bdb197473", @@ -80346,7 +81578,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -80415,7 +81648,8 @@ "SenseId": "e81f57e9-8551-4014-81be-661d69576fc9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80482,7 +81716,8 @@ "SenseId": "5927f31d-3bb0-4201-a042-3f46ee311c07", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80549,7 +81784,8 @@ "SenseId": "73a9f31b-4988-40cd-ae46-ac58775ed9ff", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80652,7 +81888,8 @@ "SenseId": "7ddf80ef-f9b0-440c-aa72-ac59d78baadf", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9ba68ba6-39f7-4b0c-a084-7574eb1425c5", @@ -80675,7 +81912,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -80745,7 +81983,8 @@ "SenseId": "eb384ce8-1bb2-47a5-9ba6-fb1e8aa1ab92", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80821,7 +82060,8 @@ "SenseId": "94bc3a57-f0e9-4554-bf68-a1e48f9c1128", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80905,7 +82145,8 @@ "SenseId": "9bf15869-a62b-46b3-97f7-6e9755eefcb9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80989,7 +82230,8 @@ "SenseId": "d69ce9d9-b848-4d2f-ae20-139cc5c39a4f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81068,7 +82310,8 @@ "SenseId": "ea83300d-198d-4a01-a5c7-02d69e8ecb6d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81137,7 +82380,8 @@ "SenseId": "86f75dd8-5f35-49b6-bad7-b56faeee989e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81214,7 +82458,8 @@ "SenseId": "8fb899f4-3e60-4da5-ae2f-bc193922ee2b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81284,7 +82529,8 @@ "SenseId": "0add00b4-215f-48b4-9cd9-4a6ea9cdea9e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81418,7 +82664,8 @@ "SenseId": "97adf28c-c672-4948-8fa6-9a5c480c3d28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81515,7 +82762,8 @@ "SenseId": "1d8b9835-607a-4a5f-a7e0-d36258e48b85", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81575,7 +82823,8 @@ "SenseId": "74ecc498-4610-44d3-8bf1-e94e0a6bf71c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81644,7 +82893,8 @@ "SenseId": "f1b22f18-4fff-468a-b40c-d38b79a4e1e9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81711,7 +82961,8 @@ "SenseId": "9a0e9e70-85ee-4730-abd3-06b24cd7f4b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81789,7 +83040,8 @@ "SenseId": "e7864414-f020-4453-a46a-a2e783a319bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81841,7 +83093,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -81908,7 +83161,8 @@ "SenseId": "87a4f889-f5e3-4a58-b4d2-851f7994fd50", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81968,7 +83222,8 @@ "SenseId": "713209b8-5687-42da-8a9f-0c4194df9c33", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82030,7 +83285,8 @@ "SenseId": "aa3dbb29-03c4-4bbd-9cae-d6d7e43d31c9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82092,7 +83348,8 @@ "SenseId": "be6b1547-a452-400b-8bfb-b4911b6f3cb9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82161,7 +83418,8 @@ "SenseId": "c903a4d7-2f95-4fe9-908b-9878d753aba3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82244,7 +83502,8 @@ "SenseId": "2d50f802-27d2-438a-8761-fa5c754d237a", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "abc99545-0202-43ed-be8f-7264687ca3e9", @@ -82308,7 +83567,8 @@ "SenseId": "abc99545-0202-43ed-be8f-7264687ca3e9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82360,7 +83620,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -82422,7 +83683,8 @@ "SenseId": "01066106-cffb-43a3-8bb5-c62b81b88f48", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "83979ad4-d05c-440d-8979-55584e2cd670", @@ -82445,7 +83707,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -82507,7 +83770,8 @@ "SenseId": "72f793c5-1b2c-43f0-9754-7dc192c6d153", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82576,7 +83840,8 @@ "SenseId": "0eab6051-3e88-4006-94c2-bf686688ff8c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82638,7 +83903,8 @@ "SenseId": "1d7e19fe-4e89-4473-9b0d-b1daf3378f4a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82707,7 +83973,8 @@ "SenseId": "ceccd7ea-1268-4e04-a017-c929c4c6ccf6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82769,7 +84036,8 @@ "SenseId": "2c910b6c-cf3c-4bd5-b975-55217a5e15f3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82838,7 +84106,8 @@ "SenseId": "16f52de8-f3c0-4eb0-bb16-e5ead6689294", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82966,7 +84235,8 @@ "SenseId": "307e4826-e570-4309-a661-0c09ce55f8ee", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e1fae09d-3261-4997-872c-f478b9ee9c7b", @@ -82989,7 +84259,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83058,7 +84329,8 @@ "SenseId": "3e08d5cd-0d4b-4a8d-a2da-30e0c85d4309", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83127,7 +84399,8 @@ "SenseId": "43eb9d22-183b-4e8f-8b62-76711d9d9c4e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83219,7 +84492,8 @@ "SenseId": "7fdfd1bd-5073-4c74-8d99-a0272b0b7817", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83290,7 +84564,8 @@ "SenseId": "01660702-0cff-44c1-bca0-7299180d70d3", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c8df1ccd-8f18-4c95-a4e3-04c0f25a714e", @@ -83313,7 +84588,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83382,7 +84658,8 @@ "SenseId": "fe25565c-e101-47c5-b92e-2f699c7f72c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83434,7 +84711,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83503,7 +84781,8 @@ "SenseId": "f5a038ca-f12d-4786-a7b5-76cb62c0c806", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83587,7 +84866,8 @@ "SenseId": "5f08fd4c-f27d-4990-959b-ded9fc67887f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83654,7 +84934,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3fa0cb72-e407-45bc-a90f-38adc5041151", @@ -83677,7 +84958,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ea73ff7d-66be-492b-8932-ac0a9f169045", @@ -83700,7 +84982,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d063c9c8-0783-4e95-815a-80c2d90a0685", @@ -83723,7 +85006,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a79dae5d-2a1f-466c-91e2-16dd9ba73ea3", @@ -83746,7 +85030,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "0f2ca062-34a9-4860-a750-ba6b2e746e1b", @@ -83769,7 +85054,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83819,7 +85105,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83920,7 +85207,8 @@ "SenseId": "ddff3979-8797-4434-a5cd-d9cc036eec8c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83989,7 +85277,8 @@ "SenseId": "085bd1d5-7d44-49ce-b2f1-d99e07f27725", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84079,7 +85368,8 @@ "SenseId": "e41243fa-94bb-4fea-9ff7-b6fd65218271", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84184,7 +85474,8 @@ "SenseId": "fdd9782e-30a8-4beb-ae64-e0b6a49d4611", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84253,7 +85544,8 @@ "SenseId": "31eae4ca-af01-4b5f-b43e-7030a1904e30", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84329,7 +85621,8 @@ "SenseId": "10bf25f6-c827-4e17-b1a8-77abcee2c7d5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84428,7 +85721,8 @@ "SenseId": "b56a7877-3732-479b-981e-13bde2cf3199", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84488,7 +85782,8 @@ "SenseId": "2a1c424c-57fe-4c5e-bbfa-4a5f46f3ad04", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84540,7 +85835,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -84630,7 +85926,8 @@ "SenseId": "69dd5abb-75c8-43c9-a9de-e9d0a54d0f5f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84680,7 +85977,8 @@ }, "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -84742,7 +86040,8 @@ "SenseId": "ce86d5d3-44ed-43d9-8a49-ec1fcf09b1ec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84809,7 +86108,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -84868,7 +86168,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -84939,7 +86240,8 @@ "SenseId": "af2f2f67-3c07-40eb-b0e9-a6666c9851be", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85008,7 +86310,8 @@ "SenseId": "123cfb49-e66b-4a7e-9997-0d690f191eb1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "510fd70c-f3b5-4486-a739-ea40c1013314", @@ -85031,7 +86334,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -85121,7 +86425,8 @@ "SenseId": "9422102a-ec7f-49ec-a216-c9d0d99a6581", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85190,7 +86495,8 @@ "SenseId": "cc18e2d7-e581-4fae-bdeb-d70406e2c2bc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85259,7 +86565,8 @@ "SenseId": "e18ad564-feaf-4720-86dd-505f28398a27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85321,7 +86628,8 @@ "SenseId": "288640d4-e9da-429d-ae09-563930a2ff83", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85390,7 +86698,8 @@ "SenseId": "50d9fda5-66fd-4161-afdc-e43a62fbf669", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85452,7 +86761,8 @@ "SenseId": "4e05471f-c25c-49b6-bde0-ef91ee7a87d7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85561,7 +86871,8 @@ "SenseId": "d761126d-b38c-44ee-99c5-fcca3c1d8595", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "169ce7e6-e82d-4e74-8ac1-3c36f8882e71", @@ -85584,7 +86895,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -85651,7 +86963,8 @@ "SenseId": "ef2a35dd-f9b5-4411-83b0-947b8f42060d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8785332a-5ca6-4ff9-b13a-1c8788ce703e", @@ -85675,7 +86988,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -85767,7 +87081,8 @@ "SenseId": "7b954282-dabd-4a06-bfd7-4ab1d972d915", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85827,7 +87142,8 @@ "SenseId": "d196009f-a66a-4004-9a72-cfb51309720a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85894,7 +87210,8 @@ "SenseId": "39572c63-f53e-474b-bbcb-f16a69029fd3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85963,7 +87280,8 @@ "SenseId": "d578529c-8a83-4ee1-b74c-6818d74f6761", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "85493eee-1e87-42b3-97f3-de8668ed9d5e", @@ -85986,7 +87304,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -86053,7 +87372,8 @@ "SenseId": "75d60067-185b-4e4c-98a1-a0c8d39f3f31", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86115,7 +87435,8 @@ "SenseId": "65861da3-3916-4daa-83ed-56289478af5e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86182,7 +87503,8 @@ "SenseId": "7871daba-766d-4236-a452-353b1d106d6f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86263,7 +87585,8 @@ "SenseId": "954048a2-1a8e-44cb-8203-8b52aa29c3f0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86313,7 +87636,8 @@ }, "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -86372,7 +87696,8 @@ }, "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -86431,7 +87756,8 @@ "SenseId": "81cc027d-824b-4fc1-9808-36d64a737ac2", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d8a94a11-85f5-4067-88ef-1d5c78b4da4a", @@ -86446,7 +87772,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -86508,7 +87835,8 @@ "SenseId": "84e0a019-cb57-458a-823e-d32007d7a545", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86577,7 +87905,8 @@ "SenseId": "5cadb5a3-cbd7-46b5-b4cb-ef93b8ffd14b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86648,7 +87977,8 @@ "SenseId": "9462d765-6d98-4b26-9e9b-bb4a4d2ee805", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86717,7 +88047,8 @@ "SenseId": "cbd52040-b1d0-4c01-af17-accc2d5ae22e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86821,7 +88152,8 @@ "SenseId": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", @@ -86877,7 +88209,8 @@ "SenseId": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", @@ -86933,7 +88266,8 @@ "SenseId": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d4106031-2175-4339-951b-86db166cd624", @@ -86956,7 +88290,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -87039,7 +88374,8 @@ "SenseId": "71fcd994-9fdf-41b5-a70e-4fff1395ec6b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87108,7 +88444,8 @@ "SenseId": "73ac71aa-df75-446e-9939-6baced57d246", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87175,7 +88512,8 @@ "SenseId": "ca4a133b-e0f9-4a56-b60f-16718a39ddae", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87263,7 +88601,8 @@ "SenseId": "e8eff102-aef9-45bf-94e7-aa718bf94a73", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87332,7 +88671,8 @@ "SenseId": "1ac4751d-c0f9-40c7-ad01-f392c2424abd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87384,7 +88724,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -87462,7 +88803,8 @@ "SenseId": "c1d4fa07-ebf9-40ab-a269-cebbd8e8e4e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87531,7 +88873,8 @@ "SenseId": "d96c0e30-122f-4965-b2f2-7a28c5919eda", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87600,7 +88943,8 @@ "SenseId": "722a07be-8f96-4584-896b-5d4a1be2ff09", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87669,7 +89013,8 @@ "SenseId": "2f3702c7-fb24-4c15-8848-170402959bce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87738,7 +89083,8 @@ "SenseId": "7ec31552-edd9-4071-9e74-ea6e4ea8cf26", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87817,7 +89163,8 @@ "SenseId": "34c84c1d-1627-4a45-805d-8a613c39f8fb", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e1928272-94d5-4a99-b51c-8c79299b2b06", @@ -87840,7 +89187,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -87902,7 +89250,8 @@ "SenseId": "86c9f6ef-1382-442b-81c5-535496307803", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87971,7 +89320,8 @@ "SenseId": "55e6af15-103c-4b41-9e10-da36ee20f5da", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88040,7 +89390,8 @@ "SenseId": "49ea4ff8-7c73-4fad-950d-b3d2dec9ad8b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88112,7 +89463,8 @@ "SenseId": "908cc39a-c4ae-4aab-a8a1-4cb2794ef409", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88181,7 +89533,8 @@ "SenseId": "98c38a96-d34b-4581-aca1-17ff2dc2c62e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4fe54fea-afdf-4ce3-8789-da578722a5f6", @@ -88204,7 +89557,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c300c23f-9269-4a24-8be8-b91847605697", @@ -88227,7 +89581,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -88289,7 +89644,8 @@ "SenseId": "1665923c-551f-4e87-aa3e-a0c01859612c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88358,7 +89714,8 @@ "SenseId": "f17ee35f-9e3a-47b7-8aed-0abffa9e539e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88450,7 +89807,8 @@ "SenseId": "5607b315-66cf-4c69-9cc1-54040e31e662", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88519,7 +89877,8 @@ "SenseId": "4076b0ba-747a-4966-ad7e-4caa4c2cabc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88597,7 +89956,8 @@ "SenseId": "dc267b94-4a33-4731-aaaf-d484830ec3d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88666,7 +90026,8 @@ "SenseId": "aa981b11-04ff-4af2-ae44-796234cb159b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88735,7 +90096,8 @@ "SenseId": "246c0387-eb1b-44f3-9b1f-a7bdaa8df9b5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "06977799-bc47-4b69-ac51-4e669399e821", @@ -88758,7 +90120,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -88827,7 +90190,8 @@ "SenseId": "38351af5-160a-449f-b6f5-334748970449", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88894,7 +90258,8 @@ "SenseId": "2f28a937-b7ad-4ce4-b967-9faad084543b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88973,7 +90338,8 @@ "SenseId": "58ed32da-a923-470e-b739-1ee2521c1dbb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89044,7 +90410,8 @@ "SenseId": "d0e03952-92d9-4bf5-b7ac-d63a37ee3910", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89106,7 +90473,8 @@ "SenseId": "766a0dcd-11a0-48dc-ba1e-53c6d6a63354", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89175,7 +90543,8 @@ "SenseId": "0e15ca96-23ed-4faa-87c8-ca7a0d64e87f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89237,7 +90606,8 @@ "SenseId": "4b64743d-8234-4efd-bee6-01929aa5925b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89309,7 +90679,8 @@ "SenseId": "cc721689-3c6e-4e3d-8b48-304f1144ee8a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89395,7 +90766,8 @@ "SenseId": "2da1985b-4c8e-48c6-b819-be26a601b9c1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89462,7 +90834,8 @@ "SenseId": "4b483281-d3c1-432d-a5ff-1e7df777fc23", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89541,7 +90914,8 @@ "SenseId": "fb4d0840-35ad-4b51-a991-d3caac72b07b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9c5ab5d0-b755-41e7-8bfc-38cf4ac7476a", @@ -89564,7 +90938,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -89633,7 +91008,8 @@ "SenseId": "a29d6ebc-5c8a-4267-93f5-7acbb56f0a82", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0f025d44-7074-4e04-868e-cc0a74db6931", @@ -89648,7 +91024,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -89710,7 +91087,8 @@ "SenseId": "310bbea4-dfd1-44b0-b6e5-cfb9ee73fd33", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89772,7 +91150,8 @@ "SenseId": "1d741e8d-7136-465d-8d8c-f699482d7e7a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89841,7 +91220,8 @@ "SenseId": "4bfb6430-34b1-4953-ac6f-1d14a55368e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89910,7 +91290,8 @@ "SenseId": "e68fa0ae-00e9-401e-8939-1cdbcbf38a8f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89989,7 +91370,8 @@ "SenseId": "22454890-7c2d-4a3b-beaf-c7a5a4dc141d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90068,7 +91450,8 @@ "SenseId": "98ae9c6a-49c6-4f2f-ae64-bcd03ce4e6c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90137,7 +91520,8 @@ "SenseId": "2581c234-84f5-4ef9-ae06-3be67d528c6a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90197,7 +91581,8 @@ "SenseId": "882560fc-27d5-4ea8-add0-8335b97c5032", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90286,7 +91671,8 @@ "SenseId": "e352f748-01e6-471f-a6d1-978b74e6c6a5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "90054694-7f6e-4674-a525-b3e59e05f58d", @@ -90318,7 +91704,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90396,7 +91783,8 @@ "SenseId": "5c0b6467-8c7a-48ac-af53-c5b81c079967", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90446,7 +91834,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a3846ed9-9b20-4c5f-8abb-873f9ff99a17", @@ -90469,7 +91858,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "fdff4835-a887-4305-952a-4089525f3e62", @@ -90492,7 +91882,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "182f783d-7703-4dc6-8aaa-d4c995ec11e0", @@ -90515,7 +91906,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d7932d5f-f27f-4cbb-b264-52061d0b3253", @@ -90538,7 +91930,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90588,7 +91981,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90640,7 +92034,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "2251956c-607a-41dd-b047-c16ad95f04ef", @@ -90663,7 +92058,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90753,7 +92149,8 @@ "SenseId": "10d326c8-2805-4ecf-91c3-2d933a063863", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90839,7 +92236,8 @@ "SenseId": "06909499-5a12-4fdc-b48e-5805606fe878", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90918,7 +92316,8 @@ "SenseId": "6257b3a4-5c21-474e-8045-768ac98bd030", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90985,7 +92384,8 @@ "SenseId": "ec9e2a2a-4acf-4873-be17-33c22215f214", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91047,7 +92447,8 @@ "SenseId": "9604e24e-0b32-4036-b99f-029dad305317", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91099,7 +92500,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -91199,7 +92601,8 @@ "SenseId": "9e3d001b-8dbd-47bd-843d-545ae2eeedc8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91277,7 +92680,8 @@ "SenseId": "f452c5e8-330c-4323-862b-aba0ec42a2c4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", @@ -91319,7 +92723,8 @@ "SenseId": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "198c45b5-e301-484e-ae81-fa801eb01331", @@ -91342,7 +92747,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -91413,7 +92819,8 @@ "SenseId": "051bfd1e-a26e-46e2-b13a-f3b00478e092", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91492,7 +92899,8 @@ "SenseId": "ff74f41d-6ccb-4d1a-be68-010a4320ed00", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91571,7 +92979,8 @@ "SenseId": "b419d979-913b-4cf5-8a8d-c3982e3c2093", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91633,7 +93042,8 @@ "SenseId": "0f7f7d77-6064-4ce1-b6a3-f80826d62a99", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ad61964d-ef71-4857-89cb-5205ab969a8b", @@ -91656,7 +93066,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -91732,7 +93143,8 @@ "SenseId": "a3baa2ad-79c0-41b1-9a24-e007e6d0b931", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c796903a-0d54-404a-a971-a11c1a968a61", @@ -91755,7 +93167,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -91824,7 +93237,8 @@ "SenseId": "e35e3997-6b2c-4db4-81ed-13929160c341", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91978,7 +93392,8 @@ "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92057,7 +93472,8 @@ "SenseId": "d9cb4e6f-d542-4847-9ffd-72997d708f48", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92147,7 +93563,8 @@ "SenseId": "0a837b13-3198-4f8c-9049-c7a6b2ae0d4f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92216,7 +93633,8 @@ "SenseId": "dd0805ee-73c0-4c9d-8f0c-5b99eba335ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92283,7 +93701,8 @@ "SenseId": "a1393013-96f3-4f9c-9dd4-9c3d1b95747d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92345,7 +93764,8 @@ "SenseId": "3feaedde-d34f-48b6-b61a-657a7768e7f7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92412,7 +93832,8 @@ "SenseId": "7126b5f1-a48d-4788-8c37-e9837e25f274", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92479,7 +93900,8 @@ "SenseId": "fafade83-795b-4355-bcb8-9873dbad754f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92557,7 +93979,8 @@ "SenseId": "aefd8f47-6a88-499f-9860-41598b0821ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92626,7 +94049,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f2daba17-f3c7-4f16-94f6-f475f0a3cee4", @@ -92649,7 +94073,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -92718,7 +94143,8 @@ "SenseId": "58670c9a-5c67-4b4b-87ef-5d221763088d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92787,7 +94213,8 @@ "SenseId": "7607ede7-857f-4bc2-bc8a-ffa119369041", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92856,7 +94283,8 @@ "SenseId": "416479f0-f40d-42a8-9f53-0b36644f6a0e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92925,7 +94353,8 @@ "SenseId": "10b12fa3-9914-416a-8fa1-d2468ad75a80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92987,7 +94416,8 @@ "SenseId": "0ccaed89-b1ea-46df-be4b-6e3783022746", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93049,7 +94479,8 @@ "SenseId": "b2a7e770-d42a-4824-be0e-573da2378774", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93116,7 +94547,8 @@ "SenseId": "df21a85f-bac3-4b99-a803-11ab3cb0f03e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93185,7 +94617,8 @@ "SenseId": "32a60fd6-a381-4384-9736-388b2b757260", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93254,7 +94687,8 @@ "SenseId": "71c418ed-430e-42bb-b4b1-9b182da8db95", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93313,7 +94747,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3ee1ca91-7b0a-4567-bb1f-a4fdd123eebf", @@ -93345,7 +94780,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -93412,7 +94848,8 @@ "SenseId": "58397013-05a0-4187-a402-4b7531a3d1f6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93472,7 +94909,8 @@ "SenseId": "076bf5e2-f0dc-4475-b4b5-13f3a82fcd9d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93551,7 +94989,8 @@ "SenseId": "82120296-420f-4bc3-a316-ff1ef6f5823c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93603,7 +95042,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -93663,7 +95103,8 @@ "SenseId": "229f1945-8679-4417-a15f-0dc777567523", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93746,7 +95187,8 @@ "SenseId": "1f91440d-e07b-4444-b306-820bc3c62d78", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93815,7 +95257,8 @@ "SenseId": "1b86fc97-a86d-4edb-a856-501eaf8b9e6c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93884,7 +95327,8 @@ "SenseId": "f9374269-8d7c-433e-a4d1-2fbc6cd04fa5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93953,7 +95397,8 @@ "SenseId": "8aaa121c-0d62-46ec-a3f8-932b53ec00f0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94022,7 +95467,8 @@ "SenseId": "bc9918ca-3931-45f2-a346-37e20a6eb6b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94091,7 +95537,8 @@ "SenseId": "f35b7645-f5d6-4526-9ff8-cfa0a2bfff9f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94162,7 +95609,8 @@ "SenseId": "3df4e095-0ab3-4e63-b349-4085ad7ea31d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94224,7 +95672,8 @@ "SenseId": "8e5ddd13-ed8e-4e0e-ac77-f6c630ff5e1c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94295,7 +95744,8 @@ "SenseId": "edaca876-4e83-48b2-a21c-43f30e9ec1f9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94366,7 +95816,8 @@ "SenseId": "9b3f4461-b2be-4678-bcd9-ef1fe0f95d6f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6a17df72-0935-4972-8df4-37a444a3e609", @@ -94389,7 +95840,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -94451,7 +95903,8 @@ "SenseId": "d5594291-e8d7-448b-8c98-356280a9beff", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94575,7 +96028,8 @@ "SenseId": "92b77272-33f6-4ae9-9593-8884890d1596", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94635,7 +96089,8 @@ "SenseId": "6a7921e6-0eed-496f-8fce-251cc73f54b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94704,7 +96159,8 @@ "SenseId": "22d82ffc-5fb1-433d-b1d7-ea2f0cf74946", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "971be336-8e62-4ad2-97e7-47562f7cf80d", @@ -94727,7 +96183,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -94787,7 +96244,8 @@ "SenseId": "d3d45414-258a-41bf-b107-dc316f5eb53e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94856,7 +96314,8 @@ "SenseId": "5ce4fc2d-6488-4049-be7b-3d6685c21093", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94934,7 +96393,8 @@ "SenseId": "23e2e383-ef7c-4d19-a72f-1621ef30e0ed", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95020,7 +96480,8 @@ "SenseId": "28376e7b-02a2-41bb-87bd-7161ce3ac904", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95087,7 +96548,8 @@ "SenseId": "5c30367b-6a13-44e2-9d98-b41917c9eb99", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95154,7 +96616,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -95204,7 +96667,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -95280,7 +96744,8 @@ "SenseId": "41acb687-44b9-4c4d-b448-122dea15f267", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95342,7 +96807,8 @@ "SenseId": "e103ab2e-f827-4438-96bf-86ef4267e9aa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95413,7 +96879,8 @@ "SenseId": "d4030108-039e-48d9-a868-901c2072385d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95462,7 +96929,8 @@ }, "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -95529,7 +96997,8 @@ "SenseId": "94ee3153-27ce-49a1-9a8a-5fc0afa329c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95621,7 +97090,8 @@ "SenseId": "57bfaa1f-735b-4c81-97aa-69b2efd9b530", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95690,7 +97160,8 @@ "SenseId": "eca32c60-3044-4c43-9ba3-7192e3155034", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95752,7 +97223,8 @@ "SenseId": "ea17990f-9b07-43fe-b097-597f7e238156", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95823,7 +97295,8 @@ "SenseId": "54abd687-0f45-4550-8779-511abb42721d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "32467084-7626-49a5-81ad-ffd52563622c", @@ -95894,7 +97367,8 @@ "SenseId": "32467084-7626-49a5-81ad-ffd52563622c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95963,7 +97437,8 @@ "SenseId": "feb33bce-b6eb-4ceb-ac7d-4576e2624962", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b9579104-0efb-4b6b-9e41-023c12911774", @@ -95986,7 +97461,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -96048,7 +97524,8 @@ "SenseId": "8057b6f0-b920-4858-88d2-309e1eed6b9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96110,7 +97587,8 @@ "SenseId": "8e74c118-c9ef-4a6e-8c67-13d0f309763e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96234,7 +97712,8 @@ "SenseId": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96319,7 +97798,8 @@ "SenseId": "1f752860-a94c-40e1-8e00-e21a9de5f0cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96381,7 +97861,8 @@ "SenseId": "3638e80f-f10d-4940-870c-8e11a37c1741", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96466,7 +97947,8 @@ "SenseId": "56aa7d5b-4657-48a4-9279-8ae8d6b1d47d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96535,7 +98017,8 @@ "SenseId": "e7918fd5-b343-4516-9e0f-47742369c08e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96604,7 +98087,8 @@ "SenseId": "31c1e263-4dbc-402f-a0f3-82d860f258f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96680,7 +98164,8 @@ "SenseId": "c8b58fac-14b5-4eb0-8a25-03a5f365ea4c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96749,7 +98234,8 @@ "SenseId": "f411efec-e9a4-42da-9842-8ef770cbf71a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96809,7 +98295,8 @@ "SenseId": "398a49fe-4e56-4627-ae97-cb65ba976267", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96878,7 +98365,8 @@ "SenseId": "d06ecf71-49da-4964-9580-9579fd3f4d19", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96947,7 +98435,8 @@ "SenseId": "1cf49a8e-38e9-414f-b537-8f83f8b48dc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97016,7 +98505,8 @@ "SenseId": "13b95c7a-e9f5-4949-a5fa-4ee19fabe2b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97085,7 +98575,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97137,7 +98628,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97204,7 +98696,8 @@ "SenseId": "ef17635e-7bf6-4081-9faa-89b79f750a92", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97273,7 +98766,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97342,7 +98836,8 @@ "SenseId": "ffa46537-54b5-4f01-a275-fce0693eea51", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97409,7 +98904,8 @@ "SenseId": "b9f6b2b3-fe70-4b2b-9d90-47d4b36194bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97476,7 +98972,8 @@ "SenseId": "35b68d05-0492-4bc2-9003-a3b443d6bb08", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97538,7 +99035,8 @@ "SenseId": "daeef4ba-0630-46d0-85f7-d42aea9bdc51", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97600,7 +99098,8 @@ "SenseId": "fd6925ea-62b7-484d-b7f3-3e26652c2876", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97669,7 +99168,8 @@ "SenseId": "2b1e6e5c-832b-4c98-bab7-3aab2e4ed099", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97745,7 +99245,8 @@ "SenseId": "275e89aa-2531-4a04-8cc4-c633939186af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97831,7 +99332,8 @@ "SenseId": "be445097-46a4-456d-9ce2-cd5df74eedb0", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3ce69d12-3a32-44e4-8761-314d11d493b0", @@ -97871,7 +99373,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "082609f1-948d-4d7e-88a8-bdbdf9c07aa8", @@ -97911,7 +99414,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "9de92b45-c94c-4ad6-b43a-a91c3627b415", @@ -97951,7 +99455,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "604b2b52-bb1a-4a4f-a945-58d91f6583ff", @@ -97991,7 +99496,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98053,7 +99559,8 @@ "SenseId": "9db6aecc-bae4-42fe-9a51-0e6141043296", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98245,7 +99752,8 @@ "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98312,7 +99820,8 @@ "SenseId": "a8395899-5677-4b10-ad80-d2e54c4d5b30", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98468,7 +99977,8 @@ "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7d04a11e-a1cc-4c15-a02c-1867b204ccd1", @@ -98491,7 +100001,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98552,7 +100063,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98614,7 +100126,8 @@ "SenseId": "0cff3926-500e-48fa-a76e-586fa07b315b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98676,7 +100189,8 @@ "SenseId": "78ffd0fa-3cef-472b-95ba-5212d0fd9cc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98728,7 +100242,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98788,7 +100303,8 @@ "SenseId": "9bc220f0-6d26-4dab-9dcd-ee5814702e7e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "103c6d03-e0ce-4210-8c46-543c91a9a4fc", @@ -98811,7 +100327,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98871,7 +100388,8 @@ "SenseId": "4bd08dc0-41cf-4d75-93c7-8767c81179d1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d016f216-ef2f-4307-ac89-f31679d2e8fe", @@ -98885,7 +100403,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98954,7 +100473,8 @@ "SenseId": "09b9897f-e966-4ebb-b14b-4d39f7cffae1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99016,7 +100536,8 @@ "SenseId": "c4e98335-0d70-47d8-b43d-f7ee335ad565", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99078,7 +100599,8 @@ "SenseId": "1f5908d1-d132-4290-b5cf-9c45bd76e15d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "636a6a22-a647-4966-aa8a-50d018f0a58b", @@ -99101,7 +100623,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -99170,7 +100693,8 @@ "SenseId": "e834c2bb-bd64-45cf-ac25-8cfa82fd4f4d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99239,7 +100763,8 @@ "SenseId": "3a72249d-72e0-4470-98b2-6fb64a0bd357", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99335,7 +100860,8 @@ "SenseId": "04aaab1a-5495-42b1-a958-3f72ca3de6e8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99421,7 +100947,8 @@ "SenseId": "59b235d0-71ff-4d3d-9050-eb56582b40ca", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99488,7 +101015,8 @@ "SenseId": "178130d5-6ddd-4fcf-8a25-2da2b42a9fef", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99548,7 +101076,8 @@ "SenseId": "7ef4f01e-1158-4b4f-8f05-427691f8a458", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99619,7 +101148,8 @@ "SenseId": "5b6d85ba-d915-4ab4-a276-64c26534135b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99678,7 +101208,8 @@ "SenseId": "17f9b2ab-451b-492b-905f-9429e4abc8ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99740,7 +101271,8 @@ "SenseId": "6115d59e-4e92-405f-bcfb-459907d99e66", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "12fae128-5dc7-4143-8ebd-dc84bc3af794", @@ -99763,7 +101295,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -99830,7 +101363,8 @@ "SenseId": "de0c5b8a-9f70-4dd3-890c-43931b7907fc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99880,7 +101414,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -99951,7 +101486,8 @@ "SenseId": "04116e62-fca1-4b32-b2c0-ca82646efe3a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100030,7 +101566,8 @@ "SenseId": "ad2949d1-f16f-4086-a94e-3331fab7072d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100107,7 +101644,8 @@ "SenseId": "ed7a308d-7bec-4372-8253-d13abd1945b1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100174,7 +101712,8 @@ "SenseId": "505400d3-1e4a-42ce-acef-758b92bed1fc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100252,7 +101791,8 @@ "SenseId": "13592c25-2d1e-4c60-98ad-9ea4ccd6a6a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100314,7 +101854,8 @@ "SenseId": "94749a03-836e-4bd5-a4f1-9da4b3f5b05b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100376,7 +101917,8 @@ "SenseId": "3c5e68c4-1133-4d06-8f01-c33987ba51eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100478,7 +102020,8 @@ "SenseId": "a8c34399-4446-4f34-8064-5850c2d0f45a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100547,7 +102090,8 @@ "SenseId": "bc5958ca-8e90-45de-8354-59d185422059", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100609,7 +102153,8 @@ "SenseId": "2a82aa97-31cf-43c3-a14b-09ffe761131e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100661,7 +102206,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -100753,7 +102299,8 @@ "SenseId": "98979afc-58f8-4894-bc22-f9daa3d857e1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ea8dcc79-5ac4-448c-9326-f727516e7bf4", @@ -100776,7 +102323,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -100836,7 +102384,8 @@ "SenseId": "a764da34-5c43-421d-9aac-e3260e289725", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100903,7 +102452,8 @@ "SenseId": "94f68ad2-1d69-41de-8aee-0185e99f8ccf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100963,7 +102513,8 @@ "SenseId": "890eb70c-54b8-4a4d-b031-db9451dc98ab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101025,7 +102576,8 @@ "SenseId": "9a261001-cf61-46f3-8e58-7cae8273b3ba", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7d75b23b-4960-47e8-93f1-d4a3136f04b9", @@ -101048,7 +102600,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101115,7 +102668,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101175,7 +102729,8 @@ "SenseId": "d2332721-57bf-4367-8f26-fa188d1386cb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101237,7 +102792,8 @@ "SenseId": "94991b8a-9d06-43f6-8903-159c9b5ee9df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101296,7 +102852,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101372,7 +102929,8 @@ "SenseId": "05fc5ede-c5ac-4b95-ac1d-ce44536dd56a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101463,7 +103021,8 @@ "SenseId": "8d3b472d-b11b-46c5-b440-3e0c3b93465f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101546,7 +103105,8 @@ "SenseId": "459bd1a5-34de-49d8-b98f-03aa6705b13d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101596,7 +103156,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101663,7 +103224,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d22c2b0d-2c83-42d2-973b-c20afdcc9398", @@ -101686,7 +103248,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101748,7 +103311,8 @@ "SenseId": "194662d7-732d-4c3c-8a38-39c3ec910646", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101798,7 +103362,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101849,7 +103414,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101918,7 +103484,8 @@ "SenseId": "625ce16c-7cca-4209-8052-c78dddfed8cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102009,7 +103576,8 @@ "SenseId": "8c76e0a3-47d5-4412-b5e6-c8b8338538a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102099,7 +103667,8 @@ "SenseId": "be876ecb-1662-4abf-ab67-4e7b43d600de", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b429c752-8136-42a4-b68d-e0d1adb7ed22", @@ -102122,7 +103691,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102184,7 +103754,8 @@ "SenseId": "3fd82d2b-b8a1-490a-acc6-708d88540bcd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102253,7 +103824,8 @@ "SenseId": "b547ec3a-2566-4f59-8d7b-5d6b607fb74e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102332,7 +103904,8 @@ "SenseId": "843731e3-603e-4249-ba99-754a719865e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102411,7 +103984,8 @@ "SenseId": "fdcdb28b-0bc6-4e95-82bc-45e2e0418405", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102463,7 +104037,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102547,7 +104122,8 @@ "SenseId": "02ebdfc0-2508-409a-9bec-019437e80fc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102599,7 +104175,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102649,7 +104226,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102716,7 +104294,8 @@ "SenseId": "cb4114f3-6b9c-4d10-83da-15aa3707622f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8a1aab3b-5e70-4283-afd6-e169458cdf69", @@ -102739,7 +104318,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "18938887-46cf-45ca-b2c9-9d432d9de64a", @@ -102762,7 +104342,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102872,7 +104453,8 @@ "SenseId": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6b33c75b-bfe6-48e5-b698-7c2386f22c25", @@ -102895,7 +104477,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102962,7 +104545,8 @@ "SenseId": "4e1623b7-2320-48c6-a4d2-1d535a22a87f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103086,7 +104670,8 @@ "SenseId": "ce9787bb-6789-49f9-9981-27b1724cef66", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d8c5c5b8-9b61-4fea-95b3-7ec530fd4644", @@ -103109,7 +104694,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103171,7 +104757,8 @@ "SenseId": "2ec29c07-952c-4c22-94e9-f18d655c3133", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103221,7 +104808,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103305,7 +104893,8 @@ "SenseId": "3736a2ed-4afc-47be-98f0-c1fd28d42f84", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103399,7 +104988,8 @@ "SenseId": "99872666-823a-445c-8f3a-0d5c8798ef7e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103459,7 +105049,8 @@ "SenseId": "c4f3e215-8ab4-4bd0-ad3c-1347ecccfbc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103526,7 +105117,8 @@ "SenseId": "236decb1-bb94-472b-8a02-4b46e83fcd67", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103588,7 +105180,8 @@ "SenseId": "035b3bfa-5694-4c35-9c0d-2f8d70250156", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103657,7 +105250,8 @@ "SenseId": "8756ef8f-b016-4c53-ae52-ebe134672b80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103751,7 +105345,8 @@ "SenseId": "6e95dee1-8398-4fa4-ada9-0bfebb343542", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "59373346-8f5d-4d04-bfda-f4aa384c0c81", @@ -103791,7 +105386,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103860,7 +105456,8 @@ "SenseId": "807fc0c7-a3db-40ac-b74b-2f32418f3715", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103929,7 +105526,8 @@ "SenseId": "b3d7c131-2e6c-4715-a476-9cd2f74be96e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103996,7 +105594,8 @@ "SenseId": "56055ad6-781e-40d4-bc90-a92ad2e6a316", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104074,7 +105673,8 @@ "SenseId": "4b5edab8-2284-4fba-8fa2-3c9c714de3b8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104143,7 +105743,8 @@ "SenseId": "c28f868d-c826-40d1-934c-d591cdd190b7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104212,7 +105813,8 @@ "SenseId": "83c39fed-42c6-446e-91d1-2b40af74eff5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104264,7 +105866,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104335,7 +105938,8 @@ "SenseId": "bc0108a7-1dfb-483f-a67a-4882cad7e919", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104397,7 +106001,8 @@ "SenseId": "41f653c0-8007-444f-9095-cc5af134f584", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104468,7 +106073,8 @@ "SenseId": "5647f2a9-9d0a-4599-9e48-cf98cd9624c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104537,7 +106143,8 @@ "SenseId": "95b6047b-3637-4494-9779-6216b4014a80", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8a4af5f4-a71e-47c5-a292-630923ada7bf", @@ -104577,7 +106184,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104644,7 +106252,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "6b48f7a4-471f-4b15-8b03-17a83b9de0d3", @@ -104667,7 +106276,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "af7ab1cc-2536-4251-bdde-ae723e46a105", @@ -104682,7 +106292,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c3f8b8ee-f1ea-4a6b-b8a3-34b0ca297629", @@ -104705,7 +106316,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a0b813dc-f06c-41c9-9496-fdb656b331e0", @@ -104728,7 +106340,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104807,7 +106420,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104857,7 +106471,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f4ae1775-b605-4604-8546-3cfcb6ca1c31", @@ -104880,7 +106495,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "65b694cd-f545-4444-8763-fcfb46f3c401", @@ -104903,7 +106519,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7ec7b783-215f-442a-b660-d00b071a64d8", @@ -104926,7 +106543,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104976,7 +106594,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "bca44468-9d04-4f0d-9e65-38694978d312", @@ -104999,7 +106618,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d2b54291-bb8e-4645-b3f2-0d77890118b9", @@ -105022,7 +106642,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105072,7 +106693,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105139,7 +106761,8 @@ "SenseId": "135250b8-31fa-4d05-b3dd-3422225a9006", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105238,7 +106861,8 @@ "SenseId": "9f8f51bf-aa51-4686-b839-fdbc9d17f1bc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105328,7 +106952,8 @@ "SenseId": "8f55e116-bffe-43cc-b63e-3fc7fb464906", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105397,7 +107022,8 @@ "SenseId": "194ed05c-dc3a-4cec-bda9-f913d397f4c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105464,7 +107090,8 @@ "SenseId": "094f4d6a-81eb-4cc1-b0b8-34cf24c90da7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105531,7 +107158,8 @@ "SenseId": "ea48f99d-9b4e-41b4-99b3-a70c040a881d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105598,7 +107226,8 @@ "SenseId": "90e822b6-9c0a-4815-b20c-498954c79e55", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105665,7 +107294,8 @@ "SenseId": "9171df95-1a24-41d1-9194-d61abfa19488", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3e1edd79-92fa-4512-86a0-c4ba64c8cd07", @@ -105688,7 +107318,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105785,7 +107416,8 @@ "SenseId": "4bfb0395-c6fc-4db5-8b04-cfe1c2bdcc8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105868,7 +107500,8 @@ "SenseId": "136a7fae-16be-4f69-9cc1-783a5c5d074c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105930,7 +107563,8 @@ "SenseId": "78c00a11-2e56-4697-b5bf-80904626cdf3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105997,7 +107631,8 @@ "SenseId": "4b976689-b5df-47fe-bec3-756897ca779e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106064,7 +107699,8 @@ "SenseId": "24295910-8cbe-4dfb-888c-798376ffc7fa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106141,7 +107777,8 @@ "SenseId": "6cecf1f9-7a8f-4595-bfc4-c217bf8b81f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106226,7 +107863,8 @@ "SenseId": "eca2562a-400e-4845-af66-21b452a16723", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106276,7 +107914,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106343,7 +107982,8 @@ "SenseId": "e088214d-88f2-4594-8f98-1f4f7c29dc65", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c7ca7796-1ba2-4bdd-be82-40e4d3de066c", @@ -106366,7 +108006,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106416,7 +108057,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106492,7 +108134,8 @@ "SenseId": "358f3141-e7ab-4c29-ad51-ca223360afe8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106551,7 +108194,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106603,7 +108247,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106665,7 +108310,8 @@ "SenseId": "f99e2076-dadf-4143-99d7-1d5d173fcf7b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106749,7 +108395,8 @@ "SenseId": "ababeddc-08c3-4780-8012-7198cf761d05", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106799,7 +108446,8 @@ }, "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106861,7 +108509,8 @@ "SenseId": "51aaf249-32a7-421b-87a3-3205be891797", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106937,7 +108586,8 @@ "SenseId": "de3c9399-15af-4edf-8aaa-68f96d56637e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107016,7 +108666,8 @@ "SenseId": "fc67e6a9-5387-43f2-91a3-216cfd5e65a8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107101,7 +108752,8 @@ "SenseId": "97a7c86c-6550-4e5c-a49f-a5a80330d9af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107163,7 +108815,8 @@ "SenseId": "25b7c888-d2fe-4c54-ace2-9b299e7a899d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107230,7 +108883,8 @@ "SenseId": "42083ae6-df49-4ae6-bfc8-48aef6b280d0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107292,7 +108946,8 @@ "SenseId": "4a4ca0ac-1ed7-4dd5-baa8-b61eaf61553e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107342,7 +108997,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107411,7 +109067,8 @@ "SenseId": "c5f58059-dd3b-4770-a432-4ac43c2a8668", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107497,7 +109154,8 @@ "SenseId": "1aa877de-615f-46be-a264-9b91635662f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107573,7 +109231,8 @@ "SenseId": "09aabb85-a312-493f-8800-86735acf18fb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107623,7 +109282,8 @@ }, "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107685,7 +109345,8 @@ "SenseId": "ee0c1ccb-2141-41f8-aeea-f2830dba0dfb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107752,7 +109413,8 @@ "SenseId": "bf71bf48-b8d3-455b-bc29-4a7b4ce04870", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107821,7 +109483,8 @@ "SenseId": "24ed647a-dafd-4897-bd4a-1914c517f2c8", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "5deb9301-9b9c-4e6a-8f46-aa6653c0e987", @@ -107861,7 +109524,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107928,7 +109592,8 @@ "SenseId": "bbb4c1c3-fa11-47cd-8150-e0d73818da0c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2ab4c07f-c6c3-400a-bf12-4bdede2672ff", @@ -107960,7 +109625,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -108044,7 +109710,8 @@ "SenseId": "c658fc3b-450b-4488-a2b7-fcefd7d38652", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108128,7 +109795,8 @@ "SenseId": "c63b0bac-a53f-4029-8fb1-6fc0af61f894", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108214,7 +109882,8 @@ "SenseId": "718eb928-04fd-4cd9-862e-9fd86ee62a56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108283,7 +109952,8 @@ "SenseId": "e81c7af1-aa5c-4fcd-8971-36e4bfc4500d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108352,7 +110022,8 @@ "SenseId": "ae460c9e-400a-4e70-b9e1-cd27313bf09f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108421,7 +110092,8 @@ "SenseId": "509975b3-3a61-48be-b929-d47adaf4a2ec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108488,7 +110160,8 @@ "SenseId": "0c68f1e7-423b-4ba3-93e4-f2748477abca", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108550,7 +110223,8 @@ "SenseId": "0ca24aef-ba6a-4288-903a-66d7bf45158c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108612,7 +110286,8 @@ "SenseId": "8bad9278-024a-46c0-b0b9-8fed75472d38", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "16e9b698-06c4-49a8-bd83-b8d5a36f8589", @@ -108635,7 +110310,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "db214e78-7505-4899-b49a-0637749e2d13", @@ -108677,7 +110353,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -108744,7 +110421,8 @@ "SenseId": "5179d490-ee47-45a5-b49d-cdb783960229", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108813,7 +110491,8 @@ "SenseId": "177fe980-b229-4630-aaf9-8522bc6e3d8b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108909,7 +110588,8 @@ "SenseId": "b3b3016f-337d-4ea6-a6d2-9bc3ebc9a2ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108978,7 +110658,8 @@ "SenseId": "a5918398-1bfb-4cfb-85b3-c0b6972fac0d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8780309e-9d9a-4afe-9424-c239c3b77b09", @@ -109001,7 +110682,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109051,7 +110733,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109120,7 +110803,8 @@ "SenseId": "a1062067-0b74-4f5b-b8a0-df0698229773", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109198,7 +110882,8 @@ "SenseId": "2f75bf8c-4b92-46fd-a51f-b2cf2f60c732", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109267,7 +110952,8 @@ "SenseId": "ae62dd24-2425-4d9c-bf98-12f9af6e7573", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "56914d82-0650-4b31-bb28-a77197eca5ac", @@ -109290,7 +110976,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109340,7 +111027,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109402,7 +111090,8 @@ "SenseId": "a5cec45e-99e3-4c49-82f9-08602426527b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109462,7 +111151,8 @@ "SenseId": "435e2d57-8d6f-4c27-97a1-12affa2d82a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109531,7 +111221,8 @@ "SenseId": "f93f82cc-9b40-4c81-b3c7-3001a88166e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109610,7 +111301,8 @@ "SenseId": "1ebd1836-16c2-4bc8-a232-5785ffb40d66", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109672,7 +111364,8 @@ "SenseId": "552b7e9b-d424-47a8-866c-82f290bd2c7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109764,7 +111457,8 @@ "SenseId": "4145d3ff-05ab-40d4-9211-ab3874f5aeb9", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3db9a9fe-2081-41be-9949-3c7789ccff52", @@ -109787,7 +111481,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109858,7 +111553,8 @@ "SenseId": "cf11d0dd-67c4-4564-a4d4-c05dd5bbd1a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109959,7 +111655,8 @@ "SenseId": "bdc37e88-cc8d-40eb-b8a7-d41715ff2201", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "5f0ee744-8b92-46cb-8fee-0cd0fa449a5f", @@ -109991,7 +111688,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -110058,7 +111756,8 @@ "SenseId": "610bd39c-d07d-4f3a-8dcf-6a1c45858f94", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110127,7 +111826,8 @@ "SenseId": "94d56b46-19b2-4ecb-aa89-c971ff0e51cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110194,7 +111894,8 @@ "SenseId": "896de921-857b-416f-9b2f-2530d6878a3e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110261,7 +111962,8 @@ "SenseId": "6582a79f-77d9-498b-9d3d-13aefb6c2187", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110321,7 +112023,8 @@ "SenseId": "12fb344a-78ae-4185-96d8-448329aaac16", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110371,7 +112074,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -110431,7 +112135,8 @@ "SenseId": "c19b8053-71d1-4d12-ae64-ba1e3e5725c2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110510,7 +112215,8 @@ "SenseId": "1e636329-5e53-4a16-8383-d26a31811711", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110577,7 +112283,8 @@ "SenseId": "6de663de-116b-405f-b3a2-3415c5f276f9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110627,7 +112334,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -110696,7 +112404,8 @@ "SenseId": "586ad21a-8694-415b-afb2-5843bcb03885", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110763,7 +112472,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -110846,7 +112556,8 @@ "SenseId": "1b7e5eae-e787-4201-bd5d-54355fe1da19", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110908,7 +112619,8 @@ "SenseId": "d79e67f4-9836-4e45-a2cb-02574110442f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110970,7 +112682,8 @@ "SenseId": "ada56c3e-c584-4f09-8914-978ad628ecbe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111032,7 +112745,8 @@ "SenseId": "38c76c00-9ab7-487d-bb63-2e355f82f7c1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111082,7 +112796,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "098fb96c-aaff-447e-9620-7463d45a2a2b", @@ -111105,7 +112820,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c86e5e35-bb32-40b6-aaae-d17dea00c907", @@ -111128,7 +112844,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "098bb9a9-ead5-4fdb-80d9-41054d1151f8", @@ -111151,7 +112868,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "1e72e29e-1e83-4754-a073-e5edbf7da6bb", @@ -111174,7 +112892,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -111304,7 +113023,8 @@ "SenseId": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111382,7 +113102,8 @@ "SenseId": "0383e271-64d7-43ef-93c0-bd43385dfa6f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111444,7 +113165,8 @@ "SenseId": "0be25da3-89e3-4991-a1fa-318fcdf6d736", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111506,7 +113228,8 @@ "SenseId": "88ea6f68-239a-43d3-a2fc-3cd209661132", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111575,7 +113298,8 @@ "SenseId": "86618e0a-35d0-4abd-b1ef-3bccb313c9b4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111637,7 +113361,8 @@ "SenseId": "1458ae34-3a2e-45f5-b334-391ba0448c43", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, diff --git a/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs index 24749bea87..3f313a5b0f 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/SyncTests.cs @@ -4,6 +4,7 @@ using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using MiniLcm; +using MiniLcm.Media; using MiniLcm.Models; namespace FwLiteProjectSync.Tests; @@ -87,6 +88,7 @@ internal static EquivalencyOptions SyncExclusions(EquivalencyOptions e.Senses).Exclude(s => s.Order) .For(e => e.Senses).For(s => s.ExampleSentences).Exclude(s => s.Order) + .For(e => e.Senses).For(s => s.Pictures).Exclude(s => s.Order) .For(e => e.Components).Exclude(c => c.Id) .For(e => e.Components).Exclude(c => c.Order) .For(e => e.ComplexForms).Exclude(c => c.Id) @@ -96,7 +98,7 @@ internal static EquivalencyOptions SyncExclusions(EquivalencyOptions @@ -606,7 +608,7 @@ public async Task AddingASenseToAnEntryInEachProjectSyncsAcrossBoth() var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); await fwdataApi.CreateSense(_testEntry.Id, new Sense() - { + { Gloss = { { "en", "Fruit" } }, Definition = { { "en", new RichString("a round fruit, red or yellow") } }, }); @@ -614,7 +616,7 @@ public async Task AddingASenseToAnEntryInEachProjectSyncsAcrossBoth() { Gloss = { { "en", "Tree" } }, Definition = { { "en", new RichString("a tall, woody plant, which grows fruit") } }, - }); + }); await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); @@ -712,4 +714,197 @@ public async Task HomographNumbers_CorrectedByFwDataAfterTwoSyncs() entry2Final.HomographNumber.Should().Be(0, "after 2 syncs, LibLCM should have corrected HomographNumber to 0 (sole entry with this headword)"); } -} + + [Fact] + [Trait("Category", "Integration")] + public async Task AddingAPictureToASenseInFwDataSyncsToCrdt() + { + var crdtApi = _fixture.CrdtApi; + var fwdataApi = _fixture.FwDataApi; + await _syncService.Import(crdtApi, fwdataApi); + var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); + + var sense = _testEntry.Senses[0]; + var picture = new Picture + { + Id = Guid.NewGuid(), + MediaUri = MediaUri.NotFound, + Caption = new RichMultiString { { "en", new RichString("An apple on a tree") } }, + }; + await fwdataApi.CreatePicture(_testEntry.Id, sense.Id, picture); + + await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); + + var crdtSense = await crdtApi.GetSense(_testEntry.Id, sense.Id); + crdtSense.Should().NotBeNull(); + crdtSense!.Pictures.Should().HaveCount(1); + crdtSense.Pictures[0].Id.Should().Be(picture.Id); + crdtSense.Pictures[0].Caption["en"].Should().BeEquivalentTo(picture.Caption["en"]); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task AddingAPictureToASenseInCrdtSyncsToFwData() + { + var crdtApi = _fixture.CrdtApi; + var fwdataApi = _fixture.FwDataApi; + await _syncService.Import(crdtApi, fwdataApi); + var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); + + var sense = _testEntry.Senses[0]; + var picture = new Picture + { + Id = Guid.NewGuid(), + MediaUri = MediaUri.NotFound, + Caption = new RichMultiString { { "en", new RichString("An apple") } }, + }; + await crdtApi.CreatePicture(_testEntry.Id, sense.Id, picture); + + await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); + + var fwdataSense = await fwdataApi.GetSense(_testEntry.Id, sense.Id); + fwdataSense.Should().NotBeNull(); + fwdataSense!.Pictures.Should().HaveCount(1); + fwdataSense.Pictures[0].Id.Should().Be(picture.Id); + fwdataSense.Pictures[0].Caption["en"].Should().BeEquivalentTo(picture.Caption["en"]); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task PictureCaptionUpdateSyncsFromFwDataToCrdt() + { + var crdtApi = _fixture.CrdtApi; + var fwdataApi = _fixture.FwDataApi; + + // Arrange - create a picture in FwData before importing so both APIs see it + var sense = _testEntry.Senses[0]; + var picture = new Picture + { + Id = Guid.NewGuid(), + MediaUri = MediaUri.NotFound, + Caption = new RichMultiString { { "en", new RichString("original caption") } }, + }; + await fwdataApi.CreatePicture(_testEntry.Id, sense.Id, picture); + + await _syncService.Import(crdtApi, fwdataApi); + var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); + + // Act - update caption in FwData only + var fwdataPictureBefore = await fwdataApi.GetPicture(_testEntry.Id, sense.Id, picture.Id); + fwdataPictureBefore.Should().NotBeNull(); + var fwdataPictureAfter = fwdataPictureBefore!.Copy(); + fwdataPictureAfter.Caption = new RichMultiString { { "en", new RichString("updated caption") } }; + await fwdataApi.UpdatePicture(_testEntry.Id, sense.Id, fwdataPictureBefore, fwdataPictureAfter); + + await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); + + // Assert - CRDT should reflect the updated caption + var crdtPicture = await crdtApi.GetPicture(_testEntry.Id, sense.Id, picture.Id); + crdtPicture.Should().NotBeNull(); + crdtPicture!.Caption["en"].Should().BeEquivalentTo(fwdataPictureAfter.Caption["en"]); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task PictureCaptionUpdateSyncsFromCrdtToFwData() + { + var crdtApi = _fixture.CrdtApi; + var fwdataApi = _fixture.FwDataApi; + + // Arrange - create a picture in FwData before importing so both APIs see it + var sense = _testEntry.Senses[0]; + var picture = new Picture + { + Id = Guid.NewGuid(), + MediaUri = MediaUri.NotFound, + Caption = new RichMultiString { { "en", new RichString("original caption") } }, + }; + await fwdataApi.CreatePicture(_testEntry.Id, sense.Id, picture); + + await _syncService.Import(crdtApi, fwdataApi); + var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); + + // Act - update caption in Crdt only + var crdtPictureBefore = await crdtApi.GetPicture(_testEntry.Id, sense.Id, picture.Id); + crdtPictureBefore.Should().NotBeNull(); + var crdtPictureAfter = crdtPictureBefore!.Copy(); + crdtPictureAfter.Caption = new RichMultiString { { "en", new RichString("updated caption") } }; + await crdtApi.UpdatePicture(_testEntry.Id, sense.Id, crdtPictureBefore, crdtPictureAfter); + + await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); + + // Assert - CRDT should reflect the updated caption + var fwdataPicture = await fwdataApi.GetPicture(_testEntry.Id, sense.Id, picture.Id); + fwdataPicture.Should().NotBeNull(); + fwdataPicture!.Caption["en"].Should().BeEquivalentTo(crdtPictureAfter.Caption["en"]); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task DeletingAPictureInFwDataSyncsToCrdt() + { + var crdtApi = _fixture.CrdtApi; + var fwdataApi = _fixture.FwDataApi; + + // Arrange - create a picture in FwData before importing so both APIs see it + var sense = _testEntry.Senses[0]; + var picture = new Picture + { + Id = Guid.NewGuid(), + MediaUri = MediaUri.NotFound, + Caption = new RichMultiString { { "en", new RichString("a picture to delete") } }, + }; + await fwdataApi.CreatePicture(_testEntry.Id, sense.Id, picture); + + await _syncService.Import(crdtApi, fwdataApi); + var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); + + // verify picture arrived in CRDT after import + var crdtSenseBeforeDelete = await crdtApi.GetSense(_testEntry.Id, sense.Id); + crdtSenseBeforeDelete!.Pictures.Should().HaveCount(1, "picture should have been imported"); + + // Act - delete picture in FwData + await fwdataApi.DeletePicture(_testEntry.Id, sense.Id, picture.Id); + + await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); + + // Assert - CRDT should no longer have the picture + var crdtSenseAfterDelete = await crdtApi.GetSense(_testEntry.Id, sense.Id); + crdtSenseAfterDelete.Should().NotBeNull(); + crdtSenseAfterDelete!.Pictures.Should().BeEmpty(); + } + + [Fact] + [Trait("Category", "Integration")] + public async Task DeletingAPictureInCrdtSyncsToFwData() + { + var crdtApi = _fixture.CrdtApi; + var fwdataApi = _fixture.FwDataApi; + + // Arrange - create a picture in FwData before importing so both APIs see it + var sense = _testEntry.Senses[0]; + var picture = new Picture + { + Id = Guid.NewGuid(), + MediaUri = MediaUri.NotFound, + Caption = new RichMultiString { { "en", new RichString("a picture to delete") } }, + }; + await fwdataApi.CreatePicture(_testEntry.Id, sense.Id, picture); + + await _syncService.Import(crdtApi, fwdataApi); + var projectSnapshot = await _fixture.RegenerateAndGetSnapshot(); + + // verify picture arrived in CRDT after import + var crdtSenseBeforeDelete = await crdtApi.GetSense(_testEntry.Id, sense.Id); + crdtSenseBeforeDelete!.Pictures.Should().HaveCount(1, "picture should have been imported"); + + // Act - delete picture in CRDT + await crdtApi.DeletePicture(_testEntry.Id, sense.Id, picture.Id); + + await _syncService.Sync(crdtApi, fwdataApi, projectSnapshot); + + // Assert - FwData should no longer have the picture + var fwdataSenseAfterDelete = await fwdataApi.GetSense(_testEntry.Id, sense.Id); + fwdataSenseAfterDelete.Should().NotBeNull(); + fwdataSenseAfterDelete!.Pictures.Should().BeEmpty(); + }} diff --git a/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs index 4f0cbf9aa1..7daa8468a4 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/UpdateDiffTests.cs @@ -41,6 +41,7 @@ public void SenseDiffShouldUpdateAllFields() .Excluding(x => x.EntryId) .Excluding(x => x.DeletedAt) .Excluding(x => x.ExampleSentences) + .Excluding(x => x.Pictures) .Excluding(x => x.SemanticDomains) .Excluding(x => x.PartOfSpeech) .Excluding(x => x.PartOfSpeechId)); 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 fecf2049db..035ac6ab5b 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt +++ b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt @@ -90,7 +90,8 @@ "SenseId": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -157,7 +158,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "6e869577-8f59-4ebe-bbff-a45c07f4e4c2", @@ -180,7 +182,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e8ef7f59-3646-459a-96c7-482d3c747e8f", @@ -203,7 +206,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "8b2c9d67-ff37-429f-a3ca-678fe960e001", @@ -226,7 +230,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -276,7 +281,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f34831ff-af51-4e62-b56f-4968e1f294fa", @@ -299,7 +305,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -366,7 +373,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e73d5de2-b5ec-4cc8-a679-7f7ca8f673f9", @@ -389,7 +397,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "04f6ebb2-31c2-4089-a9e8-68cc32b6d5d1", @@ -412,7 +421,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b2565e07-2e43-43cb-b533-247f100ac548", @@ -435,7 +445,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3360f2c7-1026-4558-a0fb-e9574aae16ee", @@ -458,7 +469,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -508,7 +520,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -558,7 +571,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -640,7 +654,8 @@ "SenseId": "9e9ad5c2-26f8-4ed1-9803-2af452088701", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -690,7 +705,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -740,7 +756,8 @@ }, "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -823,7 +840,8 @@ "SenseId": "892fa71e-e2cb-4e2f-9ca9-d37d77c5acda", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "13e26eb7-5809-40d3-a08d-78c704ba8a30", @@ -846,7 +864,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -888,7 +907,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -938,7 +958,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1047,7 +1068,8 @@ "SenseId": "67d78fa6-b914-4ac0-94c5-6acd1c2fe657", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1133,7 +1155,8 @@ "SenseId": "0f19a966-61e5-47ae-9388-cf8c4c6ef04c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1183,7 +1206,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1233,7 +1257,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1283,7 +1308,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3af2c61b-b41b-43f4-9915-bb2957437f18", @@ -1298,7 +1324,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1348,7 +1375,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1398,7 +1426,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1448,7 +1477,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -1540,7 +1570,8 @@ "SenseId": "74fb07c9-24d4-4b19-b496-c66dc02011e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1607,7 +1638,8 @@ "SenseId": "983254a5-8270-438b-8bbc-09cbca7a6611", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1688,7 +1720,8 @@ "SenseId": "018a07df-4eac-4c21-becd-717530e1ff84", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1774,7 +1807,8 @@ "SenseId": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1836,7 +1870,8 @@ "SenseId": "d51d8ad2-5320-4551-a267-5d3379d91fb8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -1921,7 +1956,8 @@ "SenseId": "fdd35987-d88b-4fba-b815-b255c72f8329", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2007,7 +2043,8 @@ "SenseId": "7cc77c4a-6c21-4d00-8d27-b032bc94803d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2093,7 +2130,8 @@ "SenseId": "496bf17c-c4c9-4aff-adf2-ed9aa9761409", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "61fe82af-1b62-47a8-9d3e-e0f7684b12fa", @@ -2125,7 +2163,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2215,7 +2254,8 @@ "SenseId": "d59756d9-3fe2-4cd6-9e2e-372ae603152a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2299,7 +2339,8 @@ "SenseId": "38b340b9-6fb4-4134-a7aa-e69a4000c9bf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2376,7 +2417,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2426,7 +2468,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2520,7 +2563,8 @@ "SenseId": "6f5ba1c7-2628-4669-899e-7615d7862b3d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2599,7 +2643,8 @@ "SenseId": "fea4ede0-f970-4b38-97eb-5d7075f0288b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2666,7 +2711,8 @@ "SenseId": "ef626122-aeda-4bd1-951b-63ba29d6e74a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2726,7 +2772,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -2839,7 +2886,8 @@ "SenseId": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "333e5026-83bf-4acd-a0b0-af2f04e1687e", @@ -2887,7 +2935,8 @@ "SenseId": "333e5026-83bf-4acd-a0b0-af2f04e1687e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -2964,7 +3013,8 @@ "SenseId": "09ccd17c-8e0a-4208-95dc-e41cb6b78de9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3031,7 +3081,8 @@ "SenseId": "ef8ce53f-c686-4c74-80c2-ada05ff8a85a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3098,7 +3149,8 @@ "SenseId": "58d47fd5-21e6-4a19-8ca9-768b77eb0c8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3158,7 +3210,8 @@ "SenseId": "cc7b9218-27a9-4ba7-9b69-79a469019855", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3220,7 +3273,8 @@ "SenseId": "a5ec694c-59ec-4765-af3b-314095d1bd7d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3296,7 +3350,8 @@ "SenseId": "6fa0e00f-3280-498a-b33b-cca6d76f3857", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3413,7 +3468,8 @@ "SenseId": "a88193aa-85c7-471f-8f05-939690f832b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3483,7 +3539,8 @@ "SenseId": "d028302e-d03b-4cc8-a588-5c3ef9e449e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3567,7 +3624,8 @@ "SenseId": "d4bf84ed-04fd-41a4-a4ca-312a0a8f171e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3634,7 +3692,8 @@ "SenseId": "bfe613da-5e41-4cce-ac69-4f4b4d1e29ff", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3718,7 +3777,8 @@ "SenseId": "82e9e4c7-3572-4246-8a6b-5dc29d16a278", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3780,7 +3840,8 @@ "SenseId": "40cf2e97-7ba4-4deb-953a-491f165099e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3859,7 +3920,8 @@ "SenseId": "6a92f97b-b8fd-47f4-9a0b-6bc48878475a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -3953,7 +4015,8 @@ "SenseId": "161e717b-55e7-45a5-800b-4dc9e1c4fa30", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4013,7 +4076,8 @@ "SenseId": "b8639913-e8cf-4bbf-8598-0cb7c2421f01", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4087,7 +4151,8 @@ "SenseId": "c2a64c53-bb9f-4485-adce-56aa1bca3acc", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d74a27ca-630a-4e62-9ad1-0dce9252870f", @@ -4143,7 +4208,8 @@ "SenseId": "d74a27ca-630a-4e62-9ad1-0dce9252870f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4234,7 +4300,8 @@ "SenseId": "4b4e98b0-7b69-44a0-8444-9b447c5764b9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4370,7 +4437,8 @@ "SenseId": "79b8ab72-2b9c-4afa-ad44-47fefb074746", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4475,7 +4543,8 @@ "SenseId": "036e4c4f-31f1-4824-8ebe-51fa5a9fbe43", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4535,7 +4604,8 @@ "SenseId": "57bd9b42-76ed-4fa4-8a43-d8ca70973b03", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4595,7 +4665,8 @@ "SenseId": "e138d2ab-fea1-421d-bd27-1a901309ac1a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4654,7 +4725,8 @@ "SenseId": "229fdf0b-c330-423a-8eb2-6a0fc8c76d2b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4730,7 +4802,8 @@ "SenseId": "eea4e67f-9514-4bfb-9bfc-af148446d34f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4814,7 +4887,8 @@ "SenseId": "09c319ff-53fe-4453-b088-8327effb47b7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4893,7 +4967,8 @@ "SenseId": "3301cd02-b803-4fdd-8e0b-1fd9802b699d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -4952,7 +5027,8 @@ "SenseId": "93dd2162-dedc-42bf-9fc6-49e6a765bdf8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5012,7 +5088,8 @@ "SenseId": "1dc5dfb2-e140-4fa2-85b4-ebf9c7cce900", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5062,7 +5139,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -5131,7 +5209,8 @@ "SenseId": "5ffe18b3-db9e-4cf9-9076-107940104d19", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5200,7 +5279,8 @@ "SenseId": "4517e997-6cec-46b3-9596-1e51ac14702d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", @@ -5264,7 +5344,8 @@ "SenseId": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5356,7 +5437,8 @@ "SenseId": "21bac99f-c587-4576-b08c-14ca69dadd83", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "35a38de9-1800-47e0-b4ad-5db19ac79db2", @@ -5379,7 +5461,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ef9ddb54-2d19-450d-9264-f872a8f94776", @@ -5402,7 +5485,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -5476,7 +5560,8 @@ "SenseId": "3fe67f6b-5514-47fc-be95-ac53ee7d8b56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5538,7 +5623,8 @@ "SenseId": "6edd952c-0bdc-4c73-bfb9-1051f163db9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5609,7 +5695,8 @@ "SenseId": "574b5528-5784-42ff-b9d9-fcc156dcc49f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5676,7 +5763,8 @@ "SenseId": "0d40e283-a355-41fa-9919-a800096e3319", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5736,7 +5824,8 @@ "SenseId": "5b98fbde-93bd-4cca-a342-180aa7b92411", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -5868,7 +5957,8 @@ "SenseId": "528e7166-69ba-4991-b067-f411475442b1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fabcc53e-8dd3-4be5-9af5-4f81981ba5be", @@ -5891,7 +5981,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -5995,7 +6086,8 @@ "SenseId": "23a00ada-22b0-402a-a714-8264414db39e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6066,7 +6158,8 @@ "SenseId": "0ea6aae0-5081-4ec7-b418-80d6294553d5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6166,7 +6259,8 @@ "SenseId": "c15ddf45-a80c-411b-9dbc-d844af283e5f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6244,7 +6338,8 @@ "SenseId": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6e0952c8-002d-4c3c-b00a-313f65628c58", @@ -6267,7 +6362,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -6334,7 +6430,8 @@ "SenseId": "df9f4687-672d-4c65-a178-49a1b007c18e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6396,7 +6493,8 @@ "SenseId": "82f97729-0549-4583-876e-d3adf864f6c1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6507,7 +6605,8 @@ "SenseId": "d9a83e05-e52d-41e1-bbab-7733e09b0ca1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6599,7 +6698,8 @@ "SenseId": "14c24243-dc54-422a-880f-1d326cbad344", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "346cb2f1-ca16-47ec-bc29-5451f89fed1d", @@ -6622,7 +6722,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -6700,7 +6801,8 @@ "SenseId": "71fc904e-ac67-4964-8db3-f5c8f2d8c477", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6792,7 +6894,8 @@ "SenseId": "19034ed9-ec16-4284-92f7-905c3d5ef8f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6868,7 +6971,8 @@ "SenseId": "6cc2b1b5-5dbe-45f6-8afb-66b2449798be", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -6961,7 +7065,8 @@ "SenseId": "73e108cc-db6b-4233-b1ad-b72688055779", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7023,7 +7128,8 @@ "SenseId": "3b192b76-c082-4f51-9c65-ce2dab292a7a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7108,7 +7214,8 @@ "SenseId": "7e2c9813-6bc2-42f9-906a-917aec1e20f5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7160,7 +7267,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -7244,7 +7352,8 @@ "SenseId": "dc3a436b-07c6-4c05-8c78-9bbe82ce5549", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7313,7 +7422,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -7405,7 +7515,8 @@ "SenseId": "18815e26-697e-4b5d-9054-5abac267dcd1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7501,7 +7612,8 @@ "SenseId": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7591,7 +7703,8 @@ "SenseId": "8cfdbb3a-856b-42cc-a288-34fbb0109fb4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7653,7 +7766,8 @@ "SenseId": "0ee1a56f-8c3a-4428-96bd-4789818e9c4b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7729,7 +7843,8 @@ "SenseId": "c854bbb5-a15d-4fb3-a044-712160f19483", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7791,7 +7906,8 @@ "SenseId": "7d4c55b8-b905-48ab-b1d5-063cb01ff3fb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7860,7 +7976,8 @@ "SenseId": "b5b7814e-a85d-4825-9ef0-5f4426d64031", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -7910,7 +8027,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -7979,7 +8097,8 @@ "SenseId": "fb256afd-ba11-4319-817d-e4932fb704c3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8031,7 +8150,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -8073,7 +8193,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -8173,7 +8294,8 @@ "SenseId": "b84f1059-e013-43da-b6e8-6690c6220dee", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8252,7 +8374,8 @@ "SenseId": "1c0b81ea-659c-4336-8907-d943baa454af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8321,7 +8444,8 @@ "SenseId": "0e4f6dec-8624-4d51-93b4-f3b613a4872e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8400,7 +8524,8 @@ "SenseId": "46b94bc1-614c-4a32-9be0-3f8fc2a78fec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8469,7 +8594,8 @@ "SenseId": "40de284d-f04e-40c3-8546-aa7b293e3b75", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8538,7 +8664,8 @@ "SenseId": "7c838f3f-0518-4cc1-9468-43df99c9b9dc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8607,7 +8734,8 @@ "SenseId": "876f34e6-2f52-4365-8539-e22ae469c701", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8676,7 +8804,8 @@ "SenseId": "bcf0c7ea-17ee-4699-b6bc-d6cbd59d775d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8762,7 +8891,8 @@ "SenseId": "103e9e1d-c8fa-40ad-9854-16961c1966cb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8812,7 +8942,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -8912,7 +9043,8 @@ "SenseId": "f9599c2f-03c9-4b27-ade3-844499a60168", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -8974,7 +9106,8 @@ "SenseId": "5e1535f3-c85a-493a-b58e-34e08ff7a3dc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9043,7 +9176,8 @@ "SenseId": "262c9ce4-ce33-4332-8ad0-5d93180cf438", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9120,7 +9254,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7d9e442d-044c-4766-8dad-435c6610a449", @@ -9170,7 +9305,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9261,7 +9397,8 @@ "SenseId": "daf3cc27-166e-4225-b673-0a7d9b691574", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6211b4a9-91ec-4828-9539-387ea6645bae", @@ -9284,7 +9421,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9346,7 +9484,8 @@ "SenseId": "47c21100-95f6-4f45-ac84-3f1472109473", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9415,7 +9554,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9477,7 +9617,8 @@ "SenseId": "6bacbaec-0a03-4a7d-91da-13c635e8db28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9539,7 +9680,8 @@ "SenseId": "22e9311b-db4b-4067-b2a7-3dfbfc153559", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9601,7 +9743,8 @@ "SenseId": "bdb94fca-9c10-4bd6-9980-74048048df01", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9653,7 +9796,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9720,7 +9864,8 @@ "SenseId": "1e3df798-e0fc-4e46-9c1d-8f2e0b09ff12", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9782,7 +9927,8 @@ "SenseId": "28d53a45-4107-441d-9931-5d878d16844a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9844,7 +9990,8 @@ "SenseId": "b66ba0ba-bf19-4f63-a1e1-aed0ad7f113a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -9905,7 +10052,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -9972,7 +10120,8 @@ "SenseId": "21facabb-a7f9-4f41-9fe3-8e6132dcbb66", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c4d03434-2267-4f9b-af23-85a1b3c4795d", @@ -9995,7 +10144,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -10064,7 +10214,8 @@ "SenseId": "37ba838d-656a-4819-a527-ffea32a2a288", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10133,7 +10284,8 @@ "SenseId": "fa2dec63-26d6-4f6a-89f2-185b005d3b27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10217,7 +10369,8 @@ "SenseId": "8e2906ba-2068-4582-b306-9609e69a003e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10279,7 +10432,8 @@ "SenseId": "108cb187-a924-40c4-b5ea-fb903dc52593", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10348,7 +10502,8 @@ "SenseId": "e6857eda-73f7-44a1-94a1-94582543cc79", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10424,7 +10579,8 @@ "SenseId": "c8ba0704-0642-4800-9cd7-6b4aaf4c8878", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10510,7 +10666,8 @@ "SenseId": "3bbc4b24-cab8-4bc2-9746-6781d12d2cd5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10572,7 +10729,8 @@ "SenseId": "7d6aba3e-e816-42e1-89dc-d60080422343", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10634,7 +10792,8 @@ "SenseId": "01ee130a-b3dc-4f84-b7eb-669c3a06cf67", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10699,7 +10858,8 @@ "SenseId": "fb19e30f-b594-491f-bf4b-bb6f244eb325", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d7dc87e1-9a7d-4537-bb8d-bf93cb2bbcff", @@ -10722,7 +10882,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "151e4c76-30e4-4eed-b474-2d438c278906", @@ -10745,7 +10906,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ca12b919-bc83-4894-b6e3-3089415ff852", @@ -10768,7 +10930,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -10876,7 +11039,8 @@ "SenseId": "f82e5d68-7c90-4a5b-974d-1fc2381964cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -10926,7 +11090,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -10995,7 +11160,8 @@ "SenseId": "d0b16565-d636-4342-9e70-fd81bf5cd259", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "51f20902-34e8-41f0-bab4-72173fecea6f", @@ -11035,7 +11201,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -11114,7 +11281,8 @@ "SenseId": "07086e7d-dfcc-4f4e-b0d6-0be7a7943f97", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11193,7 +11361,8 @@ "SenseId": "455056b1-a9dc-441e-9fce-95ce0c058bce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11264,7 +11433,8 @@ "SenseId": "938cda59-6ed4-482d-a5fb-23a3bc2d6f0c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11326,7 +11496,8 @@ "SenseId": "b9bb5f59-f628-4b10-a849-f98804e37846", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11388,7 +11559,8 @@ "SenseId": "ebe4d9f3-1e6d-40b8-be42-c47e67170f86", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11450,7 +11622,8 @@ "SenseId": "c1dba9c3-0682-4507-a6b7-bc983f25197f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11512,7 +11685,8 @@ "SenseId": "4135e832-8813-4ab3-a07a-2e4266735271", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11583,7 +11757,8 @@ "SenseId": "cc5334da-90ac-479b-a827-7e50b0dfed82", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11652,7 +11827,8 @@ "SenseId": "d8d36c69-d082-4474-a85d-b3cd6a549364", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11702,7 +11878,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -11781,7 +11958,8 @@ "SenseId": "2446f241-0aea-43cb-8f94-df126030df9c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11843,7 +12021,8 @@ "SenseId": "a0dd2817-6a0c-4123-8fd5-0e92d3e3f298", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11941,7 +12120,8 @@ "SenseId": "ab896c4e-a906-4937-ac67-898b7f8cdff7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -11991,7 +12171,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -12077,7 +12258,8 @@ "SenseId": "f9b5a296-5d59-437e-a2ee-29c9a8b0680e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12163,7 +12345,8 @@ "SenseId": "33af2390-171d-4ea1-9aef-695eb3cb38f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12225,7 +12408,8 @@ "SenseId": "c947e1f9-14e9-4598-96de-2b3bb20331fa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12296,7 +12480,8 @@ "SenseId": "862251ea-bcf4-4e60-a115-6aeace6a308e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12384,7 +12569,8 @@ "SenseId": "0c868028-605f-4f16-a916-4f6861f296cf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12446,7 +12632,8 @@ "SenseId": "c482d897-19bc-4cf4-bb82-46621906e181", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12508,7 +12695,8 @@ "SenseId": "598cba57-6ea3-47b7-8545-7333e7080211", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12606,7 +12794,8 @@ "SenseId": "f2111a87-c2b3-4aba-85c5-6f988e989c56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12668,7 +12857,8 @@ "SenseId": "b608d3ff-420b-43b8-b839-a9ef23597f28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12762,7 +12952,8 @@ "SenseId": "35081858-7200-4c60-90b9-3ddc794dfef9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12838,7 +13029,8 @@ "SenseId": "e98d8742-759c-40bd-a462-485372657540", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -12888,7 +13080,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -12957,7 +13150,8 @@ "SenseId": "e0644624-a939-4c56-b130-eda7980c29e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13026,7 +13220,8 @@ "SenseId": "4d4bafa5-6b53-4377-ad56-876de7ba1292", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0218bc31-f936-4d57-93e8-f87c15bf9f63", @@ -13058,7 +13253,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -13120,7 +13316,8 @@ "SenseId": "667eb258-45b0-413e-b101-f9ccc7cbb64c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13206,7 +13403,8 @@ "SenseId": "d16174f8-2b94-4c11-a10e-eb053d32ff07", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13275,7 +13473,8 @@ "SenseId": "0df2a01b-5501-4222-b5c4-3560033a535b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b979cb5e-7abc-429e-acdf-27475037a08c", @@ -13298,7 +13497,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -13350,7 +13550,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -13419,7 +13620,8 @@ "SenseId": "8af77e66-bc0e-4b3d-8860-5a7b8628de13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13488,7 +13690,8 @@ "SenseId": "b70c2d47-0841-4045-afac-e3779f3f7bdc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13548,7 +13751,8 @@ "SenseId": "feeafad4-6f4a-4514-ac5f-3a3e784346ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13615,7 +13819,8 @@ "SenseId": "a7cbae04-07cd-4468-8e0e-001bc7040c54", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", @@ -13686,7 +13891,8 @@ "SenseId": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13748,7 +13954,8 @@ "SenseId": "6634b06f-e8af-46a2-832b-e65f7e87387e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13826,7 +14033,8 @@ "SenseId": "b41d2ad6-a040-4971-8dba-b1173e7dbdd0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13888,7 +14096,8 @@ "SenseId": "7c0458ed-29b5-49fb-85ca-1be940e30804", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -13966,7 +14175,8 @@ "SenseId": "cb2a8121-7277-419a-a9ba-e8ae7b74f41b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14035,7 +14245,8 @@ "SenseId": "41c948f2-73e7-4a07-b802-1b5434ddcf0b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14116,7 +14327,8 @@ "SenseId": "40678389-a031-4bb9-8947-2ecda2aab5d9", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "328fa8c2-8166-4a83-ba6a-35d3eb29acf4", @@ -14139,7 +14351,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -14225,7 +14438,8 @@ "SenseId": "62a80d7e-5461-43a3-92f4-1873889f3511", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14294,7 +14508,8 @@ "SenseId": "6812074c-a5f1-4d7a-bc3b-1c6f7a9d6d77", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14366,7 +14581,8 @@ "SenseId": "86614d59-54a3-4a59-9ddb-edb9d6645555", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14438,7 +14654,8 @@ "SenseId": "4fb83982-c268-4643-a079-ef6595b52ddf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14507,7 +14724,8 @@ "SenseId": "f4b27c24-e157-489c-8058-03974376986a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14574,7 +14792,8 @@ "SenseId": "e2d50560-29f2-45f5-b7f9-75ee665abd0d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14668,7 +14887,8 @@ "SenseId": "8ab4bf03-6757-4e6f-af7a-13262f5fc23c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14737,7 +14957,8 @@ "SenseId": "3b545c5d-5faa-4483-bbb4-810d89b8921a", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2ef6704b-a7cd-4c84-b9df-b6d7a07a6246", @@ -14760,7 +14981,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -14829,7 +15051,8 @@ "SenseId": "4f0765ac-5b8c-4689-bf46-2d740e9834b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14889,7 +15112,8 @@ "SenseId": "8f7d60b4-f32f-4879-8578-765623fd3331", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -14958,7 +15182,8 @@ "SenseId": "b2981643-8242-45df-8155-4f9a1b89b784", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15027,7 +15252,8 @@ "SenseId": "be850366-c73f-40d7-b98f-3ec83fea6241", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15079,7 +15305,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15141,7 +15368,8 @@ "SenseId": "87d914a0-8762-4a1d-939c-d73fe5ddd9db", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15210,7 +15438,8 @@ "SenseId": "866745ed-de98-43ba-8f7b-a1dd2945cd1b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6cf5b513-a228-45d4-aefe-8e3c25a10b5f", @@ -15233,7 +15462,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15302,7 +15532,8 @@ "SenseId": "15ad161e-ecf7-43b6-9e80-09d7e1cb662e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15371,7 +15602,8 @@ "SenseId": "be0fe661-be7d-47b9-b126-b4fae8a28ffc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15440,7 +15672,8 @@ "SenseId": "4c9a4100-6f5d-4474-aef6-d12e732a498c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15519,7 +15752,8 @@ "SenseId": "93d839b1-7318-4f4f-8279-90e8fda687a3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15597,7 +15831,8 @@ "SenseId": "bbbd1861-ae82-410e-abba-cf73b0e1cb50", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15666,7 +15901,8 @@ "SenseId": "0f5ad0c5-d4b8-4b7d-9954-a3e3467f74a7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15747,7 +15983,8 @@ "SenseId": "849c97b4-d0c2-4fa2-81c7-c2d734332f5e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -15799,7 +16036,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "0adab179-a7f0-45a9-a1c3-1966d68bf45f", @@ -15821,7 +16059,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15890,7 +16129,8 @@ "SenseId": "50485a90-b701-4c13-8986-3b6a94d1e82f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "f5e72635-c18f-4558-bff8-af539d7f41c7", @@ -15913,7 +16153,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -15982,7 +16223,8 @@ "SenseId": "2a506da0-ad78-4381-9286-07190c61fafd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16032,7 +16274,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16094,7 +16337,8 @@ "SenseId": "babf56f3-4d0a-48fb-8f26-4007551a15c9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16184,7 +16428,8 @@ "SenseId": "aad8f67f-05af-46a3-bc2f-39ef6c8ee715", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16253,7 +16498,8 @@ "SenseId": "dc95b51f-2e22-46fc-b264-95b7e1a465ea", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "260a0ff6-b53a-436c-a839-56f99b873cc5", @@ -16276,7 +16522,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16357,7 +16604,8 @@ "SenseId": "0a2ec452-a7c2-4cac-b65d-19e501818220", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16443,7 +16691,8 @@ "SenseId": "2642c7aa-5686-452c-b7c6-aff3f21700da", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6f50eb34-609e-49e1-b906-684bd2a6edd2", @@ -16483,7 +16732,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16561,7 +16811,8 @@ "SenseId": "256dc263-e16c-4140-90eb-5e8bba3369d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16632,7 +16883,8 @@ "SenseId": "068d955d-9dc7-486c-be44-152a2da1942a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16691,7 +16943,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16760,7 +17013,8 @@ "SenseId": "6be12455-6e00-4e76-8274-39af8a79bd8d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16829,7 +17083,8 @@ "SenseId": "8d6d7cf0-87fb-4eac-a2dd-5413f04a549c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -16896,7 +17151,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -16955,7 +17211,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -17039,7 +17296,8 @@ "SenseId": "d0e2735c-ac38-4a03-a923-d706d5127e1c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17101,7 +17359,8 @@ "SenseId": "b4d055cf-e4e2-4d8f-b493-eccdb120b143", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17163,7 +17422,8 @@ "SenseId": "9efdf055-1117-41a7-a720-b7cd082d13b2", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b4c13621-6170-4f5d-a97e-02fd015450a1", @@ -17186,7 +17446,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -17253,7 +17514,8 @@ "SenseId": "001b2172-8005-4328-8673-d9118decfa35", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17315,7 +17577,8 @@ "SenseId": "51c5d694-274b-4ce5-8a5a-650ca5057ded", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17382,7 +17645,8 @@ "SenseId": "5b775015-98c2-4032-b74a-6e42fa1ab3d0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17442,7 +17706,8 @@ "SenseId": "0c2ac9ac-c39c-49c9-8fe0-8bba863230d5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17520,7 +17785,8 @@ "SenseId": "0da360ba-60c7-4ed4-a2de-fa27c149bfd6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17582,7 +17848,8 @@ "SenseId": "c266ea9d-0c6f-40f9-ae67-122f730c76fe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17666,7 +17933,8 @@ "SenseId": "1723b409-22e0-450d-b2f0-6bdd33b70700", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17733,7 +18001,8 @@ "SenseId": "0c36e0db-92bc-47d4-8008-430138d950eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17793,7 +18062,8 @@ "SenseId": "2c015b4a-ea22-4b7b-8440-20c0bb423b90", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -17845,7 +18115,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -17914,7 +18185,8 @@ "SenseId": "dd4e70e7-f467-413f-84cd-56b25117171e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18000,7 +18272,8 @@ "SenseId": "c1d23b8f-a05f-4b3e-a205-00622c51d630", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18078,7 +18351,8 @@ "SenseId": "091a6d4f-7854-4fde-8ece-f8375261b979", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18152,7 +18426,8 @@ "SenseId": "32b82aa0-753b-4ef7-a13a-45171eb0ad8a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18202,7 +18477,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -18292,7 +18568,8 @@ "SenseId": "73f6e11c-62f5-48a3-bcc6-1a90c107b1a7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18369,7 +18646,8 @@ "SenseId": "0a1e1f25-1d28-46ff-b10f-61efeeff642a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18436,7 +18714,8 @@ "SenseId": "1dc81749-6059-4eef-a64c-abd0bc23375e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18522,7 +18801,8 @@ "SenseId": "25b5e61d-26ec-40e9-83e6-ba02026295cb", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e21ee24d-94d2-43ea-85fb-2661273563da", @@ -18545,7 +18825,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -18629,7 +18910,8 @@ "SenseId": "7cb4163f-0b09-4fa0-81d3-0c30d6e368d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18721,7 +19003,8 @@ "SenseId": "8d7526a3-26d2-4ebf-b427-2213caf65140", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -18813,7 +19096,8 @@ "SenseId": "79e34609-699f-468b-9a02-c4dab39803de", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "64759618-9e6e-4d42-9839-5f582d66d270", @@ -18836,7 +19120,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -18940,7 +19225,8 @@ "SenseId": "58513bc2-508b-4185-8e3e-3c993e671006", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19007,7 +19293,8 @@ "SenseId": "1553bb4c-f571-4084-98ea-ddcf0632c9ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19076,7 +19363,8 @@ "SenseId": "fff0965a-ef07-4bfb-826c-ddffd0f6ecb3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19143,7 +19431,8 @@ "SenseId": "946efc4c-dce4-49b1-a7ff-09ea2de426ce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19210,7 +19499,8 @@ "SenseId": "140ed3cc-46e0-46ff-8380-36d88fbb018c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19272,7 +19562,8 @@ "SenseId": "bcc30797-cc4c-4e2e-990f-28425d5c87ce", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "12e66c70-299d-41eb-8d6a-44aacc3288d1", @@ -19295,7 +19586,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -19364,7 +19656,8 @@ "SenseId": "f16867d4-c4f5-4aff-afe8-77532ee2969e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19426,7 +19719,8 @@ "SenseId": "f6f134c4-459f-4207-bdd3-857b909318d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19488,7 +19782,8 @@ "SenseId": "c367950c-490b-4237-aabf-acde1d506b3c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19557,7 +19852,8 @@ "SenseId": "7ee86a66-6781-4a36-b47b-fa6ee731ff3f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19659,7 +19955,8 @@ "SenseId": "2ecf3be4-12b5-4622-8d44-15f8e81f60e6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19728,7 +20025,8 @@ "SenseId": "956aeb5d-0baf-4009-b523-0147285efbd0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19790,7 +20088,8 @@ "SenseId": "f888120f-95ec-43b9-a70a-2018c3f7966c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19892,7 +20191,8 @@ "SenseId": "8010f318-454b-404d-aa7e-92b76ab1e274", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -19984,7 +20284,8 @@ "SenseId": "089f49ef-98ab-4903-8e66-1872c4fa94e6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3033d933-d549-4f5e-b519-644f16d2bd2b", @@ -20007,7 +20308,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -20086,7 +20388,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c6af0fa0-431c-4b33-a1d9-39b590222ee2", @@ -20109,7 +20412,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -20168,7 +20472,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -20253,7 +20558,8 @@ "SenseId": "90f0534c-8f34-4d2d-b5e7-3212a3cd309e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20320,7 +20626,8 @@ "SenseId": "a460530d-d2c1-49a7-bf74-7a217a0ce135", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20398,7 +20705,8 @@ "SenseId": "738f6d6e-7089-4821-a542-84ab425ace05", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20448,7 +20756,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -20517,7 +20826,8 @@ "SenseId": "9997f6d6-3ed5-4c52-b575-0bb3bfb52a4c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20627,7 +20937,8 @@ "SenseId": "979edecf-f56b-4062-8743-60c9c5c6b7df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20689,7 +21000,8 @@ "SenseId": "5e158006-75c7-40e0-8a9f-79ea9d6a1d24", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20749,7 +21061,8 @@ "SenseId": "b07605b1-1c48-4476-bf7f-f6a7b8064666", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20809,7 +21122,8 @@ "SenseId": "327fb629-2035-4497-a693-46b3c42b983c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20871,7 +21185,8 @@ "SenseId": "ddf2fda7-6c8c-41fa-ac13-a9d1a0fecf8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -20921,7 +21236,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21029,7 +21345,8 @@ "SenseId": "967c962b-d951-4995-a53d-dcaeacd7cb35", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21096,7 +21413,8 @@ "SenseId": "69f12f41-0c1d-417d-bd0c-2c6b6781d988", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21163,7 +21481,8 @@ "SenseId": "8d2e5fd4-e831-4be7-8486-e2189b72a192", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "56e8f620-7f27-4342-93eb-2352a0896146", @@ -21214,7 +21533,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21281,7 +21601,8 @@ "SenseId": "097bc15b-ca93-49ab-bb54-7ddc742be942", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21341,7 +21662,8 @@ "SenseId": "5f043f8f-1df7-4c70-9139-ff69c4333bfd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21408,7 +21730,8 @@ "SenseId": "72b9fc9f-db83-4f38-a154-91aa1f6457fb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21470,7 +21793,8 @@ "SenseId": "9cc5b875-1529-4343-8422-15e88e1e9ff9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21548,7 +21872,8 @@ "SenseId": "212df5f7-c4a1-4be9-8c7d-26730391610c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21617,7 +21942,8 @@ "SenseId": "9903681c-20e6-4e41-b0fa-99c86c518943", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21694,7 +22020,8 @@ "SenseId": "120863e9-9271-4d90-9f47-f1df0101b949", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "eb416cb0-0626-4fd7-81fe-299fd955e507", @@ -21727,7 +22054,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "35d20aad-653a-4dee-9af3-9bc37f3221b0", @@ -21750,7 +22078,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a0477f9f-4622-4ed6-8a4d-8a9672856428", @@ -21783,7 +22112,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21868,7 +22198,8 @@ "SenseId": "dd58d55c-4ca6-4726-a9c2-10f45bc21515", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -21920,7 +22251,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -21982,7 +22314,8 @@ "SenseId": "cbce6a29-7a85-4714-9c10-ef640500c220", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22061,7 +22394,8 @@ "SenseId": "6b8d3c6f-10ec-4b79-a267-e7fb490d27b3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22121,7 +22455,8 @@ "SenseId": "1476f06f-5d14-4d5e-b6e8-ab23e0ce6218", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22188,7 +22523,8 @@ "SenseId": "661ca6fd-1e8b-412c-977f-8ce7bda3c73a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22265,7 +22601,8 @@ "SenseId": "264e5106-44f9-4d15-b5b2-f0a4acc2237e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22344,7 +22681,8 @@ "SenseId": "961b8f0e-88f5-43a7-8ef6-0273413b6ade", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22428,7 +22766,8 @@ "SenseId": "d633d91a-a2d9-4d0b-bd63-76cfcab618df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22480,7 +22819,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -22547,7 +22887,8 @@ "SenseId": "ff02a48b-3cdb-45a0-8c0a-b16bb506aa9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22609,7 +22950,8 @@ "SenseId": "8b829fb0-227b-4ef9-8451-b04e7b3de29e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22686,7 +23028,8 @@ "SenseId": "5407cf61-e396-4fbe-bb1c-78bd5926d237", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22776,7 +23119,8 @@ "SenseId": "f3ca3e78-5b47-46f0-8964-7c7308675fbb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22862,7 +23206,8 @@ "SenseId": "0c26a49a-907c-4889-81c6-fc317afaca7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -22929,7 +23274,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23015,7 +23361,8 @@ "SenseId": "4ab7f4b4-6ac8-4409-8ce4-ad1684644bc3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23108,7 +23455,8 @@ "SenseId": "03e96b83-c7c5-49ce-85eb-9334869c954c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23160,7 +23508,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23294,7 +23643,8 @@ "SenseId": "c9759c21-69d4-49f2-abf1-1b5189a166c9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23344,7 +23694,8 @@ }, "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23403,7 +23754,8 @@ }, "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23472,7 +23824,8 @@ "SenseId": "d1645b43-54ad-4ae3-86a8-2adc01b10b86", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23539,7 +23892,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23606,7 +23960,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", @@ -23679,7 +24034,8 @@ "SenseId": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23748,7 +24104,8 @@ "SenseId": "3336e632-6459-4a1c-a23d-905ffe86dd5a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23815,7 +24172,8 @@ "SenseId": "e60e481f-7833-4449-aa05-486579405700", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "143dddd7-c67c-47a4-8520-d7c97bfea5fb", @@ -23838,7 +24196,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -23905,7 +24264,8 @@ "SenseId": "e4a2ddaf-3936-4686-b2c3-8a4207268d2f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -23984,7 +24344,8 @@ "SenseId": "bea34cfa-cfd1-4785-b126-cab5ac699c34", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24055,7 +24416,8 @@ "SenseId": "ca6c691d-4d25-4930-9734-41c1fc6a80d3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24141,7 +24503,8 @@ "SenseId": "8a628d12-fc65-4fca-a4cd-b72fcfb3f4e9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24201,7 +24564,8 @@ "SenseId": "2f472c27-cbde-4af6-882c-332e088042be", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24253,7 +24617,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24305,7 +24670,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24374,7 +24740,8 @@ "SenseId": "aaa90268-96b6-4621-90c0-b15bdcae3797", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24426,7 +24793,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24488,7 +24856,8 @@ "SenseId": "32ab3b26-bde6-4c4e-b893-7bdebbba97f3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24592,7 +24961,8 @@ "SenseId": "1dfc498d-6fd3-4ab7-bf19-e132a6a65490", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24673,7 +25043,8 @@ "SenseId": "93fbb734-6c88-49d4-9b17-9eeb0c71173a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24725,7 +25096,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -24785,7 +25157,8 @@ "SenseId": "08da4e99-a9f0-4f90-a25a-3f7d56bff893", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24852,7 +25225,8 @@ "SenseId": "3dcf0108-efef-48f1-932c-0c1f2b25a959", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -24921,7 +25295,8 @@ "SenseId": "42ee67c5-c6a9-4c1a-984a-30c5df50572f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a024c2c5-3356-4b6d-95c0-f6b04c3eb1fb", @@ -24936,7 +25311,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25005,7 +25381,8 @@ "SenseId": "7e4ab6ec-915b-40b4-b04f-e6fae33c1958", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25091,7 +25468,8 @@ "SenseId": "93ce8887-85b4-4cfb-9d41-d3a78a59a674", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25177,7 +25555,8 @@ "SenseId": "c96968f6-3ba4-41dc-866f-46621635a4b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25239,7 +25618,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "484817a2-3fd3-4c6f-87a1-d9aa6d6c7720", @@ -25279,7 +25659,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b68b4b80-2291-4ad4-8489-5908f4a3ce32", @@ -25301,7 +25682,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25382,7 +25764,8 @@ "SenseId": "c7506d9e-5153-476e-a335-8809d256bb16", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25465,7 +25848,8 @@ "SenseId": "30c7b3aa-10e4-4946-ac04-e6d7a6be141c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25527,7 +25911,8 @@ "SenseId": "a4d763ac-cce7-4b81-85cf-55ef86f16cb2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25579,7 +25964,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25678,7 +26064,8 @@ "SenseId": "58c422e6-bf58-48f7-837b-0d694c46c178", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25740,7 +26127,8 @@ "SenseId": "1740df40-5673-47aa-847e-65c437550442", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25802,7 +26190,8 @@ "SenseId": "8637fd45-a2f1-4e08-95d3-8d79ca10a64f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "47f507af-496d-4983-8c2f-74ddd6843b5f", @@ -25825,7 +26214,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -25887,7 +26277,8 @@ "SenseId": "adf88e54-3b71-4d63-bcb0-ddce4ff78565", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -25949,7 +26340,8 @@ "SenseId": "8077a104-cdc7-4366-8bf5-b73997d3abfa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26010,7 +26402,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26095,7 +26488,8 @@ "SenseId": "14518a12-4f6b-457c-b059-31e8941432c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26164,7 +26558,8 @@ "SenseId": "c67be91a-7537-47ac-b4ac-f16dddba5dea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26233,7 +26628,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26285,7 +26681,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ea2ea2a2-daa4-4c5c-b880-bedc73e66594", @@ -26308,7 +26705,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26377,7 +26775,8 @@ "SenseId": "5121e7bd-4eb3-4e74-9779-d833fcbd6c33", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "209e52a4-dac0-4220-904d-bd2774dfb631", @@ -26440,7 +26839,8 @@ "SenseId": "209e52a4-dac0-4220-904d-bd2774dfb631", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26490,7 +26890,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26557,7 +26958,8 @@ "SenseId": "8b4ba5d6-8067-44f7-8484-35c96aa7d262", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26617,7 +27019,8 @@ "SenseId": "b3b6bbb6-5c84-4ff0-a8e6-1e2899d12400", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26703,7 +27106,8 @@ "SenseId": "8a8e149b-f056-4234-9810-4b90b3ffb19d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26782,7 +27186,8 @@ "SenseId": "1743274c-54d5-4ff5-b444-3d4153c77cb5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26849,7 +27254,8 @@ "SenseId": "b35a109a-8344-44cc-bf8f-3c9c70d5a868", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -26901,7 +27307,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -26980,7 +27387,8 @@ "SenseId": "8cdc935e-49af-4457-a414-d38b10ec906b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27072,7 +27480,8 @@ "SenseId": "a97c0f4d-73e0-4b95-931f-31c8a515729e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27141,7 +27550,8 @@ "SenseId": "04f6c79e-348b-43f0-9cd4-0725a74814d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27203,7 +27613,8 @@ "SenseId": "5b4c2c6a-3c8e-45d0-927d-385f7cbb75bd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27272,7 +27683,8 @@ "SenseId": "559be1cc-d82c-415d-b5b7-2043a9604511", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27351,7 +27763,8 @@ "SenseId": "07dc886f-0dba-4aa6-963a-3d891662d3bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27413,7 +27826,8 @@ "SenseId": "25b238b4-a5d7-4131-a98d-62f2238a4555", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0d63ae85-adf8-4fb0-a52a-58a5c41bfb86", @@ -27437,7 +27851,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -27499,7 +27914,8 @@ "SenseId": "4168c68a-7b17-4f1a-97f7-37f5575e39e1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "134179c7-370a-4bbb-8fe8-478cce52139d", @@ -27522,7 +27938,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -27584,7 +28001,8 @@ "SenseId": "1c9f2594-1004-425c-866f-d88e69fe7472", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27668,7 +28086,8 @@ "SenseId": "7502b8d4-c1a1-46c6-a985-46966413ff32", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27738,7 +28157,8 @@ "SenseId": "78a7affb-82be-4888-be1c-a5ece125682b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27800,7 +28220,8 @@ "SenseId": "2030a4db-c8e3-4492-8eee-ee03fa95cdae", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27885,7 +28306,8 @@ "SenseId": "aa2f490f-656d-4fac-85ba-f27ffd198fc7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -27937,7 +28359,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -27999,7 +28422,8 @@ "SenseId": "d3eb5101-3c90-4cec-9ba8-abcca2cc7fd4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28093,7 +28517,8 @@ "SenseId": "6ccc4bda-d84e-44bc-b401-7a831fe7e78e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28179,7 +28604,8 @@ "SenseId": "8a75f1f8-dea3-4c3f-9e35-63b674b1d525", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28262,7 +28688,8 @@ "SenseId": "371d8c7f-e0eb-41e2-a9b0-ae1e8cf6daa3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28329,7 +28756,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28379,7 +28807,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a9da180c-b617-4897-bbc3-9483e3ec9fae", @@ -28402,7 +28831,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b7dd12e2-4eaa-40a1-a07e-8239b886f77f", @@ -28425,7 +28855,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ad95bb10-5844-4233-9481-227dc410fc16", @@ -28448,7 +28879,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28548,7 +28980,8 @@ "SenseId": "62af26f3-cd22-4b25-82dc-3dc7cb6ba886", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28598,7 +29031,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28657,7 +29091,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28726,7 +29161,8 @@ "SenseId": "b179aa5a-18b1-43c4-8802-225af8d2473a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -28776,7 +29212,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28828,7 +29265,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28887,7 +29325,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -28956,7 +29395,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29008,7 +29448,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29077,7 +29518,8 @@ "SenseId": "cbf8b07f-44e9-4847-beee-21ee79a0e073", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29144,7 +29586,8 @@ "SenseId": "e86f33e1-ff72-4335-a704-04954f4ebee1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29236,7 +29679,8 @@ "SenseId": "f24bb8e1-419f-4ff0-9020-ad57bec92129", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29305,7 +29749,8 @@ "SenseId": "41dc96b0-ec32-4968-adf5-420c21fa5a8b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29356,7 +29801,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29434,7 +29880,8 @@ "SenseId": "ef2dfd9b-673b-4948-8fea-0e44aa5e12a7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29484,7 +29931,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29534,7 +29982,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29584,7 +30033,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29651,7 +30101,8 @@ "SenseId": "6895e856-d373-4190-b7ac-8d185a18e4ce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29745,7 +30196,8 @@ "SenseId": "990acf6f-9eb5-4b84-b3c5-ac736813481b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9e09f628-2cc0-47f1-a747-f199af978acf", @@ -29801,7 +30253,8 @@ "SenseId": "9e09f628-2cc0-47f1-a747-f199af978acf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -29851,7 +30304,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29901,7 +30355,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -29970,7 +30425,8 @@ "SenseId": "c38c6c69-6d59-41a5-b9d4-cc259b30b56a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -30022,7 +30478,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30081,7 +30538,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30131,7 +30589,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "02fdaa00-2856-4abc-85f8-7ceae651d8d4", @@ -30154,7 +30613,8 @@ }, "PartOfSpeechId": "730528ca-6a9b-4424-9839-a58bf66db779", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30204,7 +30664,8 @@ }, "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30271,7 +30732,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30321,7 +30783,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30388,7 +30851,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30455,7 +30919,8 @@ }, "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30505,7 +30970,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30564,7 +31030,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30614,7 +31081,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30673,7 +31141,8 @@ }, "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30723,7 +31192,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -30782,7 +31252,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "908d1ba5-dd47-4009-854e-4cc834f59559", @@ -30805,7 +31276,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f83e6701-d207-4261-a0ce-5de4c94449ee", @@ -30828,7 +31300,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b2521441-a2c1-41ba-af12-5b5ce51208b7", @@ -30851,7 +31324,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "8f9dbfe6-b955-4a56-9319-7315c1c03b14", @@ -30874,7 +31348,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -30941,7 +31416,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "65b1dd23-3788-4968-860b-b29c8439c601", @@ -30964,7 +31440,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31014,7 +31491,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31081,7 +31559,8 @@ "SenseId": "0b844486-8001-4dec-bc3f-1836662621ea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31167,7 +31646,8 @@ "SenseId": "09f516ad-9d5a-442e-92a3-c4095e3e343c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31234,7 +31714,8 @@ "SenseId": "319aff20-994b-4b4d-b28c-15238443f956", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31294,7 +31775,8 @@ "SenseId": "edc77eed-15d6-45df-90ce-4d484442249f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31354,7 +31836,8 @@ "SenseId": "3ec38f1b-6eef-427f-8ff3-b8c2954de6a6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31440,7 +31923,8 @@ "SenseId": "4ffd0f96-ebcb-41b4-b896-e97d3dceb36a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31502,7 +31986,8 @@ "SenseId": "2826ed49-b83a-4b50-9c8a-05197cc50420", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31562,7 +32047,8 @@ "SenseId": "f9d28c7e-718b-4694-8d27-d1b8060ae4e0", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fb259a5a-3ee7-4a7c-b197-59c492d89384", @@ -31585,7 +32071,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31663,7 +32150,8 @@ "SenseId": "cd8ecd88-36e9-4e60-95ac-545ca3716063", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7fca8e82-3e78-4cb6-88fd-6f4e15177efb", @@ -31703,7 +32191,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -31763,7 +32252,8 @@ "SenseId": "d6e01571-4afc-4a63-93d6-d252408e2eeb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31903,7 +32393,8 @@ "SenseId": "90b31605-76db-4597-baa8-45ec4fda706d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -31963,7 +32454,8 @@ "SenseId": "4e52fc2c-f04f-4397-bf00-9145be555027", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32054,7 +32546,8 @@ "SenseId": "18350c76-4bb9-4557-94e5-001eeca8c77a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32121,7 +32614,8 @@ "SenseId": "4a8349d7-374b-4a3f-a008-2a8d036a6c72", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32198,7 +32692,8 @@ "SenseId": "ab06a13e-8c8a-4c08-ace1-1dbe151d6a1f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32277,7 +32772,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -32344,7 +32840,8 @@ "SenseId": "c5a05a9b-8a7b-4b30-90b3-a22a0ede868c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32421,7 +32918,8 @@ "SenseId": "80130c84-3eb0-4670-b896-4cf854eb6103", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32481,7 +32979,8 @@ "SenseId": "318d5b28-51b2-4924-88a0-044bbbf75cf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32550,7 +33049,8 @@ "SenseId": "24907a9a-fa88-435d-bdd1-2a61fc122e4a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32617,7 +33117,8 @@ "SenseId": "5b80af28-d70b-41fa-b3e4-5a0e1431a220", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32684,7 +33185,8 @@ "SenseId": "604ebd63-fd39-460e-a0ca-93d6d9443e41", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32751,7 +33253,8 @@ "SenseId": "511eb02f-a823-4d38-aeb7-5a35da034431", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32818,7 +33321,8 @@ "SenseId": "7edf14c7-8c33-4222-8eea-e99b6e727de2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -32894,7 +33398,8 @@ "SenseId": "9134f0c8-c69f-49d4-af7d-86d170ffff68", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33032,7 +33537,8 @@ "SenseId": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33116,7 +33622,8 @@ "SenseId": "01efa877-a8ff-43d5-9912-51eb18a83af9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33183,7 +33690,8 @@ "SenseId": "4bd3e2a9-e928-42b1-843f-6cde97a3ffa8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33243,7 +33751,8 @@ "SenseId": "6b4af1f4-5c2f-400e-bb9f-1c0ab4e75492", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33305,7 +33814,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33404,7 +33914,8 @@ "SenseId": "6b44df76-bd2d-44b9-b086-0f1426f1a38f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33454,7 +33965,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33521,7 +34033,8 @@ "SenseId": "72a474a7-7a03-42a1-9a9c-9add30627592", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33652,7 +34165,8 @@ "SenseId": "94f4937a-3404-4d37-8cd8-027547d1b381", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33719,7 +34233,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "70ee8eb4-fc68-4a09-8074-9b51c70d3c3c", @@ -33741,7 +34256,8 @@ }, "PartOfSpeechId": "cf4b95e5-2362-412d-92a1-24846a4bab59", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -33801,7 +34317,8 @@ "SenseId": "31ffccc7-f41d-4d9c-b82c-dedb94113c20", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33868,7 +34385,8 @@ "SenseId": "9ba6dc47-1937-4a0c-bbf4-43464a8ce714", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -33945,7 +34463,8 @@ "SenseId": "4d37c94f-4809-4c0f-8082-1af196273387", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "43505c77-2177-4fd9-b646-01366fc6d214", @@ -33967,7 +34486,8 @@ }, "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "373e19da-a2fe-4b25-ac07-22dae481675a", @@ -33989,7 +34509,8 @@ }, "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -34058,7 +34579,8 @@ "SenseId": "ce47cec8-8bfd-45ae-9f97-20dcf5d03892", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "eee643f8-98a4-499d-9d23-4cc23bab31ef", @@ -34081,7 +34603,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -34167,7 +34690,8 @@ "SenseId": "0d2f5079-6737-4fde-97cb-006da839a693", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34227,7 +34751,8 @@ "SenseId": "0c1ff827-abd7-4cb3-803d-3c11dba1ff5c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34313,7 +34838,8 @@ "SenseId": "f7c942cb-bbf4-444c-a244-ce6ac9bd36fa", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "827e2351-ff14-4430-89e4-8a02747e0f94", @@ -34336,7 +34862,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7b4ed3bb-aea1-4906-8bab-37c602f04a6a", @@ -34359,7 +34886,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -34421,7 +34949,8 @@ "SenseId": "f363c0f1-ede7-44f0-bd1b-75ba816911aa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34561,7 +35090,8 @@ "SenseId": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34657,7 +35187,8 @@ "SenseId": "6e63fbb8-5f43-44f0-b0b5-a27f49457178", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34741,7 +35272,8 @@ "SenseId": "6aa73def-278e-4751-b031-c9878ad3b838", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34810,7 +35342,8 @@ "SenseId": "35b11b7d-8b22-4ad9-945b-a537452d3a36", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34904,7 +35437,8 @@ "SenseId": "50240252-ca03-40bb-8d69-7d6762997929", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -34954,7 +35488,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -35038,7 +35573,8 @@ "SenseId": "06e54dd2-932a-4bd0-a72f-f33bf6285750", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35105,7 +35641,8 @@ "SenseId": "98dafe91-7baa-41bf-9cb3-cd20fff87679", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35167,7 +35704,8 @@ "SenseId": "9dae3ae5-d349-4929-8fd0-d900777cdcde", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35227,7 +35765,8 @@ "SenseId": "f7551d4a-a6a8-431b-82ae-cc87738cf29d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35312,7 +35851,8 @@ "SenseId": "269f11ac-1cb3-4d45-885f-2b321b95e190", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35388,7 +35928,8 @@ "SenseId": "f2cbdf3f-b54d-4bdb-9dc7-b5b9a5e55722", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35472,7 +36013,8 @@ "SenseId": "4bec2e73-a2fa-4be6-976f-ba6ff9f7acc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35539,7 +36081,8 @@ "SenseId": "97259073-9a23-4056-8f5d-6a500118ec61", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35608,7 +36151,8 @@ "SenseId": "798afb72-f49f-478d-a1b9-1bb958494e15", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35679,7 +36223,8 @@ "SenseId": "c37de104-6633-4a7f-8334-fba322f0c89b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35765,7 +36310,8 @@ "SenseId": "cddee31a-556f-4a76-8e75-2be21302d85f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35857,7 +36403,8 @@ "SenseId": "1331035e-4a2d-4ede-b72a-8db3d2893ea6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -35943,7 +36490,8 @@ "SenseId": "a45d7be9-f4bc-4a75-a43e-4d6d8c281bc8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36010,7 +36558,8 @@ "SenseId": "d64ed827-1d47-45ee-b253-1cc55d13b5d3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36093,7 +36642,8 @@ "SenseId": "dc9f82a8-e346-4734-a417-bfaee9c1b4c7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36172,7 +36722,8 @@ "SenseId": "1e1687c0-3394-4bc4-8bed-26c96d07c0de", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36234,7 +36785,8 @@ "SenseId": "5ea927e6-ee78-4f63-8ef9-bf46ff0b33f0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36296,7 +36848,8 @@ "SenseId": "067e18f7-8adc-447e-a072-a68ca8ff978b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36390,7 +36943,8 @@ "SenseId": "0f2c0668-a52f-4ce7-83e7-a492905e4f82", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6ee1d961-3dae-4b46-9579-e7e8e34163a6", @@ -36413,7 +36967,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -36491,7 +37046,8 @@ "SenseId": "17b61c66-081e-4e77-bd7e-dbd2aead3932", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36553,7 +37109,8 @@ "SenseId": "e1d99b98-3faa-4fdf-a883-46c21364b777", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36622,7 +37179,8 @@ "SenseId": "fd5ae1c9-56af-4bf4-85ce-e9e984550c42", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36689,7 +37247,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -36752,7 +37311,8 @@ "SenseId": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36812,7 +37372,8 @@ "SenseId": "471f30f4-6ef1-4306-b7be-bc5292a92b29", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36872,7 +37433,8 @@ "SenseId": "587d38d2-4461-4d26-bbb6-9ecf46861a1b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -36932,7 +37494,8 @@ "SenseId": "6d090ec4-8a2f-4648-996d-426753654a77", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37011,7 +37574,8 @@ "SenseId": "c2a3421e-e0f7-4591-bf62-3380df4bf413", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37073,7 +37637,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37149,7 +37714,8 @@ "SenseId": "339f2931-7da0-4c4f-b4ca-7d4b3317f496", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37201,7 +37767,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37279,7 +37846,8 @@ "SenseId": "e233ed05-a5c5-4db6-a8a7-549a611a0ae5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "78f9be23-f46e-40f8-b9ae-feeb0fe345e1", @@ -37302,7 +37870,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -37364,7 +37933,8 @@ "SenseId": "f1ecb5b4-ec5f-4b06-9b7c-fd48f0a0fc08", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37453,7 +38023,8 @@ "SenseId": "acbba421-d6ef-4abb-b1b8-65c6402e4a49", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37568,7 +38139,8 @@ "SenseId": "2b9a6917-5d94-4491-a253-e34b36bde45e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37639,7 +38211,8 @@ "SenseId": "e8c7028d-3a47-4b64-b2be-7b1819997a5f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37701,7 +38274,8 @@ "SenseId": "fbdc0232-f0da-4dad-87fc-7717e704bca4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37770,7 +38344,8 @@ "SenseId": "184375ba-86e9-464f-9bdd-2993cd0263a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37839,7 +38414,8 @@ "SenseId": "b76f140c-bc70-46f5-8da6-3aad4c1b293a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37899,7 +38475,8 @@ "SenseId": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -37985,7 +38562,8 @@ "SenseId": "e784f30d-32a6-4959-bd12-0eec6804bfa7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38035,7 +38613,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "026ea7ef-fa84-4805-a9ee-6ade8a5afea8", @@ -38058,7 +38637,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "33f29f92-bace-47d8-8596-91ba39570791", @@ -38081,7 +38661,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "59922af6-e73d-4d5f-afb3-4f3e0ff0d7fc", @@ -38104,7 +38685,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e455d9f3-c537-4fcc-b401-ab5f0d6e7a4e", @@ -38127,7 +38709,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38177,7 +38760,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "9b7682f7-c63b-4a46-982d-b9d011a84753", @@ -38200,7 +38784,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "4cef05db-5023-4826-a037-69997622e7d0", @@ -38223,7 +38808,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e8f56462-bd82-46dd-b660-56268c759606", @@ -38246,7 +38832,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38313,7 +38900,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38363,7 +38951,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38413,7 +39002,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38503,7 +39093,8 @@ "SenseId": "8c958583-0e11-4b66-b2c9-c3e570712355", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38600,7 +39191,8 @@ "SenseId": "7435327a-54ab-489b-912c-6cd4fcd4c701", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "56a695df-24fd-48b7-8fe5-e174a6a5ad31", @@ -38640,7 +39232,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "151fa841-74d5-4fd3-9159-00b98f673b22", @@ -38663,7 +39256,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a1db0f0d-f8e1-4edd-b6f6-14ae2441c385", @@ -38686,7 +39280,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -38782,7 +39377,8 @@ "SenseId": "50029fb1-1687-4e3c-bb18-f56a4fff5ef0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38868,7 +39464,8 @@ "SenseId": "3f89b93b-bb37-4daa-acec-36437ce585cb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -38918,7 +39515,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39001,7 +39599,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d7eddc38-92ea-4a69-90f3-f9d98070cfc4", @@ -39024,7 +39623,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39084,7 +39684,8 @@ "SenseId": "99c14abc-9fbf-48a4-931a-f30d37463fd8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39177,7 +39778,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39229,7 +39831,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39312,7 +39915,8 @@ "SenseId": "c65d2e3c-2af7-4397-9fc7-9513aec457bf", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7bb75da8-2d6d-4c36-a2ae-fdca2e05fccf", @@ -39335,7 +39939,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39443,7 +40048,8 @@ "SenseId": "66caea57-5e26-41fb-9075-e204d5d3c6a4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "19f70685-7f84-4c67-97bd-39c148b32a3d", @@ -39483,7 +40089,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -39552,7 +40159,8 @@ "SenseId": "03ae5c91-0727-41a3-9667-dbd3115bf69e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39621,7 +40229,8 @@ "SenseId": "4da51546-5eef-463c-b1be-526c4b34bc36", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39683,7 +40292,8 @@ "SenseId": "0515b9b2-9f91-415e-9081-1ffa59094bac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39743,7 +40353,8 @@ "SenseId": "42c8d478-acca-448c-a512-3dbcd2d3f34c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39805,7 +40416,8 @@ "SenseId": "98996975-bc63-4c87-a7b7-79813e098bdc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39872,7 +40484,8 @@ "SenseId": "aa95d4f9-9ac2-432e-90e6-23b14f857d49", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -39964,7 +40577,8 @@ "SenseId": "91688c53-43b6-4ecc-9194-bb960b61155b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40056,7 +40670,8 @@ "SenseId": "16a4d77d-f9ea-489b-ac07-bead9ecd8304", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40123,7 +40738,8 @@ "SenseId": "bb5431f8-9a7d-400b-90e3-176019ee4836", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40201,7 +40817,8 @@ "SenseId": "2f9dbe01-d3b5-4945-849e-797f9bc54d7f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40286,7 +40903,8 @@ "SenseId": "fb2f2bf4-bc58-4a1e-a4bc-fddad7670996", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40362,7 +40980,8 @@ "SenseId": "8637487d-15dc-4ea3-8a29-b69137af0d60", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4c2747b8-cffb-4030-8a96-bab2a7d514bc", @@ -40394,7 +41013,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40438,7 +41058,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "14713929-5278-41e9-82d2-7832394146c8", @@ -40452,7 +41073,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40521,7 +41143,8 @@ "SenseId": "6ef2f45c-a585-482a-b99f-32aaa9f0b91e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40588,7 +41211,8 @@ "SenseId": "92947ad8-fa32-4f8a-8bb7-5328ea99a859", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3ce820a3-cad2-4877-a735-e0ef244edba4", @@ -40644,7 +41268,8 @@ "SenseId": "3ce820a3-cad2-4877-a735-e0ef244edba4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40713,7 +41338,8 @@ "SenseId": "d3b00031-dcd0-45f4-ae35-ae7fa76830dd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8e87bcf4-8ce8-4cb5-9de7-543122c7fda2", @@ -40736,7 +41362,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40808,7 +41435,8 @@ "SenseId": "f3d8d3ed-b947-4fc4-baaf-90824ff64ae3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -40877,7 +41505,8 @@ "SenseId": "ad99f7bd-09ab-4b5d-8043-6c59d31f62c7", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "01dafaba-c6cc-4d16-92a1-cded047655cf", @@ -40900,7 +41529,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -40983,7 +41613,8 @@ "SenseId": "2912198b-fb50-4312-8458-7ea24b423fc9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41052,7 +41683,8 @@ "SenseId": "da536137-5182-4e26-94bc-6830787b1a7a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41121,7 +41753,8 @@ "SenseId": "cd54851f-e56c-42cf-b34e-32c7cfd30702", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6c626dd8-43ba-47a7-a415-35c43f322f31", @@ -41144,7 +41777,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -41223,7 +41857,8 @@ "SenseId": "dea34b42-5731-4d82-82b0-d6748f0234b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41285,7 +41920,8 @@ "SenseId": "e417aa16-cff4-4288-835d-2da5443630eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41347,7 +41983,8 @@ "SenseId": "b9767f89-5b00-4986-8c3a-018ea8d05d85", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41397,7 +42034,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -41485,7 +42123,8 @@ "SenseId": "1674d7bb-216f-4b4e-b61b-15cc84c420e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41547,7 +42186,8 @@ "SenseId": "cc5dde39-7eb8-41f1-a833-564569ccd28b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41616,7 +42256,8 @@ "SenseId": "20cf4edd-301c-4989-86b7-de760562ba4e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0b996a63-cfca-49ce-9717-5b7b12d34c58", @@ -41639,7 +42280,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -41725,7 +42367,8 @@ "SenseId": "e8764c07-d5ea-42d5-b86c-d8e9979ab798", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "de112476-c4a7-4606-ac3c-5e0e44d9aa39", @@ -41765,7 +42408,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -41827,7 +42471,8 @@ "SenseId": "07b38b92-3a89-421b-befa-15fad6569e32", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41905,7 +42550,8 @@ "SenseId": "6aa3269d-8c92-4daf-b74e-5c8adc0a4fc1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -41974,7 +42620,8 @@ "SenseId": "983b1d9f-0995-402b-bdf1-9925d8044db7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42043,7 +42690,8 @@ "SenseId": "ad4b7a60-ba81-464e-becf-6226fbf153bc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42112,7 +42760,8 @@ "SenseId": "6b525967-2c84-492b-b802-08372872cdf5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d33f8677-dabf-458f-80a8-e606bdb4cb0c", @@ -42135,7 +42784,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -42197,7 +42847,8 @@ "SenseId": "1229547d-d9de-4523-ba1e-891053df36a8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42276,7 +42927,8 @@ "SenseId": "3a89870c-b27f-490e-bed9-6f03a8074d9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42355,7 +43007,8 @@ "SenseId": "703d0fd4-773c-4915-99f6-0f9a461290f8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42427,7 +43080,8 @@ "SenseId": "98b0f1d8-b3f8-4876-9ec5-17e28a80a8b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42489,7 +43143,8 @@ "SenseId": "0a80dcf6-b583-4c1f-9e80-b636400cdfcb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42551,7 +43206,8 @@ "SenseId": "8f19f938-d264-4e3a-aa26-502445dd8266", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42637,7 +43293,8 @@ "SenseId": "940376b0-d627-4d5c-82c7-bc77aa4a772b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42704,7 +43361,8 @@ "SenseId": "df45b4f2-25bd-4f90-b89c-3cec51877f7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42785,7 +43443,8 @@ "SenseId": "e89b6243-a7c0-48c2-b34c-1bf1fc057d85", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42852,7 +43511,8 @@ "SenseId": "2d93aa5f-85c0-4262-a073-4c52725df0ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -42944,7 +43604,8 @@ "SenseId": "14656f11-c542-4d0d-a8d8-1bf4404d8a50", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43030,7 +43691,8 @@ "SenseId": "b0b51446-4aca-4563-afde-fece60b50110", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43109,7 +43771,8 @@ "SenseId": "e9e0b4cd-f43e-4782-99e4-ebdbb9beface", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43178,7 +43841,8 @@ "SenseId": "6f252789-f43e-4ab9-861b-24a34a80be54", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43247,7 +43911,8 @@ "SenseId": "98a00a46-22ea-43b9-9c91-30592f12e9b8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43316,7 +43981,8 @@ "SenseId": "09e43ed4-56f0-486c-9716-df293f95bbc2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43385,7 +44051,8 @@ "SenseId": "21d335a6-7d87-4e70-ac02-23010d17dcf2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43447,7 +44114,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -43514,7 +44182,8 @@ "SenseId": "ad5209b6-e450-44ea-9e26-7843d1400eef", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43581,7 +44250,8 @@ "SenseId": "1a2af823-093d-4226-b1af-71906c968a91", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43667,7 +44337,8 @@ "SenseId": "fbdc42ce-d4b0-45b8-8385-d9096064ba6f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43759,7 +44430,8 @@ "SenseId": "45ef7e48-d380-41f2-9ec2-7ce2f5616944", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43821,7 +44493,8 @@ "SenseId": "a5cf564d-fa0d-4818-94dd-e542b59f80a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -43892,7 +44565,8 @@ "SenseId": "f6191876-68d6-4e06-877f-24ef94aa31d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44004,7 +44678,8 @@ "SenseId": "27e52026-b6f1-47b3-a588-e7891b63d80f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44073,7 +44748,8 @@ "SenseId": "7639dce1-8ea5-40de-b8e9-681656497f59", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "94a44008-2b57-45cf-abf8-56a29b881810", @@ -44096,7 +44772,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44188,7 +44865,8 @@ "SenseId": "f1d582f4-f8a1-4e6c-99f3-039650900166", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44278,7 +44956,8 @@ "SenseId": "cbe5cf38-4025-4302-a67f-f288ae0d0b1f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44340,7 +45019,8 @@ "SenseId": "a87fe186-90f5-4664-b096-faa0c8d73c83", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44411,7 +45091,8 @@ "SenseId": "a48b6a25-3b5b-4749-b75c-5b54f2465c2f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ec56155f-e5b8-435d-a475-7a774c86a3d3", @@ -44426,7 +45107,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44486,7 +45168,8 @@ "SenseId": "3ffb5f73-0470-40c2-b53d-79dcdd45d2a7", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4c579b8c-15d9-4217-91d2-a801e123a806", @@ -44526,7 +45209,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44595,7 +45279,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -44657,7 +45342,8 @@ "SenseId": "b2804ad1-af28-4a1a-9e64-4219db3dfd42", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44726,7 +45412,8 @@ "SenseId": "ea0b55a0-af6b-4491-af06-4fa4ca2f95c7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44802,7 +45489,8 @@ "SenseId": "48671a5c-801b-4f46-b57a-33a713431e3e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44862,7 +45550,8 @@ "SenseId": "611bc6d1-791c-4d82-a45f-7721e8b7b7cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44924,7 +45613,8 @@ "SenseId": "122c9804-0c81-46bf-a059-eff5a71114d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -44986,7 +45676,8 @@ "SenseId": "45cfd084-6fcc-4918-8aa8-1f448a585505", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45045,7 +45736,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45135,7 +45827,8 @@ "SenseId": "a0e195ba-db0d-4e06-8512-0d683e9d9cb5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45212,7 +45905,8 @@ "SenseId": "88f99db9-c0c5-44b5-a9af-b2c4f61fe87f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45274,7 +45968,8 @@ "SenseId": "7bbab562-1e09-4b3c-84ce-f59fbfe201ae", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45352,7 +46047,8 @@ "SenseId": "a625dc05-4f89-44fb-a88a-3e2f564442dd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2ed3a10f-6c6d-40b2-b807-38bbe00a07a0", @@ -45384,7 +46080,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45446,7 +46143,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45532,7 +46230,8 @@ "SenseId": "461c78a8-d2b1-4d57-9c9a-bc14e85364d1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9b148078-a552-4b81-91fa-c5313a4badc9", @@ -45564,7 +46263,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45633,7 +46333,8 @@ "SenseId": "ef7144af-9ed2-45d2-8ae0-5e8f11d5cce5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45695,7 +46396,8 @@ "SenseId": "f80ea820-9403-463b-aaf5-e0e7747d95d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45745,7 +46447,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -45814,7 +46517,8 @@ "SenseId": "2c63aca2-095f-4b6c-a2ad-f0b45abc4345", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45876,7 +46580,8 @@ "SenseId": "a4b55442-7b5f-4da4-8df5-f41a07a7a07a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -45943,7 +46648,8 @@ "SenseId": "8d2938b5-66df-4628-a5d2-331356818b90", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e4f8f769-2814-4cf2-b98d-b03db5840f52", @@ -45966,7 +46672,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46028,7 +46735,8 @@ "SenseId": "8af45d7c-067b-4bac-9eb4-0c0e6bd35c9c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46078,7 +46786,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46128,7 +46837,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46197,7 +46907,8 @@ "SenseId": "89e08ce0-76fe-4600-909c-a6ef6ddc369f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46275,7 +46986,8 @@ "SenseId": "7be81c0e-c674-4ffc-8c2e-e74e5f87a429", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46354,7 +47066,8 @@ "SenseId": "1f2bfb53-00f2-4797-9b6b-e516e0ce179f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "52d378cc-8bee-46e9-be52-68d791d04080", @@ -46376,7 +47089,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -46438,7 +47152,8 @@ "SenseId": "3fbf73de-bc50-4b0e-a81d-4d4a7274fe31", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46507,7 +47222,8 @@ "SenseId": "5e8265a3-3165-4af9-a937-69e5f2a6139a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46572,7 +47288,8 @@ "SenseId": "efc09d29-c9cd-465c-90dd-e7b1573aa8c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46651,7 +47368,8 @@ "SenseId": "e15307e9-af9b-4c96-b500-7da6cae75fc3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46718,7 +47436,8 @@ "SenseId": "c6142fea-e652-40b7-b102-80fa25f41171", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46840,7 +47559,8 @@ "SenseId": "db1b84b1-735e-4654-b942-bf0785e5c957", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -46942,7 +47662,8 @@ "SenseId": "fb463714-a764-41a6-930d-72042a2d09ec", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "75e9c0e7-e53d-45b6-84cc-09eb21401f99", @@ -46965,7 +47686,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "b37cebbd-6125-438b-aebd-e65174d9f464", @@ -46988,7 +47710,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e3873582-d497-4056-8de1-fc93329a7edf", @@ -47011,7 +47734,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -47096,7 +47820,8 @@ "SenseId": "ec144453-8e8a-45cc-b506-495ca91ba00f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47180,7 +47905,8 @@ "SenseId": "4e518d15-c861-4f3b-bd03-c757d9598bf8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47242,7 +47968,8 @@ "SenseId": "8910df53-b949-4206-9f66-bf799a42c9cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47302,7 +48029,8 @@ "SenseId": "11782e46-c080-4795-843b-96fb819cba28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47354,7 +48082,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -47404,7 +48133,8 @@ }, "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -47464,7 +48194,8 @@ "SenseId": "319b5368-715d-4ff1-a6f5-01de219b6be7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47588,7 +48319,8 @@ "SenseId": "38b1819b-80b8-4894-992e-80f3da0b48a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47666,7 +48398,8 @@ "SenseId": "0388212f-ad6d-42ce-a72f-4441945f5547", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47728,7 +48461,8 @@ "SenseId": "1d53a476-c543-4f58-bc95-92ac73bcee5a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47824,7 +48558,8 @@ "SenseId": "d7ff011f-0022-4533-902b-56e93efdab6a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47932,7 +48667,8 @@ "SenseId": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -47994,7 +48730,8 @@ "SenseId": "e67054cc-f854-4ea7-b572-aade7b6ad1cf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48088,7 +48825,8 @@ "SenseId": "10f0881e-85ec-4486-ac2f-e6ea88516505", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", @@ -48152,7 +48890,8 @@ "SenseId": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48240,7 +48979,8 @@ "SenseId": "b6779c26-0a60-4de2-b6f2-110d923d6882", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48328,7 +49068,8 @@ "SenseId": "a6beb173-ee69-45f7-ad58-2834e81cc4f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48390,7 +49131,8 @@ "SenseId": "e3433c1a-13bb-4aa1-ade7-cc7f2ac780c2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48487,7 +49229,8 @@ "SenseId": "4f53bb12-ebc7-4893-af3f-efc435cb6333", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48556,7 +49299,8 @@ "SenseId": "f772d5cf-e5e9-4a1b-a3a1-ddbe27ae2f14", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "60b0f55b-d605-4ca1-a1cd-c8e82a49707e", @@ -48579,7 +49323,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -48672,7 +49417,8 @@ "SenseId": "84a2be95-35ad-49a6-8366-4f77b22b7737", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48743,7 +49489,8 @@ "SenseId": "89ce983e-4216-43b0-8096-a826d80c20e7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -48853,7 +49600,8 @@ "SenseId": "1f32c1cb-884c-49ef-b610-9179b3454c30", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ee07fe98-80ff-4cc7-a2ec-e27deeb7df23", @@ -48876,7 +49624,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -48926,7 +49675,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -48995,7 +49745,8 @@ "SenseId": "c1eecd5c-342e-4d45-9ae0-f7351d18ed55", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49062,7 +49813,8 @@ "SenseId": "fcd8d925-5562-419a-a0f7-729609a2a7fe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49138,7 +49890,8 @@ "SenseId": "b20a8b8c-6dbe-404b-9e5f-5a1803329125", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49216,7 +49969,8 @@ "SenseId": "5d316f71-9f38-4273-9963-c04cc1446167", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49285,7 +50039,8 @@ "SenseId": "1063b7d7-a239-46cc-b345-96631b31fede", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49354,7 +50109,8 @@ "SenseId": "34976250-13b2-4ddf-b6da-d9737e7365ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49414,7 +50170,8 @@ "SenseId": "43c943ac-02b2-438d-9c5c-0c8dc5f5495d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49476,7 +50233,8 @@ "SenseId": "85e6f588-f11b-4c33-a357-397479f3d9ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49538,7 +50296,8 @@ "SenseId": "f2cdf68d-32bc-4d0d-9adf-050026c3c84b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49609,7 +50368,8 @@ "SenseId": "bf91ed99-0560-4fb0-b3ef-4b6bc1888b80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49678,7 +50438,8 @@ "SenseId": "c04a03f5-5139-4ee7-b9c7-c49ae92c8e2f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0822131f-95c9-4c5b-b28a-f7203db30f55", @@ -49701,7 +50462,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "e9000da3-e344-44b0-824d-b9977e535d49", @@ -49724,7 +50486,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -49800,7 +50563,8 @@ "SenseId": "0f531ecf-0f20-44fa-a102-1d2f124709e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49876,7 +50640,8 @@ "SenseId": "06bc691e-5a54-4a35-ab95-849b45b7721a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -49945,7 +50710,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -50005,7 +50771,8 @@ "SenseId": "0daee1c3-bf0a-4a64-8d6a-705ab4ab5c14", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50065,7 +50832,8 @@ "SenseId": "d70e028c-2bf8-4dcc-aa25-54f372ec9dd4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50151,7 +50919,8 @@ "SenseId": "f96c1723-a60f-42db-83da-de68fff7b641", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50229,7 +50998,8 @@ "SenseId": "11d1070b-3b98-4b55-9242-02b6674d2a78", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50289,7 +51059,8 @@ "SenseId": "a46c1374-9f24-47bb-8a61-db6f0e7fc85e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50359,7 +51130,8 @@ "SenseId": "ae58f54b-7f05-4d1d-a022-02ebc5405989", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50428,7 +51200,8 @@ "SenseId": "486fcf0c-de3f-4a30-bf62-dd75b7e096d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50497,7 +51270,8 @@ "SenseId": "c9990577-4e77-4b4f-aed5-3ecbbf15a1f6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50566,7 +51340,8 @@ "SenseId": "97315f66-6358-4771-96f7-4ee76436ff8f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50651,7 +51426,8 @@ "SenseId": "a8fd0ff5-f64b-4419-9154-1be2e583c29c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "322b1569-3d3c-486d-91ad-615a6a43cd52", @@ -50674,7 +51450,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -50753,7 +51530,8 @@ "SenseId": "35278c37-466e-4194-9da0-faae2cd7908d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50832,7 +51610,8 @@ "SenseId": "ec8fb8f1-c0bd-4c7b-a67c-2e48a1bb044b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -50918,7 +51697,8 @@ "SenseId": "dd98267d-b7b7-465c-a61d-128f0ec3dd27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51004,7 +51784,8 @@ "SenseId": "5adef85a-9ff2-477b-a967-a5d519664767", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51056,7 +51837,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -51125,7 +51907,8 @@ "SenseId": "889a81df-a63f-4e76-93b9-7873aab77714", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51194,7 +51977,8 @@ "SenseId": "aebb266e-130f-433e-adce-2399c4f7ffdd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51244,7 +52028,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -51322,7 +52107,8 @@ "SenseId": "70a1de9b-c5eb-4ca7-a214-1b33f85127f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51401,7 +52187,8 @@ "SenseId": "b48232bf-44e2-48f4-9c2a-6a0136d092df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51485,7 +52272,8 @@ "SenseId": "824ec104-b330-42f6-b353-123cb03998b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51552,7 +52340,8 @@ "SenseId": "4cb5708d-0ba7-46f7-afbe-13d9d987ad91", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51619,7 +52408,8 @@ "SenseId": "55345d98-6fd0-484b-950d-e2fa12b6aec4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51703,7 +52493,8 @@ "SenseId": "305ecbd1-ba98-4ff9-8bad-985b4e1f48ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51772,7 +52563,8 @@ "SenseId": "b096a890-d21c-4734-b0ef-2c8ef0de6ea5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51848,7 +52640,8 @@ "SenseId": "605f204e-b617-44b4-9732-995b23d1a14f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -51936,7 +52729,8 @@ "SenseId": "87b14641-5673-443e-938a-2700deea5b0a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52020,7 +52814,8 @@ "SenseId": "14af0b49-0487-46f8-ad04-1fc2a860f289", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52089,7 +52884,8 @@ "SenseId": "41724d8b-53b5-4d0e-af28-3c864b0e39b1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52167,7 +52963,8 @@ "SenseId": "752f6980-2888-411b-bd45-a37bad94f428", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "1132c791-3980-4fe1-af2e-99e766f8ac01", @@ -52182,7 +52979,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "6ad40996-9427-4951-8596-61a482180cf5", @@ -52216,7 +53014,8 @@ "SenseId": "6ad40996-9427-4951-8596-61a482180cf5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52295,7 +53094,8 @@ "SenseId": "57945f8a-40d5-4ca4-9c89-f8cecc68f8b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52374,7 +53174,8 @@ "SenseId": "bdb7385d-b828-4b3a-95c3-6392cf178925", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52441,7 +53242,8 @@ "SenseId": "6114e22f-0bf4-4987-97f0-e4f9e4fc09aa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52503,7 +53305,8 @@ "SenseId": "2083395f-5ad8-47e1-84da-9570b2571584", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52582,7 +53385,8 @@ "SenseId": "eb4e8cdf-de54-4ee4-89d4-5fab25b9c7c3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52644,7 +53448,8 @@ "SenseId": "6f250ea0-f41e-40e9-9ab4-c5c26b1e52e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52713,7 +53518,8 @@ "SenseId": "1c8cae0e-aa0b-486b-a195-55538dbe67df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -52775,7 +53581,8 @@ "SenseId": "cf09ea68-25fe-423a-b238-edd3ca05e9b6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "60561d0d-5be7-43af-b3f7-619b74510ef0", @@ -52797,7 +53604,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -52873,7 +53681,8 @@ "SenseId": "888c502e-7006-4841-9087-e8500209b257", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8c04a4dd-084f-4496-bb4b-76429767a4d7", @@ -52915,7 +53724,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -52967,7 +53777,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -53036,7 +53847,8 @@ "SenseId": "7b087c80-53a1-41e8-ad08-7e5aea18410c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53098,7 +53910,8 @@ "SenseId": "bae12644-8d47-42e6-8fce-28076b38da88", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53167,7 +53980,8 @@ "SenseId": "d2673bb4-023b-4497-838c-3be9db01dfc6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53236,7 +54050,8 @@ "SenseId": "c4c668f4-1dad-4606-a6d0-14b5ed1684e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53314,7 +54129,8 @@ "SenseId": "462d9ee6-1d42-409f-824e-5a25e6ac1a48", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53364,7 +54180,8 @@ }, "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -53433,7 +54250,8 @@ "SenseId": "e59940fe-9ebc-4531-8f0f-606d65db189c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53500,7 +54318,8 @@ "SenseId": "1882c819-4011-4b47-ba67-4af189d622da", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53569,7 +54388,8 @@ "SenseId": "1cb19796-f0b4-459b-80ed-4ed620027d8e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ad086c20-5484-4369-a988-86d1bee667a9", @@ -53592,7 +54412,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -53671,7 +54492,8 @@ "SenseId": "0de5de90-4272-4d51-878c-12b83a619769", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53740,7 +54562,8 @@ "SenseId": "11b748dc-ab4a-4525-9cbb-a6de4b85caf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53802,7 +54625,8 @@ "SenseId": "3c4ba6f1-e3b9-41f4-8331-47704488975f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -53871,7 +54695,8 @@ "SenseId": "5da5191e-c7c9-4c91-b4eb-16e52fd275ae", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2392de10-0208-4840-9154-35f146b14662", @@ -53894,7 +54719,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -53973,7 +54799,8 @@ "SenseId": "2b1557be-9bd5-42d7-87da-7e53334a49f1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54023,7 +54850,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -54083,7 +54911,8 @@ "SenseId": "43584f6e-c0da-49e1-b3ae-2f3c5dfa0618", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54152,7 +54981,8 @@ "SenseId": "66347a27-02b1-4634-9e15-6e558eea1975", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54221,7 +55051,8 @@ "SenseId": "9854719e-fc52-413f-bd46-923c7ed16dc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54290,7 +55121,8 @@ "SenseId": "0ebd98cc-38b8-4548-8f65-85df6f081421", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54359,7 +55191,8 @@ "SenseId": "70922f18-954d-4d45-838b-9e8add104260", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54421,7 +55254,8 @@ "SenseId": "615cba3f-626c-411f-a90c-bb76ca15d1f5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54499,7 +55333,8 @@ "SenseId": "309c1c0c-cb5e-466b-a081-427e61ca781b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54568,7 +55403,8 @@ "SenseId": "75eada5f-2469-4558-ab57-256655ef86d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54630,7 +55466,8 @@ "SenseId": "9acfd40f-6073-4cb3-b6e4-38be96b09fb8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54672,7 +55509,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -54768,7 +55606,8 @@ "SenseId": "0aed8037-a007-49e4-9953-3aab76aa6f21", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fe140ec7-3093-4e13-99b5-9d34e707c2c8", @@ -54800,7 +55639,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -54896,7 +55736,8 @@ "SenseId": "214820fd-bc1f-4271-9191-2be4725a8e78", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -54965,7 +55806,8 @@ "SenseId": "165d58e1-9723-4410-9075-7f30d84d20ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55034,7 +55876,8 @@ "SenseId": "772629ab-f835-4320-9b39-0e243b405e41", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55103,7 +55946,8 @@ "SenseId": "b8e47d4a-1a2e-4ebe-9de1-5dfc1ea46e89", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55202,7 +56046,8 @@ "SenseId": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", @@ -55266,7 +56111,8 @@ "SenseId": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55344,7 +56190,8 @@ "SenseId": "21b1db45-dee8-44d8-a566-eee8e8705670", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55406,7 +56253,8 @@ "SenseId": "5c7c257e-0536-4cc9-bcd7-1e00db08655b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55475,7 +56323,8 @@ "SenseId": "861141fa-1b5e-4a3d-9f45-7f0d0ea8af4a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55542,7 +56391,8 @@ "SenseId": "bdfdd59e-ed0a-4ae0-9c8e-9e6f7a334597", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55604,7 +56454,8 @@ "SenseId": "98e18f17-178e-41c1-bc63-3816771bb6d1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55656,7 +56507,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -55725,7 +56577,8 @@ "SenseId": "63f05f21-fbeb-434d-8077-9437deda278a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55827,7 +56680,8 @@ "SenseId": "22b81191-b1d1-4237-8dcd-3f702b915b39", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -55896,7 +56750,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -55958,7 +56813,8 @@ "SenseId": "dcfe92de-cfe6-42ed-8b46-531865b930e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56027,7 +56883,8 @@ "SenseId": "bc7bf292-711c-4bf3-8525-beee57ca6e80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56096,7 +56953,8 @@ "SenseId": "bcc80d0b-d814-4902-8d8a-87ffec430eaa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56158,7 +57016,8 @@ "SenseId": "87920a43-1881-459f-8c78-1cffc1b0bdf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56227,7 +57086,8 @@ "SenseId": "040f83f5-5fe3-41ee-a842-4b68fff56408", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "852eeee5-cde7-4ed8-8dde-6b44e024bbf0", @@ -56250,7 +57110,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -56312,7 +57173,8 @@ "SenseId": "70a4dfae-de3d-4145-981c-36f0b64f6ff3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56374,7 +57236,8 @@ "SenseId": "92397de3-9477-4955-8c94-c40a0bf6fe2d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56474,7 +57337,8 @@ "SenseId": "468a08fd-147d-413b-9293-0c15ad234fdb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56551,7 +57415,8 @@ "SenseId": "d947c334-dc46-4a84-a6ad-7ac54d5b0cca", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56620,7 +57485,8 @@ "SenseId": "bb8e6660-085a-49ea-9abe-d83b4a21ec9b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "1e0b35df-2ff6-4377-93af-b1a9d46e828d", @@ -56643,7 +57509,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -56712,7 +57579,8 @@ "SenseId": "feb3247b-c2bc-4efa-a83e-148624d67b3f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56781,7 +57649,8 @@ "SenseId": "ba5ea089-ff71-4a77-918b-8d4e53457026", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "aaef54b6-11fd-4168-98ba-34a318302138", @@ -56804,7 +57673,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -56873,7 +57743,8 @@ "SenseId": "ef3e6d0f-d7b6-4da6-bae0-b550acc9c2a3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -56935,7 +57806,8 @@ "SenseId": "417f91fc-c905-46ae-a30d-a9c7dcbea044", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a6723888-7ae9-4164-b4ca-eb34c31d1227", @@ -56958,7 +57830,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57027,7 +57900,8 @@ "SenseId": "1c7f7bef-ff98-4eae-a377-d1249ab9a97f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57096,7 +57970,8 @@ "SenseId": "efa90080-56eb-4e15-a23b-b4eb8b46e3c6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57165,7 +58040,8 @@ "SenseId": "ea684ee3-06d3-4063-afbb-43f292bab934", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57234,7 +58110,8 @@ "SenseId": "5303273f-e59f-4559-a7b9-3ed8c67e51b9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57312,7 +58189,8 @@ "SenseId": "3b1b4dd2-b71d-475c-b4ed-9029d40d6706", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57374,7 +58252,8 @@ "SenseId": "8de9acbd-0b74-4049-953c-071c405075b0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57443,7 +58322,8 @@ "SenseId": "12ce5655-1077-43f3-a428-865c2382c5e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57531,7 +58411,8 @@ "SenseId": "bd155a2e-4da5-4494-b51f-f7bc9c45af90", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8b7f1749-dcc7-449d-8cf4-0f6e4388567d", @@ -57554,7 +58435,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57625,7 +58507,8 @@ "SenseId": "0c5b6e48-e724-4096-8551-38adf6522032", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57694,7 +58577,8 @@ "SenseId": "357da00b-4a0a-416b-b7d5-6715c0bcab9f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57771,7 +58655,8 @@ "SenseId": "988e3974-d24e-4b28-a11d-874f58604081", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57848,7 +58733,8 @@ "SenseId": "712de4ef-13ce-4516-a450-4f4e3aa1c027", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -57898,7 +58784,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -57948,7 +58835,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "364ab0ef-fa39-447f-9c41-d78e853f381f", @@ -57971,7 +58859,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58021,7 +58910,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "2daa296d-5b51-4db0-a4b4-8449bcf151d7", @@ -58044,7 +58934,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58111,7 +59002,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58178,7 +59070,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58228,7 +59121,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3772337f-c06f-4b59-952f-dbef86b873c2", @@ -58251,7 +59145,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "4537b0a3-9b5b-4e72-b418-0552ef04aa72", @@ -58274,7 +59169,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "0b76d8e9-2402-4147-ab7d-b2aebab1da19", @@ -58297,7 +59193,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "01a8a3b9-3c28-409b-ae74-34b50a0ccca8", @@ -58320,7 +59217,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58387,7 +59285,8 @@ "SenseId": "13c46c1a-2ac2-45df-92be-c20dc7e0d86c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "57294a93-e733-48c9-b02a-56cad22c300b", @@ -58427,7 +59326,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58505,7 +59405,8 @@ "SenseId": "f665aec3-2f08-4a10-b642-2f66e15e2bff", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "70bb1144-bbca-4db0-97ad-a74eb8f8b25b", @@ -58537,7 +59438,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "9643cb57-d654-47bd-90d3-a518f9a215c8", @@ -58569,7 +59471,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "06101c3f-a84c-4e12-a07c-dced6a45c73e", @@ -58592,7 +59495,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -58677,7 +59581,8 @@ "SenseId": "e00f99ea-0c54-4d3d-8f24-3f8dc374945c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58758,7 +59663,8 @@ "SenseId": "f168eebc-3acb-494f-a2da-d9609f6649b4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58827,7 +59733,8 @@ "SenseId": "ae8a5db3-1ba4-4825-8ee9-29f59d4c08b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -58915,7 +59822,8 @@ "SenseId": "f38e8bd0-8595-4387-bbf7-853da1166ab1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "404d6557-8056-4240-bc97-83bfa1d1f1b5", @@ -58947,7 +59855,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59026,7 +59935,8 @@ "SenseId": "d90b15f9-cd4f-457f-bf85-1482092df52f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59095,7 +60005,8 @@ "SenseId": "ecc01f99-48a1-461d-b8b2-46b4c5a30477", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59164,7 +60075,8 @@ "SenseId": "b3b494e2-9733-4146-a050-7d78eb3a38ce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59226,7 +60138,8 @@ "SenseId": "32e7178d-8d3c-464c-9a73-999018fc8600", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59288,7 +60201,8 @@ "SenseId": "641c6360-fd59-4722-bd66-0172e3106381", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59366,7 +60280,8 @@ "SenseId": "0ec79a63-c04d-4cad-89a8-8202b248e9d6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2335ea36-7ae3-4407-96c0-6c56ab0ab85f", @@ -59406,7 +60321,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59492,7 +60408,8 @@ "SenseId": "4b00452e-9f58-40ee-b5bc-144ca16cfa99", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59578,7 +60495,8 @@ "SenseId": "7b534357-4f34-4296-83f7-d34117562e34", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59661,7 +60579,8 @@ "SenseId": "908ddf2c-332a-4e9f-8de1-27614a904271", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0331c633-2be2-47d7-8ff0-1274ed7032b3", @@ -59683,7 +60602,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59762,7 +60682,8 @@ "SenseId": "c4548c5d-eb50-42fc-aa93-d77c26546fad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59831,7 +60752,8 @@ "SenseId": "f03e03a1-ebda-4820-b607-fdf73a942456", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -59898,7 +60820,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "2c21fc5d-994d-43b6-b2c3-bf6328e19ca3", @@ -59921,7 +60844,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -59990,7 +60914,8 @@ "SenseId": "bd970f05-4571-49f5-8d72-9edcb5a29ad9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60052,7 +60977,8 @@ "SenseId": "8b42f1fc-1bc7-45b9-9184-2322751e795b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60130,7 +61056,8 @@ "SenseId": "33678318-e191-47d2-a4a9-dc78b956e157", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60199,7 +61126,8 @@ "SenseId": "0f9ea974-8b29-46fd-b490-063e7f63a89e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60276,7 +61204,8 @@ "SenseId": "32460030-3965-4ee7-a77b-17f8090d2d13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60338,7 +61267,8 @@ "SenseId": "341b8689-f950-49c5-9640-16886ac1afbd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60400,7 +61330,8 @@ "SenseId": "42c30da5-0ade-4f3e-a11d-8d7c275ab9ed", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -60461,7 +61392,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60532,7 +61464,8 @@ "SenseId": "31fd829f-9a38-48f3-be66-5673df90f25d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "62b1a7ca-26cd-4c6a-94ce-3db720f3a146", @@ -60556,7 +61489,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60644,7 +61578,8 @@ "SenseId": "388e6630-6231-4ea8-86a6-1a98d2d01126", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c4d3b653-3207-4b86-942e-080107bd75c3", @@ -60667,7 +61602,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60736,7 +61672,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60831,7 +61768,8 @@ "SenseId": "99e2fd45-de4f-443f-83d9-cd97bdf26699", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a8047ab7-12d6-478e-9278-7743d479ec39", @@ -60854,7 +61792,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -60933,7 +61872,8 @@ "SenseId": "076b345f-c4d7-4b07-885a-532a69eb125d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61002,7 +61942,8 @@ "SenseId": "5ba8a7d2-70af-4f14-a5ad-278d876ca7d6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61064,7 +62005,8 @@ "SenseId": "9fce6360-d80f-49b6-a498-d3d726f75294", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61143,7 +62085,8 @@ "SenseId": "cfc7cb6e-8204-4830-89ef-aa7830363a26", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61212,7 +62155,8 @@ "SenseId": "3ff43d51-b217-43f3-ab1c-0cb615a286e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61281,7 +62225,8 @@ "SenseId": "aa7a8c63-d69a-4759-87d8-34238f762bfd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e9979cef-9619-4a0f-a40e-0f5fee9c7abc", @@ -61304,7 +62249,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -61356,7 +62302,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -61456,7 +62403,8 @@ "SenseId": "53786682-eef8-4218-90af-5487843ce2b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61535,7 +62483,8 @@ "SenseId": "4f26b963-72b1-4641-982e-ed005da28c13", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "86d323e5-7bc2-49b4-8fdd-6f71388040e6", @@ -61558,7 +62507,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -61643,7 +62593,8 @@ "SenseId": "89941ef6-3dc0-4209-8c58-663a48ff909f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61753,7 +62704,8 @@ "SenseId": "0ab0f6a4-dddc-453f-b697-9b81d146dd74", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61822,7 +62774,8 @@ "SenseId": "6824a970-23bb-4beb-b27f-9eac8bffec68", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61884,7 +62837,8 @@ "SenseId": "415d29e4-86f1-4212-95db-6a46fe5f3113", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -61953,7 +62907,8 @@ "SenseId": "995cf936-0b6c-4adf-944b-e4df71b077c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62015,7 +62970,8 @@ "SenseId": "66eb9ca3-95dd-4fe1-9094-63afa7c3e680", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "18d57b4e-3f2e-4610-97f7-aba495ff2487", @@ -62038,7 +62994,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62100,7 +63057,8 @@ "SenseId": "852e2a11-565d-4805-968f-190fd8762284", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62162,7 +63120,8 @@ "SenseId": "34c3242c-a674-4917-8e84-9e6a2accb8c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62231,7 +63190,8 @@ "SenseId": "88565280-c9db-42a1-8127-41bff919d2c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62281,7 +63241,8 @@ }, "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62343,7 +63304,8 @@ "SenseId": "60410caf-4e30-421d-8379-d51dd28fba3e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62420,7 +63382,8 @@ "SenseId": "bc62d271-7625-47f5-8066-fc4fde24cf79", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62489,7 +63452,8 @@ "SenseId": "b91c9f15-752a-43da-91b7-c3cc29b2633c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0092d1f9-866f-4644-a648-bdc723461976", @@ -62512,7 +63476,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62581,7 +63546,8 @@ "SenseId": "6ebf8305-6707-4317-ac40-0f30a3f592fc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62643,7 +63609,8 @@ "SenseId": "5b424532-f191-4a43-ab9b-9750458c38f8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62729,7 +63696,8 @@ "SenseId": "a780e1c6-949e-467a-bd6a-17181cdec72c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62807,7 +63775,8 @@ "SenseId": "e82993d5-549f-41b6-8844-105962d58f45", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -62876,7 +63845,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -62972,7 +63942,8 @@ "SenseId": "2493ddcf-62d9-425a-8879-e3817c075560", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63024,7 +63995,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "146ced19-5712-4550-b442-89ce02a200b7", @@ -63066,7 +64038,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63145,7 +64118,8 @@ "SenseId": "306efdb8-0e89-4f71-9456-4980caf881ea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63231,7 +64205,8 @@ "SenseId": "dc8c21cf-b752-4ba0-abed-a80e4bd1759c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63300,7 +64275,8 @@ "SenseId": "30970938-00cf-4d44-b45f-b92256f4d132", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63350,7 +64326,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63515,7 +64492,8 @@ "SenseId": "84e5150e-3043-4652-9f64-849cf192fee4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "68e58260-9383-41f8-bb1a-7aa551e89fac", @@ -63555,7 +64533,8 @@ }, "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "91120e17-4e49-43c0-b416-00176448fdd2", @@ -63578,7 +64557,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "fee1a6ff-3d64-44fa-9515-b51e7068b1d6", @@ -63618,7 +64598,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d1e7a1fe-5475-4eae-99eb-d56f7248f6c4", @@ -63658,7 +64639,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "cbad219c-e1bc-479c-877c-c0017a425ac1", @@ -63698,7 +64680,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63782,7 +64765,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63849,7 +64833,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -63916,7 +64901,8 @@ "SenseId": "7ff262e6-44c0-407c-bf42-49805e8b6848", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -63999,7 +64985,8 @@ "SenseId": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64083,7 +65070,8 @@ "SenseId": "cbcb955f-a907-4e80-89ea-ef01f43eabfa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64143,7 +65131,8 @@ "SenseId": "e306b70f-d7bb-402a-b7bb-ffcd6628c784", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64222,7 +65211,8 @@ "SenseId": "caca5235-796e-488e-b651-93816bb5e38e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64291,7 +65281,8 @@ "SenseId": "01c0dd6b-8bb7-4a5d-98e7-3f2fc550bd0e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64360,7 +65351,8 @@ "SenseId": "e9831e86-8361-44fa-a4df-08394a608984", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64422,7 +65414,8 @@ "SenseId": "aabd42d8-a97a-4377-a2fa-6240fcb9c6b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64491,7 +65484,8 @@ "SenseId": "4a4e6088-2f32-4bb8-a4cc-c5a0b66d9778", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64560,7 +65554,8 @@ "SenseId": "b52cc4bc-7dd7-4336-893f-071ed4fabd7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64629,7 +65624,8 @@ "SenseId": "867f42cd-6511-458c-8659-c84de78e21f9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64698,7 +65694,8 @@ "SenseId": "9998867c-65bf-4126-aecb-73c98e6864a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64760,7 +65757,8 @@ "SenseId": "33fa5883-44e0-4bf6-9181-5ae1dbbbdd17", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64820,7 +65818,8 @@ "SenseId": "cb806a3e-0460-41d5-87e0-519fb87d80cd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64882,7 +65881,8 @@ "SenseId": "5c6f03eb-38ca-403c-abce-77d6572100b1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -64944,7 +65944,8 @@ "SenseId": "ea84d2b7-4063-4074-a75c-c8d9e267d3e6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7178a762-8c87-45db-b944-e7edd9e93ddb", @@ -64976,7 +65977,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65036,7 +66038,8 @@ "SenseId": "cd9690f9-7c5e-48a5-b8fb-1c5b1a47e90c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65098,7 +66101,8 @@ "SenseId": "24539709-eea2-44ec-9baa-f90a11eb703b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65149,7 +66153,8 @@ }, "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65216,7 +66221,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65276,7 +66282,8 @@ "SenseId": "dc447c6a-13f0-48ef-a0c3-9ad940af245c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65363,7 +66370,8 @@ "SenseId": "0cba0865-daa8-453e-9d82-08da268cea8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65430,7 +66438,8 @@ "SenseId": "ba2a787f-ed2a-40f6-a418-225c50d3fc52", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": { @@ -65489,7 +66498,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -65548,7 +66558,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65608,7 +66619,8 @@ "SenseId": "ac662c72-e719-47cf-b6a3-a20bfce8186a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65675,7 +66687,8 @@ "SenseId": "86b544d8-af64-4fdd-8677-5c137f6bdd25", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65797,7 +66810,8 @@ "SenseId": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0e99aea0-3a09-40af-ba14-2fe5d0f42961", @@ -65820,7 +66834,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -65889,7 +66904,8 @@ "SenseId": "dbc383e0-acd4-458e-86b1-db9668dac4eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -65998,7 +67014,8 @@ "SenseId": "2e84850b-05d1-4de0-8db5-4bfeef18f8f3", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "a639ec9c-35db-45f5-b3f5-85293483b4cd", @@ -66021,7 +67038,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66107,7 +67125,8 @@ "SenseId": "50757f29-2ed9-4987-ad65-7822e66355ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66181,7 +67200,8 @@ "SenseId": "ce84b386-6ca6-461e-99b0-8df1e879e369", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", @@ -66238,7 +67258,8 @@ "SenseId": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66319,7 +67340,8 @@ "SenseId": "ee429f51-e92f-4d59-9a87-05531b6c7aab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66388,7 +67410,8 @@ "SenseId": "3394d689-385c-40b1-ad04-0256836a3a66", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66468,7 +67491,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66518,7 +67542,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66560,7 +67585,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66652,7 +67678,8 @@ "SenseId": "f0b5bd45-51b9-4280-a34a-aa993749ccad", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b718b6fb-d131-474c-9799-1a805b94c89f", @@ -66675,7 +67702,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66727,7 +67755,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -66803,7 +67832,8 @@ "SenseId": "b4a02fc9-2ae5-4c96-ae87-ceec6845871e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66880,7 +67910,8 @@ "SenseId": "dfad5d62-b5e7-46e0-b26e-e062147e72c5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -66940,7 +67971,8 @@ "SenseId": "1e0627cb-c81f-4fa9-9b31-f7b364bf443c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67016,7 +68048,8 @@ "SenseId": "22f12a7c-237a-4aec-be5a-9785f8839977", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67085,7 +68118,8 @@ "SenseId": "8abb551d-571b-4612-a4cd-85d065bca104", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67154,7 +68188,8 @@ "SenseId": "df313b4b-f760-4864-a5f8-9854dff3af73", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "33493618-0bdb-4baa-aa80-235f7009c5a0", @@ -67177,7 +68212,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67246,7 +68282,8 @@ "SenseId": "634a8b59-c02c-402f-8387-a6ad5cfc7917", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67315,7 +68352,8 @@ "SenseId": "3f9fe653-77fb-4e5a-9e41-9f1da6877f9b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67391,7 +68429,8 @@ "SenseId": "bfb0f5db-2dcf-4720-bfe9-4f53685c2fa0", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "edad5197-9710-431f-b970-60c3c6ccab59", @@ -67414,7 +68453,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c99b7977-dd4e-4e57-8809-62c65952d51e", @@ -67437,7 +68477,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67521,7 +68562,8 @@ "SenseId": "f93d7fa2-5a29-4a66-96c1-8817f4800897", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67571,7 +68613,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67638,7 +68681,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67705,7 +68749,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -67781,7 +68826,8 @@ "SenseId": "0073f2a7-9b27-4e09-a640-992836a26b27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -67913,7 +68959,8 @@ "SenseId": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "941c7da8-d6b8-43c5-801b-f2eff707378e", @@ -67955,7 +69002,8 @@ "SenseId": "941c7da8-d6b8-43c5-801b-f2eff707378e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68038,7 +69086,8 @@ "SenseId": "e5999ac9-691d-4b18-a0f9-3bfcece80bf1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68107,7 +69156,8 @@ "SenseId": "4b3aed28-7c60-4c92-a7db-dccc8c1a3c0c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "11febd8d-c6dc-481b-a7b7-cc2049d33e5b", @@ -68130,7 +69180,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68208,7 +69259,8 @@ "SenseId": "d2a9a738-926f-401e-973f-a6b8fe2c8469", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68275,7 +69327,8 @@ "SenseId": "dd429be7-30dd-4676-93f5-e6d5bd3c74d7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68353,7 +69406,8 @@ "SenseId": "c3791ccf-4988-4217-ad9c-b417c5a0ae43", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68422,7 +69476,8 @@ "SenseId": "f8441f5e-a2cc-4d41-bded-5bf5723d04e8", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "cb86900f-db45-4b50-95fb-641a1cacb51f", @@ -68445,7 +69500,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68522,7 +69578,8 @@ "SenseId": "07e57d85-0a08-40a8-b523-6abc7b1ce65b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ba2430a3-7f68-4648-ab7f-fb36dd932532", @@ -68562,7 +69619,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68619,7 +69677,8 @@ "SenseId": "d6000cc0-db88-465a-9396-556304110322", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "59e4c607-6f2a-4db2-8c4a-65c90227b5d4", @@ -68633,7 +69692,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68700,7 +69760,8 @@ "SenseId": "925dad47-cb4b-449c-98e4-cceea3111df3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68769,7 +69830,8 @@ "SenseId": "18cc7ade-d219-4a9e-acf0-01aa4d9f051d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68831,7 +69893,8 @@ "SenseId": "6f19ba77-d81e-4695-97e2-64c8b4493c57", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -68891,7 +69954,8 @@ "SenseId": "03557652-bd0d-4571-9ae6-08f6e2f9da4e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "381d322a-1473-4da9-96b4-9029da3dae48", @@ -68914,7 +69978,8 @@ }, "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -68986,7 +70051,8 @@ "SenseId": "b8a598b9-d0d4-4f2f-8104-bbd334fc5693", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "bbff3938-1a96-4945-ba82-54a48ba05b30", @@ -69009,7 +70075,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -69087,7 +70154,8 @@ "SenseId": "61068445-c27a-4c9c-8143-7808c5edb94e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69154,7 +70222,8 @@ "SenseId": "ae9a251a-d0bb-44df-b71a-249fbfc73ab5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69223,7 +70292,8 @@ "SenseId": "77484c2b-276c-43d1-9a25-da14726f62d0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69285,7 +70355,8 @@ "SenseId": "df9aa41b-00fd-45c3-97d6-b523dd11dc8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69354,7 +70425,8 @@ "SenseId": "a5de0fd4-03ac-453b-8fa3-8de5d9c42862", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69421,7 +70493,8 @@ "SenseId": "c5f10432-68e2-4f53-b8e0-99775f6a5b4c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69507,7 +70580,8 @@ "SenseId": "83098d50-1738-4b23-9e81-af91ed942dc6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69574,7 +70648,8 @@ "SenseId": "ed1379bc-8a34-4d0a-ba8c-46436283e6e4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69643,7 +70718,8 @@ "SenseId": "49224fa1-f421-498a-b1ae-fb1ce0465824", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69735,7 +70811,8 @@ "SenseId": "e535a688-81bd-4303-9087-b7001e6f7617", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2b4cf9c3-f860-430d-bf08-fa0b5b4db0fd", @@ -69758,7 +70835,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -69909,7 +70987,8 @@ "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -69978,7 +71057,8 @@ "SenseId": "44452f74-92ff-4438-9feb-203af775465e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70056,7 +71136,8 @@ "SenseId": "bb70b8cd-bead-40e9-a912-6f480ba3875e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70134,7 +71215,8 @@ "SenseId": "256f16b7-b704-452b-b830-945038083837", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70203,7 +71285,8 @@ "SenseId": "8ff6235e-b9c6-40f9-bf32-b229db57e9d2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70300,7 +71383,8 @@ "SenseId": "31e99354-68f6-4fa4-9f58-9c0debddd09c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70369,7 +71453,8 @@ "SenseId": "e5840cc6-20ef-4564-ae10-6428aafe6d41", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70429,7 +71514,8 @@ "SenseId": "22bb3b03-c9de-4d51-bd30-7ce30b7041a2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70489,7 +71575,8 @@ "SenseId": "42168c00-4637-4588-99d2-3551d7ce021f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70558,7 +71645,8 @@ "SenseId": "e124eab7-6dfc-425a-ada3-332b4fbd5b85", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "37a98331-4024-40ae-9a5f-f2e8f7113d28", @@ -70581,7 +71669,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -70643,7 +71732,8 @@ "SenseId": "5b4100f7-c8a1-40b1-9b48-a152f5ea057f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70722,7 +71812,8 @@ "SenseId": "2c43a5b2-f283-4e9f-bc26-8a4cbcb666ab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70791,7 +71882,8 @@ "SenseId": "36d939f0-1c27-43d4-ae1c-93dd6dbf721d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70860,7 +71952,8 @@ "SenseId": "8b0b5a08-d690-415f-bc4e-f66f5f76884c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -70929,7 +72022,8 @@ "SenseId": "d7c1ad3e-fa9d-4da0-b819-ce5c82060463", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71019,7 +72113,8 @@ "SenseId": "79166c0b-9275-4425-8cf4-94fd058f41d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71088,7 +72183,8 @@ "SenseId": "7ebcd115-fbd1-468d-883d-51b754651a08", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71166,7 +72262,8 @@ "SenseId": "ecfc1d9c-8d25-475a-8881-a12e26ca80b3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71244,7 +72341,8 @@ "SenseId": "35baece7-ece9-448f-aa11-2c2d6752992f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71311,7 +72409,8 @@ "SenseId": "4d43343e-235c-47a8-963e-8ed7a1923e55", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71389,7 +72488,8 @@ "SenseId": "8125329e-2b09-4073-b9d2-566190f5f940", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "af077c3d-81fb-440f-9bc9-28fa60edf42b", @@ -71412,7 +72512,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -71472,7 +72573,8 @@ "SenseId": "0ef06b58-d563-41f4-b376-9ad16943b667", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71534,7 +72636,8 @@ "SenseId": "72479316-4b29-4461-8617-689a52c54e8d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71601,7 +72704,8 @@ "SenseId": "f4b02198-cc6f-42b9-b379-87670671b181", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71672,7 +72776,8 @@ "SenseId": "1b4adbf5-c01a-4e04-92f6-5c8b793281e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71751,7 +72856,8 @@ "SenseId": "36456952-2f14-41c9-9495-eb9f1487b8fe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71813,7 +72919,8 @@ "SenseId": "14a9995f-76c2-4c3c-847a-c62b2248db58", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71875,7 +72982,8 @@ "SenseId": "ade16bb8-0425-4ff0-9a24-8076659a7882", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -71944,7 +73052,8 @@ "SenseId": "fb77ce64-c8af-435a-ac39-07b05d2972d1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72015,7 +73124,8 @@ "SenseId": "0448ef5d-878b-498a-9d1d-93fe68eadca9", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "836479c2-ab88-4892-81d9-91e29ecf5dc2", @@ -72055,7 +73165,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "64fb2069-f0dc-4c51-affe-8e6ed5f660ab", @@ -72095,7 +73206,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -72162,7 +73274,8 @@ "SenseId": "f93ba876-786d-4e5d-92b1-efc5bd29d173", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72247,7 +73360,8 @@ "SenseId": "f4ee7520-0ff3-432a-a66f-8bbf6e0d14a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72316,7 +73430,8 @@ "SenseId": "f121b1d7-df23-4725-809b-477f508a3d18", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72378,7 +73493,8 @@ "SenseId": "ef0ec71a-ffef-46be-8306-f1bfdac5e28d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72447,7 +73563,8 @@ "SenseId": "97120ba0-66d8-4012-8c14-169f1d59b0e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72526,7 +73643,8 @@ "SenseId": "cd22832b-fb54-4642-9d51-084ef52d6a3c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72587,7 +73705,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -72677,7 +73796,8 @@ "SenseId": "a4eb22b0-f699-4eef-8156-c514c3071eec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72737,7 +73857,8 @@ "SenseId": "879cc03d-9848-46a6-ba1e-ec3d9de38e7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72799,7 +73920,8 @@ "SenseId": "8cd62410-e96b-493f-8296-5b403542952b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72888,7 +74010,8 @@ "SenseId": "cc33f8eb-6b18-4198-b799-51af781eb949", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -72950,7 +74073,8 @@ "SenseId": "e47855c9-9760-478c-9e97-851e893540a6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73012,7 +74136,8 @@ "SenseId": "d580baf8-e5f3-4c90-bbbc-5ee1b78e7b2e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73074,7 +74199,8 @@ "SenseId": "6adddc4c-c9b5-40a1-bd9e-f3a784a9f8bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73143,7 +74269,8 @@ "SenseId": "a9f862a5-44a1-4dbb-a58c-43bbfe24b43b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73212,7 +74339,8 @@ "SenseId": "6c78a046-71b7-498f-b3ea-e48b920eab7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73281,7 +74409,8 @@ "SenseId": "368b3592-de73-4b0b-a65d-654e61cec4ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73367,7 +74496,8 @@ "SenseId": "94bb8014-0932-47e3-a9e3-bc6cac35811c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73456,7 +74586,8 @@ "SenseId": "2d75b87d-a82c-452f-9b8d-2b62f54547f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73544,7 +74675,8 @@ "SenseId": "f9ff4d93-0056-4ed5-b596-c2a754e15795", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73606,7 +74738,8 @@ "SenseId": "14e0886b-48f4-4a78-94bc-3ee0ab625a34", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73684,7 +74817,8 @@ "SenseId": "1bfd809b-9c02-4c32-b618-cd50e06769af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73753,7 +74887,8 @@ "SenseId": "7987d576-84a1-49c9-86f4-8b1933683d4f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -73845,7 +74980,8 @@ "SenseId": "d415fe28-d9e0-4c91-ba73-a4179d2edbe2", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4db5aa57-a073-428b-b732-689c302aede4", @@ -73868,7 +75004,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -73947,7 +75084,8 @@ "SenseId": "0b8858cb-989e-41b3-a6fc-79f04fd8dcc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74016,7 +75154,8 @@ "SenseId": "5daf8137-2e36-4e03-bd23-7b41707adcde", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74085,7 +75224,8 @@ "SenseId": "ab4edb17-b51d-4258-b349-4bdfd1dff7d6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74147,7 +75287,8 @@ "SenseId": "3cd74405-3950-4399-872f-dc1ca7d328df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74216,7 +75357,8 @@ "SenseId": "ab5b910f-08b2-4b66-93fd-596b2858cc56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74285,7 +75427,8 @@ "SenseId": "0b80953f-959c-4364-bbec-484c1626a7c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74347,7 +75490,8 @@ "SenseId": "19791fae-9fdc-4d6f-a48f-07875c335123", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74397,7 +75541,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -74481,7 +75626,8 @@ "SenseId": "851805bb-5ca7-4f6e-9f1d-1ee3e47880a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74543,7 +75689,8 @@ "SenseId": "a865c6d4-b15e-4fd4-9493-24405b7f5e5d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6d230db6-8a2f-4132-9e49-1187bf3ff03e", @@ -74566,7 +75713,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -74652,7 +75800,8 @@ "SenseId": "6860e918-e83d-43eb-8424-6b9e630b92fd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74721,7 +75870,8 @@ "SenseId": "5f151b0e-769b-43ea-8a62-ef105f427854", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74781,7 +75931,8 @@ "SenseId": "7bd437c5-f64a-42c2-8e0e-3bc9abcb0cc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74865,7 +76016,8 @@ "SenseId": "1d3819b6-d016-41a6-941c-99244adac796", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74934,7 +76086,8 @@ "SenseId": "bab5b338-8f1e-4850-8077-ab3a1edd6b4e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -74996,7 +76149,8 @@ "SenseId": "feddbc06-ceaa-4395-9e93-23220f990226", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75065,7 +76219,8 @@ "SenseId": "f8b04c28-6bd1-4988-8de5-5f02c4a769c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75127,7 +76282,8 @@ "SenseId": "ffe085a6-ebcc-4a15-8564-f006328b0d33", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75196,7 +76352,8 @@ "SenseId": "100834ce-ed34-4f91-b36d-ef47034ec7b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75288,7 +76445,8 @@ "SenseId": "d974749d-666b-4d63-9b8d-156ad768e9b6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75350,7 +76508,8 @@ "SenseId": "659a1576-f97c-4613-baec-9e6c64986014", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75412,7 +76571,8 @@ "SenseId": "c95f1739-469b-4753-b871-afe192303f69", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75488,7 +76648,8 @@ "SenseId": "90c935cb-79d1-4644-ad82-74d34cca515c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75550,7 +76711,8 @@ "SenseId": "8cfcb6cb-208e-40dc-ba97-89d7832abeab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75612,7 +76774,8 @@ "SenseId": "495e4687-518a-4bd8-8c2b-66a69dd4b275", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75700,7 +76863,8 @@ "SenseId": "2fdb0790-644f-4d6f-a123-4d88a0f842ea", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75767,7 +76931,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -75834,7 +76999,8 @@ "SenseId": "11486f77-4bb3-4882-a1c0-045fb45d216b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75903,7 +77069,8 @@ "SenseId": "8ecaca7b-0fd8-4dda-bc35-3d914fd897a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -75972,7 +77139,8 @@ "SenseId": "688c63ab-91b6-43f2-821f-71d3ec409900", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76034,7 +77202,8 @@ "SenseId": "3dc4981b-71d2-4d87-9ba3-b3be486eca63", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76101,7 +77270,8 @@ "SenseId": "23541917-3a2c-44c3-ba49-8970a207eeb6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76170,7 +77340,8 @@ "SenseId": "566a7159-a3f7-4d7e-8878-78da37d657d7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76232,7 +77403,8 @@ "SenseId": "358c3a82-6cb9-4f98-9279-411ed528fb86", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76299,7 +77471,8 @@ "SenseId": "3b4c5a61-8b47-4c5d-8616-070fb2a66296", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76389,7 +77562,8 @@ "SenseId": "05060894-c1ca-462e-8fb4-008eb27df73b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76451,7 +77625,8 @@ "SenseId": "999ab06c-80a3-4baf-998e-63a288376c10", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76539,7 +77714,8 @@ "SenseId": "fde8ceed-ce62-404a-b0ff-89f51bfe846a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76591,7 +77767,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -76669,7 +77846,8 @@ "SenseId": "aac9e30b-ddff-43c7-a81b-ab10fde04118", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76759,7 +77937,8 @@ "SenseId": "ad2de11b-1f83-49d6-b52e-7e4f608bfd6d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76828,7 +78007,8 @@ "SenseId": "b8db0515-daaa-4a7c-a992-5d59faa5ac10", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -76880,7 +78060,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -76940,7 +78121,8 @@ "SenseId": "3021e436-8d59-431a-923e-6675fef9338c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77030,7 +78212,8 @@ "SenseId": "635276eb-6ed8-4b78-8c27-204adecdf03c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77107,7 +78290,8 @@ "SenseId": "8431ffc5-7a7a-4959-b414-4f5b8a4f5af9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77203,7 +78387,8 @@ "SenseId": "b113ea41-e7b3-4a5d-a5bc-221da8935393", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77299,7 +78484,8 @@ "SenseId": "e97eb2cc-192e-4975-923f-3c1a6de8df0e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77384,7 +78570,8 @@ "SenseId": "a4f8b6ad-d902-4e14-947e-696ffdc396ec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77451,7 +78638,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -77536,7 +78724,8 @@ "SenseId": "e3029014-e00b-4144-a33c-cf8c91c5ed5b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77639,7 +78828,8 @@ "SenseId": "ff10bede-29cb-4bd1-96bc-c5dd503f8ed6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77727,7 +78917,8 @@ "SenseId": "a4f6c11e-9abb-4bc2-9303-66945fb7e2f7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77794,7 +78985,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -77863,7 +79055,8 @@ "SenseId": "8e191820-913b-4f14-b6ad-c445e44c0a92", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -77941,7 +79134,8 @@ "SenseId": "6f7a5db1-0591-4c48-af24-9f9eb2bffca3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78010,7 +79204,8 @@ "SenseId": "80a94d07-3222-4db9-8c81-dc0b5d0f72a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78088,7 +79283,8 @@ "SenseId": "6502591c-41f0-45ea-8126-df8a747c1ee5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78155,7 +79351,8 @@ "SenseId": "e81ec0f7-ef1b-469d-a6a3-6f6dcd5a4b13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78215,7 +79412,8 @@ "SenseId": "78303856-fbc9-49b6-9fb8-487990aacddd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78282,7 +79480,8 @@ "SenseId": "c2c9938c-a798-43e6-a720-5fbb815afaab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78344,7 +79543,8 @@ "SenseId": "0b0a57d5-c230-42a6-89ca-56f677db2e3d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78411,7 +79611,8 @@ "SenseId": "81cd6c56-0d05-45fa-b101-f42183055887", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78487,7 +79688,8 @@ "SenseId": "55a92fd8-0ced-486d-ad63-a44033517c10", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78554,7 +79756,8 @@ "SenseId": "706da4f3-c698-4f9c-a850-aa18ebd8af13", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78624,7 +79827,8 @@ "SenseId": "98a8489b-53d8-4498-8c4d-39db5a3351a0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78691,7 +79895,8 @@ "SenseId": "6b2ccc71-e17b-4b23-83ce-c55d93d405e8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78762,7 +79967,8 @@ "SenseId": "65226cdb-93f2-4c6e-9d8a-46efc17f30ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78822,7 +80028,8 @@ "SenseId": "c55a5fd1-efd5-4069-afde-a04f621c695f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78882,7 +80089,8 @@ "SenseId": "b50cb098-aec2-47aa-9a3c-79dc42f5140e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -78949,7 +80157,8 @@ "SenseId": "a899604f-eb0f-49aa-bcee-ff35bfb31929", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79026,7 +80235,8 @@ "SenseId": "77e42cbd-8448-4559-90e9-43b6afbef901", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79086,7 +80296,8 @@ "SenseId": "88be5194-7358-4a16-93c0-b40ed7081384", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "12466f00-d0d2-47b3-8500-e63420d61e83", @@ -79109,7 +80320,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79176,7 +80388,8 @@ "SenseId": "57c4f23c-09e7-48b6-8652-ce1d91acaeaf", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "fc1d89f8-d156-485e-8a87-1e52f5ff4f54", @@ -79199,7 +80412,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79259,7 +80473,8 @@ "SenseId": "1ac1edb2-e1c0-4132-af39-a8f05581d963", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79326,7 +80541,8 @@ "SenseId": "b91e4033-75fb-44ad-b0ed-76c4684e4933", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79393,7 +80609,8 @@ "SenseId": "5a8385e0-a9bf-4d95-9f19-75704214b093", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79443,7 +80660,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79503,7 +80721,8 @@ "SenseId": "85ae067e-bdc2-41bc-838a-e6859e16ad51", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79570,7 +80789,8 @@ "SenseId": "53c8b485-af48-4e9f-8caa-bcec1e7fe66a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79640,7 +80860,8 @@ "SenseId": "88185ef7-0946-4133-88a3-00efb760e4e1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79719,7 +80940,8 @@ "SenseId": "e2394edc-16a7-4558-ab4f-163a80a8b095", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d73db95c-3883-4848-a2b6-d6b16a9989b0", @@ -79741,7 +80963,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -79810,7 +81033,8 @@ "SenseId": "65f74be4-09d7-4350-8d36-d175af72fadb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79877,7 +81101,8 @@ "SenseId": "0b6332ab-c4b6-43e6-a2ec-6e8803e2b524", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -79953,7 +81178,8 @@ "SenseId": "41b1a905-20e2-468f-bf42-8f4a963112a5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80032,7 +81258,8 @@ "SenseId": "b60d62f9-0ee8-4b1c-8a4a-d79be94424a4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "98e5e096-618a-48f9-a711-52c2f1fefbc0", @@ -80065,7 +81292,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -80134,7 +81362,8 @@ "SenseId": "2333b0a2-0459-4779-adf0-915c7fc632d9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80194,7 +81423,8 @@ "SenseId": "ca489d31-36ba-4184-b468-507c8d97ec05", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80261,7 +81491,8 @@ "SenseId": "f95a8db0-2124-443f-bb9e-f1b842f4ee23", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80323,7 +81554,8 @@ "SenseId": "793be52b-5f0e-4dfc-8e66-1ee2087be5e6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "55a0d8b6-b407-41ea-be39-458bdb197473", @@ -80346,7 +81578,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -80415,7 +81648,8 @@ "SenseId": "e81f57e9-8551-4014-81be-661d69576fc9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80482,7 +81716,8 @@ "SenseId": "5927f31d-3bb0-4201-a042-3f46ee311c07", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80549,7 +81784,8 @@ "SenseId": "73a9f31b-4988-40cd-ae46-ac58775ed9ff", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80652,7 +81888,8 @@ "SenseId": "7ddf80ef-f9b0-440c-aa72-ac59d78baadf", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9ba68ba6-39f7-4b0c-a084-7574eb1425c5", @@ -80675,7 +81912,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -80745,7 +81983,8 @@ "SenseId": "eb384ce8-1bb2-47a5-9ba6-fb1e8aa1ab92", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80821,7 +82060,8 @@ "SenseId": "94bc3a57-f0e9-4554-bf68-a1e48f9c1128", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80905,7 +82145,8 @@ "SenseId": "9bf15869-a62b-46b3-97f7-6e9755eefcb9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -80989,7 +82230,8 @@ "SenseId": "d69ce9d9-b848-4d2f-ae20-139cc5c39a4f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81068,7 +82310,8 @@ "SenseId": "ea83300d-198d-4a01-a5c7-02d69e8ecb6d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81137,7 +82380,8 @@ "SenseId": "86f75dd8-5f35-49b6-bad7-b56faeee989e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81214,7 +82458,8 @@ "SenseId": "8fb899f4-3e60-4da5-ae2f-bc193922ee2b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81284,7 +82529,8 @@ "SenseId": "0add00b4-215f-48b4-9cd9-4a6ea9cdea9e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81418,7 +82664,8 @@ "SenseId": "97adf28c-c672-4948-8fa6-9a5c480c3d28", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81515,7 +82762,8 @@ "SenseId": "1d8b9835-607a-4a5f-a7e0-d36258e48b85", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81575,7 +82823,8 @@ "SenseId": "74ecc498-4610-44d3-8bf1-e94e0a6bf71c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81644,7 +82893,8 @@ "SenseId": "f1b22f18-4fff-468a-b40c-d38b79a4e1e9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81711,7 +82961,8 @@ "SenseId": "9a0e9e70-85ee-4730-abd3-06b24cd7f4b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81789,7 +83040,8 @@ "SenseId": "e7864414-f020-4453-a46a-a2e783a319bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81841,7 +83093,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -81908,7 +83161,8 @@ "SenseId": "87a4f889-f5e3-4a58-b4d2-851f7994fd50", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -81968,7 +83222,8 @@ "SenseId": "713209b8-5687-42da-8a9f-0c4194df9c33", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82030,7 +83285,8 @@ "SenseId": "aa3dbb29-03c4-4bbd-9cae-d6d7e43d31c9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82092,7 +83348,8 @@ "SenseId": "be6b1547-a452-400b-8bfb-b4911b6f3cb9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82161,7 +83418,8 @@ "SenseId": "c903a4d7-2f95-4fe9-908b-9878d753aba3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82244,7 +83502,8 @@ "SenseId": "2d50f802-27d2-438a-8761-fa5c754d237a", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "abc99545-0202-43ed-be8f-7264687ca3e9", @@ -82308,7 +83567,8 @@ "SenseId": "abc99545-0202-43ed-be8f-7264687ca3e9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82360,7 +83620,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -82422,7 +83683,8 @@ "SenseId": "01066106-cffb-43a3-8bb5-c62b81b88f48", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "83979ad4-d05c-440d-8979-55584e2cd670", @@ -82445,7 +83707,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -82507,7 +83770,8 @@ "SenseId": "72f793c5-1b2c-43f0-9754-7dc192c6d153", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82576,7 +83840,8 @@ "SenseId": "0eab6051-3e88-4006-94c2-bf686688ff8c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82638,7 +83903,8 @@ "SenseId": "1d7e19fe-4e89-4473-9b0d-b1daf3378f4a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82707,7 +83973,8 @@ "SenseId": "ceccd7ea-1268-4e04-a017-c929c4c6ccf6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82769,7 +84036,8 @@ "SenseId": "2c910b6c-cf3c-4bd5-b975-55217a5e15f3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82838,7 +84106,8 @@ "SenseId": "16f52de8-f3c0-4eb0-bb16-e5ead6689294", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -82966,7 +84235,8 @@ "SenseId": "307e4826-e570-4309-a661-0c09ce55f8ee", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e1fae09d-3261-4997-872c-f478b9ee9c7b", @@ -82989,7 +84259,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83058,7 +84329,8 @@ "SenseId": "3e08d5cd-0d4b-4a8d-a2da-30e0c85d4309", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83127,7 +84399,8 @@ "SenseId": "43eb9d22-183b-4e8f-8b62-76711d9d9c4e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83219,7 +84492,8 @@ "SenseId": "7fdfd1bd-5073-4c74-8d99-a0272b0b7817", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83290,7 +84564,8 @@ "SenseId": "01660702-0cff-44c1-bca0-7299180d70d3", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c8df1ccd-8f18-4c95-a4e3-04c0f25a714e", @@ -83313,7 +84588,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83382,7 +84658,8 @@ "SenseId": "fe25565c-e101-47c5-b92e-2f699c7f72c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83434,7 +84711,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83503,7 +84781,8 @@ "SenseId": "f5a038ca-f12d-4786-a7b5-76cb62c0c806", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83587,7 +84866,8 @@ "SenseId": "5f08fd4c-f27d-4990-959b-ded9fc67887f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83654,7 +84934,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3fa0cb72-e407-45bc-a90f-38adc5041151", @@ -83677,7 +84958,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "ea73ff7d-66be-492b-8932-ac0a9f169045", @@ -83700,7 +84982,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d063c9c8-0783-4e95-815a-80c2d90a0685", @@ -83723,7 +85006,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a79dae5d-2a1f-466c-91e2-16dd9ba73ea3", @@ -83746,7 +85030,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "0f2ca062-34a9-4860-a750-ba6b2e746e1b", @@ -83769,7 +85054,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83819,7 +85105,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -83920,7 +85207,8 @@ "SenseId": "ddff3979-8797-4434-a5cd-d9cc036eec8c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -83989,7 +85277,8 @@ "SenseId": "085bd1d5-7d44-49ce-b2f1-d99e07f27725", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84079,7 +85368,8 @@ "SenseId": "e41243fa-94bb-4fea-9ff7-b6fd65218271", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84184,7 +85474,8 @@ "SenseId": "fdd9782e-30a8-4beb-ae64-e0b6a49d4611", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84253,7 +85544,8 @@ "SenseId": "31eae4ca-af01-4b5f-b43e-7030a1904e30", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84329,7 +85621,8 @@ "SenseId": "10bf25f6-c827-4e17-b1a8-77abcee2c7d5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84428,7 +85721,8 @@ "SenseId": "b56a7877-3732-479b-981e-13bde2cf3199", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84488,7 +85782,8 @@ "SenseId": "2a1c424c-57fe-4c5e-bbfa-4a5f46f3ad04", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84540,7 +85835,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -84630,7 +85926,8 @@ "SenseId": "69dd5abb-75c8-43c9-a9de-e9d0a54d0f5f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84680,7 +85977,8 @@ }, "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -84742,7 +86040,8 @@ "SenseId": "ce86d5d3-44ed-43d9-8a49-ec1fcf09b1ec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -84809,7 +86108,8 @@ }, "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -84868,7 +86168,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": { @@ -84939,7 +86240,8 @@ "SenseId": "af2f2f67-3c07-40eb-b0e9-a6666c9851be", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85008,7 +86310,8 @@ "SenseId": "123cfb49-e66b-4a7e-9997-0d690f191eb1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "510fd70c-f3b5-4486-a739-ea40c1013314", @@ -85031,7 +86334,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -85121,7 +86425,8 @@ "SenseId": "9422102a-ec7f-49ec-a216-c9d0d99a6581", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85190,7 +86495,8 @@ "SenseId": "cc18e2d7-e581-4fae-bdeb-d70406e2c2bc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85259,7 +86565,8 @@ "SenseId": "e18ad564-feaf-4720-86dd-505f28398a27", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85321,7 +86628,8 @@ "SenseId": "288640d4-e9da-429d-ae09-563930a2ff83", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85390,7 +86698,8 @@ "SenseId": "50d9fda5-66fd-4161-afdc-e43a62fbf669", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85452,7 +86761,8 @@ "SenseId": "4e05471f-c25c-49b6-bde0-ef91ee7a87d7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85561,7 +86871,8 @@ "SenseId": "d761126d-b38c-44ee-99c5-fcca3c1d8595", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "169ce7e6-e82d-4e74-8ac1-3c36f8882e71", @@ -85584,7 +86895,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -85651,7 +86963,8 @@ "SenseId": "ef2a35dd-f9b5-4411-83b0-947b8f42060d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8785332a-5ca6-4ff9-b13a-1c8788ce703e", @@ -85675,7 +86988,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -85767,7 +87081,8 @@ "SenseId": "7b954282-dabd-4a06-bfd7-4ab1d972d915", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85827,7 +87142,8 @@ "SenseId": "d196009f-a66a-4004-9a72-cfb51309720a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85894,7 +87210,8 @@ "SenseId": "39572c63-f53e-474b-bbcb-f16a69029fd3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -85963,7 +87280,8 @@ "SenseId": "d578529c-8a83-4ee1-b74c-6818d74f6761", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "85493eee-1e87-42b3-97f3-de8668ed9d5e", @@ -85986,7 +87304,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -86053,7 +87372,8 @@ "SenseId": "75d60067-185b-4e4c-98a1-a0c8d39f3f31", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86115,7 +87435,8 @@ "SenseId": "65861da3-3916-4daa-83ed-56289478af5e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86182,7 +87503,8 @@ "SenseId": "7871daba-766d-4236-a452-353b1d106d6f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86263,7 +87585,8 @@ "SenseId": "954048a2-1a8e-44cb-8203-8b52aa29c3f0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86313,7 +87636,8 @@ }, "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -86372,7 +87696,8 @@ }, "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -86431,7 +87756,8 @@ "SenseId": "81cc027d-824b-4fc1-9808-36d64a737ac2", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d8a94a11-85f5-4067-88ef-1d5c78b4da4a", @@ -86446,7 +87772,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -86508,7 +87835,8 @@ "SenseId": "84e0a019-cb57-458a-823e-d32007d7a545", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86577,7 +87905,8 @@ "SenseId": "5cadb5a3-cbd7-46b5-b4cb-ef93b8ffd14b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86648,7 +87977,8 @@ "SenseId": "9462d765-6d98-4b26-9e9b-bb4a4d2ee805", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86717,7 +88047,8 @@ "SenseId": "cbd52040-b1d0-4c01-af17-accc2d5ae22e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -86821,7 +88152,8 @@ "SenseId": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", @@ -86877,7 +88209,8 @@ "SenseId": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", @@ -86933,7 +88266,8 @@ "SenseId": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d4106031-2175-4339-951b-86db166cd624", @@ -86956,7 +88290,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -87039,7 +88374,8 @@ "SenseId": "71fcd994-9fdf-41b5-a70e-4fff1395ec6b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87108,7 +88444,8 @@ "SenseId": "73ac71aa-df75-446e-9939-6baced57d246", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87175,7 +88512,8 @@ "SenseId": "ca4a133b-e0f9-4a56-b60f-16718a39ddae", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87263,7 +88601,8 @@ "SenseId": "e8eff102-aef9-45bf-94e7-aa718bf94a73", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87332,7 +88671,8 @@ "SenseId": "1ac4751d-c0f9-40c7-ad01-f392c2424abd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87384,7 +88724,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -87462,7 +88803,8 @@ "SenseId": "c1d4fa07-ebf9-40ab-a269-cebbd8e8e4e3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87531,7 +88873,8 @@ "SenseId": "d96c0e30-122f-4965-b2f2-7a28c5919eda", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87600,7 +88943,8 @@ "SenseId": "722a07be-8f96-4584-896b-5d4a1be2ff09", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87669,7 +89013,8 @@ "SenseId": "2f3702c7-fb24-4c15-8848-170402959bce", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87738,7 +89083,8 @@ "SenseId": "7ec31552-edd9-4071-9e74-ea6e4ea8cf26", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87817,7 +89163,8 @@ "SenseId": "34c84c1d-1627-4a45-805d-8a613c39f8fb", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "e1928272-94d5-4a99-b51c-8c79299b2b06", @@ -87840,7 +89187,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -87902,7 +89250,8 @@ "SenseId": "86c9f6ef-1382-442b-81c5-535496307803", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -87971,7 +89320,8 @@ "SenseId": "55e6af15-103c-4b41-9e10-da36ee20f5da", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88040,7 +89390,8 @@ "SenseId": "49ea4ff8-7c73-4fad-950d-b3d2dec9ad8b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88112,7 +89463,8 @@ "SenseId": "908cc39a-c4ae-4aab-a8a1-4cb2794ef409", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88181,7 +89533,8 @@ "SenseId": "98c38a96-d34b-4581-aca1-17ff2dc2c62e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "4fe54fea-afdf-4ce3-8789-da578722a5f6", @@ -88204,7 +89557,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c300c23f-9269-4a24-8be8-b91847605697", @@ -88227,7 +89581,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -88289,7 +89644,8 @@ "SenseId": "1665923c-551f-4e87-aa3e-a0c01859612c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88358,7 +89714,8 @@ "SenseId": "f17ee35f-9e3a-47b7-8aed-0abffa9e539e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88450,7 +89807,8 @@ "SenseId": "5607b315-66cf-4c69-9cc1-54040e31e662", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88519,7 +89877,8 @@ "SenseId": "4076b0ba-747a-4966-ad7e-4caa4c2cabc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88597,7 +89956,8 @@ "SenseId": "dc267b94-4a33-4731-aaaf-d484830ec3d4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88666,7 +90026,8 @@ "SenseId": "aa981b11-04ff-4af2-ae44-796234cb159b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88735,7 +90096,8 @@ "SenseId": "246c0387-eb1b-44f3-9b1f-a7bdaa8df9b5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "06977799-bc47-4b69-ac51-4e669399e821", @@ -88758,7 +90120,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -88827,7 +90190,8 @@ "SenseId": "38351af5-160a-449f-b6f5-334748970449", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88894,7 +90258,8 @@ "SenseId": "2f28a937-b7ad-4ce4-b967-9faad084543b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -88973,7 +90338,8 @@ "SenseId": "58ed32da-a923-470e-b739-1ee2521c1dbb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89044,7 +90410,8 @@ "SenseId": "d0e03952-92d9-4bf5-b7ac-d63a37ee3910", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89106,7 +90473,8 @@ "SenseId": "766a0dcd-11a0-48dc-ba1e-53c6d6a63354", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89175,7 +90543,8 @@ "SenseId": "0e15ca96-23ed-4faa-87c8-ca7a0d64e87f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89237,7 +90606,8 @@ "SenseId": "4b64743d-8234-4efd-bee6-01929aa5925b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89309,7 +90679,8 @@ "SenseId": "cc721689-3c6e-4e3d-8b48-304f1144ee8a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89395,7 +90766,8 @@ "SenseId": "2da1985b-4c8e-48c6-b819-be26a601b9c1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89462,7 +90834,8 @@ "SenseId": "4b483281-d3c1-432d-a5ff-1e7df777fc23", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89541,7 +90914,8 @@ "SenseId": "fb4d0840-35ad-4b51-a991-d3caac72b07b", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "9c5ab5d0-b755-41e7-8bfc-38cf4ac7476a", @@ -89564,7 +90938,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -89633,7 +91008,8 @@ "SenseId": "a29d6ebc-5c8a-4267-93f5-7acbb56f0a82", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "0f025d44-7074-4e04-868e-cc0a74db6931", @@ -89648,7 +91024,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -89710,7 +91087,8 @@ "SenseId": "310bbea4-dfd1-44b0-b6e5-cfb9ee73fd33", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89772,7 +91150,8 @@ "SenseId": "1d741e8d-7136-465d-8d8c-f699482d7e7a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89841,7 +91220,8 @@ "SenseId": "4bfb6430-34b1-4953-ac6f-1d14a55368e0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89910,7 +91290,8 @@ "SenseId": "e68fa0ae-00e9-401e-8939-1cdbcbf38a8f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -89989,7 +91370,8 @@ "SenseId": "22454890-7c2d-4a3b-beaf-c7a5a4dc141d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90068,7 +91450,8 @@ "SenseId": "98ae9c6a-49c6-4f2f-ae64-bcd03ce4e6c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90137,7 +91520,8 @@ "SenseId": "2581c234-84f5-4ef9-ae06-3be67d528c6a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90197,7 +91581,8 @@ "SenseId": "882560fc-27d5-4ea8-add0-8335b97c5032", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90286,7 +91671,8 @@ "SenseId": "e352f748-01e6-471f-a6d1-978b74e6c6a5", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "90054694-7f6e-4674-a525-b3e59e05f58d", @@ -90318,7 +91704,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90396,7 +91783,8 @@ "SenseId": "5c0b6467-8c7a-48ac-af53-c5b81c079967", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90446,7 +91834,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a3846ed9-9b20-4c5f-8abb-873f9ff99a17", @@ -90469,7 +91858,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "fdff4835-a887-4305-952a-4089525f3e62", @@ -90492,7 +91882,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "182f783d-7703-4dc6-8aaa-d4c995ec11e0", @@ -90515,7 +91906,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d7932d5f-f27f-4cbb-b264-52061d0b3253", @@ -90538,7 +91930,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90588,7 +91981,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90640,7 +92034,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "2251956c-607a-41dd-b047-c16ad95f04ef", @@ -90663,7 +92058,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -90753,7 +92149,8 @@ "SenseId": "10d326c8-2805-4ecf-91c3-2d933a063863", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90839,7 +92236,8 @@ "SenseId": "06909499-5a12-4fdc-b48e-5805606fe878", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90918,7 +92316,8 @@ "SenseId": "6257b3a4-5c21-474e-8045-768ac98bd030", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -90985,7 +92384,8 @@ "SenseId": "ec9e2a2a-4acf-4873-be17-33c22215f214", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91047,7 +92447,8 @@ "SenseId": "9604e24e-0b32-4036-b99f-029dad305317", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91099,7 +92500,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -91199,7 +92601,8 @@ "SenseId": "9e3d001b-8dbd-47bd-843d-545ae2eeedc8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91277,7 +92680,8 @@ "SenseId": "f452c5e8-330c-4323-862b-aba0ec42a2c4", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", @@ -91319,7 +92723,8 @@ "SenseId": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "198c45b5-e301-484e-ae81-fa801eb01331", @@ -91342,7 +92747,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -91413,7 +92819,8 @@ "SenseId": "051bfd1e-a26e-46e2-b13a-f3b00478e092", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91492,7 +92899,8 @@ "SenseId": "ff74f41d-6ccb-4d1a-be68-010a4320ed00", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91571,7 +92979,8 @@ "SenseId": "b419d979-913b-4cf5-8a8d-c3982e3c2093", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91633,7 +93042,8 @@ "SenseId": "0f7f7d77-6064-4ce1-b6a3-f80826d62a99", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ad61964d-ef71-4857-89cb-5205ab969a8b", @@ -91656,7 +93066,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -91732,7 +93143,8 @@ "SenseId": "a3baa2ad-79c0-41b1-9a24-e007e6d0b931", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c796903a-0d54-404a-a971-a11c1a968a61", @@ -91755,7 +93167,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -91824,7 +93237,8 @@ "SenseId": "e35e3997-6b2c-4db4-81ed-13929160c341", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -91978,7 +93392,8 @@ "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92057,7 +93472,8 @@ "SenseId": "d9cb4e6f-d542-4847-9ffd-72997d708f48", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92147,7 +93563,8 @@ "SenseId": "0a837b13-3198-4f8c-9049-c7a6b2ae0d4f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92216,7 +93633,8 @@ "SenseId": "dd0805ee-73c0-4c9d-8f0c-5b99eba335ac", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92283,7 +93701,8 @@ "SenseId": "a1393013-96f3-4f9c-9dd4-9c3d1b95747d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92345,7 +93764,8 @@ "SenseId": "3feaedde-d34f-48b6-b61a-657a7768e7f7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92412,7 +93832,8 @@ "SenseId": "7126b5f1-a48d-4788-8c37-e9837e25f274", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92479,7 +93900,8 @@ "SenseId": "fafade83-795b-4355-bcb8-9873dbad754f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92557,7 +93979,8 @@ "SenseId": "aefd8f47-6a88-499f-9860-41598b0821ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92626,7 +94049,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f2daba17-f3c7-4f16-94f6-f475f0a3cee4", @@ -92649,7 +94073,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -92718,7 +94143,8 @@ "SenseId": "58670c9a-5c67-4b4b-87ef-5d221763088d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92787,7 +94213,8 @@ "SenseId": "7607ede7-857f-4bc2-bc8a-ffa119369041", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92856,7 +94283,8 @@ "SenseId": "416479f0-f40d-42a8-9f53-0b36644f6a0e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92925,7 +94353,8 @@ "SenseId": "10b12fa3-9914-416a-8fa1-d2468ad75a80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -92987,7 +94416,8 @@ "SenseId": "0ccaed89-b1ea-46df-be4b-6e3783022746", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93049,7 +94479,8 @@ "SenseId": "b2a7e770-d42a-4824-be0e-573da2378774", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93116,7 +94547,8 @@ "SenseId": "df21a85f-bac3-4b99-a803-11ab3cb0f03e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93185,7 +94617,8 @@ "SenseId": "32a60fd6-a381-4384-9736-388b2b757260", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93254,7 +94687,8 @@ "SenseId": "71c418ed-430e-42bb-b4b1-9b182da8db95", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93313,7 +94747,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "3ee1ca91-7b0a-4567-bb1f-a4fdd123eebf", @@ -93345,7 +94780,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -93412,7 +94848,8 @@ "SenseId": "58397013-05a0-4187-a402-4b7531a3d1f6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93472,7 +94909,8 @@ "SenseId": "076bf5e2-f0dc-4475-b4b5-13f3a82fcd9d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93551,7 +94989,8 @@ "SenseId": "82120296-420f-4bc3-a316-ff1ef6f5823c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93603,7 +95042,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -93663,7 +95103,8 @@ "SenseId": "229f1945-8679-4417-a15f-0dc777567523", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93746,7 +95187,8 @@ "SenseId": "1f91440d-e07b-4444-b306-820bc3c62d78", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93815,7 +95257,8 @@ "SenseId": "1b86fc97-a86d-4edb-a856-501eaf8b9e6c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93884,7 +95327,8 @@ "SenseId": "f9374269-8d7c-433e-a4d1-2fbc6cd04fa5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -93953,7 +95397,8 @@ "SenseId": "8aaa121c-0d62-46ec-a3f8-932b53ec00f0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94022,7 +95467,8 @@ "SenseId": "bc9918ca-3931-45f2-a346-37e20a6eb6b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94091,7 +95537,8 @@ "SenseId": "f35b7645-f5d6-4526-9ff8-cfa0a2bfff9f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94162,7 +95609,8 @@ "SenseId": "3df4e095-0ab3-4e63-b349-4085ad7ea31d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94224,7 +95672,8 @@ "SenseId": "8e5ddd13-ed8e-4e0e-ac77-f6c630ff5e1c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94295,7 +95744,8 @@ "SenseId": "edaca876-4e83-48b2-a21c-43f30e9ec1f9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94366,7 +95816,8 @@ "SenseId": "9b3f4461-b2be-4678-bcd9-ef1fe0f95d6f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6a17df72-0935-4972-8df4-37a444a3e609", @@ -94389,7 +95840,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -94451,7 +95903,8 @@ "SenseId": "d5594291-e8d7-448b-8c98-356280a9beff", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94575,7 +96028,8 @@ "SenseId": "92b77272-33f6-4ae9-9593-8884890d1596", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94635,7 +96089,8 @@ "SenseId": "6a7921e6-0eed-496f-8fce-251cc73f54b2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94704,7 +96159,8 @@ "SenseId": "22d82ffc-5fb1-433d-b1d7-ea2f0cf74946", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "971be336-8e62-4ad2-97e7-47562f7cf80d", @@ -94727,7 +96183,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -94787,7 +96244,8 @@ "SenseId": "d3d45414-258a-41bf-b107-dc316f5eb53e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94856,7 +96314,8 @@ "SenseId": "5ce4fc2d-6488-4049-be7b-3d6685c21093", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -94934,7 +96393,8 @@ "SenseId": "23e2e383-ef7c-4d19-a72f-1621ef30e0ed", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95020,7 +96480,8 @@ "SenseId": "28376e7b-02a2-41bb-87bd-7161ce3ac904", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95087,7 +96548,8 @@ "SenseId": "5c30367b-6a13-44e2-9d98-b41917c9eb99", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95154,7 +96616,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -95204,7 +96667,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -95280,7 +96744,8 @@ "SenseId": "41acb687-44b9-4c4d-b448-122dea15f267", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95342,7 +96807,8 @@ "SenseId": "e103ab2e-f827-4438-96bf-86ef4267e9aa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95413,7 +96879,8 @@ "SenseId": "d4030108-039e-48d9-a868-901c2072385d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95462,7 +96929,8 @@ }, "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -95529,7 +96997,8 @@ "SenseId": "94ee3153-27ce-49a1-9a8a-5fc0afa329c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95621,7 +97090,8 @@ "SenseId": "57bfaa1f-735b-4c81-97aa-69b2efd9b530", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95690,7 +97160,8 @@ "SenseId": "eca32c60-3044-4c43-9ba3-7192e3155034", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95752,7 +97223,8 @@ "SenseId": "ea17990f-9b07-43fe-b097-597f7e238156", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95823,7 +97295,8 @@ "SenseId": "54abd687-0f45-4550-8779-511abb42721d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "32467084-7626-49a5-81ad-ffd52563622c", @@ -95894,7 +97367,8 @@ "SenseId": "32467084-7626-49a5-81ad-ffd52563622c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -95963,7 +97437,8 @@ "SenseId": "feb33bce-b6eb-4ceb-ac7d-4576e2624962", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b9579104-0efb-4b6b-9e41-023c12911774", @@ -95986,7 +97461,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -96048,7 +97524,8 @@ "SenseId": "8057b6f0-b920-4858-88d2-309e1eed6b9a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96110,7 +97587,8 @@ "SenseId": "8e74c118-c9ef-4a6e-8c67-13d0f309763e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96234,7 +97712,8 @@ "SenseId": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96319,7 +97798,8 @@ "SenseId": "1f752860-a94c-40e1-8e00-e21a9de5f0cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96381,7 +97861,8 @@ "SenseId": "3638e80f-f10d-4940-870c-8e11a37c1741", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96466,7 +97947,8 @@ "SenseId": "56aa7d5b-4657-48a4-9279-8ae8d6b1d47d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96535,7 +98017,8 @@ "SenseId": "e7918fd5-b343-4516-9e0f-47742369c08e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96604,7 +98087,8 @@ "SenseId": "31c1e263-4dbc-402f-a0f3-82d860f258f4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96680,7 +98164,8 @@ "SenseId": "c8b58fac-14b5-4eb0-8a25-03a5f365ea4c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96749,7 +98234,8 @@ "SenseId": "f411efec-e9a4-42da-9842-8ef770cbf71a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96809,7 +98295,8 @@ "SenseId": "398a49fe-4e56-4627-ae97-cb65ba976267", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96878,7 +98365,8 @@ "SenseId": "d06ecf71-49da-4964-9580-9579fd3f4d19", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -96947,7 +98435,8 @@ "SenseId": "1cf49a8e-38e9-414f-b537-8f83f8b48dc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97016,7 +98505,8 @@ "SenseId": "13b95c7a-e9f5-4949-a5fa-4ee19fabe2b5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97085,7 +98575,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97137,7 +98628,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97204,7 +98696,8 @@ "SenseId": "ef17635e-7bf6-4081-9faa-89b79f750a92", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97273,7 +98766,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -97342,7 +98836,8 @@ "SenseId": "ffa46537-54b5-4f01-a275-fce0693eea51", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97409,7 +98904,8 @@ "SenseId": "b9f6b2b3-fe70-4b2b-9d90-47d4b36194bb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97476,7 +98972,8 @@ "SenseId": "35b68d05-0492-4bc2-9003-a3b443d6bb08", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97538,7 +99035,8 @@ "SenseId": "daeef4ba-0630-46d0-85f7-d42aea9bdc51", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97600,7 +99098,8 @@ "SenseId": "fd6925ea-62b7-484d-b7f3-3e26652c2876", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97669,7 +99168,8 @@ "SenseId": "2b1e6e5c-832b-4c98-bab7-3aab2e4ed099", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97745,7 +99245,8 @@ "SenseId": "275e89aa-2531-4a04-8cc4-c633939186af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -97831,7 +99332,8 @@ "SenseId": "be445097-46a4-456d-9ce2-cd5df74eedb0", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3ce69d12-3a32-44e4-8761-314d11d493b0", @@ -97871,7 +99373,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "082609f1-948d-4d7e-88a8-bdbdf9c07aa8", @@ -97911,7 +99414,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "9de92b45-c94c-4ad6-b43a-a91c3627b415", @@ -97951,7 +99455,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "604b2b52-bb1a-4a4f-a945-58d91f6583ff", @@ -97991,7 +99496,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98053,7 +99559,8 @@ "SenseId": "9db6aecc-bae4-42fe-9a51-0e6141043296", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98245,7 +99752,8 @@ "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98312,7 +99820,8 @@ "SenseId": "a8395899-5677-4b10-ad80-d2e54c4d5b30", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98468,7 +99977,8 @@ "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7d04a11e-a1cc-4c15-a02c-1867b204ccd1", @@ -98491,7 +100001,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98552,7 +100063,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98614,7 +100126,8 @@ "SenseId": "0cff3926-500e-48fa-a76e-586fa07b315b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98676,7 +100189,8 @@ "SenseId": "78ffd0fa-3cef-472b-95ba-5212d0fd9cc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -98728,7 +100242,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98788,7 +100303,8 @@ "SenseId": "9bc220f0-6d26-4dab-9dcd-ee5814702e7e", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "103c6d03-e0ce-4210-8c46-543c91a9a4fc", @@ -98811,7 +100327,8 @@ }, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98871,7 +100388,8 @@ "SenseId": "4bd08dc0-41cf-4d75-93c7-8767c81179d1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d016f216-ef2f-4307-ac89-f31679d2e8fe", @@ -98885,7 +100403,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -98954,7 +100473,8 @@ "SenseId": "09b9897f-e966-4ebb-b14b-4d39f7cffae1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99016,7 +100536,8 @@ "SenseId": "c4e98335-0d70-47d8-b43d-f7ee335ad565", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99078,7 +100599,8 @@ "SenseId": "1f5908d1-d132-4290-b5cf-9c45bd76e15d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "636a6a22-a647-4966-aa8a-50d018f0a58b", @@ -99101,7 +100623,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -99170,7 +100693,8 @@ "SenseId": "e834c2bb-bd64-45cf-ac25-8cfa82fd4f4d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99239,7 +100763,8 @@ "SenseId": "3a72249d-72e0-4470-98b2-6fb64a0bd357", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99335,7 +100860,8 @@ "SenseId": "04aaab1a-5495-42b1-a958-3f72ca3de6e8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99421,7 +100947,8 @@ "SenseId": "59b235d0-71ff-4d3d-9050-eb56582b40ca", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99488,7 +101015,8 @@ "SenseId": "178130d5-6ddd-4fcf-8a25-2da2b42a9fef", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99548,7 +101076,8 @@ "SenseId": "7ef4f01e-1158-4b4f-8f05-427691f8a458", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99619,7 +101148,8 @@ "SenseId": "5b6d85ba-d915-4ab4-a276-64c26534135b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99678,7 +101208,8 @@ "SenseId": "17f9b2ab-451b-492b-905f-9429e4abc8ad", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99740,7 +101271,8 @@ "SenseId": "6115d59e-4e92-405f-bcfb-459907d99e66", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "12fae128-5dc7-4143-8ebd-dc84bc3af794", @@ -99763,7 +101295,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -99830,7 +101363,8 @@ "SenseId": "de0c5b8a-9f70-4dd3-890c-43931b7907fc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -99880,7 +101414,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -99951,7 +101486,8 @@ "SenseId": "04116e62-fca1-4b32-b2c0-ca82646efe3a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100030,7 +101566,8 @@ "SenseId": "ad2949d1-f16f-4086-a94e-3331fab7072d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100107,7 +101644,8 @@ "SenseId": "ed7a308d-7bec-4372-8253-d13abd1945b1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100174,7 +101712,8 @@ "SenseId": "505400d3-1e4a-42ce-acef-758b92bed1fc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100252,7 +101791,8 @@ "SenseId": "13592c25-2d1e-4c60-98ad-9ea4ccd6a6a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100314,7 +101854,8 @@ "SenseId": "94749a03-836e-4bd5-a4f1-9da4b3f5b05b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100376,7 +101917,8 @@ "SenseId": "3c5e68c4-1133-4d06-8f01-c33987ba51eb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100478,7 +102020,8 @@ "SenseId": "a8c34399-4446-4f34-8064-5850c2d0f45a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100547,7 +102090,8 @@ "SenseId": "bc5958ca-8e90-45de-8354-59d185422059", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100609,7 +102153,8 @@ "SenseId": "2a82aa97-31cf-43c3-a14b-09ffe761131e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100661,7 +102206,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -100753,7 +102299,8 @@ "SenseId": "98979afc-58f8-4894-bc22-f9daa3d857e1", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "ea8dcc79-5ac4-448c-9326-f727516e7bf4", @@ -100776,7 +102323,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -100836,7 +102384,8 @@ "SenseId": "a764da34-5c43-421d-9aac-e3260e289725", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100903,7 +102452,8 @@ "SenseId": "94f68ad2-1d69-41de-8aee-0185e99f8ccf", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -100963,7 +102513,8 @@ "SenseId": "890eb70c-54b8-4a4d-b031-db9451dc98ab", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101025,7 +102576,8 @@ "SenseId": "9a261001-cf61-46f3-8e58-7cae8273b3ba", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "7d75b23b-4960-47e8-93f1-d4a3136f04b9", @@ -101048,7 +102600,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101115,7 +102668,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101175,7 +102729,8 @@ "SenseId": "d2332721-57bf-4367-8f26-fa188d1386cb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101237,7 +102792,8 @@ "SenseId": "94991b8a-9d06-43f6-8903-159c9b5ee9df", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101296,7 +102852,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101372,7 +102929,8 @@ "SenseId": "05fc5ede-c5ac-4b95-ac1d-ce44536dd56a", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101463,7 +103021,8 @@ "SenseId": "8d3b472d-b11b-46c5-b440-3e0c3b93465f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101546,7 +103105,8 @@ "SenseId": "459bd1a5-34de-49d8-b98f-03aa6705b13d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101596,7 +103156,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101663,7 +103224,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d22c2b0d-2c83-42d2-973b-c20afdcc9398", @@ -101686,7 +103248,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101748,7 +103311,8 @@ "SenseId": "194662d7-732d-4c3c-8a38-39c3ec910646", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -101798,7 +103362,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101849,7 +103414,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -101918,7 +103484,8 @@ "SenseId": "625ce16c-7cca-4209-8052-c78dddfed8cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102009,7 +103576,8 @@ "SenseId": "8c76e0a3-47d5-4412-b5e6-c8b8338538a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102099,7 +103667,8 @@ "SenseId": "be876ecb-1662-4abf-ab67-4e7b43d600de", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "b429c752-8136-42a4-b68d-e0d1adb7ed22", @@ -102122,7 +103691,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102184,7 +103754,8 @@ "SenseId": "3fd82d2b-b8a1-490a-acc6-708d88540bcd", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102253,7 +103824,8 @@ "SenseId": "b547ec3a-2566-4f59-8d7b-5d6b607fb74e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102332,7 +103904,8 @@ "SenseId": "843731e3-603e-4249-ba99-754a719865e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102411,7 +103984,8 @@ "SenseId": "fdcdb28b-0bc6-4e95-82bc-45e2e0418405", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102463,7 +104037,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102547,7 +104122,8 @@ "SenseId": "02ebdfc0-2508-409a-9bec-019437e80fc0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -102599,7 +104175,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102649,7 +104226,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102716,7 +104294,8 @@ "SenseId": "cb4114f3-6b9c-4d10-83da-15aa3707622f", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8a1aab3b-5e70-4283-afd6-e169458cdf69", @@ -102739,7 +104318,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "18938887-46cf-45ca-b2c9-9d432d9de64a", @@ -102762,7 +104342,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102872,7 +104453,8 @@ "SenseId": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "6b33c75b-bfe6-48e5-b698-7c2386f22c25", @@ -102895,7 +104477,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -102962,7 +104545,8 @@ "SenseId": "4e1623b7-2320-48c6-a4d2-1d535a22a87f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103086,7 +104670,8 @@ "SenseId": "ce9787bb-6789-49f9-9981-27b1724cef66", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "d8c5c5b8-9b61-4fea-95b3-7ec530fd4644", @@ -103109,7 +104694,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103171,7 +104757,8 @@ "SenseId": "2ec29c07-952c-4c22-94e9-f18d655c3133", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103221,7 +104808,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103305,7 +104893,8 @@ "SenseId": "3736a2ed-4afc-47be-98f0-c1fd28d42f84", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103399,7 +104988,8 @@ "SenseId": "99872666-823a-445c-8f3a-0d5c8798ef7e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103459,7 +105049,8 @@ "SenseId": "c4f3e215-8ab4-4bd0-ad3c-1347ecccfbc4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103526,7 +105117,8 @@ "SenseId": "236decb1-bb94-472b-8a02-4b46e83fcd67", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103588,7 +105180,8 @@ "SenseId": "035b3bfa-5694-4c35-9c0d-2f8d70250156", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103657,7 +105250,8 @@ "SenseId": "8756ef8f-b016-4c53-ae52-ebe134672b80", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103751,7 +105345,8 @@ "SenseId": "6e95dee1-8398-4fa4-ada9-0bfebb343542", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "59373346-8f5d-4d04-bfda-f4aa384c0c81", @@ -103791,7 +105386,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -103860,7 +105456,8 @@ "SenseId": "807fc0c7-a3db-40ac-b74b-2f32418f3715", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103929,7 +105526,8 @@ "SenseId": "b3d7c131-2e6c-4715-a476-9cd2f74be96e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -103996,7 +105594,8 @@ "SenseId": "56055ad6-781e-40d4-bc90-a92ad2e6a316", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104074,7 +105673,8 @@ "SenseId": "4b5edab8-2284-4fba-8fa2-3c9c714de3b8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104143,7 +105743,8 @@ "SenseId": "c28f868d-c826-40d1-934c-d591cdd190b7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104212,7 +105813,8 @@ "SenseId": "83c39fed-42c6-446e-91d1-2b40af74eff5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104264,7 +105866,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104335,7 +105938,8 @@ "SenseId": "bc0108a7-1dfb-483f-a67a-4882cad7e919", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104397,7 +106001,8 @@ "SenseId": "41f653c0-8007-444f-9095-cc5af134f584", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104468,7 +106073,8 @@ "SenseId": "5647f2a9-9d0a-4599-9e48-cf98cd9624c0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -104537,7 +106143,8 @@ "SenseId": "95b6047b-3637-4494-9779-6216b4014a80", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8a4af5f4-a71e-47c5-a292-630923ada7bf", @@ -104577,7 +106184,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104644,7 +106252,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "6b48f7a4-471f-4b15-8b03-17a83b9de0d3", @@ -104667,7 +106276,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "af7ab1cc-2536-4251-bdde-ae723e46a105", @@ -104682,7 +106292,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c3f8b8ee-f1ea-4a6b-b8a3-34b0ca297629", @@ -104705,7 +106316,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "a0b813dc-f06c-41c9-9496-fdb656b331e0", @@ -104728,7 +106340,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104807,7 +106420,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104857,7 +106471,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "f4ae1775-b605-4604-8546-3cfcb6ca1c31", @@ -104880,7 +106495,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "65b694cd-f545-4444-8763-fcfb46f3c401", @@ -104903,7 +106519,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "7ec7b783-215f-442a-b660-d00b071a64d8", @@ -104926,7 +106543,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -104976,7 +106594,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "bca44468-9d04-4f0d-9e65-38694978d312", @@ -104999,7 +106618,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "d2b54291-bb8e-4645-b3f2-0d77890118b9", @@ -105022,7 +106642,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105072,7 +106693,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105139,7 +106761,8 @@ "SenseId": "135250b8-31fa-4d05-b3dd-3422225a9006", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105238,7 +106861,8 @@ "SenseId": "9f8f51bf-aa51-4686-b839-fdbc9d17f1bc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105328,7 +106952,8 @@ "SenseId": "8f55e116-bffe-43cc-b63e-3fc7fb464906", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105397,7 +107022,8 @@ "SenseId": "194ed05c-dc3a-4cec-bda9-f913d397f4c4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105464,7 +107090,8 @@ "SenseId": "094f4d6a-81eb-4cc1-b0b8-34cf24c90da7", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105531,7 +107158,8 @@ "SenseId": "ea48f99d-9b4e-41b4-99b3-a70c040a881d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105598,7 +107226,8 @@ "SenseId": "90e822b6-9c0a-4815-b20c-498954c79e55", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105665,7 +107294,8 @@ "SenseId": "9171df95-1a24-41d1-9194-d61abfa19488", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3e1edd79-92fa-4512-86a0-c4ba64c8cd07", @@ -105688,7 +107318,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -105785,7 +107416,8 @@ "SenseId": "4bfb0395-c6fc-4db5-8b04-cfe1c2bdcc8e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105868,7 +107500,8 @@ "SenseId": "136a7fae-16be-4f69-9cc1-783a5c5d074c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105930,7 +107563,8 @@ "SenseId": "78c00a11-2e56-4697-b5bf-80904626cdf3", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -105997,7 +107631,8 @@ "SenseId": "4b976689-b5df-47fe-bec3-756897ca779e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106064,7 +107699,8 @@ "SenseId": "24295910-8cbe-4dfb-888c-798376ffc7fa", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106141,7 +107777,8 @@ "SenseId": "6cecf1f9-7a8f-4595-bfc4-c217bf8b81f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106226,7 +107863,8 @@ "SenseId": "eca2562a-400e-4845-af66-21b452a16723", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106276,7 +107914,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106343,7 +107982,8 @@ "SenseId": "e088214d-88f2-4594-8f98-1f4f7c29dc65", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "c7ca7796-1ba2-4bdd-be82-40e4d3de066c", @@ -106366,7 +108006,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106416,7 +108057,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106492,7 +108134,8 @@ "SenseId": "358f3141-e7ab-4c29-ad51-ca223360afe8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106551,7 +108194,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106603,7 +108247,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106665,7 +108310,8 @@ "SenseId": "f99e2076-dadf-4143-99d7-1d5d173fcf7b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106749,7 +108395,8 @@ "SenseId": "ababeddc-08c3-4780-8012-7198cf761d05", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106799,7 +108446,8 @@ }, "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -106861,7 +108509,8 @@ "SenseId": "51aaf249-32a7-421b-87a3-3205be891797", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -106937,7 +108586,8 @@ "SenseId": "de3c9399-15af-4edf-8aaa-68f96d56637e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107016,7 +108666,8 @@ "SenseId": "fc67e6a9-5387-43f2-91a3-216cfd5e65a8", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107101,7 +108752,8 @@ "SenseId": "97a7c86c-6550-4e5c-a49f-a5a80330d9af", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107163,7 +108815,8 @@ "SenseId": "25b7c888-d2fe-4c54-ace2-9b299e7a899d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107230,7 +108883,8 @@ "SenseId": "42083ae6-df49-4ae6-bfc8-48aef6b280d0", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107292,7 +108946,8 @@ "SenseId": "4a4ca0ac-1ed7-4dd5-baa8-b61eaf61553e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107342,7 +108997,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107411,7 +109067,8 @@ "SenseId": "c5f58059-dd3b-4770-a432-4ac43c2a8668", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107497,7 +109154,8 @@ "SenseId": "1aa877de-615f-46be-a264-9b91635662f2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107573,7 +109231,8 @@ "SenseId": "09aabb85-a312-493f-8800-86735acf18fb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107623,7 +109282,8 @@ }, "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107685,7 +109345,8 @@ "SenseId": "ee0c1ccb-2141-41f8-aeea-f2830dba0dfb", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107752,7 +109413,8 @@ "SenseId": "bf71bf48-b8d3-455b-bc29-4a7b4ce04870", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -107821,7 +109483,8 @@ "SenseId": "24ed647a-dafd-4897-bd4a-1914c517f2c8", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "5deb9301-9b9c-4e6a-8f46-aa6653c0e987", @@ -107861,7 +109524,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -107928,7 +109592,8 @@ "SenseId": "bbb4c1c3-fa11-47cd-8150-e0d73818da0c", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "2ab4c07f-c6c3-400a-bf12-4bdede2672ff", @@ -107960,7 +109625,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -108044,7 +109710,8 @@ "SenseId": "c658fc3b-450b-4488-a2b7-fcefd7d38652", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108128,7 +109795,8 @@ "SenseId": "c63b0bac-a53f-4029-8fb1-6fc0af61f894", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108214,7 +109882,8 @@ "SenseId": "718eb928-04fd-4cd9-862e-9fd86ee62a56", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108283,7 +109952,8 @@ "SenseId": "e81c7af1-aa5c-4fcd-8971-36e4bfc4500d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108352,7 +110022,8 @@ "SenseId": "ae460c9e-400a-4e70-b9e1-cd27313bf09f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108421,7 +110092,8 @@ "SenseId": "509975b3-3a61-48be-b929-d47adaf4a2ec", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108488,7 +110160,8 @@ "SenseId": "0c68f1e7-423b-4ba3-93e4-f2748477abca", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108550,7 +110223,8 @@ "SenseId": "0ca24aef-ba6a-4288-903a-66d7bf45158c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108612,7 +110286,8 @@ "SenseId": "8bad9278-024a-46c0-b0b9-8fed75472d38", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "16e9b698-06c4-49a8-bd83-b8d5a36f8589", @@ -108635,7 +110310,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "db214e78-7505-4899-b49a-0637749e2d13", @@ -108677,7 +110353,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -108744,7 +110421,8 @@ "SenseId": "5179d490-ee47-45a5-b49d-cdb783960229", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108813,7 +110491,8 @@ "SenseId": "177fe980-b229-4630-aaf9-8522bc6e3d8b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108909,7 +110588,8 @@ "SenseId": "b3b3016f-337d-4ea6-a6d2-9bc3ebc9a2ba", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -108978,7 +110658,8 @@ "SenseId": "a5918398-1bfb-4cfb-85b3-c0b6972fac0d", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "8780309e-9d9a-4afe-9424-c239c3b77b09", @@ -109001,7 +110682,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109051,7 +110733,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109120,7 +110803,8 @@ "SenseId": "a1062067-0b74-4f5b-b8a0-df0698229773", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109198,7 +110882,8 @@ "SenseId": "2f75bf8c-4b92-46fd-a51f-b2cf2f60c732", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109267,7 +110952,8 @@ "SenseId": "ae62dd24-2425-4d9c-bf98-12f9af6e7573", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "56914d82-0650-4b31-bb28-a77197eca5ac", @@ -109290,7 +110976,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109340,7 +111027,8 @@ }, "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109402,7 +111090,8 @@ "SenseId": "a5cec45e-99e3-4c49-82f9-08602426527b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109462,7 +111151,8 @@ "SenseId": "435e2d57-8d6f-4c27-97a1-12affa2d82a9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109531,7 +111221,8 @@ "SenseId": "f93f82cc-9b40-4c81-b3c7-3001a88166e5", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109610,7 +111301,8 @@ "SenseId": "1ebd1836-16c2-4bc8-a232-5785ffb40d66", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109672,7 +111364,8 @@ "SenseId": "552b7e9b-d424-47a8-866c-82f290bd2c7c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109764,7 +111457,8 @@ "SenseId": "4145d3ff-05ab-40d4-9211-ab3874f5aeb9", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "3db9a9fe-2081-41be-9949-3c7789ccff52", @@ -109787,7 +111481,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -109858,7 +111553,8 @@ "SenseId": "cf11d0dd-67c4-4564-a4d4-c05dd5bbd1a1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -109959,7 +111655,8 @@ "SenseId": "bdc37e88-cc8d-40eb-b8a7-d41715ff2201", "DeletedAt": null } - ] + ], + "Pictures": [] }, { "Id": "5f0ee744-8b92-46cb-8fee-0cd0fa449a5f", @@ -109991,7 +111688,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -110058,7 +111756,8 @@ "SenseId": "610bd39c-d07d-4f3a-8dcf-6a1c45858f94", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110127,7 +111826,8 @@ "SenseId": "94d56b46-19b2-4ecb-aa89-c971ff0e51cc", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110194,7 +111894,8 @@ "SenseId": "896de921-857b-416f-9b2f-2530d6878a3e", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110261,7 +111962,8 @@ "SenseId": "6582a79f-77d9-498b-9d3d-13aefb6c2187", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110321,7 +112023,8 @@ "SenseId": "12fb344a-78ae-4185-96d8-448329aaac16", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110371,7 +112074,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -110431,7 +112135,8 @@ "SenseId": "c19b8053-71d1-4d12-ae64-ba1e3e5725c2", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110510,7 +112215,8 @@ "SenseId": "1e636329-5e53-4a16-8383-d26a31811711", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110577,7 +112283,8 @@ "SenseId": "6de663de-116b-405f-b3a2-3415c5f276f9", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110627,7 +112334,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -110696,7 +112404,8 @@ "SenseId": "586ad21a-8694-415b-afb2-5843bcb03885", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110763,7 +112472,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -110846,7 +112556,8 @@ "SenseId": "1b7e5eae-e787-4201-bd5d-54355fe1da19", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110908,7 +112619,8 @@ "SenseId": "d79e67f4-9836-4e45-a2cb-02574110442f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -110970,7 +112682,8 @@ "SenseId": "ada56c3e-c584-4f09-8914-978ad628ecbe", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111032,7 +112745,8 @@ "SenseId": "38c76c00-9ab7-487d-bb63-2e355f82f7c1", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111082,7 +112796,8 @@ }, "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "098fb96c-aaff-447e-9620-7463d45a2a2b", @@ -111105,7 +112820,8 @@ }, "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "c86e5e35-bb32-40b6-aaae-d17dea00c907", @@ -111128,7 +112844,8 @@ }, "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "098bb9a9-ead5-4fdb-80d9-41054d1151f8", @@ -111151,7 +112868,8 @@ }, "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, { "Id": "1e72e29e-1e83-4754-a073-e5edbf7da6bb", @@ -111174,7 +112892,8 @@ }, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] } ], "Note": {}, @@ -111304,7 +113023,8 @@ "SenseId": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111382,7 +113102,8 @@ "SenseId": "0383e271-64d7-43ef-93c0-bd43385dfa6f", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111444,7 +113165,8 @@ "SenseId": "0be25da3-89e3-4991-a1fa-318fcdf6d736", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111506,7 +113228,8 @@ "SenseId": "88ea6f68-239a-43d3-a2fc-3cd209661132", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111575,7 +113298,8 @@ "SenseId": "86618e0a-35d0-4abd-b1ef-3bccb313c9b4", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -111637,7 +113361,8 @@ "SenseId": "1458ae34-3a2e-45f5-b334-391ba0448c43", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, diff --git a/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs b/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs index 9a5e96fc8f..61ea258c89 100644 --- a/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs +++ b/backend/FwLite/FwLiteProjectSync/DryRunMiniLcmApi.cs @@ -292,6 +292,46 @@ public Task UpdateTranslation(Guid entryId, return Task.CompletedTask; } + + public Task CreatePicture(Guid entryId, Guid senseId, Picture picture, BetweenPosition? position = null) + { + DryRunRecords.Add(new DryRunRecord(nameof(CreatePicture), $"Create picture {picture.Caption} between {position?.Previous} and {position?.Next}")); + return Task.FromResult(picture); + } + + public async Task UpdatePicture(Guid entryId, + Guid senseId, + Guid pictureId, + UpdateObjectInput update) + { + DryRunRecords.Add(new DryRunRecord(nameof(UpdatePicture), + $"Update picture {pictureId}, changes: {update.Summarize()}")); + var picture = await _api.GetPicture(entryId, senseId, pictureId); + return picture ?? throw new NullReferenceException($"unable to find picture with id {pictureId}"); + } + + public Task UpdatePicture(Guid entryId, + Guid senseId, + Picture before, + Picture after, + IMiniLcmApi? api) + { + DryRunRecords.Add(new DryRunRecord(nameof(UpdatePicture), $"Update picture {after.Id}")); + return Task.FromResult(after); + } + + public Task MovePicture(Guid entryId, Guid senseId, Guid exampleId, BetweenPosition between) + { + DryRunRecords.Add(new DryRunRecord(nameof(MovePicture), $"Move picture {exampleId} between {between.Previous} and {between.Next}")); + return Task.CompletedTask; + } + + public Task DeletePicture(Guid entryId, Guid senseId, Guid pictureId) + { + DryRunRecords.Add(new DryRunRecord(nameof(DeletePicture), $"Delete picture {pictureId}")); + return Task.CompletedTask; + } + public Task CreateComplexFormComponent(ComplexFormComponent complexFormComponent, BetweenPosition? between = null) { var complexFormName = ComplexFormName(complexFormComponent); diff --git a/backend/FwLite/FwLiteShared/TypeGen/ReinforcedFwLiteTypingConfig.cs b/backend/FwLite/FwLiteShared/TypeGen/ReinforcedFwLiteTypingConfig.cs index b038cd9c51..c11b1777cf 100644 --- a/backend/FwLite/FwLiteShared/TypeGen/ReinforcedFwLiteTypingConfig.cs +++ b/backend/FwLite/FwLiteShared/TypeGen/ReinforcedFwLiteTypingConfig.cs @@ -86,6 +86,7 @@ private static void ConfigureMiniLcmTypes(ConfigurationBuilder builder) typeof(RichTextObjectData), typeof(Translation), + typeof(Picture), typeof(MediaFile), typeof(LcmFileMetadata), typeof(ViewField), diff --git a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt index 1b52942f83..b28168b1ba 100644 --- a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt @@ -263,8 +263,284 @@ "Predefined": false } ], + "Pictures": null, "EntityId": "fb918ba0-ba5e-7977-312e-3028d1295dd8" }, + { + "$type": "CreateSenseChange", + "EntryId": "d982e31f-04a7-9f11-1996-f5de8ad336ca", + "Order": 0.017837893500294633, + "Definition": { + "boi": { + "Spans": [ + { + "Text": "Place", + "Ws": "boi", + "Tags": [ + "5e2d4a6f-ca61-4ccc-8bc4-d07e9c25b370" + ] + }, + { + "Text": "zero administration", + "Ws": "boi", + "Tags": [ + "6e41a783-8b2d-4379-b2d8-ad14fef2fd6c" + ] + }, + { + "Text": "port", + "Ws": "nch", + "Bold": "Invert", + "FontSize": -235922745, + "ForeColor": "#00FFFF", + "Tags": [ + "c5bf050a-a023-fa08-8961-f33e94904058" + ] + } + ] + }, + "obl": { + "Spans": [ + { + "Text": "SMTP", + "Ws": "obl", + "Tags": [ + "523f4a52-4c14-4b3c-ae19-d89ba9e118b2" + ] + }, + { + "Text": "Creative", + "Ws": "obl", + "Tags": [ + "4b2fea6c-b602-43a2-b883-629f13f38183" + ] + }, + { + "Text": "Concrete", + "Ws": "tdi", + "Bold": "Invert", + "FontSize": 1570803136, + "ForeColor": "#0000FF", + "Tags": [ + "84f8cf23-b81a-27e9-14e9-630f52875f12" + ] + }, + { + "Text": "Bedfordshire", + "Ws": "srt", + "Bold": "Invert", + "FontSize": -1137475355, + "ForeColor": "#FF0000", + "Tags": [ + "0d5c77b9-3fa8-8d48-fbb5-70e5aea2e024" + ] + } + ] + }, + "nuj": { + "Spans": [ + { + "Text": "Borders", + "Ws": "nuj", + "Tags": [ + "cb7ce368-20e8-42f7-b716-41e1e29d8f83" + ] + } + ] + } + }, + "Gloss": { + "onr": "viral" + }, + "PartOfSpeechId": "bb9df589-487a-c176-2b3b-c1c8314b812a", + "SemanticDomains": [ + { + "Id": "9413074b-a698-2182-c159-105e3d96e128", + "Name": { + "ljw": "Path" + }, + "Code": "Handmade Fresh Towels", + "DeletedAt": null, + "Predefined": false + } + ], + "Pictures": [ + { + "Id": "e99a5e31-033e-7e62-a17e-078949b729e6", + "Order": 0, + "MediaUri": "sil-media://lexbox/545c2525-991a-46e6-b532-80878055abff", + "Caption": { + "gac": { + "Spans": [ + { + "Text": "Communications", + "Ws": "gac", + "Tags": [ + "1375adb1-a078-43dd-801a-162a70ac9d82" + ] + }, + { + "Text": "Forward", + "Ws": "gac", + "Tags": [ + "a11a5391-2b6c-450b-9e05-f3bf6290c559" + ] + }, + { + "Text": "Agent", + "Ws": "gac", + "Tags": [ + "9a4fd03d-dad2-4f43-8400-57ea2947db12" + ] + }, + { + "Text": "invoice", + "Ws": "xmw", + "Bold": "On", + "FontSize": -133486167, + "ForeColor": "#ADFF2F", + "Tags": [ + "4dea1beb-7631-ddf9-ce0e-802c0969d277" + ] + } + ] + } + } + } + ], + "EntityId": "f27a032b-e0f6-f389-b466-959bdb17086d" + }, + { + "$type": "CreateSenseChange", + "EntryId": "84933f4f-7b19-8a8e-e097-93bf8791c8bd", + "Order": 0.8292564606550344, + "Definition": { + "tjs": { + "Spans": [ + { + "Text": "applications", + "Ws": "tjs", + "Tags": [ + "04a9fefa-6277-47de-9898-3a106f880d90" + ] + } + ] + }, + "xse": { + "Spans": [ + { + "Text": "Causeway", + "Ws": "xse", + "Tags": [ + "38ae79c4-62fa-4f06-af05-3c189c54a6f2" + ] + }, + { + "Text": "Ecuador", + "Ws": "xse", + "Tags": [ + "9ccdf2af-e2b0-42f0-bf1f-85357b833f8e" + ] + }, + { + "Text": "support", + "Ws": "tsw", + "Bold": "Off", + "FontSize": -371592350, + "ForeColor": "#ADFF2F", + "Tags": [ + "c51425ff-666e-00de-3300-a8cc8dca667f" + ] + }, + { + "Text": "Metal", + "Ws": "xse", + "Tags": [ + "f429e625-904b-4a5c-ba2f-c6a5d15f7a8a" + ] + } + ] + } + }, + "Gloss": { + "kwz": "Plain", + "bfm": "Handcrafted", + "pru": "Cotton", + "lgr": "Investment Account" + }, + "PartOfSpeechId": "71340b71-d4e6-fafc-6203-b06ff067d931", + "SemanticDomains": [ + { + "Id": "d5a0d584-8aa1-a025-7afe-335db5ae3829", + "Name": { + "zu": "Parkway", + "jjr": "connecting" + }, + "Code": "Inlet", + "DeletedAt": null, + "Predefined": false + } + ], + "Pictures": [ + { + "Id": "9c8532e4-2fd6-162f-0d1a-abec581993d0", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "bie": { + "Spans": [ + { + "Text": "navigating", + "Ws": "bie", + "Tags": [ + "bd0bfdb7-0b21-41b6-99cb-cddb9fa346b3" + ] + } + ] + }, + "sbu": { + "Spans": [ + { + "Text": "exploit", + "Ws": "mxz", + "Bold": "On", + "FontSize": -980458710, + "ForeColor": "#0000FF", + "Tags": [ + "586b0c7f-a6ba-40f1-d1f6-3cefb9e989a2" + ] + }, + { + "Text": "Legacy", + "Ws": "sbu", + "Tags": [ + "39816162-718d-46a4-8122-d32211061a00" + ] + }, + { + "Text": "alarm", + "Ws": "sbu", + "Tags": [ + "fa0eaeca-9c62-422f-b40e-3c1961d87a19" + ] + }, + { + "Text": "compressing", + "Ws": "jbw", + "Bold": "Invert", + "FontSize": -269252843, + "ForeColor": "#FF0000", + "Tags": [ + "db7c8cfa-0459-b936-b425-79d43ceb19d5" + ] + } + ] + } + } + } + ], + "EntityId": "f18d4c1d-00e2-afa1-166b-a8f75a2d43de" + }, { "$type": "CreateExampleSentenceChange", "SenseId": "f3e4f3fe-1a2c-7096-fdf6-64df12809e1a", @@ -935,8 +1211,87 @@ "HomographNumber": 4, "EntityId": "d8005217-eba2-7937-34f9-b76d6543eea6" }, + { + "$type": "CreateSensePictureChange", + "PictureId": "ea235f25-c0eb-eead-811e-e68a39c055a9", + "Order": 0.623824122246817, + "Caption": { + "mvl": { + "Spans": [ + { + "Text": "Run", + "Ws": "sso", + "Bold": "On", + "FontSize": -1025374372, + "ForeColor": "#ADFF2F", + "Tags": [ + "f99e1091-279a-6e3e-18e0-49f9aba4eb69" + ] + }, + { + "Text": "monitor", + "Ws": "uks", + "Bold": "On", + "FontSize": -1061805835, + "ForeColor": "#0000FF", + "Tags": [ + "4c6179f1-6270-d103-b943-73b82516e7de" + ] + }, + { + "Text": "Money Market Account", + "Ws": "uum", + "Bold": "Invert", + "FontSize": -340849323, + "ForeColor": "#A52A2A", + "Tags": [ + "45cf6f51-b486-f3ce-4eee-3131a4c1d081" + ] + } + ] + } + }, + "MediaUri": "sil-media://lexbox/5d4d0fdb-7734-4c5b-9ad4-6e865a9e8b8c", + "Between": { + "Previous": "8d9db6e7-b1a3-211c-1bc4-40deddbfca78", + "Next": "0d77c2e3-133d-e964-313c-66b3e8323acd" + }, + "EntityId": "4dc2b41e-ec36-267f-91e2-e84bd00fd77c" + }, + { + "$type": "UpdateSensePictureChange", + "PictureId": "d805f51a-23fd-f17e-3d8d-51612ce16a36", + "Patch": [ + { + "op": "replace", + "path": "/Caption", + "value": { + "en": { + "Spans": [ + { + "Text": "An updated caption", + "Ws": "en" + } + ] + } + } + } + ], + "EntityId": "b4217cd5-6213-bf41-bf96-3b176903a58d" + }, + { + "$type": "ReorderSensePictureChange", + "PictureId": "c5ff743f-2bae-b7ec-9c4c-9e2feb0e37a2", + "Order": 0.24129482687531023, + "EntityId": "f584fdda-67f7-4807-35bd-efc9d775cd39" + }, + { + "$type": "RemoveSensePictureChange", + "PictureId": "8697d62c-1742-7598-030d-43bcf8aef52c", + "EntityId": "1dbb14cf-fb94-5a40-7cc5-eba28aa230ca" + }, { "$type": "SetMainPublicationChange", - "EntityId": "f7233b83-aa4d-5cd8-32bd-4e5041b310c3" + "EntityId": "c775e310-fc5c-6d01-5a02-146d579a88e5" } ] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt index 9d7cf42cf8..19edc4c876 100644 --- a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt @@ -145,6 +145,7 @@ "Predefined": false } ], + "Pictures": null, "EntityId": "fb918ba0-ba5e-7977-312e-3028d1295dd8" } }, @@ -336,85 +337,293 @@ }, { "Input": { - "$type": "AddPublicationChange", - "Publication": { - "Id": "84597629-7d00-a415-9ac1-2865b7efa9bf", - "DeletedAt": null, - "Name": { - "dgw": "Money Market Account", - "yrn": "parse" + "$type": "CreateSenseChange", + "EntryId": "d982e31f-04a7-9f11-1996-f5de8ad336ca", + "Order": 0.017837893500294633, + "Definition": { + "boi": { + "Spans": [ + { + "Text": "Place", + "Ws": "boi", + "Tags": [ + "5e2d4a6f-ca61-4ccc-8bc4-d07e9c25b370" + ] + }, + { + "Text": "zero administration", + "Ws": "boi", + "Tags": [ + "6e41a783-8b2d-4379-b2d8-ad14fef2fd6c" + ] + }, + { + "Text": "port", + "Ws": "nch", + "Bold": "Invert", + "FontSize": -235922745, + "ForeColor": "#00FFFF", + "Tags": [ + "c5bf050a-a023-fa08-8961-f33e94904058" + ] + } + ] + }, + "obl": { + "Spans": [ + { + "Text": "SMTP", + "Ws": "obl", + "Tags": [ + "523f4a52-4c14-4b3c-ae19-d89ba9e118b2" + ] + }, + { + "Text": "Creative", + "Ws": "obl", + "Tags": [ + "4b2fea6c-b602-43a2-b883-629f13f38183" + ] + }, + { + "Text": "Concrete", + "Ws": "tdi", + "Bold": "Invert", + "FontSize": 1570803136, + "ForeColor": "#0000FF", + "Tags": [ + "84f8cf23-b81a-27e9-14e9-630f52875f12" + ] + }, + { + "Text": "Bedfordshire", + "Ws": "srt", + "Bold": "Invert", + "FontSize": -1137475355, + "ForeColor": "#FF0000", + "Tags": [ + "0d5c77b9-3fa8-8d48-fbb5-70e5aea2e024" + ] + } + ] + }, + "nuj": { + "Spans": [ + { + "Text": "Borders", + "Ws": "nuj", + "Tags": [ + "cb7ce368-20e8-42f7-b716-41e1e29d8f83" + ] + } + ] } }, - "EntityId": "4dcbedc5-c4f1-54fd-f0b0-ede17a5af7e7" - }, - "Output": { - "$type": "AddPublicationChange", - "Publication": { - "Id": "84597629-7d00-a415-9ac1-2865b7efa9bf", - "DeletedAt": null, - "IsMain": false, - "Name": { - "dgw": "Money Market Account", - "yrn": "parse" - } + "Gloss": { + "onr": "viral" }, - "EntityId": "4dcbedc5-c4f1-54fd-f0b0-ede17a5af7e7" - } - }, - { - "Input": { - "$type": "ReplacePublicationChange", - "NewPublication": { - "Id": "09c00842-481a-516f-f9fc-e6732c9ada73", - "DeletedAt": null, - "Name": { - "iap": "whiteboard", - "jiy": "Trafficway", - "enu": "Kip", - "dtm": "optimize" + "PartOfSpeechId": "bb9df589-487a-c176-2b3b-c1c8314b812a", + "SemanticDomains": [ + { + "Id": "9413074b-a698-2182-c159-105e3d96e128", + "Name": { + "ljw": "Path" + }, + "Code": "Handmade Fresh Towels", + "DeletedAt": null, + "Predefined": false } - }, - "OldPublicationId": "e0fca592-c089-8850-8026-0c34610352fa", - "EntityId": "727546c3-8a97-c721-4a9a-5205cc029c77" + ], + "Pictures": [ + { + "Id": "e99a5e31-033e-7e62-a17e-078949b729e6", + "Order": 0, + "MediaUri": "sil-media://lexbox/545c2525-991a-46e6-b532-80878055abff", + "Caption": { + "gac": { + "Spans": [ + { + "Text": "Communications", + "Ws": "gac", + "Tags": [ + "1375adb1-a078-43dd-801a-162a70ac9d82" + ] + }, + { + "Text": "Forward", + "Ws": "gac", + "Tags": [ + "a11a5391-2b6c-450b-9e05-f3bf6290c559" + ] + }, + { + "Text": "Agent", + "Ws": "gac", + "Tags": [ + "9a4fd03d-dad2-4f43-8400-57ea2947db12" + ] + }, + { + "Text": "invoice", + "Ws": "xmw", + "Bold": "On", + "FontSize": -133486167, + "ForeColor": "#ADFF2F", + "Tags": [ + "4dea1beb-7631-ddf9-ce0e-802c0969d277" + ] + } + ] + } + }, + "DeletedAt": null + } + ], + "EntityId": "f27a032b-e0f6-f389-b466-959bdb17086d" }, "Output": { - "$type": "ReplacePublicationChange", - "NewPublication": { - "Id": "09c00842-481a-516f-f9fc-e6732c9ada73", - "DeletedAt": null, - "IsMain": false, - "Name": { - "iap": "whiteboard", - "jiy": "Trafficway", - "enu": "Kip", - "dtm": "optimize" + "$type": "CreateSenseChange", + "EntryId": "d982e31f-04a7-9f11-1996-f5de8ad336ca", + "Order": 0.017837893500294633, + "Definition": { + "boi": { + "Spans": [ + { + "Text": "Place", + "Ws": "boi", + "Tags": [ + "5e2d4a6f-ca61-4ccc-8bc4-d07e9c25b370" + ] + }, + { + "Text": "zero administration", + "Ws": "boi", + "Tags": [ + "6e41a783-8b2d-4379-b2d8-ad14fef2fd6c" + ] + }, + { + "Text": "port", + "Ws": "nch", + "Bold": "Invert", + "FontSize": -235922745, + "ForeColor": "#00FFFF", + "Tags": [ + "c5bf050a-a023-fa08-8961-f33e94904058" + ] + } + ] + }, + "obl": { + "Spans": [ + { + "Text": "SMTP", + "Ws": "obl", + "Tags": [ + "523f4a52-4c14-4b3c-ae19-d89ba9e118b2" + ] + }, + { + "Text": "Creative", + "Ws": "obl", + "Tags": [ + "4b2fea6c-b602-43a2-b883-629f13f38183" + ] + }, + { + "Text": "Concrete", + "Ws": "tdi", + "Bold": "Invert", + "FontSize": 1570803136, + "ForeColor": "#0000FF", + "Tags": [ + "84f8cf23-b81a-27e9-14e9-630f52875f12" + ] + }, + { + "Text": "Bedfordshire", + "Ws": "srt", + "Bold": "Invert", + "FontSize": -1137475355, + "ForeColor": "#FF0000", + "Tags": [ + "0d5c77b9-3fa8-8d48-fbb5-70e5aea2e024" + ] + } + ] + }, + "nuj": { + "Spans": [ + { + "Text": "Borders", + "Ws": "nuj", + "Tags": [ + "cb7ce368-20e8-42f7-b716-41e1e29d8f83" + ] + } + ] } }, - "OldPublicationId": "e0fca592-c089-8850-8026-0c34610352fa", - "EntityId": "727546c3-8a97-c721-4a9a-5205cc029c77" - } - }, - { - "Input": { - "$type": "CreatePublicationChange", - "Name": { - "mdy": "Small Soft Shoes", - "knc": "real-time", - "tre": "capacitor", - "xnu": "Multi-channelled" - }, - "EntityId": "a024fdbe-52a4-6447-aae3-50fd8b815f10" - }, - "Output": { - "$type": "CreatePublicationChange", - "Name": { - "mdy": "Small Soft Shoes", - "knc": "real-time", - "tre": "capacitor", - "xnu": "Multi-channelled" + "Gloss": { + "onr": "viral" }, - "IsMain": false, - "EntityId": "a024fdbe-52a4-6447-aae3-50fd8b815f10" + "PartOfSpeechId": "bb9df589-487a-c176-2b3b-c1c8314b812a", + "SemanticDomains": [ + { + "Id": "9413074b-a698-2182-c159-105e3d96e128", + "Name": { + "ljw": "Path" + }, + "Code": "Handmade Fresh Towels", + "DeletedAt": null, + "Predefined": false + } + ], + "Pictures": [ + { + "Id": "e99a5e31-033e-7e62-a17e-078949b729e6", + "Order": 0, + "MediaUri": "sil-media://lexbox/545c2525-991a-46e6-b532-80878055abff", + "Caption": { + "gac": { + "Spans": [ + { + "Text": "Communications", + "Ws": "gac", + "Tags": [ + "1375adb1-a078-43dd-801a-162a70ac9d82" + ] + }, + { + "Text": "Forward", + "Ws": "gac", + "Tags": [ + "a11a5391-2b6c-450b-9e05-f3bf6290c559" + ] + }, + { + "Text": "Agent", + "Ws": "gac", + "Tags": [ + "9a4fd03d-dad2-4f43-8400-57ea2947db12" + ] + }, + { + "Text": "invoice", + "Ws": "xmw", + "Bold": "On", + "FontSize": -133486167, + "ForeColor": "#ADFF2F", + "Tags": [ + "4dea1beb-7631-ddf9-ce0e-802c0969d277" + ] + } + ] + } + } + } + ], + "EntityId": "f27a032b-e0f6-f389-b466-959bdb17086d" } } ] \ 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 d8e4d5d81c..7b81d89da0 100644 --- a/backend/FwLite/LcmCrdt.Tests/Changes/UseChangesTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/Changes/UseChangesTests.cs @@ -174,6 +174,10 @@ private static IEnumerable GetAllChanges() var removeTranslationChange = new RemoveTranslationChange(exampleSentence.Id, translation.Id); yield return new ChangeWithDependencies(removeTranslationChange, [createTranslationChange]); + var picture = new Picture { Id = Guid.NewGuid(), Caption = { { "en", new RichString("test pic") } } }; + var createSensePictureChange = new CreateSensePictureChange(picture, sense.Id, between: null); + yield return new ChangeWithDependencies(createSensePictureChange, [createSenseChange]); + var semanticDomain = new SemanticDomain { Id = Guid.NewGuid(), Name = { { "en", "test sd" } } }; var createSemanticDomainChange = new CreateSemanticDomainChange(semanticDomain.Id, semanticDomain.Name, "1.1.1"); yield return new ChangeWithDependencies(createSemanticDomainChange); @@ -240,6 +244,16 @@ private static IEnumerable GetAllChanges() var setExampleSentenceOrderChange = new LcmCrdt.Changes.SetOrderChange(exampleSentence.Id, 10); yield return new ChangeWithDependencies(setExampleSentenceOrderChange, [createExampleSentenceChange]); + var setPictureOrderChange = new ReorderSensePictureChange(picture.Id, sense.Id, 10); + yield return new ChangeWithDependencies(setPictureOrderChange, [createSenseChange, createSensePictureChange]); + + var updatePictureChange = new UpdateSensePictureChange(picture.Id, sense.Id, new JsonPatchDocument() + .Replace(pic => pic.Caption, new() { { "en", new RichString("test caption update") } })); + yield return new ChangeWithDependencies(updatePictureChange, [createSenseChange, createSensePictureChange]); + + var removePictureChange = new RemoveSensePictureChange(picture.Id, sense.Id); + yield return new ChangeWithDependencies(removePictureChange, [createSenseChange, createSensePictureChange, setPictureOrderChange, updatePictureChange]); + var setComplexFormComponentOrderChange = new LcmCrdt.Changes.SetOrderChange(complexFormComponent.Id, 10); yield return new ChangeWithDependencies(setComplexFormComponentOrderChange, [createComplexFormComponentChange]); diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ChangeEntities.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ChangeEntities.verified.txt index 1c5c7bfb36..c2ce11ea61 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ChangeEntities.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ChangeEntities.verified.txt @@ -209,6 +209,7 @@ }, "PartOfSpeechId": null, "SemanticDomains": [], + "Pictures": null, "EntityId": "d510aa82-5557-4dd4-8b1f-1ec89facb979" } }, 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 2edd7c6d1e..51798c24e9 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 @@ -62,7 +62,8 @@ "SenseId": "d510aa82-5557-4dd4-8b1f-1ec89facb979", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.Snapshots.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.Snapshots.verified.txt index 24a96cfa39..54ae3b7d2e 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.Snapshots.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.Snapshots.verified.txt @@ -351,7 +351,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "d510aa82-5557-4dd4-8b1f-1ec89facb979", "DeletedAt": null diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ChangeEntities.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ChangeEntities.verified.txt index f4273de85a..dbd0ca5b7f 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ChangeEntities.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ChangeEntities.verified.txt @@ -541,6 +541,7 @@ }, "PartOfSpeechId": null, "SemanticDomains": [], + "Pictures": null, "EntityId": "1b423127-deb2-468d-8100-e1f1bff20826" } }, @@ -567,6 +568,7 @@ }, "PartOfSpeechId": null, "SemanticDomains": [], + "Pictures": null, "EntityId": "241d95a7-6d90-411b-8569-5648cc40b42b" } }, @@ -593,6 +595,7 @@ }, "PartOfSpeechId": null, "SemanticDomains": [], + "Pictures": null, "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d" } }, @@ -686,6 +689,7 @@ }, "PartOfSpeechId": null, "SemanticDomains": [], + "Pictures": null, "EntityId": "c77d7553-209d-45be-a83e-d07e69808873" } }, 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 a4bed8f657..c25af14c52 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 @@ -127,7 +127,8 @@ "SenseId": "b9440091-a9fc-4769-82b1-2ee8d030808d", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": { @@ -227,7 +228,8 @@ "SenseId": "241d95a7-6d90-411b-8569-5648cc40b42b", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -310,7 +312,8 @@ "SenseId": "1b423127-deb2-468d-8100-e1f1bff20826", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, @@ -381,7 +384,8 @@ "SenseId": "c77d7553-209d-45be-a83e-d07e69808873", "DeletedAt": null } - ] + ], + "Pictures": [] } ], "Note": {}, diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.Snapshots.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.Snapshots.verified.txt index 5d44e6699c..fea2fb4e3e 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.Snapshots.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.Snapshots.verified.txt @@ -1066,7 +1066,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "1b423127-deb2-468d-8100-e1f1bff20826", "DeletedAt": null @@ -1107,7 +1108,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "241d95a7-6d90-411b-8569-5648cc40b42b", "DeletedAt": null @@ -1148,7 +1150,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", "DeletedAt": null @@ -1190,7 +1193,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", "DeletedAt": null @@ -1240,7 +1244,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", "DeletedAt": null @@ -1290,7 +1295,8 @@ "PartOfSpeech": null, "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", "DeletedAt": null @@ -1351,7 +1357,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", "DeletedAt": null @@ -1394,7 +1401,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "c77d7553-209d-45be-a83e-d07e69808873", "DeletedAt": null diff --git a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt index 8ae6d0630f..b7e45c5eb4 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt @@ -977,7 +977,8 @@ "PartOfSpeech": null, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "468b3fd0-3d9e-4cae-9e4f-842dec5fa74d", "DeletedAt": null @@ -986,303 +987,2470 @@ "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "Id": "a7d178a9-1815-9673-a50e-12f1e9f2e88c", "Order": 0, "DeletedAt": null, - "EntryId": "d5af7990-8051-039c-3257-2bd93bad5da4", + "EntryId": "40441758-a443-78ad-5a91-ff960b9916d5", "Definition": { - "gnj": { + "bqu": { "Spans": [ { - "Text": "pink", - "Ws": "otn", + "Text": "Generic", + "Ws": "bqu", + "Tags": [ + "48c3c7a1-ec4e-4525-ba86-12bccc426156" + ] + }, + { + "Text": "Ergonomic Wooden Pants", + "Ws": "mie", "Bold": "Invert", - "FontSize": -1048489220, + "FontSize": -1554990305, "ForeColor": "#FF0000", "Tags": [ - "4931b96a-e357-8a72-5708-03cd3e00df0d" + "63895a7f-9e74-d3f2-fa1d-4e9c6249a821" ] }, { - "Text": "B2C", - "Ws": "kra", + "Text": "Missouri", + "Ws": "bqu", + "Tags": [ + "bfe28abd-921c-43ab-b12a-3983d72806ee" + ] + } + ] + }, + "aaq": { + "Spans": [ + { + "Text": "connect", + "Ws": "aaq", + "Tags": [ + "d1626cf1-836c-474c-9a60-0326b58c1133" + ] + } + ] + }, + "kbr": { + "Spans": [ + { + "Text": "Visionary", + "Ws": "olo", + "Bold": "Off", + "FontSize": -806356479, + "ForeColor": "#ADFF2F", + "Tags": [ + "2b69d915-a453-0323-2e8b-f9779ff69c71" + ] + }, + { + "Text": "Wooden", + "Ws": "mgv", "Bold": "On", - "FontSize": 787158362, + "FontSize": -42268580, "ForeColor": "#FF0000", "Tags": [ - "6e3735d6-70d2-6e59-ecf7-cfd0da49ba19" + "21259b45-178e-13b0-f6b5-07cb32e8e086" + ] + }, + { + "Text": "Incredible Plastic Cheese", + "Ws": "mtg", + "Bold": "Invert", + "FontSize": -741761540, + "ForeColor": "#00000000", + "Tags": [ + "cefbf8c2-8cc0-394a-b794-e9a238955186" ] } ] }, - "yae": { + "aac": { "Spans": [ { - "Text": "Strategist", - "Ws": "yae", + "Text": "Automotive", + "Ws": "aac", "Tags": [ - "a2c427fc-a1e0-414d-9d74-9c92d2634c4c" + "59554364-b6c8-478f-ab66-797c70131883" ] } ] } }, "Gloss": { - "kwy": "optical", - "dz": "Product" + "wmm": "clear-thinking", + "mrr": "purple", + "nbv": "ADP", + "asv": "Keys" }, "PartOfSpeech": { - "Id": "872bc271-c608-b3b6-17f7-7a87d584b7b3", + "Id": "4f11dbe5-38f3-5d99-f97e-66dde448383c", "Name": { - "tsk": "deposit", - "ush": "Frozen", - "ulw": "bandwidth", - "nkx": "Home Loan Account" + "suo": "payment", + "czk": "Robust", + "msn": "SQL" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "bf4af087-da24-5eb3-0237-ef224c28cfec", + "PartOfSpeechId": "becc1fbd-40c9-74aa-d900-3a686e83905a", "SemanticDomains": [ { - "Id": "7f788bc3-c6b8-860a-9149-ec59e7500629", + "Id": "d4fdc835-1442-31e9-6434-14c603b0cfc6", "Name": { - "tst": "networks", - "szv": "Riel", - "bje": "copying", - "owl": "Savings Account" + "tay": "Borders", + "hle": "1080p" }, - "Code": "synthesize", + "Code": "Gorgeous", "DeletedAt": null, "Predefined": false } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [ + { + "Id": "7f3dac33-9bec-e820-a020-5b263fb3ddbb", + "Order": 0, + "MediaUri": "sil-media://lexbox/9e223822-02f7-4964-ac7d-cb513c99a2e7", + "Caption": { + "xsd": { + "Spans": [ + { + "Text": "Coordinator", + "Ws": "csg", + "Bold": "Invert", + "FontSize": -327243448, + "ForeColor": "#00000000", + "Tags": [ + "818b5074-cd33-9963-c796-b5d6dfc342a6" + ] + }, + { + "Text": "product", + "Ws": "xsd", + "Tags": [ + "79528c49-d5db-452b-97e2-169d8d410bcc" + ] + }, + { + "Text": "Plastic", + "Ws": "hts", + "Bold": "On", + "FontSize": -1770557873, + "ForeColor": "#ADFF2F", + "Tags": [ + "579e4099-8da7-2229-2e02-26ba5887ea95" + ] + }, + { + "Text": "purple", + "Ws": "xsd", + "Tags": [ + "8e4d4fab-e322-4620-a75c-ab065950d3ea" + ] + } + ] + }, + "umg": { + "Spans": [ + { + "Text": "Inlet", + "Ws": "wdy", + "Bold": "On", + "FontSize": -1879231265, + "ForeColor": "#00FFFF", + "Tags": [ + "4a560dbe-c97c-6e88-9a70-5ac3d7d8bab3" + ] + }, + { + "Text": "systemic", + "Ws": "uzs", + "Bold": "Invert", + "FontSize": -360633128, + "ForeColor": "#0000FF", + "Tags": [ + "10ecf908-a4e7-a5d2-e49f-36b1c80ee4dc" + ] + } + ] + }, + "qvl": { + "Spans": [ + { + "Text": "Health, Health \u0026 Movies", + "Ws": "bfo", + "Bold": "Off", + "FontSize": -2011149657, + "ForeColor": "#00FFFF", + "Tags": [ + "24f961eb-bb2e-e9c7-7b54-d0f4869a1f62" + ] + } + ] + } + } + } + ] }, - "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "Id": "a7d178a9-1815-9673-a50e-12f1e9f2e88c", "DeletedAt": null }, { "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", - "Order": 1, + "Id": "7f88a339-4c32-60a0-d287-9fa7e4fc7f57", + "Order": 0, "DeletedAt": null, - "EntryId": "bf4fe0e2-5378-4425-9fba-9f66c32c438c", + "EntryId": "bd93bd5e-7614-63b5-f8f8-418bb4d173a1", "Definition": { - "en": { + "kib": { "Spans": [ { - "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", - "Ws": "en" + "Text": "white", + "Ws": "mlq", + "Bold": "Off", + "FontSize": -1266993758, + "ForeColor": "#ADFF2F", + "Tags": [ + "4ba15547-4de9-f211-cedb-eb6ae4a3585a" + ] + }, + { + "Text": "alarm", + "Ws": "kib", + "Tags": [ + "379f51ff-b990-4dd9-be22-0d3677fa6314" + ] } ] - } - }, - "Gloss": { - "en": "Fruit" - }, - "PartOfSpeech": null, - "PartOfSpeechId": null, - "SemanticDomains": [], - "ExampleSentences": [] - }, - "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", - "DeletedAt": null - }, - { - "$type": "MiniLcmCrdtAdapter", - "Obj": { - "$type": "Sense", - "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", - "Order": 0, - "DeletedAt": null, - "EntryId": "8045aa9c-e9b4-6831-accc-217bf6cecb5a", - "Definition": { - "kie": { + }, + "ksu": { "Spans": [ { - "Text": "Court", - "Ws": "kie", + "Text": "engineer", + "Ws": "ksu", "Tags": [ - "3e7bc154-0fdf-422e-8672-bba82c4c7bea" + "9182f41f-c5cc-4bee-98c4-182da28b1d0e" + ] + }, + { + "Text": "digital", + "Ws": "ksu", + "Tags": [ + "3add4820-26bc-44cb-a4f0-4620a72fbd5b" + ] + }, + { + "Text": "Rustic Fresh Gloves", + "Ws": "rmw", + "Bold": "Off", + "FontSize": -46748961, + "ForeColor": "#00000000", + "Tags": [ + "d5cb92db-1efa-53a0-c79d-06cd6dc46df8" + ] + }, + { + "Text": "invoice", + "Ws": "ksu", + "Tags": [ + "e70fe58a-2061-499f-b159-41772bb52ae5" ] } ] }, - "nwx": { + "lup": { "Spans": [ { - "Text": "high-level", - "Ws": "knx", + "Text": "orchestration", + "Ws": "lup", + "Tags": [ + "d594bd6e-85af-4488-ad58-0c170e742288" + ] + }, + { + "Text": "virtual", + "Ws": "nla", + "Bold": "Invert", + "FontSize": 1615051790, + "ForeColor": "#A52A2A", + "Tags": [ + "103dfddc-0b92-94a3-cc20-18c010a98259" + ] + }, + { + "Text": "synthesize", + "Ws": "lup", + "Tags": [ + "c88fb26c-173f-42d4-90fe-ff4e1e70f522" + ] + } + ] + }, + "hrr": { + "Spans": [ + { + "Text": "e-tailers", + "Ws": "bqd", "Bold": "Off", - "FontSize": 1816913505, - "ForeColor": "#00FFFF", + "FontSize": 472465589, + "ForeColor": "#00000000", "Tags": [ - "ec7bac85-e8de-3dca-a608-1b16c8f3a74d" + "9039100c-83f9-478f-2e2f-458a421ca608" ] }, { - "Text": "Auto Loan Account", - "Ws": "ktc", - "Bold": "On", - "FontSize": 1311882955, - "ForeColor": "#ADFF2F", + "Text": "Digitized", + "Ws": "hrr", "Tags": [ - "681a5741-2ee8-6bf5-1d04-12b39007cc6e" + "53edd83c-33c3-4d77-8a1f-74f2bb67ede6" ] }, { - "Text": "benchmark", - "Ws": "nwx", + "Text": "orange", + "Ws": "hrr", "Tags": [ - "3859d1b1-3d0f-42c4-b175-e4ceda64f6a0" + "67e36abd-9146-49b9-a4d9-82117ec3add7" ] }, { - "Text": "morph", - "Ws": "acs", - "Bold": "Invert", - "FontSize": -756973096, - "ForeColor": "#FF0000", + "Text": "AI", + "Ws": "xvo", + "Bold": "Off", + "FontSize": 304629055, + "ForeColor": "#ADFF2F", "Tags": [ - "ee463bc5-b7dc-3a7e-2b84-0b1aa34501b0" + "262a57b1-aa31-b4c3-bd5b-36af4e403f1e" ] } ] } }, "Gloss": { - "nef": "Zimbabwe Dollar", - "shc": "monetize", - "mft": "Identity" + "gsw": "convergence" }, "PartOfSpeech": { - "Id": "740b3570-ae92-43ca-e535-dcc5bba83e9a", + "Id": "b1979210-319d-4312-6f43-f5cb253c5499", "Name": { - "bmc": "Practical Cotton Keyboard", - "umo": "Switchable", - "yma": "Executive", - "gbd": "Awesome Metal Bacon" + "bfq": "circuit", + "dmf": "bypassing" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "60178cb0-6d29-dbbb-e444-f6e20fb55c82", + "PartOfSpeechId": "2b927261-aa9c-cbcf-7106-aac9623d284d", "SemanticDomains": [ { - "Id": "0f8fb88f-7436-fbaf-d55e-25211a471f35", + "Id": "4ec2c08c-496d-1ab3-e24d-f26f9f2072d8", "Name": { - "axg": "Home Loan Account", - "snr": "reintermediate", - "llx": "digital", - "ait": "Court" + "gmg": "Berkshire" }, - "Code": "Frozen", + "Code": "composite", "DeletedAt": null, "Predefined": false } ], - "ExampleSentences": [] - }, - "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", - "DeletedAt": null - }, - { - "$type": "MiniLcmCrdtAdapter", - "Obj": { - "$type": "Sense", - "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", - "Order": 2, - "DeletedAt": null, - "EntryId": "89c8b1e8-de9c-46cf-ba55-833b62f7a579", - "Definition": { - "en": { - "Spans": [ - { - "Text": "may or may not lay golden eggs", - "Ws": "en" - } - ] - } - }, - "Gloss": { - "en": "brid" - }, - "PartOfSpeech": null, - "PartOfSpeechId": null, - "SemanticDomains": [], - "ExampleSentences": [] - }, - "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", - "DeletedAt": null - }, - { - "$type": "MiniLcmCrdtAdapter", + "ExampleSentences": [], + "Pictures": [ + { + "Id": "79804e72-7f48-797b-8a59-5c3475376e49", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "khn": { + "Spans": [ + { + "Text": "calculating", + "Ws": "nwo", + "Bold": "Invert", + "FontSize": 635314379, + "ForeColor": "#00FFFF", + "Tags": [ + "3551a842-4434-3cb2-8b30-c431081dd986" + ] + }, + { + "Text": "indexing", + "Ws": "mbu", + "Bold": "Off", + "FontSize": -194985111, + "ForeColor": "#FF0000", + "Tags": [ + "7a5ef929-bfd5-196f-7508-0a77f494732c" + ] + }, + { + "Text": "Union", + "Ws": "khn", + "Tags": [ + "1734e155-75de-4d5b-ae70-9948486da05e" + ] + }, + { + "Text": "Flats", + "Ws": "khn", + "Tags": [ + "a589e4d4-a619-47c7-8704-d55ae9f35627" + ] + } + ] + }, + "koy": { + "Spans": [ + { + "Text": "methodologies", + "Ws": "pgn", + "Bold": "Off", + "FontSize": 1161930853, + "ForeColor": "#A52A2A", + "Tags": [ + "3d70eae0-f050-cb10-86ae-d6ce0d895b95" + ] + }, + { + "Text": "morph", + "Ws": "koy", + "Tags": [ + "fddc4869-4a72-4d18-abcd-652d59320480" + ] + } + ] + }, + "vec": { + "Spans": [ + { + "Text": "orchid", + "Ws": "zrn", + "Bold": "Invert", + "FontSize": 365353705, + "ForeColor": "#ADFF2F", + "Tags": [ + "fec30dae-01ad-909a-2ad1-1d1cab53875e" + ] + } + ] + }, + "xiv": { + "Spans": [ + { + "Text": "synthesize", + "Ws": "xpp", + "Bold": "Invert", + "FontSize": -2041724376, + "ForeColor": "#ADFF2F", + "Tags": [ + "ce9fca32-4b65-0221-a54c-6927768e48a3" + ] + }, + { + "Text": "Future", + "Ws": "xiv", + "Tags": [ + "722cf43b-14e4-43da-8583-afdc017a4bdd" + ] + } + ] + } + } + } + ] + }, + "Id": "7f88a339-4c32-60a0-d287-9fa7e4fc7f57", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", "Obj": { "$type": "Sense", - "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", "Order": 0, "DeletedAt": null, - "EntryId": "7310ab10-987a-3630-26ae-dc6a34fb0deb", + "EntryId": "d5af7990-8051-039c-3257-2bd93bad5da4", "Definition": { - "xau": { + "gnj": { "Spans": [ { - "Text": "PCI", - "Ws": "xsb", - "Bold": "Off", - "FontSize": 534074098, - "ForeColor": "#0000FF", + "Text": "pink", + "Ws": "otn", + "Bold": "Invert", + "FontSize": -1048489220, + "ForeColor": "#FF0000", "Tags": [ - "dfb21668-81b3-ef3f-4703-9ea338812723" + "4931b96a-e357-8a72-5708-03cd3e00df0d" ] }, { - "Text": "harness", - "Ws": "lro", + "Text": "B2C", + "Ws": "kra", + "Bold": "On", + "FontSize": 787158362, + "ForeColor": "#FF0000", + "Tags": [ + "6e3735d6-70d2-6e59-ecf7-cfd0da49ba19" + ] + } + ] + }, + "yae": { + "Spans": [ + { + "Text": "Strategist", + "Ws": "yae", + "Tags": [ + "a2c427fc-a1e0-414d-9d74-9c92d2634c4c" + ] + } + ] + } + }, + "Gloss": { + "kwy": "optical", + "dz": "Product" + }, + "PartOfSpeech": { + "Id": "872bc271-c608-b3b6-17f7-7a87d584b7b3", + "Name": { + "tsk": "deposit", + "ush": "Frozen", + "ulw": "bandwidth", + "nkx": "Home Loan Account" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "bf4af087-da24-5eb3-0237-ef224c28cfec", + "SemanticDomains": [ + { + "Id": "7f788bc3-c6b8-860a-9149-ec59e7500629", + "Name": { + "tst": "networks", + "szv": "Riel", + "bje": "copying", + "owl": "Savings Account" + }, + "Code": "synthesize", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "Order": 0, + "DeletedAt": null, + "EntryId": "1451ad8e-6f5a-8923-a691-6e3ed0ba10ac", + "Definition": { + "djo": { + "Spans": [ + { + "Text": "bi-directional", + "Ws": "dbr", + "Bold": "Invert", + "FontSize": -1747614445, + "ForeColor": "#00FFFF", + "Tags": [ + "cdbfc681-b4cb-fc53-0049-2f7a15f2cf9c" + ] + }, + { + "Text": "Village", + "Ws": "djo", + "Tags": [ + "06b2b112-2eaf-498c-a2b6-3691a0a2d5f2" + ] + }, + { + "Text": "Music, Clothing \u0026 Shoes", + "Ws": "djo", + "Tags": [ + "a7e91784-b210-401a-b134-8a7196d75290" + ] + } + ] + }, + "qyp": { + "Spans": [ + { + "Text": "flexibility", + "Ws": "qyp", + "Tags": [ + "a7ec7011-d986-4fcb-8c65-ed250fa27837" + ] + }, + { + "Text": "users", + "Ws": "qyp", + "Tags": [ + "89317672-83e3-4ec0-b15a-130c709c296a" + ] + }, + { + "Text": "Analyst", + "Ws": "dep", "Bold": "Off", - "FontSize": -1293318803, - "ForeColor": "#0000FF", + "FontSize": -938960202, + "ForeColor": "#00FFFF", "Tags": [ - "badee952-2d27-fc9b-656a-381da87e3b10" + "34eed6fc-feb1-cb7e-5fba-2cc249b35f9d" ] } ] } }, "Gloss": { - "fvr": "Licensed", - "zyn": "lime", - "sjo": "online", - "wkb": "Generic Cotton Shirt" + "ciy": "Curve" }, "PartOfSpeech": { - "Id": "cdc711e2-8767-4c25-5ad3-36bca7a318fe", + "Id": "a6b04de2-ca75-b141-abe1-f4494a514535", "Name": { - "cdh": "South Georgia and the South Sandwich Islands", - "bwq": "Cambridgeshire" + "mxt": "TCP" }, "DeletedAt": null, "Predefined": false }, - "PartOfSpeechId": "bdf71ef6-0ea6-40b9-5a51-c9d92a7ca8a4", + "PartOfSpeechId": "fac379c1-43a4-5710-83c8-5b9f55c90108", "SemanticDomains": [ { - "Id": "1835f6da-43ce-0a96-13e4-e485558e6a88", + "Id": "3ad12c58-f9a5-9ccd-04ff-8b979eac461b", "Name": { - "hnj": "Consultant", - "dtn": "encompassing" + "ulk": "white" }, - "Code": "Brazilian Real", + "Code": "SSL", "DeletedAt": null, "Predefined": false } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [ + { + "Id": "ddc6af94-5a95-c404-2cb8-ae1e61968538", + "Order": 0, + "MediaUri": "sil-media://lexbox/24556101-1dbc-4d4a-bf5a-8f9cf05fe8ea", + "Caption": { + "pea": { + "Spans": [ + { + "Text": "alarm", + "Ws": "pea", + "Tags": [ + "c97d629f-da4a-4e7f-9ea2-fedb628649e0" + ] + }, + { + "Text": "relationships", + "Ws": "byi", + "Bold": "Invert", + "FontSize": -1098187694, + "ForeColor": "#ADFF2F", + "Tags": [ + "d9693d70-5ee4-4a63-7abc-f42c99fca4f2" + ] + }, + { + "Text": "Kentucky", + "Ws": "pea", + "Tags": [ + "2d593536-8d6e-4766-ae62-c141ee7cb206" + ] + } + ] + } + } + } + ] }, - "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "e9d2b767-d15c-620d-fef9-498eca4c15df", + "Order": 0, + "DeletedAt": null, + "EntryId": "170f50ef-06ff-c0c3-ba31-95d557834be3", + "Definition": { + "kqx": { + "Spans": [ + { + "Text": "implementation", + "Ws": "kqx", + "Tags": [ + "69e02d33-4485-4535-a14d-baf5a4d2acd6" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "kqx", + "Tags": [ + "0db6b9b8-58f5-4473-9fde-43e665c44da2" + ] + }, + { + "Text": "Coordinator", + "Ws": "hdn", + "Bold": "Off", + "FontSize": -1831667232, + "ForeColor": "#A52A2A", + "Tags": [ + "f6c84f90-af3a-1f4c-415e-3e21f12ce3e9" + ] + } + ] + } + }, + "Gloss": { + "bdz": "generate", + "doo": "Refined Frozen Towels", + "mej": "Accounts", + "ymc": "Awesome Metal Soap" + }, + "PartOfSpeech": { + "Id": "27bbbcc2-0763-1cbb-f7f2-e8a268b88542", + "Name": { + "win": "CFA Franc BCEAO", + "mxe": "Senior", + "gpa": "Austria", + "xmo": "Incredible" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "a1a57ccc-5bb6-1db3-e404-d295a92a533c", + "SemanticDomains": [ + { + "Id": "f405f8cf-f979-b590-ac68-af276c005e5e", + "Name": { + "pue": "Automotive, Games \u0026 Grocery", + "ptr": "deposit", + "etn": "Configurable", + "xco": "Borders" + }, + "Code": "mint green", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "8365c6df-c5d4-df40-f393-cb241ea38a5a", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "imt": { + "Spans": [ + { + "Text": "Fantastic Wooden Sausages", + "Ws": "imt", + "Tags": [ + "a6f02bbc-af27-4241-995b-1988ab411381" + ] + }, + { + "Text": "Investment Account", + "Ws": "lii", + "Bold": "Off", + "FontSize": 294442575, + "ForeColor": "#FF0000", + "Tags": [ + "6136995a-68ce-2078-2287-0e3238630303" + ] + }, + { + "Text": "SSL", + "Ws": "nzm", + "Bold": "On", + "FontSize": -60028142, + "ForeColor": "#00000000", + "Tags": [ + "1e38adaf-4a97-e03b-9485-3e81ae7f5f57" + ] + } + ] + }, + "xkx": { + "Spans": [ + { + "Text": "incentivize", + "Ws": "xkx", + "Tags": [ + "7fcd101f-d866-4125-a76e-240480390548" + ] + }, + { + "Text": "client-server", + "Ws": "xkx", + "Tags": [ + "db527e0f-0bec-4a80-ad0d-e64eb86d6cf3" + ] + }, + { + "Text": "syndicate", + "Ws": "xkx", + "Tags": [ + "6881422e-d4e6-4f54-88f3-20597df98b0c" + ] + }, + { + "Text": "Practical", + "Ws": "kcb", + "Bold": "On", + "FontSize": -701786450, + "ForeColor": "#ADFF2F", + "Tags": [ + "2e7a971a-bd7c-a7bf-b8f7-488dcc272960" + ] + } + ] + } + } + } + ] + }, + "Id": "e9d2b767-d15c-620d-fef9-498eca4c15df", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", + "Order": 1, + "DeletedAt": null, + "EntryId": "bf4fe0e2-5378-4425-9fba-9f66c32c438c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "Order": 0, + "DeletedAt": null, + "EntryId": "d6347312-90fd-7a9b-611c-10e2be8f1e83", + "Definition": { + "zu": { + "Spans": [ + { + "Text": "optical", + "Ws": "zu", + "Tags": [ + "2f40db72-6dcd-4605-94f4-bb2f8e6f2c24" + ] + }, + { + "Text": "eco-centric", + "Ws": "ses", + "Bold": "On", + "FontSize": 150168967, + "ForeColor": "#ADFF2F", + "Tags": [ + "4d35b5c1-d8c0-2ee3-e261-985e474e2c62" + ] + }, + { + "Text": "Internal", + "Ws": "zu", + "Tags": [ + "ef294368-381e-4228-9feb-6fc5a21cb6f1" + ] + } + ] + } + }, + "Gloss": { + "nhz": "Personal Loan Account", + "vec": "Summit" + }, + "PartOfSpeech": { + "Id": "fe457b90-ba20-b702-a156-13149c126cc6", + "Name": { + "zkh": "Parks" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "aa3e7491-0e0d-b22f-cbf1-63e76cd83314", + "SemanticDomains": [ + { + "Id": "ecf6b571-e360-f100-7cf7-ec214489914a", + "Name": { + "bjy": "Montana", + "ga": "neural-net" + }, + "Code": "Rand", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "c70c8e39-9fea-f0ca-96ea-c54682b26ff2", + "Order": 0, + "MediaUri": "sil-media://lexbox/cc67fbb0-7072-4a0c-aa87-1c11dbd5c160", + "Caption": { + "spl": { + "Spans": [ + { + "Text": "Road", + "Ws": "plj", + "Bold": "On", + "FontSize": 206809027, + "ForeColor": "#ADFF2F", + "Tags": [ + "5ba3fafc-2a16-8ee1-4764-223a2ece4032" + ] + }, + { + "Text": "explicit", + "Ws": "ybb", + "Bold": "On", + "FontSize": -1840259444, + "ForeColor": "#ADFF2F", + "Tags": [ + "6fddd2cc-5dbd-6d0d-4bed-39e98d79771a" + ] + }, + { + "Text": "TCP", + "Ws": "mqb", + "Bold": "Invert", + "FontSize": 890686392, + "ForeColor": "#0000FF", + "Tags": [ + "2ff98fc6-d387-23aa-581a-9199a4971005" + ] + } + ] + } + } + } + ] + }, + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "7db9365a-9981-f773-9889-2ab959719212", + "Order": 0, + "DeletedAt": null, + "EntryId": "c8692489-ecea-4455-a12f-3b8e845ee660", + "Definition": { + "uni": { + "Spans": [ + { + "Text": "Officer", + "Ws": "uni", + "Tags": [ + "c20655dd-aa14-43d4-a3f6-c3feb4bf0417" + ] + } + ] + } + }, + "Gloss": { + "tjo": "reinvent" + }, + "PartOfSpeech": { + "Id": "dd85375e-839a-adab-af0d-5b2b8fb0c75e", + "Name": { + "lgn": "bus", + "bpt": "multi-state" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "69fd7bba-28e1-ab86-f993-ace1b3d028d6", + "SemanticDomains": [ + { + "Id": "0be1c84e-f1f9-40c2-8242-e07f81e2b466", + "Name": { + "tda": "bypassing", + "leb": "Analyst", + "kxm": "Avon" + }, + "Code": "Auto Loan Account", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "991f2191-40bc-e56b-dd24-d6135792053b", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "pzn": { + "Spans": [ + { + "Text": "portals", + "Ws": "aux", + "Bold": "Invert", + "FontSize": 1639221492, + "ForeColor": "#ADFF2F", + "Tags": [ + "39c4e2fa-22d5-ae8a-33da-0e2ef61a2bec" + ] + }, + { + "Text": "Credit Card Account", + "Ws": "pzn", + "Tags": [ + "6a5e9f05-72ce-462d-8e77-cba524d3c745" + ] + }, + { + "Text": "toolset", + "Ws": "bkn", + "Bold": "On", + "FontSize": 1678144495, + "ForeColor": "#0000FF", + "Tags": [ + "320debd0-19af-1f43-568f-320fd25dd10f" + ] + }, + { + "Text": "functionalities", + "Ws": "yxa", + "Bold": "On", + "FontSize": 1088844074, + "ForeColor": "#A52A2A", + "Tags": [ + "5af5d0bd-de4e-ac4e-9b91-b1e1c1ed975e" + ] + } + ] + }, + "zim": { + "Spans": [ + { + "Text": "Avenue", + "Ws": "zim", + "Tags": [ + "a00cf5d4-6f85-4723-8da8-b96ad5ffdcf1" + ] + }, + { + "Text": "copying", + "Ws": "zim", + "Tags": [ + "b1769f78-b17d-4f1e-a128-1751fc4c60e8" + ] + }, + { + "Text": "interface", + "Ws": "bhk", + "Bold": "Invert", + "FontSize": 1962777344, + "ForeColor": "#0000FF", + "Tags": [ + "f6c5673c-dbf4-c29c-daa6-17473f85e209" + ] + } + ] + }, + "ghl": { + "Spans": [ + { + "Text": "bypassing", + "Ws": "ghl", + "Tags": [ + "da3e852a-3246-4abc-9a22-2fa254b08eba" + ] + }, + { + "Text": "Small Cotton Hat", + "Ws": "ghl", + "Tags": [ + "ab718d66-b0f4-466e-bfc6-eb39e22adcfb" + ] + } + ] + }, + "afo": { + "Spans": [ + { + "Text": "Marketing", + "Ws": "afo", + "Tags": [ + "a460263d-9619-4a3f-9b42-17d1359b0b64" + ] + }, + { + "Text": "Liechtenstein", + "Ws": "afo", + "Tags": [ + "f85b1388-51bc-497c-86a6-063d6cc00c30" + ] + } + ] + } + } + } + ] + }, + "Id": "7db9365a-9981-f773-9889-2ab959719212", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", + "Order": 0, + "DeletedAt": null, + "EntryId": "8045aa9c-e9b4-6831-accc-217bf6cecb5a", + "Definition": { + "kie": { + "Spans": [ + { + "Text": "Court", + "Ws": "kie", + "Tags": [ + "3e7bc154-0fdf-422e-8672-bba82c4c7bea" + ] + } + ] + }, + "nwx": { + "Spans": [ + { + "Text": "high-level", + "Ws": "knx", + "Bold": "Off", + "FontSize": 1816913505, + "ForeColor": "#00FFFF", + "Tags": [ + "ec7bac85-e8de-3dca-a608-1b16c8f3a74d" + ] + }, + { + "Text": "Auto Loan Account", + "Ws": "ktc", + "Bold": "On", + "FontSize": 1311882955, + "ForeColor": "#ADFF2F", + "Tags": [ + "681a5741-2ee8-6bf5-1d04-12b39007cc6e" + ] + }, + { + "Text": "benchmark", + "Ws": "nwx", + "Tags": [ + "3859d1b1-3d0f-42c4-b175-e4ceda64f6a0" + ] + }, + { + "Text": "morph", + "Ws": "acs", + "Bold": "Invert", + "FontSize": -756973096, + "ForeColor": "#FF0000", + "Tags": [ + "ee463bc5-b7dc-3a7e-2b84-0b1aa34501b0" + ] + } + ] + } + }, + "Gloss": { + "nef": "Zimbabwe Dollar", + "shc": "monetize", + "mft": "Identity" + }, + "PartOfSpeech": { + "Id": "740b3570-ae92-43ca-e535-dcc5bba83e9a", + "Name": { + "bmc": "Practical Cotton Keyboard", + "umo": "Switchable", + "yma": "Executive", + "gbd": "Awesome Metal Bacon" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "60178cb0-6d29-dbbb-e444-f6e20fb55c82", + "SemanticDomains": [ + { + "Id": "0f8fb88f-7436-fbaf-d55e-25211a471f35", + "Name": { + "axg": "Home Loan Account", + "snr": "reintermediate", + "llx": "digital", + "ait": "Court" + }, + "Code": "Frozen", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "Order": 0, + "DeletedAt": null, + "EntryId": "b298a98d-22a6-40d4-f897-fb7e5ef12432", + "Definition": { + "lof": { + "Spans": [ + { + "Text": "function", + "Ws": "lof", + "Tags": [ + "bc1cb5a3-0c11-47f3-aef1-f8ecb5e1a8d9" + ] + } + ] + } + }, + "Gloss": { + "svm": "Incredible Soft Bike", + "boh": "Key", + "nfd": "analyzing", + "byo": "Argentine Peso" + }, + "PartOfSpeech": { + "Id": "d257270c-51c4-6979-84cf-b9ccff8d60dc", + "Name": { + "bsp": "application" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "a353cc36-57b4-8ed4-0fd4-d616fced9108", + "SemanticDomains": [ + { + "Id": "c43c9761-815e-0b1e-b90c-dfdf799b16d9", + "Name": { + "kxv": "Tenge", + "dih": "holistic", + "aif": "Bypass", + "hms": "Future" + }, + "Code": "orange", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "f3fb453a-99d8-0b46-b190-409064885cbd", + "Order": 0, + "MediaUri": "sil-media://lexbox/7d361699-1e9d-4d5e-89b3-eb66898523f7", + "Caption": { + "pdi": { + "Spans": [ + { + "Text": "National", + "Ws": "pdi", + "Tags": [ + "47346349-78e0-470f-aaf9-3980c401e041" + ] + }, + { + "Text": "Intelligent Wooden Computer", + "Ws": "pdi", + "Tags": [ + "a464551e-c62b-439a-90ff-a69add9b1241" + ] + }, + { + "Text": "lime", + "Ws": "shz", + "Bold": "Invert", + "FontSize": -455513223, + "ForeColor": "#00000000", + "Tags": [ + "6c1d33ac-f149-8bd9-a358-6e589cb34bc6" + ] + } + ] + }, + "fip": { + "Spans": [ + { + "Text": "indexing", + "Ws": "fip", + "Tags": [ + "eb32049a-a31e-4f10-aa04-8b3ac193abda" + ] + }, + { + "Text": "integrate", + "Ws": "fip", + "Tags": [ + "5e96dfb4-a4ab-48b7-9139-0ddd54e5c2fc" + ] + }, + { + "Text": "Grocery", + "Ws": "nhu", + "Bold": "Off", + "FontSize": 781582330, + "ForeColor": "#00000000", + "Tags": [ + "aa20518f-f7e6-4157-b9e6-a0377a26c6c8" + ] + } + ] + }, + "tdk": { + "Spans": [ + { + "Text": "Kids \u0026 Home", + "Ws": "tdk", + "Tags": [ + "0fdbc8ee-310d-4954-bfd9-7db50ae03b2c" + ] + }, + { + "Text": "District", + "Ws": "dap", + "Bold": "Invert", + "FontSize": 1319768493, + "ForeColor": "#A52A2A", + "Tags": [ + "38206d1c-bcd0-8df6-4b10-234afe42152f" + ] + } + ] + }, + "jos": { + "Spans": [ + { + "Text": "Director", + "Ws": "jos", + "Tags": [ + "d7d60d66-c9ce-45aa-9004-e0268b91d2d5" + ] + }, + { + "Text": "back-end", + "Ws": "ham", + "Bold": "Off", + "FontSize": 613268958, + "ForeColor": "#00000000", + "Tags": [ + "1ef432cc-f167-0755-ec93-06d5f330878b" + ] + }, + { + "Text": "Djibouti", + "Ws": "hmv", + "Bold": "Off", + "FontSize": -1306242714, + "ForeColor": "#0000FF", + "Tags": [ + "0f4fc950-4619-ed72-314f-2239b9b1aab7" + ] + } + ] + } + } + } + ] + }, + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "f39ffe3c-94a1-557f-cf6c-c3a5d62eb118", + "Order": 0, + "DeletedAt": null, + "EntryId": "9382fd2a-0dce-2f5d-bdf8-976c89b78f09", + "Definition": { + "mcf": { + "Spans": [ + { + "Text": "Cove", + "Ws": "woa", + "Bold": "Invert", + "FontSize": 661665754, + "ForeColor": "#FF0000", + "Tags": [ + "7e4eb13c-1680-aa3b-fa16-171af5077e94" + ] + }, + { + "Text": "Coordinator", + "Ws": "aax", + "Bold": "Invert", + "FontSize": -776890613, + "ForeColor": "#A52A2A", + "Tags": [ + "ec21f133-fe8a-c054-ef38-4e916aed3242" + ] + }, + { + "Text": "override", + "Ws": "zag", + "Bold": "Off", + "FontSize": -2144821366, + "ForeColor": "#0000FF", + "Tags": [ + "a13c3436-b669-fe85-d1ff-bc4ccf3ec120" + ] + } + ] + }, + "kfj": { + "Spans": [ + { + "Text": "Serbia", + "Ws": "kfj", + "Tags": [ + "0419d5df-b122-4065-bf3e-a96cf8ebaa24" + ] + }, + { + "Text": "Generic Cotton Pizza", + "Ws": "hng", + "Bold": "Invert", + "FontSize": 1518698995, + "ForeColor": "#ADFF2F", + "Tags": [ + "11e84286-9334-7add-782b-bd14dc7f7b01" + ] + }, + { + "Text": "Texas", + "Ws": "kfj", + "Tags": [ + "72ec4ae5-33eb-43c7-96fd-fca3e2910b07" + ] + } + ] + }, + "tag": { + "Spans": [ + { + "Text": "Falkland Islands Pound", + "Ws": "syo", + "Bold": "Invert", + "FontSize": 1861298083, + "ForeColor": "#00000000", + "Tags": [ + "c346269b-13e9-7610-ad49-1e3b17458a40" + ] + }, + { + "Text": "Usability", + "Ws": "uhn", + "Bold": "Invert", + "FontSize": 1491545820, + "ForeColor": "#A52A2A", + "Tags": [ + "9ff7d106-2b72-bccb-6216-c8d5bfbc9843" + ] + } + ] + } + }, + "Gloss": { + "sny": "Neck" + }, + "PartOfSpeech": { + "Id": "ea8ff3b0-4362-9168-1d32-b4c538f7cc7a", + "Name": { + "lvl": "Democratic People\u0027s Republic of Korea" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "eaa97b2e-477b-d15a-d009-b03bfecad893", + "SemanticDomains": [ + { + "Id": "e177e1c5-b5bc-2038-2b15-5e5d48be2529", + "Name": { + "kmu": "Wooden" + }, + "Code": "mission-critical", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "96e78848-8081-b916-c42f-a477c7c720b3", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "ske": { + "Spans": [ + { + "Text": "PCI", + "Ws": "meq", + "Bold": "Off", + "FontSize": 939450240, + "ForeColor": "#0000FF", + "Tags": [ + "62979dec-0d70-de3f-2f18-69b6a9463735" + ] + }, + { + "Text": "Automated", + "Ws": "ske", + "Tags": [ + "780eaa13-730a-4784-9958-dc5480b4c4e0" + ] + }, + { + "Text": "Savings Account", + "Ws": "urt", + "Bold": "On", + "FontSize": 1397834172, + "ForeColor": "#0000FF", + "Tags": [ + "c705abb0-c434-bc17-fedf-cd58b1ab3b55" + ] + } + ] + }, + "dif": { + "Spans": [ + { + "Text": "parsing", + "Ws": "dif", + "Tags": [ + "e08b843d-33f9-47e7-801d-af636f03cad4" + ] + }, + { + "Text": "web-readiness", + "Ws": "dif", + "Tags": [ + "699262f7-e6a4-4e43-bcbe-718c3f7616b2" + ] + } + ] + } + } + } + ] + }, + "Id": "f39ffe3c-94a1-557f-cf6c-c3a5d62eb118", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "Order": 2, + "DeletedAt": null, + "EntryId": "89c8b1e8-de9c-46cf-ba55-833b62f7a579", + "Definition": { + "en": { + "Spans": [ + { + "Text": "may or may not lay golden eggs", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "brid" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "Order": 0, + "DeletedAt": null, + "EntryId": "018eaf35-2a0a-6098-13b3-260ea4017d27", + "Definition": { + "dac": { + "Spans": [ + { + "Text": "Accountability", + "Ws": "dac", + "Tags": [ + "755f2352-8b57-41a1-bb72-cdb00c70a723" + ] + }, + { + "Text": "Berkshire", + "Ws": "osi", + "Bold": "Off", + "FontSize": 202893717, + "ForeColor": "#0000FF", + "Tags": [ + "60af4336-04cc-2d89-f7d1-093374e118b8" + ] + } + ] + }, + "ptt": { + "Spans": [ + { + "Text": "Checking Account", + "Ws": "ptt", + "Tags": [ + "fb86b786-0054-48ba-8f7d-9cee06055c4d" + ] + }, + { + "Text": "content", + "Ws": "fsl", + "Bold": "Invert", + "FontSize": -712294872, + "ForeColor": "#00000000", + "Tags": [ + "97add724-5b06-4d9d-54f5-ef39c28c08bb" + ] + }, + { + "Text": "SQL", + "Ws": "ptt", + "Tags": [ + "49987f83-0e34-4f77-9b8b-d61c3a8e603d" + ] + } + ] + }, + "kzh": { + "Spans": [ + { + "Text": "Uzbekistan", + "Ws": "kzh", + "Tags": [ + "4aad02ff-438f-4f6f-89d9-6ec8340b6763" + ] + } + ] + }, + "ulf": { + "Spans": [ + { + "Text": "Intelligent Frozen Sausages", + "Ws": "ulf", + "Tags": [ + "e09b6dde-62e8-423a-af41-9ce466144488" + ] + }, + { + "Text": "District", + "Ws": "twp", + "Bold": "Invert", + "FontSize": -1102337901, + "ForeColor": "#A52A2A", + "Tags": [ + "07334f1a-5d23-f06b-390c-f4e04cd6aaaa" + ] + }, + { + "Text": "next-generation", + "Ws": "ulf", + "Tags": [ + "12169ebc-09bc-4536-94ee-764bd5495ede" + ] + }, + { + "Text": "Direct", + "Ws": "loo", + "Bold": "Invert", + "FontSize": 1945097886, + "ForeColor": "#FF0000", + "Tags": [ + "9ae6b7b0-9c92-0333-eac6-84a7fb521cb0" + ] + } + ] + } + }, + "Gloss": { + "qud": "Square" + }, + "PartOfSpeech": { + "Id": "ab15d93b-1c45-e79b-f1b2-5d8f71e45335", + "Name": { + "pmz": "infomediaries", + "tmj": "Health \u0026 Books", + "buu": "Corporate", + "hix": "International" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "326aff5e-43f0-7705-7672-a2aa8ba2023c", + "SemanticDomains": [ + { + "Id": "702e9bc7-e774-0d90-8f88-dff28920154b", + "Name": { + "ktg": "card", + "zaf": "Tasty" + }, + "Code": "North Korean Won", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "0e6a2808-96be-86d5-6092-04f762f26202", + "Order": 0, + "MediaUri": "sil-media://lexbox/7b06b27e-80e9-420d-bc93-c2c29720ef78", + "Caption": { + "emq": { + "Spans": [ + { + "Text": "strategize", + "Ws": "emq", + "Tags": [ + "c5fccb12-219e-46f0-93ff-2234546ef6b7" + ] + } + ] + } + } + } + ] + }, + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "1c34cc92-421a-01c1-d22f-4f1379981df7", + "Order": 0, + "DeletedAt": null, + "EntryId": "dec2c32e-6e17-173e-13fd-7f2ab4ce56c9", + "Definition": { + "jud": { + "Spans": [ + { + "Text": "Fantastic Fresh Table", + "Ws": "jud", + "Tags": [ + "3dde4d6e-b610-44cd-b7f0-853f6d9f9680" + ] + }, + { + "Text": "EXE", + "Ws": "jud", + "Tags": [ + "944daefe-a88f-4168-ace0-a81099908859" + ] + }, + { + "Text": "France", + "Ws": "jud", + "Tags": [ + "6d6018a8-4d8b-43c5-a188-68ae485981f3" + ] + } + ] + }, + "lum": { + "Spans": [ + { + "Text": "Central", + "Ws": "lum", + "Tags": [ + "d96dca0e-fdb6-4ac1-9864-69a63788d3ae" + ] + }, + { + "Text": "Home Loan Account", + "Ws": "lum", + "Tags": [ + "d2743a5b-67a5-441d-a4f6-efd0f55c9f90" + ] + } + ] + } + }, + "Gloss": { + "zmc": "Cotton", + "nbs": "Programmable" + }, + "PartOfSpeech": { + "Id": "5fb817b7-7c86-56ce-ca5f-ff8467d5260f", + "Name": { + "mkf": "Home \u0026 Shoes" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "1245db57-fd23-45e3-c394-a38c7e1fa617", + "SemanticDomains": [ + { + "Id": "2fc2a227-ac73-8518-5bba-5b74c1285b40", + "Name": { + "kg": "Solomon Islands Dollar", + "osc": "Consultant", + "bpe": "Ferry" + }, + "Code": "Awesome Fresh Sausages", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "12ce8612-d983-1af0-4b37-21a1c23a8e21", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "skb": { + "Spans": [ + { + "Text": "Slovakia (Slovak Republic)", + "Ws": "skb", + "Tags": [ + "e6ae98b8-677e-4834-b4d7-d738ba2816f9" + ] + }, + { + "Text": "Luxembourg", + "Ws": "hab", + "Bold": "Off", + "FontSize": -797072059, + "ForeColor": "#A52A2A", + "Tags": [ + "bad7abdd-5e58-9f69-d0ed-91cb7bf79b10" + ] + } + ] + }, + "bsp": { + "Spans": [ + { + "Text": "Berkshire", + "Ws": "bsp", + "Tags": [ + "2f1eb23e-692a-49f0-9b7f-4d23d925cccc" + ] + }, + { + "Text": "red", + "Ws": "bsp", + "Tags": [ + "7720eab3-709f-498c-9b30-66c2e3ac737c" + ] + } + ] + }, + "hni": { + "Spans": [ + { + "Text": "Lead", + "Ws": "phd", + "Bold": "Invert", + "FontSize": -1680981122, + "ForeColor": "#ADFF2F", + "Tags": [ + "ea4753f5-8b13-fa87-0e09-6fbc78b78581" + ] + }, + { + "Text": "River", + "Ws": "hni", + "Tags": [ + "56385552-a5f6-4d29-a228-49e09e16e294" + ] + } + ] + }, + "tdq": { + "Spans": [ + { + "Text": "Gorgeous", + "Ws": "tdq", + "Tags": [ + "7da9faf0-8cb9-42a3-a486-079bd0f05a33" + ] + }, + { + "Text": "whiteboard", + "Ws": "dda", + "Bold": "On", + "FontSize": -773976336, + "ForeColor": "#0000FF", + "Tags": [ + "42011f31-c33a-1f4f-925d-abb59c734377" + ] + } + ] + } + } + } + ] + }, + "Id": "1c34cc92-421a-01c1-d22f-4f1379981df7", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "Order": 0, + "DeletedAt": null, + "EntryId": "7310ab10-987a-3630-26ae-dc6a34fb0deb", + "Definition": { + "xau": { + "Spans": [ + { + "Text": "PCI", + "Ws": "xsb", + "Bold": "Off", + "FontSize": 534074098, + "ForeColor": "#0000FF", + "Tags": [ + "dfb21668-81b3-ef3f-4703-9ea338812723" + ] + }, + { + "Text": "harness", + "Ws": "lro", + "Bold": "Off", + "FontSize": -1293318803, + "ForeColor": "#0000FF", + "Tags": [ + "badee952-2d27-fc9b-656a-381da87e3b10" + ] + } + ] + } + }, + "Gloss": { + "fvr": "Licensed", + "zyn": "lime", + "sjo": "online", + "wkb": "Generic Cotton Shirt" + }, + "PartOfSpeech": { + "Id": "cdc711e2-8767-4c25-5ad3-36bca7a318fe", + "Name": { + "cdh": "South Georgia and the South Sandwich Islands", + "bwq": "Cambridgeshire" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "bdf71ef6-0ea6-40b9-5a51-c9d92a7ca8a4", + "SemanticDomains": [ + { + "Id": "1835f6da-43ce-0a96-13e4-e485558e6a88", + "Name": { + "hnj": "Consultant", + "dtn": "encompassing" + }, + "Code": "Brazilian Real", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [] + }, + "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", + "Order": 0, + "DeletedAt": null, + "EntryId": "45402c66-1666-a6ae-be14-52268308a80d", + "Definition": { + "wrr": { + "Spans": [ + { + "Text": "radical", + "Ws": "wrr", + "Tags": [ + "ca09e09e-93d9-465b-a90c-150f9fe1c37d" + ] + }, + { + "Text": "Denmark", + "Ws": "wrr", + "Tags": [ + "c98ffdcf-b21d-4f26-aa98-96766f1de795" + ] + }, + { + "Text": "Strategist", + "Ws": "pag", + "Bold": "Invert", + "FontSize": 1802509412, + "ForeColor": "#FF0000", + "Tags": [ + "83cedf51-7bb2-2a83-6ac1-3dfd1da56010" + ] + } + ] + }, + "yaj": { + "Spans": [ + { + "Text": "Shore", + "Ws": "yaj", + "Tags": [ + "c2cb390c-d89f-4d44-b15e-8c66084f976f" + ] + }, + { + "Text": "Course", + "Ws": "tku", + "Bold": "On", + "FontSize": -887647908, + "ForeColor": "#ADFF2F", + "Tags": [ + "788a2a1f-d8b2-db8e-157a-f675ac13fc1a" + ] + } + ] + }, + "ptq": { + "Spans": [ + { + "Text": "copying", + "Ws": "ptq", + "Tags": [ + "30ada735-7e8e-4399-80cf-e0c87ecd94ae" + ] + }, + { + "Text": "upward-trending", + "Ws": "kl", + "Bold": "On", + "FontSize": 2020980805, + "ForeColor": "#A52A2A", + "Tags": [ + "54fd1200-a70f-1498-b1d1-cb77180f34b0" + ] + }, + { + "Text": "Kansas", + "Ws": "rcf", + "Bold": "Invert", + "FontSize": -1745182649, + "ForeColor": "#00FFFF", + "Tags": [ + "5d91118e-46d7-97d5-9b4d-e8efbc08330e" + ] + } + ] + } + }, + "Gloss": { + "sda": "migration", + "url": "sexy" + }, + "PartOfSpeech": { + "Id": "2aea7efe-0c41-a465-06d7-dc7d1dd44b9b", + "Name": { + "pab": "convergence", + "kgl": "North Dakota", + "ppu": "Iowa" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "f25a3e84-2992-a4c1-a86c-3f5d0a221a7c", + "SemanticDomains": [ + { + "Id": "0404de20-eee7-0b57-0d07-9d00e64c3588", + "Name": { + "idt": "Persevering" + }, + "Code": "auxiliary", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "de247b82-e534-9742-c69a-20a76209b78c", + "Order": 0, + "MediaUri": "sil-media://lexbox/396c23b3-1736-4d1e-bc7d-15baf5e5aefb", + "Caption": { + "bab": { + "Spans": [ + { + "Text": "convergence", + "Ws": "bab", + "Tags": [ + "7b5f64a7-3b9a-4cab-b513-80c8804a5175" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "bab", + "Tags": [ + "b2da0f22-28e8-4b7e-9cc0-f7491b3ee991" + ] + }, + { + "Text": "integrated", + "Ws": "ibm", + "Bold": "Off", + "FontSize": -1988753505, + "ForeColor": "#A52A2A", + "Tags": [ + "8e0b442f-cccf-7a3d-d17a-2d8e56d3c038" + ] + }, + { + "Text": "approach", + "Ws": "rmx", + "Bold": "Invert", + "FontSize": 1336983740, + "ForeColor": "#A52A2A", + "Tags": [ + "b443ce55-c277-33c3-9d59-f863851a32c0" + ] + } + ] + }, + "anj": { + "Spans": [ + { + "Text": "Refined", + "Ws": "anj", + "Tags": [ + "70f80489-9e6a-4593-a7d4-b9a0651bdd32" + ] + }, + { + "Text": "connect", + "Ws": "won", + "Bold": "Off", + "FontSize": -1171626966, + "ForeColor": "#FF0000", + "Tags": [ + "2f7b1eca-ebad-a134-98bd-8453634579ab" + ] + } + ] + }, + "jer": { + "Spans": [ + { + "Text": "Mews", + "Ws": "mek", + "Bold": "On", + "FontSize": -49834405, + "ForeColor": "#ADFF2F", + "Tags": [ + "d160ce7d-6803-3adc-c88d-05cf3939ae45" + ] + }, + { + "Text": "productivity", + "Ws": "beo", + "Bold": "On", + "FontSize": 1358440076, + "ForeColor": "#0000FF", + "Tags": [ + "791f8e3b-d5d0-593e-8ca2-c57ebb123c9b" + ] + }, + { + "Text": "Internal", + "Ws": "jer", + "Tags": [ + "22593efb-681a-4e61-bdc4-96b4d54feee5" + ] + } + ] + }, + "orn": { + "Spans": [ + { + "Text": "Kiribati", + "Ws": "orn", + "Tags": [ + "43da294d-1349-48ab-a650-3fae8cd2cc0e" + ] + } + ] + } + } + } + ] + }, + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "3ad5077d-175e-bf42-60ec-df0e3cf1d2bb", + "Order": 0, + "DeletedAt": null, + "EntryId": "d522a89d-4b91-60d5-297a-467ce5ce36f4", + "Definition": { + "dry": { + "Spans": [ + { + "Text": "Steel", + "Ws": "dry", + "Tags": [ + "be2ec4e5-bfa6-4ff7-9b80-ec12c4d0c9cf" + ] + } + ] + } + }, + "Gloss": { + "tit": "engage" + }, + "PartOfSpeech": { + "Id": "df0da2e0-a5da-82e4-e988-4431bacce8f3", + "Name": { + "ikp": "synergy", + "tsl": "Fall", + "tk": "Montana" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "e7d2c844-a20e-ba5c-05e7-6f866aaa2ac6", + "SemanticDomains": [ + { + "Id": "a9e87dc5-0ede-0598-843d-c41e192b3f6e", + "Name": { + "aea": "input", + "nid": "Object-based", + "mrx": "Money Market Account", + "btb": "silver" + }, + "Code": "applications", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "e8b84384-ad9c-de55-500d-2daaf850489f", + "Order": 0, + "MediaUri": "sil-media://not-found/00000000-0000-0000-0000-000000000000", + "Caption": { + "keo": { + "Spans": [ + { + "Text": "Enterprise-wide", + "Ws": "keo", + "Tags": [ + "b538e609-473d-4d09-9671-5d2e09bc8a30" + ] + }, + { + "Text": "Orchestrator", + "Ws": "keo", + "Tags": [ + "ede13a71-9711-4349-aa66-a7020ac3c031" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "keo", + "Tags": [ + "38d21012-801c-4c1a-975a-9c1cf91f050a" + ] + }, + { + "Text": "B2B", + "Ws": "kyj", + "Bold": "On", + "FontSize": -1858501651, + "ForeColor": "#0000FF", + "Tags": [ + "66a553e4-5194-e5b0-6c39-338c330124f5" + ] + } + ] + }, + "ff": { + "Spans": [ + { + "Text": "monitor", + "Ws": "mui", + "Bold": "Invert", + "FontSize": -606743290, + "ForeColor": "#A52A2A", + "Tags": [ + "305a02ea-e366-db54-9910-8d796ba274de" + ] + }, + { + "Text": "Sleek", + "Ws": "ff", + "Tags": [ + "5fb72bf8-9fe2-43f5-bd61-d34aa029a6a1" + ] + }, + { + "Text": "Cambridgeshire", + "Ws": "wgb", + "Bold": "Off", + "FontSize": 1848039410, + "ForeColor": "#ADFF2F", + "Tags": [ + "e342eaea-2df7-6a8d-3b48-f61b958eea60" + ] + } + ] + }, + "guk": { + "Spans": [ + { + "Text": "transmitter", + "Ws": "tsw", + "Bold": "Off", + "FontSize": 221661809, + "ForeColor": "#0000FF", + "Tags": [ + "4c5f3218-b554-93eb-2cca-d48b98cab6e8" + ] + }, + { + "Text": "Division", + "Ws": "guk", + "Tags": [ + "86f7802f-dba5-43f6-9811-1255edd2e315" + ] + }, + { + "Text": "National", + "Ws": "rdb", + "Bold": "Off", + "FontSize": 1925781087, + "ForeColor": "#FF0000", + "Tags": [ + "579f6868-09fc-4b8a-0ae9-055a7687bce3" + ] + }, + { + "Text": "Organized", + "Ws": "guk", + "Tags": [ + "51587b9a-1751-414e-82c2-cdcaa713b663" + ] + } + ] + }, + "oku": { + "Spans": [ + { + "Text": "cultivate", + "Ws": "khf", + "Bold": "Invert", + "FontSize": 649438159, + "ForeColor": "#FF0000", + "Tags": [ + "a2d806af-6edc-9113-e764-967c34b9cb60" + ] + }, + { + "Text": "National", + "Ws": "oku", + "Tags": [ + "ab2319ae-3f72-4cdc-b18e-bdaa35ecabe6" + ] + }, + { + "Text": "Computers \u0026 Garden", + "Ws": "mps", + "Bold": "On", + "FontSize": -1143440197, + "ForeColor": "#ADFF2F", + "Tags": [ + "98ff380a-aac0-4b6c-d238-3a222013e4ab" + ] + }, + { + "Text": "Underpass", + "Ws": "oco", + "Bold": "On", + "FontSize": -1803562901, + "ForeColor": "#0000FF", + "Tags": [ + "1f710598-c3a4-f191-fecd-e3cd9296dfdf" + ] + } + ] + } + } + } + ] + }, + "Id": "3ad5077d-175e-bf42-60ec-df0e3cf1d2bb", "DeletedAt": null }, { diff --git a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt index 32c7ee7efe..a3fe21d28d 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt @@ -613,7 +613,8 @@ "PartOfSpeech": null, "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "468b3fd0-3d9e-4cae-9e4f-842dec5fa74d", "DeletedAt": null @@ -672,7 +673,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", "DeletedAt": null @@ -741,7 +743,8 @@ "PartOfSpeech": null, "PartOfSpeechId": null, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", "DeletedAt": null @@ -1848,34 +1851,2053 @@ "Input": { "$type": "MiniLcmCrdtAdapter", "Obj": { - "$type": "Publication", - "Id": "78f9bd83-8dcb-6972-7e0b-5863ef2ea0a8", + "$type": "Sense", + "Id": "a7d178a9-1815-9673-a50e-12f1e9f2e88c", + "Order": 0, "DeletedAt": null, - "Name": { - "zun": "Creative", - "km": "overriding", - "nzu": "client-server", - "pbz": "users" - } + "EntryId": "40441758-a443-78ad-5a91-ff960b9916d5", + "Definition": { + "bqu": { + "Spans": [ + { + "Text": "Generic", + "Ws": "bqu", + "Tags": [ + "48c3c7a1-ec4e-4525-ba86-12bccc426156" + ] + }, + { + "Text": "Ergonomic Wooden Pants", + "Ws": "mie", + "Bold": "Invert", + "FontSize": -1554990305, + "ForeColor": "#FF0000", + "Tags": [ + "63895a7f-9e74-d3f2-fa1d-4e9c6249a821" + ] + }, + { + "Text": "Missouri", + "Ws": "bqu", + "Tags": [ + "bfe28abd-921c-43ab-b12a-3983d72806ee" + ] + } + ] + }, + "aaq": { + "Spans": [ + { + "Text": "connect", + "Ws": "aaq", + "Tags": [ + "d1626cf1-836c-474c-9a60-0326b58c1133" + ] + } + ] + }, + "kbr": { + "Spans": [ + { + "Text": "Visionary", + "Ws": "olo", + "Bold": "Off", + "FontSize": -806356479, + "ForeColor": "#ADFF2F", + "Tags": [ + "2b69d915-a453-0323-2e8b-f9779ff69c71" + ] + }, + { + "Text": "Wooden", + "Ws": "mgv", + "Bold": "On", + "FontSize": -42268580, + "ForeColor": "#FF0000", + "Tags": [ + "21259b45-178e-13b0-f6b5-07cb32e8e086" + ] + }, + { + "Text": "Incredible Plastic Cheese", + "Ws": "mtg", + "Bold": "Invert", + "FontSize": -741761540, + "ForeColor": "#00000000", + "Tags": [ + "cefbf8c2-8cc0-394a-b794-e9a238955186" + ] + } + ] + }, + "aac": { + "Spans": [ + { + "Text": "Automotive", + "Ws": "aac", + "Tags": [ + "59554364-b6c8-478f-ab66-797c70131883" + ] + } + ] + } + }, + "Gloss": { + "wmm": "clear-thinking", + "mrr": "purple", + "nbv": "ADP", + "asv": "Keys" + }, + "PartOfSpeech": { + "Id": "4f11dbe5-38f3-5d99-f97e-66dde448383c", + "Name": { + "suo": "payment", + "czk": "Robust", + "msn": "SQL" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "becc1fbd-40c9-74aa-d900-3a686e83905a", + "SemanticDomains": [ + { + "Id": "d4fdc835-1442-31e9-6434-14c603b0cfc6", + "Name": { + "tay": "Borders", + "hle": "1080p" + }, + "Code": "Gorgeous", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "7f3dac33-9bec-e820-a020-5b263fb3ddbb", + "Order": 0, + "MediaUri": "sil-media://lexbox/9e223822-02f7-4964-ac7d-cb513c99a2e7", + "Caption": { + "xsd": { + "Spans": [ + { + "Text": "Coordinator", + "Ws": "csg", + "Bold": "Invert", + "FontSize": -327243448, + "ForeColor": "#00000000", + "Tags": [ + "818b5074-cd33-9963-c796-b5d6dfc342a6" + ] + }, + { + "Text": "product", + "Ws": "xsd", + "Tags": [ + "79528c49-d5db-452b-97e2-169d8d410bcc" + ] + }, + { + "Text": "Plastic", + "Ws": "hts", + "Bold": "On", + "FontSize": -1770557873, + "ForeColor": "#ADFF2F", + "Tags": [ + "579e4099-8da7-2229-2e02-26ba5887ea95" + ] + }, + { + "Text": "purple", + "Ws": "xsd", + "Tags": [ + "8e4d4fab-e322-4620-a75c-ab065950d3ea" + ] + } + ] + }, + "umg": { + "Spans": [ + { + "Text": "Inlet", + "Ws": "wdy", + "Bold": "On", + "FontSize": -1879231265, + "ForeColor": "#00FFFF", + "Tags": [ + "4a560dbe-c97c-6e88-9a70-5ac3d7d8bab3" + ] + }, + { + "Text": "systemic", + "Ws": "uzs", + "Bold": "Invert", + "FontSize": -360633128, + "ForeColor": "#0000FF", + "Tags": [ + "10ecf908-a4e7-a5d2-e49f-36b1c80ee4dc" + ] + } + ] + }, + "qvl": { + "Spans": [ + { + "Text": "Health, Health \u0026 Movies", + "Ws": "bfo", + "Bold": "Off", + "FontSize": -2011149657, + "ForeColor": "#00FFFF", + "Tags": [ + "24f961eb-bb2e-e9c7-7b54-d0f4869a1f62" + ] + } + ] + } + }, + "DeletedAt": null + } + ] }, - "Id": "78f9bd83-8dcb-6972-7e0b-5863ef2ea0a8", + "Id": "a7d178a9-1815-9673-a50e-12f1e9f2e88c", "DeletedAt": null }, "Output": { "$type": "MiniLcmCrdtAdapter", "Obj": { - "$type": "Publication", - "Id": "78f9bd83-8dcb-6972-7e0b-5863ef2ea0a8", + "$type": "Sense", + "Id": "a7d178a9-1815-9673-a50e-12f1e9f2e88c", + "Order": 0, "DeletedAt": null, - "IsMain": false, - "Name": { - "zun": "Creative", - "km": "overriding", - "nzu": "client-server", - "pbz": "users" - } + "EntryId": "40441758-a443-78ad-5a91-ff960b9916d5", + "Definition": { + "bqu": { + "Spans": [ + { + "Text": "Generic", + "Ws": "bqu", + "Tags": [ + "48c3c7a1-ec4e-4525-ba86-12bccc426156" + ] + }, + { + "Text": "Ergonomic Wooden Pants", + "Ws": "mie", + "Bold": "Invert", + "FontSize": -1554990305, + "ForeColor": "#FF0000", + "Tags": [ + "63895a7f-9e74-d3f2-fa1d-4e9c6249a821" + ] + }, + { + "Text": "Missouri", + "Ws": "bqu", + "Tags": [ + "bfe28abd-921c-43ab-b12a-3983d72806ee" + ] + } + ] + }, + "aaq": { + "Spans": [ + { + "Text": "connect", + "Ws": "aaq", + "Tags": [ + "d1626cf1-836c-474c-9a60-0326b58c1133" + ] + } + ] + }, + "kbr": { + "Spans": [ + { + "Text": "Visionary", + "Ws": "olo", + "Bold": "Off", + "FontSize": -806356479, + "ForeColor": "#ADFF2F", + "Tags": [ + "2b69d915-a453-0323-2e8b-f9779ff69c71" + ] + }, + { + "Text": "Wooden", + "Ws": "mgv", + "Bold": "On", + "FontSize": -42268580, + "ForeColor": "#FF0000", + "Tags": [ + "21259b45-178e-13b0-f6b5-07cb32e8e086" + ] + }, + { + "Text": "Incredible Plastic Cheese", + "Ws": "mtg", + "Bold": "Invert", + "FontSize": -741761540, + "ForeColor": "#00000000", + "Tags": [ + "cefbf8c2-8cc0-394a-b794-e9a238955186" + ] + } + ] + }, + "aac": { + "Spans": [ + { + "Text": "Automotive", + "Ws": "aac", + "Tags": [ + "59554364-b6c8-478f-ab66-797c70131883" + ] + } + ] + } + }, + "Gloss": { + "wmm": "clear-thinking", + "mrr": "purple", + "nbv": "ADP", + "asv": "Keys" + }, + "PartOfSpeech": { + "Id": "4f11dbe5-38f3-5d99-f97e-66dde448383c", + "Name": { + "suo": "payment", + "czk": "Robust", + "msn": "SQL" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "becc1fbd-40c9-74aa-d900-3a686e83905a", + "SemanticDomains": [ + { + "Id": "d4fdc835-1442-31e9-6434-14c603b0cfc6", + "Name": { + "tay": "Borders", + "hle": "1080p" + }, + "Code": "Gorgeous", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "7f3dac33-9bec-e820-a020-5b263fb3ddbb", + "Order": 0, + "MediaUri": "sil-media://lexbox/9e223822-02f7-4964-ac7d-cb513c99a2e7", + "Caption": { + "xsd": { + "Spans": [ + { + "Text": "Coordinator", + "Ws": "csg", + "Bold": "Invert", + "FontSize": -327243448, + "ForeColor": "#00000000", + "Tags": [ + "818b5074-cd33-9963-c796-b5d6dfc342a6" + ] + }, + { + "Text": "product", + "Ws": "xsd", + "Tags": [ + "79528c49-d5db-452b-97e2-169d8d410bcc" + ] + }, + { + "Text": "Plastic", + "Ws": "hts", + "Bold": "On", + "FontSize": -1770557873, + "ForeColor": "#ADFF2F", + "Tags": [ + "579e4099-8da7-2229-2e02-26ba5887ea95" + ] + }, + { + "Text": "purple", + "Ws": "xsd", + "Tags": [ + "8e4d4fab-e322-4620-a75c-ab065950d3ea" + ] + } + ] + }, + "umg": { + "Spans": [ + { + "Text": "Inlet", + "Ws": "wdy", + "Bold": "On", + "FontSize": -1879231265, + "ForeColor": "#00FFFF", + "Tags": [ + "4a560dbe-c97c-6e88-9a70-5ac3d7d8bab3" + ] + }, + { + "Text": "systemic", + "Ws": "uzs", + "Bold": "Invert", + "FontSize": -360633128, + "ForeColor": "#0000FF", + "Tags": [ + "10ecf908-a4e7-a5d2-e49f-36b1c80ee4dc" + ] + } + ] + }, + "qvl": { + "Spans": [ + { + "Text": "Health, Health \u0026 Movies", + "Ws": "bfo", + "Bold": "Off", + "FontSize": -2011149657, + "ForeColor": "#00FFFF", + "Tags": [ + "24f961eb-bb2e-e9c7-7b54-d0f4869a1f62" + ] + } + ] + } + } + } + ] + }, + "Id": "a7d178a9-1815-9673-a50e-12f1e9f2e88c", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "Order": 0, + "DeletedAt": null, + "EntryId": "1451ad8e-6f5a-8923-a691-6e3ed0ba10ac", + "Definition": { + "djo": { + "Spans": [ + { + "Text": "bi-directional", + "Ws": "dbr", + "Bold": "Invert", + "FontSize": -1747614445, + "ForeColor": "#00FFFF", + "Tags": [ + "cdbfc681-b4cb-fc53-0049-2f7a15f2cf9c" + ] + }, + { + "Text": "Village", + "Ws": "djo", + "Tags": [ + "06b2b112-2eaf-498c-a2b6-3691a0a2d5f2" + ] + }, + { + "Text": "Music, Clothing \u0026 Shoes", + "Ws": "djo", + "Tags": [ + "a7e91784-b210-401a-b134-8a7196d75290" + ] + } + ] + }, + "qyp": { + "Spans": [ + { + "Text": "flexibility", + "Ws": "qyp", + "Tags": [ + "a7ec7011-d986-4fcb-8c65-ed250fa27837" + ] + }, + { + "Text": "users", + "Ws": "qyp", + "Tags": [ + "89317672-83e3-4ec0-b15a-130c709c296a" + ] + }, + { + "Text": "Analyst", + "Ws": "dep", + "Bold": "Off", + "FontSize": -938960202, + "ForeColor": "#00FFFF", + "Tags": [ + "34eed6fc-feb1-cb7e-5fba-2cc249b35f9d" + ] + } + ] + } + }, + "Gloss": { + "ciy": "Curve" + }, + "PartOfSpeech": { + "Id": "a6b04de2-ca75-b141-abe1-f4494a514535", + "Name": { + "mxt": "TCP" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "fac379c1-43a4-5710-83c8-5b9f55c90108", + "SemanticDomains": [ + { + "Id": "3ad12c58-f9a5-9ccd-04ff-8b979eac461b", + "Name": { + "ulk": "white" + }, + "Code": "SSL", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "ddc6af94-5a95-c404-2cb8-ae1e61968538", + "Order": 0, + "MediaUri": "sil-media://lexbox/24556101-1dbc-4d4a-bf5a-8f9cf05fe8ea", + "Caption": { + "pea": { + "Spans": [ + { + "Text": "alarm", + "Ws": "pea", + "Tags": [ + "c97d629f-da4a-4e7f-9ea2-fedb628649e0" + ] + }, + { + "Text": "relationships", + "Ws": "byi", + "Bold": "Invert", + "FontSize": -1098187694, + "ForeColor": "#ADFF2F", + "Tags": [ + "d9693d70-5ee4-4a63-7abc-f42c99fca4f2" + ] + }, + { + "Text": "Kentucky", + "Ws": "pea", + "Tags": [ + "2d593536-8d6e-4766-ae62-c141ee7cb206" + ] + } + ] + } + }, + "DeletedAt": null + } + ] + }, + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "Order": 0, + "DeletedAt": null, + "EntryId": "1451ad8e-6f5a-8923-a691-6e3ed0ba10ac", + "Definition": { + "djo": { + "Spans": [ + { + "Text": "bi-directional", + "Ws": "dbr", + "Bold": "Invert", + "FontSize": -1747614445, + "ForeColor": "#00FFFF", + "Tags": [ + "cdbfc681-b4cb-fc53-0049-2f7a15f2cf9c" + ] + }, + { + "Text": "Village", + "Ws": "djo", + "Tags": [ + "06b2b112-2eaf-498c-a2b6-3691a0a2d5f2" + ] + }, + { + "Text": "Music, Clothing \u0026 Shoes", + "Ws": "djo", + "Tags": [ + "a7e91784-b210-401a-b134-8a7196d75290" + ] + } + ] + }, + "qyp": { + "Spans": [ + { + "Text": "flexibility", + "Ws": "qyp", + "Tags": [ + "a7ec7011-d986-4fcb-8c65-ed250fa27837" + ] + }, + { + "Text": "users", + "Ws": "qyp", + "Tags": [ + "89317672-83e3-4ec0-b15a-130c709c296a" + ] + }, + { + "Text": "Analyst", + "Ws": "dep", + "Bold": "Off", + "FontSize": -938960202, + "ForeColor": "#00FFFF", + "Tags": [ + "34eed6fc-feb1-cb7e-5fba-2cc249b35f9d" + ] + } + ] + } + }, + "Gloss": { + "ciy": "Curve" + }, + "PartOfSpeech": { + "Id": "a6b04de2-ca75-b141-abe1-f4494a514535", + "Name": { + "mxt": "TCP" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "fac379c1-43a4-5710-83c8-5b9f55c90108", + "SemanticDomains": [ + { + "Id": "3ad12c58-f9a5-9ccd-04ff-8b979eac461b", + "Name": { + "ulk": "white" + }, + "Code": "SSL", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "ddc6af94-5a95-c404-2cb8-ae1e61968538", + "Order": 0, + "MediaUri": "sil-media://lexbox/24556101-1dbc-4d4a-bf5a-8f9cf05fe8ea", + "Caption": { + "pea": { + "Spans": [ + { + "Text": "alarm", + "Ws": "pea", + "Tags": [ + "c97d629f-da4a-4e7f-9ea2-fedb628649e0" + ] + }, + { + "Text": "relationships", + "Ws": "byi", + "Bold": "Invert", + "FontSize": -1098187694, + "ForeColor": "#ADFF2F", + "Tags": [ + "d9693d70-5ee4-4a63-7abc-f42c99fca4f2" + ] + }, + { + "Text": "Kentucky", + "Ws": "pea", + "Tags": [ + "2d593536-8d6e-4766-ae62-c141ee7cb206" + ] + } + ] + } + } + } + ] + }, + "Id": "4f3be7d1-5e3d-ae3d-e207-c429480617d6", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "Order": 0, + "DeletedAt": null, + "EntryId": "d6347312-90fd-7a9b-611c-10e2be8f1e83", + "Definition": { + "zu": { + "Spans": [ + { + "Text": "optical", + "Ws": "zu", + "Tags": [ + "2f40db72-6dcd-4605-94f4-bb2f8e6f2c24" + ] + }, + { + "Text": "eco-centric", + "Ws": "ses", + "Bold": "On", + "FontSize": 150168967, + "ForeColor": "#ADFF2F", + "Tags": [ + "4d35b5c1-d8c0-2ee3-e261-985e474e2c62" + ] + }, + { + "Text": "Internal", + "Ws": "zu", + "Tags": [ + "ef294368-381e-4228-9feb-6fc5a21cb6f1" + ] + } + ] + } + }, + "Gloss": { + "nhz": "Personal Loan Account", + "vec": "Summit" + }, + "PartOfSpeech": { + "Id": "fe457b90-ba20-b702-a156-13149c126cc6", + "Name": { + "zkh": "Parks" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "aa3e7491-0e0d-b22f-cbf1-63e76cd83314", + "SemanticDomains": [ + { + "Id": "ecf6b571-e360-f100-7cf7-ec214489914a", + "Name": { + "bjy": "Montana", + "ga": "neural-net" + }, + "Code": "Rand", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "c70c8e39-9fea-f0ca-96ea-c54682b26ff2", + "Order": 0, + "MediaUri": "sil-media://lexbox/cc67fbb0-7072-4a0c-aa87-1c11dbd5c160", + "Caption": { + "spl": { + "Spans": [ + { + "Text": "Road", + "Ws": "plj", + "Bold": "On", + "FontSize": 206809027, + "ForeColor": "#ADFF2F", + "Tags": [ + "5ba3fafc-2a16-8ee1-4764-223a2ece4032" + ] + }, + { + "Text": "explicit", + "Ws": "ybb", + "Bold": "On", + "FontSize": -1840259444, + "ForeColor": "#ADFF2F", + "Tags": [ + "6fddd2cc-5dbd-6d0d-4bed-39e98d79771a" + ] + }, + { + "Text": "TCP", + "Ws": "mqb", + "Bold": "Invert", + "FontSize": 890686392, + "ForeColor": "#0000FF", + "Tags": [ + "2ff98fc6-d387-23aa-581a-9199a4971005" + ] + } + ] + } + }, + "DeletedAt": null + } + ] + }, + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "Order": 0, + "DeletedAt": null, + "EntryId": "d6347312-90fd-7a9b-611c-10e2be8f1e83", + "Definition": { + "zu": { + "Spans": [ + { + "Text": "optical", + "Ws": "zu", + "Tags": [ + "2f40db72-6dcd-4605-94f4-bb2f8e6f2c24" + ] + }, + { + "Text": "eco-centric", + "Ws": "ses", + "Bold": "On", + "FontSize": 150168967, + "ForeColor": "#ADFF2F", + "Tags": [ + "4d35b5c1-d8c0-2ee3-e261-985e474e2c62" + ] + }, + { + "Text": "Internal", + "Ws": "zu", + "Tags": [ + "ef294368-381e-4228-9feb-6fc5a21cb6f1" + ] + } + ] + } + }, + "Gloss": { + "nhz": "Personal Loan Account", + "vec": "Summit" + }, + "PartOfSpeech": { + "Id": "fe457b90-ba20-b702-a156-13149c126cc6", + "Name": { + "zkh": "Parks" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "aa3e7491-0e0d-b22f-cbf1-63e76cd83314", + "SemanticDomains": [ + { + "Id": "ecf6b571-e360-f100-7cf7-ec214489914a", + "Name": { + "bjy": "Montana", + "ga": "neural-net" + }, + "Code": "Rand", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "c70c8e39-9fea-f0ca-96ea-c54682b26ff2", + "Order": 0, + "MediaUri": "sil-media://lexbox/cc67fbb0-7072-4a0c-aa87-1c11dbd5c160", + "Caption": { + "spl": { + "Spans": [ + { + "Text": "Road", + "Ws": "plj", + "Bold": "On", + "FontSize": 206809027, + "ForeColor": "#ADFF2F", + "Tags": [ + "5ba3fafc-2a16-8ee1-4764-223a2ece4032" + ] + }, + { + "Text": "explicit", + "Ws": "ybb", + "Bold": "On", + "FontSize": -1840259444, + "ForeColor": "#ADFF2F", + "Tags": [ + "6fddd2cc-5dbd-6d0d-4bed-39e98d79771a" + ] + }, + { + "Text": "TCP", + "Ws": "mqb", + "Bold": "Invert", + "FontSize": 890686392, + "ForeColor": "#0000FF", + "Tags": [ + "2ff98fc6-d387-23aa-581a-9199a4971005" + ] + } + ] + } + } + } + ] + }, + "Id": "adc64923-5080-2e74-cc41-4ce82badf96b", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "Order": 0, + "DeletedAt": null, + "EntryId": "b298a98d-22a6-40d4-f897-fb7e5ef12432", + "Definition": { + "lof": { + "Spans": [ + { + "Text": "function", + "Ws": "lof", + "Tags": [ + "bc1cb5a3-0c11-47f3-aef1-f8ecb5e1a8d9" + ] + } + ] + } + }, + "Gloss": { + "svm": "Incredible Soft Bike", + "boh": "Key", + "nfd": "analyzing", + "byo": "Argentine Peso" + }, + "PartOfSpeech": { + "Id": "d257270c-51c4-6979-84cf-b9ccff8d60dc", + "Name": { + "bsp": "application" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "a353cc36-57b4-8ed4-0fd4-d616fced9108", + "SemanticDomains": [ + { + "Id": "c43c9761-815e-0b1e-b90c-dfdf799b16d9", + "Name": { + "kxv": "Tenge", + "dih": "holistic", + "aif": "Bypass", + "hms": "Future" + }, + "Code": "orange", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "f3fb453a-99d8-0b46-b190-409064885cbd", + "Order": 0, + "MediaUri": "sil-media://lexbox/7d361699-1e9d-4d5e-89b3-eb66898523f7", + "Caption": { + "pdi": { + "Spans": [ + { + "Text": "National", + "Ws": "pdi", + "Tags": [ + "47346349-78e0-470f-aaf9-3980c401e041" + ] + }, + { + "Text": "Intelligent Wooden Computer", + "Ws": "pdi", + "Tags": [ + "a464551e-c62b-439a-90ff-a69add9b1241" + ] + }, + { + "Text": "lime", + "Ws": "shz", + "Bold": "Invert", + "FontSize": -455513223, + "ForeColor": "#00000000", + "Tags": [ + "6c1d33ac-f149-8bd9-a358-6e589cb34bc6" + ] + } + ] + }, + "fip": { + "Spans": [ + { + "Text": "indexing", + "Ws": "fip", + "Tags": [ + "eb32049a-a31e-4f10-aa04-8b3ac193abda" + ] + }, + { + "Text": "integrate", + "Ws": "fip", + "Tags": [ + "5e96dfb4-a4ab-48b7-9139-0ddd54e5c2fc" + ] + }, + { + "Text": "Grocery", + "Ws": "nhu", + "Bold": "Off", + "FontSize": 781582330, + "ForeColor": "#00000000", + "Tags": [ + "aa20518f-f7e6-4157-b9e6-a0377a26c6c8" + ] + } + ] + }, + "tdk": { + "Spans": [ + { + "Text": "Kids \u0026 Home", + "Ws": "tdk", + "Tags": [ + "0fdbc8ee-310d-4954-bfd9-7db50ae03b2c" + ] + }, + { + "Text": "District", + "Ws": "dap", + "Bold": "Invert", + "FontSize": 1319768493, + "ForeColor": "#A52A2A", + "Tags": [ + "38206d1c-bcd0-8df6-4b10-234afe42152f" + ] + } + ] + }, + "jos": { + "Spans": [ + { + "Text": "Director", + "Ws": "jos", + "Tags": [ + "d7d60d66-c9ce-45aa-9004-e0268b91d2d5" + ] + }, + { + "Text": "back-end", + "Ws": "ham", + "Bold": "Off", + "FontSize": 613268958, + "ForeColor": "#00000000", + "Tags": [ + "1ef432cc-f167-0755-ec93-06d5f330878b" + ] + }, + { + "Text": "Djibouti", + "Ws": "hmv", + "Bold": "Off", + "FontSize": -1306242714, + "ForeColor": "#0000FF", + "Tags": [ + "0f4fc950-4619-ed72-314f-2239b9b1aab7" + ] + } + ] + } + }, + "DeletedAt": null + } + ] + }, + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "Order": 0, + "DeletedAt": null, + "EntryId": "b298a98d-22a6-40d4-f897-fb7e5ef12432", + "Definition": { + "lof": { + "Spans": [ + { + "Text": "function", + "Ws": "lof", + "Tags": [ + "bc1cb5a3-0c11-47f3-aef1-f8ecb5e1a8d9" + ] + } + ] + } + }, + "Gloss": { + "svm": "Incredible Soft Bike", + "boh": "Key", + "nfd": "analyzing", + "byo": "Argentine Peso" + }, + "PartOfSpeech": { + "Id": "d257270c-51c4-6979-84cf-b9ccff8d60dc", + "Name": { + "bsp": "application" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "a353cc36-57b4-8ed4-0fd4-d616fced9108", + "SemanticDomains": [ + { + "Id": "c43c9761-815e-0b1e-b90c-dfdf799b16d9", + "Name": { + "kxv": "Tenge", + "dih": "holistic", + "aif": "Bypass", + "hms": "Future" + }, + "Code": "orange", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "f3fb453a-99d8-0b46-b190-409064885cbd", + "Order": 0, + "MediaUri": "sil-media://lexbox/7d361699-1e9d-4d5e-89b3-eb66898523f7", + "Caption": { + "pdi": { + "Spans": [ + { + "Text": "National", + "Ws": "pdi", + "Tags": [ + "47346349-78e0-470f-aaf9-3980c401e041" + ] + }, + { + "Text": "Intelligent Wooden Computer", + "Ws": "pdi", + "Tags": [ + "a464551e-c62b-439a-90ff-a69add9b1241" + ] + }, + { + "Text": "lime", + "Ws": "shz", + "Bold": "Invert", + "FontSize": -455513223, + "ForeColor": "#00000000", + "Tags": [ + "6c1d33ac-f149-8bd9-a358-6e589cb34bc6" + ] + } + ] + }, + "fip": { + "Spans": [ + { + "Text": "indexing", + "Ws": "fip", + "Tags": [ + "eb32049a-a31e-4f10-aa04-8b3ac193abda" + ] + }, + { + "Text": "integrate", + "Ws": "fip", + "Tags": [ + "5e96dfb4-a4ab-48b7-9139-0ddd54e5c2fc" + ] + }, + { + "Text": "Grocery", + "Ws": "nhu", + "Bold": "Off", + "FontSize": 781582330, + "ForeColor": "#00000000", + "Tags": [ + "aa20518f-f7e6-4157-b9e6-a0377a26c6c8" + ] + } + ] + }, + "tdk": { + "Spans": [ + { + "Text": "Kids \u0026 Home", + "Ws": "tdk", + "Tags": [ + "0fdbc8ee-310d-4954-bfd9-7db50ae03b2c" + ] + }, + { + "Text": "District", + "Ws": "dap", + "Bold": "Invert", + "FontSize": 1319768493, + "ForeColor": "#A52A2A", + "Tags": [ + "38206d1c-bcd0-8df6-4b10-234afe42152f" + ] + } + ] + }, + "jos": { + "Spans": [ + { + "Text": "Director", + "Ws": "jos", + "Tags": [ + "d7d60d66-c9ce-45aa-9004-e0268b91d2d5" + ] + }, + { + "Text": "back-end", + "Ws": "ham", + "Bold": "Off", + "FontSize": 613268958, + "ForeColor": "#00000000", + "Tags": [ + "1ef432cc-f167-0755-ec93-06d5f330878b" + ] + }, + { + "Text": "Djibouti", + "Ws": "hmv", + "Bold": "Off", + "FontSize": -1306242714, + "ForeColor": "#0000FF", + "Tags": [ + "0f4fc950-4619-ed72-314f-2239b9b1aab7" + ] + } + ] + } + } + } + ] + }, + "Id": "c866a27e-79d8-6ac8-1947-ec0e8c980ea9", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "Order": 0, + "DeletedAt": null, + "EntryId": "018eaf35-2a0a-6098-13b3-260ea4017d27", + "Definition": { + "dac": { + "Spans": [ + { + "Text": "Accountability", + "Ws": "dac", + "Tags": [ + "755f2352-8b57-41a1-bb72-cdb00c70a723" + ] + }, + { + "Text": "Berkshire", + "Ws": "osi", + "Bold": "Off", + "FontSize": 202893717, + "ForeColor": "#0000FF", + "Tags": [ + "60af4336-04cc-2d89-f7d1-093374e118b8" + ] + } + ] + }, + "ptt": { + "Spans": [ + { + "Text": "Checking Account", + "Ws": "ptt", + "Tags": [ + "fb86b786-0054-48ba-8f7d-9cee06055c4d" + ] + }, + { + "Text": "content", + "Ws": "fsl", + "Bold": "Invert", + "FontSize": -712294872, + "ForeColor": "#00000000", + "Tags": [ + "97add724-5b06-4d9d-54f5-ef39c28c08bb" + ] + }, + { + "Text": "SQL", + "Ws": "ptt", + "Tags": [ + "49987f83-0e34-4f77-9b8b-d61c3a8e603d" + ] + } + ] + }, + "kzh": { + "Spans": [ + { + "Text": "Uzbekistan", + "Ws": "kzh", + "Tags": [ + "4aad02ff-438f-4f6f-89d9-6ec8340b6763" + ] + } + ] + }, + "ulf": { + "Spans": [ + { + "Text": "Intelligent Frozen Sausages", + "Ws": "ulf", + "Tags": [ + "e09b6dde-62e8-423a-af41-9ce466144488" + ] + }, + { + "Text": "District", + "Ws": "twp", + "Bold": "Invert", + "FontSize": -1102337901, + "ForeColor": "#A52A2A", + "Tags": [ + "07334f1a-5d23-f06b-390c-f4e04cd6aaaa" + ] + }, + { + "Text": "next-generation", + "Ws": "ulf", + "Tags": [ + "12169ebc-09bc-4536-94ee-764bd5495ede" + ] + }, + { + "Text": "Direct", + "Ws": "loo", + "Bold": "Invert", + "FontSize": 1945097886, + "ForeColor": "#FF0000", + "Tags": [ + "9ae6b7b0-9c92-0333-eac6-84a7fb521cb0" + ] + } + ] + } + }, + "Gloss": { + "qud": "Square" + }, + "PartOfSpeech": { + "Id": "ab15d93b-1c45-e79b-f1b2-5d8f71e45335", + "Name": { + "pmz": "infomediaries", + "tmj": "Health \u0026 Books", + "buu": "Corporate", + "hix": "International" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "326aff5e-43f0-7705-7672-a2aa8ba2023c", + "SemanticDomains": [ + { + "Id": "702e9bc7-e774-0d90-8f88-dff28920154b", + "Name": { + "ktg": "card", + "zaf": "Tasty" + }, + "Code": "North Korean Won", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "0e6a2808-96be-86d5-6092-04f762f26202", + "Order": 0, + "MediaUri": "sil-media://lexbox/7b06b27e-80e9-420d-bc93-c2c29720ef78", + "Caption": { + "emq": { + "Spans": [ + { + "Text": "strategize", + "Ws": "emq", + "Tags": [ + "c5fccb12-219e-46f0-93ff-2234546ef6b7" + ] + } + ] + } + }, + "DeletedAt": null + } + ] + }, + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "Order": 0, + "DeletedAt": null, + "EntryId": "018eaf35-2a0a-6098-13b3-260ea4017d27", + "Definition": { + "dac": { + "Spans": [ + { + "Text": "Accountability", + "Ws": "dac", + "Tags": [ + "755f2352-8b57-41a1-bb72-cdb00c70a723" + ] + }, + { + "Text": "Berkshire", + "Ws": "osi", + "Bold": "Off", + "FontSize": 202893717, + "ForeColor": "#0000FF", + "Tags": [ + "60af4336-04cc-2d89-f7d1-093374e118b8" + ] + } + ] + }, + "ptt": { + "Spans": [ + { + "Text": "Checking Account", + "Ws": "ptt", + "Tags": [ + "fb86b786-0054-48ba-8f7d-9cee06055c4d" + ] + }, + { + "Text": "content", + "Ws": "fsl", + "Bold": "Invert", + "FontSize": -712294872, + "ForeColor": "#00000000", + "Tags": [ + "97add724-5b06-4d9d-54f5-ef39c28c08bb" + ] + }, + { + "Text": "SQL", + "Ws": "ptt", + "Tags": [ + "49987f83-0e34-4f77-9b8b-d61c3a8e603d" + ] + } + ] + }, + "kzh": { + "Spans": [ + { + "Text": "Uzbekistan", + "Ws": "kzh", + "Tags": [ + "4aad02ff-438f-4f6f-89d9-6ec8340b6763" + ] + } + ] + }, + "ulf": { + "Spans": [ + { + "Text": "Intelligent Frozen Sausages", + "Ws": "ulf", + "Tags": [ + "e09b6dde-62e8-423a-af41-9ce466144488" + ] + }, + { + "Text": "District", + "Ws": "twp", + "Bold": "Invert", + "FontSize": -1102337901, + "ForeColor": "#A52A2A", + "Tags": [ + "07334f1a-5d23-f06b-390c-f4e04cd6aaaa" + ] + }, + { + "Text": "next-generation", + "Ws": "ulf", + "Tags": [ + "12169ebc-09bc-4536-94ee-764bd5495ede" + ] + }, + { + "Text": "Direct", + "Ws": "loo", + "Bold": "Invert", + "FontSize": 1945097886, + "ForeColor": "#FF0000", + "Tags": [ + "9ae6b7b0-9c92-0333-eac6-84a7fb521cb0" + ] + } + ] + } + }, + "Gloss": { + "qud": "Square" + }, + "PartOfSpeech": { + "Id": "ab15d93b-1c45-e79b-f1b2-5d8f71e45335", + "Name": { + "pmz": "infomediaries", + "tmj": "Health \u0026 Books", + "buu": "Corporate", + "hix": "International" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "326aff5e-43f0-7705-7672-a2aa8ba2023c", + "SemanticDomains": [ + { + "Id": "702e9bc7-e774-0d90-8f88-dff28920154b", + "Name": { + "ktg": "card", + "zaf": "Tasty" + }, + "Code": "North Korean Won", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "0e6a2808-96be-86d5-6092-04f762f26202", + "Order": 0, + "MediaUri": "sil-media://lexbox/7b06b27e-80e9-420d-bc93-c2c29720ef78", + "Caption": { + "emq": { + "Spans": [ + { + "Text": "strategize", + "Ws": "emq", + "Tags": [ + "c5fccb12-219e-46f0-93ff-2234546ef6b7" + ] + } + ] + } + } + } + ] + }, + "Id": "f359f97f-4c1e-48f7-9d28-5c137d46fb28", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", + "Order": 0, + "DeletedAt": null, + "EntryId": "45402c66-1666-a6ae-be14-52268308a80d", + "Definition": { + "wrr": { + "Spans": [ + { + "Text": "radical", + "Ws": "wrr", + "Tags": [ + "ca09e09e-93d9-465b-a90c-150f9fe1c37d" + ] + }, + { + "Text": "Denmark", + "Ws": "wrr", + "Tags": [ + "c98ffdcf-b21d-4f26-aa98-96766f1de795" + ] + }, + { + "Text": "Strategist", + "Ws": "pag", + "Bold": "Invert", + "FontSize": 1802509412, + "ForeColor": "#FF0000", + "Tags": [ + "83cedf51-7bb2-2a83-6ac1-3dfd1da56010" + ] + } + ] + }, + "yaj": { + "Spans": [ + { + "Text": "Shore", + "Ws": "yaj", + "Tags": [ + "c2cb390c-d89f-4d44-b15e-8c66084f976f" + ] + }, + { + "Text": "Course", + "Ws": "tku", + "Bold": "On", + "FontSize": -887647908, + "ForeColor": "#ADFF2F", + "Tags": [ + "788a2a1f-d8b2-db8e-157a-f675ac13fc1a" + ] + } + ] + }, + "ptq": { + "Spans": [ + { + "Text": "copying", + "Ws": "ptq", + "Tags": [ + "30ada735-7e8e-4399-80cf-e0c87ecd94ae" + ] + }, + { + "Text": "upward-trending", + "Ws": "kl", + "Bold": "On", + "FontSize": 2020980805, + "ForeColor": "#A52A2A", + "Tags": [ + "54fd1200-a70f-1498-b1d1-cb77180f34b0" + ] + }, + { + "Text": "Kansas", + "Ws": "rcf", + "Bold": "Invert", + "FontSize": -1745182649, + "ForeColor": "#00FFFF", + "Tags": [ + "5d91118e-46d7-97d5-9b4d-e8efbc08330e" + ] + } + ] + } + }, + "Gloss": { + "sda": "migration", + "url": "sexy" + }, + "PartOfSpeech": { + "Id": "2aea7efe-0c41-a465-06d7-dc7d1dd44b9b", + "Name": { + "pab": "convergence", + "kgl": "North Dakota", + "ppu": "Iowa" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "f25a3e84-2992-a4c1-a86c-3f5d0a221a7c", + "SemanticDomains": [ + { + "Id": "0404de20-eee7-0b57-0d07-9d00e64c3588", + "Name": { + "idt": "Persevering" + }, + "Code": "auxiliary", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "de247b82-e534-9742-c69a-20a76209b78c", + "Order": 0, + "MediaUri": "sil-media://lexbox/396c23b3-1736-4d1e-bc7d-15baf5e5aefb", + "Caption": { + "bab": { + "Spans": [ + { + "Text": "convergence", + "Ws": "bab", + "Tags": [ + "7b5f64a7-3b9a-4cab-b513-80c8804a5175" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "bab", + "Tags": [ + "b2da0f22-28e8-4b7e-9cc0-f7491b3ee991" + ] + }, + { + "Text": "integrated", + "Ws": "ibm", + "Bold": "Off", + "FontSize": -1988753505, + "ForeColor": "#A52A2A", + "Tags": [ + "8e0b442f-cccf-7a3d-d17a-2d8e56d3c038" + ] + }, + { + "Text": "approach", + "Ws": "rmx", + "Bold": "Invert", + "FontSize": 1336983740, + "ForeColor": "#A52A2A", + "Tags": [ + "b443ce55-c277-33c3-9d59-f863851a32c0" + ] + } + ] + }, + "anj": { + "Spans": [ + { + "Text": "Refined", + "Ws": "anj", + "Tags": [ + "70f80489-9e6a-4593-a7d4-b9a0651bdd32" + ] + }, + { + "Text": "connect", + "Ws": "won", + "Bold": "Off", + "FontSize": -1171626966, + "ForeColor": "#FF0000", + "Tags": [ + "2f7b1eca-ebad-a134-98bd-8453634579ab" + ] + } + ] + }, + "jer": { + "Spans": [ + { + "Text": "Mews", + "Ws": "mek", + "Bold": "On", + "FontSize": -49834405, + "ForeColor": "#ADFF2F", + "Tags": [ + "d160ce7d-6803-3adc-c88d-05cf3939ae45" + ] + }, + { + "Text": "productivity", + "Ws": "beo", + "Bold": "On", + "FontSize": 1358440076, + "ForeColor": "#0000FF", + "Tags": [ + "791f8e3b-d5d0-593e-8ca2-c57ebb123c9b" + ] + }, + { + "Text": "Internal", + "Ws": "jer", + "Tags": [ + "22593efb-681a-4e61-bdc4-96b4d54feee5" + ] + } + ] + }, + "orn": { + "Spans": [ + { + "Text": "Kiribati", + "Ws": "orn", + "Tags": [ + "43da294d-1349-48ab-a650-3fae8cd2cc0e" + ] + } + ] + } + }, + "DeletedAt": null + } + ] + }, + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", + "DeletedAt": null + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", + "Order": 0, + "DeletedAt": null, + "EntryId": "45402c66-1666-a6ae-be14-52268308a80d", + "Definition": { + "wrr": { + "Spans": [ + { + "Text": "radical", + "Ws": "wrr", + "Tags": [ + "ca09e09e-93d9-465b-a90c-150f9fe1c37d" + ] + }, + { + "Text": "Denmark", + "Ws": "wrr", + "Tags": [ + "c98ffdcf-b21d-4f26-aa98-96766f1de795" + ] + }, + { + "Text": "Strategist", + "Ws": "pag", + "Bold": "Invert", + "FontSize": 1802509412, + "ForeColor": "#FF0000", + "Tags": [ + "83cedf51-7bb2-2a83-6ac1-3dfd1da56010" + ] + } + ] + }, + "yaj": { + "Spans": [ + { + "Text": "Shore", + "Ws": "yaj", + "Tags": [ + "c2cb390c-d89f-4d44-b15e-8c66084f976f" + ] + }, + { + "Text": "Course", + "Ws": "tku", + "Bold": "On", + "FontSize": -887647908, + "ForeColor": "#ADFF2F", + "Tags": [ + "788a2a1f-d8b2-db8e-157a-f675ac13fc1a" + ] + } + ] + }, + "ptq": { + "Spans": [ + { + "Text": "copying", + "Ws": "ptq", + "Tags": [ + "30ada735-7e8e-4399-80cf-e0c87ecd94ae" + ] + }, + { + "Text": "upward-trending", + "Ws": "kl", + "Bold": "On", + "FontSize": 2020980805, + "ForeColor": "#A52A2A", + "Tags": [ + "54fd1200-a70f-1498-b1d1-cb77180f34b0" + ] + }, + { + "Text": "Kansas", + "Ws": "rcf", + "Bold": "Invert", + "FontSize": -1745182649, + "ForeColor": "#00FFFF", + "Tags": [ + "5d91118e-46d7-97d5-9b4d-e8efbc08330e" + ] + } + ] + } + }, + "Gloss": { + "sda": "migration", + "url": "sexy" + }, + "PartOfSpeech": { + "Id": "2aea7efe-0c41-a465-06d7-dc7d1dd44b9b", + "Name": { + "pab": "convergence", + "kgl": "North Dakota", + "ppu": "Iowa" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "f25a3e84-2992-a4c1-a86c-3f5d0a221a7c", + "SemanticDomains": [ + { + "Id": "0404de20-eee7-0b57-0d07-9d00e64c3588", + "Name": { + "idt": "Persevering" + }, + "Code": "auxiliary", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [], + "Pictures": [ + { + "Id": "de247b82-e534-9742-c69a-20a76209b78c", + "Order": 0, + "MediaUri": "sil-media://lexbox/396c23b3-1736-4d1e-bc7d-15baf5e5aefb", + "Caption": { + "bab": { + "Spans": [ + { + "Text": "convergence", + "Ws": "bab", + "Tags": [ + "7b5f64a7-3b9a-4cab-b513-80c8804a5175" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "bab", + "Tags": [ + "b2da0f22-28e8-4b7e-9cc0-f7491b3ee991" + ] + }, + { + "Text": "integrated", + "Ws": "ibm", + "Bold": "Off", + "FontSize": -1988753505, + "ForeColor": "#A52A2A", + "Tags": [ + "8e0b442f-cccf-7a3d-d17a-2d8e56d3c038" + ] + }, + { + "Text": "approach", + "Ws": "rmx", + "Bold": "Invert", + "FontSize": 1336983740, + "ForeColor": "#A52A2A", + "Tags": [ + "b443ce55-c277-33c3-9d59-f863851a32c0" + ] + } + ] + }, + "anj": { + "Spans": [ + { + "Text": "Refined", + "Ws": "anj", + "Tags": [ + "70f80489-9e6a-4593-a7d4-b9a0651bdd32" + ] + }, + { + "Text": "connect", + "Ws": "won", + "Bold": "Off", + "FontSize": -1171626966, + "ForeColor": "#FF0000", + "Tags": [ + "2f7b1eca-ebad-a134-98bd-8453634579ab" + ] + } + ] + }, + "jer": { + "Spans": [ + { + "Text": "Mews", + "Ws": "mek", + "Bold": "On", + "FontSize": -49834405, + "ForeColor": "#ADFF2F", + "Tags": [ + "d160ce7d-6803-3adc-c88d-05cf3939ae45" + ] + }, + { + "Text": "productivity", + "Ws": "beo", + "Bold": "On", + "FontSize": 1358440076, + "ForeColor": "#0000FF", + "Tags": [ + "791f8e3b-d5d0-593e-8ca2-c57ebb123c9b" + ] + }, + { + "Text": "Internal", + "Ws": "jer", + "Tags": [ + "22593efb-681a-4e61-bdc4-96b4d54feee5" + ] + } + ] + }, + "orn": { + "Spans": [ + { + "Text": "Kiribati", + "Ws": "orn", + "Tags": [ + "43da294d-1349-48ab-a650-3fae8cd2cc0e" + ] + } + ] + } + } + } + ] }, - "Id": "78f9bd83-8dcb-6972-7e0b-5863ef2ea0a8", + "Id": "853b91e6-d738-7d5d-cc98-e62904160c35", "DeletedAt": null } } diff --git a/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json index 924dda4232..b087157ce9 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json +++ b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json @@ -311,7 +311,8 @@ "en": "Fruit" }, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "Guid_11" }, diff --git a/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json index 32340be1ab..b10f437131 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json +++ b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json @@ -612,7 +612,8 @@ "en": "Fruit" }, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "Guid_28" }, @@ -648,7 +649,8 @@ "en": "Fruit" }, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "Guid_31" }, @@ -710,7 +712,8 @@ "Predefined": true } ], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "Guid_24" }, @@ -748,7 +751,8 @@ "en": "Fruit" }, "SemanticDomains": [], - "ExampleSentences": [] + "ExampleSentences": [], + "Pictures": [] }, "Id": "Guid_34" }, diff --git a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt index 5c72d33436..f11904f409 100644 --- a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyChangeModels.verified.txt @@ -140,6 +140,22 @@ DerivedType: SetFirstTranslationIdChange, TypeDiscriminator: SetFirstTranslationIdChange }, + { + DerivedType: CreateSensePictureChange, + TypeDiscriminator: CreateSensePictureChange + }, + { + DerivedType: UpdateSensePictureChange, + TypeDiscriminator: UpdateSensePictureChange + }, + { + DerivedType: ReorderSensePictureChange, + TypeDiscriminator: ReorderSensePictureChange + }, + { + DerivedType: RemoveSensePictureChange, + TypeDiscriminator: RemoveSensePictureChange + }, { DerivedType: CreatePartOfSpeechChange, TypeDiscriminator: CreatePartOfSpeechChange diff --git a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt index 04cb8cb454..6eaccd9213 100644 --- a/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt +++ b/backend/FwLite/LcmCrdt.Tests/DataModelSnapshotTests.VerifyDbModel.verified.txt @@ -316,6 +316,10 @@ Relational:ColumnType: jsonb Order (double) Required PartOfSpeechId (Guid?) FK Index + Pictures (List) Required ValueGenerated.OnAdd + Annotations: + Relational:ColumnType: jsonb + Relational:DefaultValueSql: '[]' SemanticDomains (IList) Required Annotations: Relational:ColumnType: jsonb diff --git a/backend/FwLite/LcmCrdt/Changes/CreateSenseChange.cs b/backend/FwLite/LcmCrdt/Changes/CreateSenseChange.cs index 1043da4912..81b0825f04 100644 --- a/backend/FwLite/LcmCrdt/Changes/CreateSenseChange.cs +++ b/backend/FwLite/LcmCrdt/Changes/CreateSenseChange.cs @@ -18,6 +18,7 @@ public CreateSenseChange(Sense sense, Guid entryId) : base(sense.Id == Guid.Empt SemanticDomains = sense.SemanticDomains; Gloss = sense.Gloss; PartOfSpeechId = sense.PartOfSpeech?.Id ?? sense.PartOfSpeechId; + Pictures = sense.Pictures; } [JsonConstructor] @@ -32,6 +33,7 @@ private CreateSenseChange(Guid entityId, Guid entryId) : base(entityId) public MultiString? Gloss { get; set; } public Guid? PartOfSpeechId { get; set; } public IList? SemanticDomains { get; set; } + public List? Pictures { get; set; } public override async ValueTask NewEntity(Commit commit, IChangeContext context) { @@ -46,6 +48,7 @@ public override async ValueTask NewEntity(Commit commit, IChangeContext c Gloss = Gloss ?? new MultiString(), PartOfSpeech = partOfSpeech, PartOfSpeechId = partOfSpeech?.Id, + Pictures = Pictures ?? [], SemanticDomains = await context.FilterDeleted(SemanticDomains ?? []).ToArrayAsync(), DeletedAt = await context.IsObjectDeleted(EntryId) ? commit.DateTime : (DateTime?)null }; diff --git a/backend/FwLite/LcmCrdt/Changes/CreateSensePictureChange.cs b/backend/FwLite/LcmCrdt/Changes/CreateSensePictureChange.cs new file mode 100644 index 0000000000..452e5cdbaf --- /dev/null +++ b/backend/FwLite/LcmCrdt/Changes/CreateSensePictureChange.cs @@ -0,0 +1,49 @@ +using System.Text.Json.Serialization; +using MiniLcm.Media; +using MiniLcm.SyncHelpers; +using SIL.Harmony.Changes; +using SIL.Harmony.Core; +using SIL.Harmony.Entities; + +namespace LcmCrdt.Changes; + +public class CreateSensePictureChange: EditChange, ISelfNamedType +{ + public CreateSensePictureChange(Picture picture, Guid entityId, BetweenPosition? between = null) + : base(entityId) + { + PictureId = picture.Id == Guid.Empty ? Guid.NewGuid() : picture.Id; + Order = picture.Order; + Caption = picture.Caption; + MediaUri = picture.MediaUri; + Between = between; + } + + [JsonConstructor] + private CreateSensePictureChange(Guid entityId) : base(entityId) + { + } + + public Guid PictureId { get; set; } + public double Order { get; set; } + public RichMultiString? Caption { get; set; } + public MediaUri MediaUri { get; set; } + public BetweenPosition? Between { get; set; } + + public override ValueTask ApplyChange(Sense entity, IChangeContext context) + { + // Skip creating if this is a duplicate change + if (entity.Pictures.Any(pic => pic.Id == PictureId)) return ValueTask.CompletedTask; + Order = OrderPicker.PickOrder(entity.Pictures, Between); + var pic = new Picture + { + Id = PictureId, + Order = Order, + Caption = Caption ?? new(), + MediaUri = MediaUri, + }; + entity.Pictures.Add(pic); + entity.Pictures.Sort(Picture.ComparePictures); + return ValueTask.CompletedTask; + } +} diff --git a/backend/FwLite/LcmCrdt/Changes/RemoveSensePictureChange.cs b/backend/FwLite/LcmCrdt/Changes/RemoveSensePictureChange.cs new file mode 100644 index 0000000000..d2cdadcca5 --- /dev/null +++ b/backend/FwLite/LcmCrdt/Changes/RemoveSensePictureChange.cs @@ -0,0 +1,22 @@ +using SIL.Harmony.Changes; +using SIL.Harmony.Core; +using SIL.Harmony.Entities; + +namespace LcmCrdt.Changes; + +public class RemoveSensePictureChange: EditChange, ISelfNamedType +{ + public RemoveSensePictureChange(Guid pictureId, Guid entityId) + : base(entityId) + { + PictureId = pictureId; + } + + public Guid PictureId { get; init; } + + public override ValueTask ApplyChange(Sense entity, IChangeContext context) + { + entity.Pictures = [.. entity.Pictures.Where(pic => pic.Id != PictureId)]; + return ValueTask.CompletedTask; + } +} diff --git a/backend/FwLite/LcmCrdt/Changes/ReorderSensePictureChange.cs b/backend/FwLite/LcmCrdt/Changes/ReorderSensePictureChange.cs new file mode 100644 index 0000000000..f878f2f199 --- /dev/null +++ b/backend/FwLite/LcmCrdt/Changes/ReorderSensePictureChange.cs @@ -0,0 +1,22 @@ +using SIL.Harmony.Changes; +using SIL.Harmony.Core; +using SIL.Harmony.Entities; + +namespace LcmCrdt.Changes; + +public class ReorderSensePictureChange(Guid pictureId, Guid entityId, double order) : EditChange(entityId), ISelfNamedType +{ + + public Guid PictureId { get; } = pictureId; + public double Order { get; } = order; + + public override ValueTask ApplyChange(Sense entity, IChangeContext context) + { + var picture = entity.Pictures.FirstOrDefault(pic => pic.Id == PictureId); + // Not found? Picture may have been deleted by another change, in which case the reodering has become a no-op + if (picture is null) return ValueTask.CompletedTask; + picture.Order = Order; + entity.Pictures.Sort(Picture.ComparePictures); + return ValueTask.CompletedTask; + } +} diff --git a/backend/FwLite/LcmCrdt/Changes/UpdateSensePictureChange.cs b/backend/FwLite/LcmCrdt/Changes/UpdateSensePictureChange.cs new file mode 100644 index 0000000000..ff3d0d0010 --- /dev/null +++ b/backend/FwLite/LcmCrdt/Changes/UpdateSensePictureChange.cs @@ -0,0 +1,38 @@ +using System.Text.Json.Serialization; +using SIL.Harmony.Changes; +using SIL.Harmony.Core; +using SIL.Harmony.Entities; +using SystemTextJsonPatch; + +namespace LcmCrdt.Changes; + +public class UpdateSensePictureChange : EditChange, ISelfNamedType +{ + public UpdateSensePictureChange(Guid pictureId, Guid entityId, JsonPatchDocument patch) : base(entityId) + { + PictureId = pictureId; + Patch = patch; + JsonPatchValidator.ValidatePatchDocument(patch); + } + + [JsonConstructor] + private UpdateSensePictureChange(Guid entityId) : base(entityId) + { + } + + public Guid PictureId { get; init; } + public JsonPatchDocument Patch { get; init; } = new(); + + public override ValueTask ApplyChange(Sense entity, IChangeContext context) + { + var picture = entity.Pictures.FirstOrDefault(p => p.Id == PictureId); + if (picture is null) return ValueTask.CompletedTask; + var orderChanges = Patch.Operations.Any(op => op.Path == $"/{nameof(Picture.Order)}"); + Patch.ApplyTo(picture); + if (orderChanges) + { + entity.Pictures.Sort(Picture.ComparePictures); + } + return ValueTask.CompletedTask; + } +} diff --git a/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs b/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs index 37d632455e..e1bfb02511 100644 --- a/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs +++ b/backend/FwLite/LcmCrdt/CrdtMiniLcmApi.cs @@ -932,6 +932,67 @@ static SetFirstTranslationIdChange GetSetFirstTranslationIdChange(Guid exampleSe } } + public async Task CreatePicture(Guid entryId, + Guid senseId, + Picture picture, + BetweenPosition? between = null) + { + await using var repo = await repoFactory.CreateRepoAsync(); + var change = new CreateSensePictureChange(picture, senseId, between); + await AddChange(change); + return await GetPicture(entryId, senseId, change.PictureId) ?? throw NotFoundException.ForType(change.PictureId); + } + + public async Task GetPicture(Guid entryId, Guid senseId, Guid id) + { + await using var repo = await repoFactory.CreateRepoAsync(); + var sense = await repo.GetSense(senseId); + return sense?.Pictures.FirstOrDefault(pic => pic.Id == id); + } + + public async Task SubmitUpdatePicture(Guid entryId, + Guid senseId, + Guid pictureId, + UpdateObjectInput update) + { + var jsonPatch = update.Patch; + var patchChange = new UpdateSensePictureChange(pictureId, senseId, jsonPatch); + await AddChange(patchChange); + } + + public async Task UpdatePicture(Guid entryId, + Guid senseId, + Guid pictureId, + UpdateObjectInput update) + { + await SubmitUpdatePicture(entryId, senseId, pictureId, update); + return await GetPicture(entryId, senseId, pictureId) ?? throw NotFoundException.ForType(pictureId); + } + + public async Task UpdatePicture(Guid entryId, + Guid senseId, + Picture before, + Picture after, + IMiniLcmApi? api = null) + { + await PictureSync.Sync(entryId, senseId, before, after, api ?? this); + return await GetPicture(entryId, senseId, after.Id) ?? throw NotFoundException.ForType(after.Id); + } + + public async Task MovePicture(Guid entryId, Guid senseId, Guid pictureId, BetweenPosition between) + { + await using var repo = await repoFactory.CreateRepoAsync(); + var sense = await repo.GetSense(senseId); + if (sense is null) throw NotFoundException.ForType(senseId); + var order = OrderPicker.PickOrder(sense.Pictures, between); + await AddChange(new ReorderSensePictureChange(pictureId, senseId, order)); + } + + public async Task DeletePicture(Guid entryId, Guid senseId, Guid pictureId) + { + await AddChange(new RemoveSensePictureChange(pictureId, senseId)); + } + public async Task GetFileStream(MediaUri mediaUri) { if (mediaUri == MediaUri.NotFound) return new ReadFileResponse(ReadFileResult.NotFound); diff --git a/backend/FwLite/LcmCrdt/LcmCrdtDbContext.cs b/backend/FwLite/LcmCrdt/LcmCrdtDbContext.cs index 4ad835f964..af8cd93174 100644 --- a/backend/FwLite/LcmCrdt/LcmCrdtDbContext.cs +++ b/backend/FwLite/LcmCrdt/LcmCrdtDbContext.cs @@ -44,6 +44,9 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) var morphTypeModel = modelBuilder.Entity(); morphTypeModel.HasIndex(m => m.Kind).IsUnique(); + + var senseModel = modelBuilder.Entity(); + senseModel.Property(s => s.Pictures).HasColumnType("jsonb").HasDefaultValueSql("'[]'"); } protected override void ConfigureConventions(ModelConfigurationBuilder builder) @@ -59,6 +62,8 @@ protected override void ConfigureConventions(ModelConfigurationBuilder builder) .HaveConversion(); builder.Properties() .HaveConversion(); + builder.Properties>() + .HaveConversion(); } private class MultiStringDbConverter() : ValueConverter( @@ -91,4 +96,8 @@ private class RichMultiStringDbConverter() : ValueConverter( id => id.Code, code => new WritingSystemId(code)); + + private class PictureListDbConverter() : ValueConverter, string>( + pic => JsonSerializer.Serialize(pic, (JsonSerializerOptions?)null), + json => JsonSerializer.Deserialize>(json, (JsonSerializerOptions?)null) ?? new()); } diff --git a/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs b/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs index 2556d16f4a..9a199e4d3c 100644 --- a/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs +++ b/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs @@ -226,6 +226,10 @@ public static void ConfigureCrdt(CrdtConfig config) .HasColumnType("jsonb") .HasConversion(list => JsonSerializer.Serialize(list, (JsonSerializerOptions?)null), json => JsonSerializer.Deserialize>(json, (JsonSerializerOptions?)null) ?? new()); + builder.Property(s => s.Pictures) + .HasColumnType("jsonb") + .HasConversion(list => JsonSerializer.Serialize(list, (JsonSerializerOptions?)null), + json => JsonSerializer.Deserialize>(json, (JsonSerializerOptions?)null) ?? new()); }) .Add(builder => { @@ -337,6 +341,10 @@ public static void ConfigureCrdt(CrdtConfig config) .Add() .Add() + .Add() + .Add() + .Add() + .Add() .Add() .Add() .Add() diff --git a/backend/FwLite/LcmCrdt/Migrations/20260619022528_AddPicturesColumnToSenses.Designer.cs b/backend/FwLite/LcmCrdt/Migrations/20260619022528_AddPicturesColumnToSenses.Designer.cs new file mode 100644 index 0000000000..01bc5a0258 --- /dev/null +++ b/backend/FwLite/LcmCrdt/Migrations/20260619022528_AddPicturesColumnToSenses.Designer.cs @@ -0,0 +1,847 @@ +// +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("20260619022528_AddPicturesColumnToSenses")] + partial class AddPicturesColumnToSenses + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "10.0.8"); + + 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("HomographNumber") + .HasColumnType("INTEGER"); + + 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("Pictures") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("jsonb") + .HasDefaultValueSql("'[]'"); + + 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(typeof(Dictionary), "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/20260619022528_AddPicturesColumnToSenses.cs b/backend/FwLite/LcmCrdt/Migrations/20260619022528_AddPicturesColumnToSenses.cs new file mode 100644 index 0000000000..e2e789678d --- /dev/null +++ b/backend/FwLite/LcmCrdt/Migrations/20260619022528_AddPicturesColumnToSenses.cs @@ -0,0 +1,29 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace LcmCrdt.Migrations +{ + /// + public partial class AddPicturesColumnToSenses : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "Pictures", + table: "Sense", + type: "jsonb", + nullable: false, + defaultValueSql: "'[]'"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "Pictures", + table: "Sense"); + } + } +} diff --git a/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs b/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs index 1df64e088b..650a5b9420 100644 --- a/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs +++ b/backend/FwLite/LcmCrdt/Migrations/LcmCrdtDbContextModelSnapshot.cs @@ -459,6 +459,12 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("PartOfSpeechId") .HasColumnType("TEXT"); + b.Property("Pictures") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("jsonb") + .HasDefaultValueSql("'[]'"); + b.Property("SemanticDomains") .IsRequired() .HasColumnType("jsonb"); diff --git a/backend/FwLite/LcmCrdt/OrderPicker.cs b/backend/FwLite/LcmCrdt/OrderPicker.cs index 14eb7746e7..404a528c4b 100644 --- a/backend/FwLite/LcmCrdt/OrderPicker.cs +++ b/backend/FwLite/LcmCrdt/OrderPicker.cs @@ -36,4 +36,29 @@ public static async Task PickOrder(IQueryable siblings, BetweenPos _ => previous.Order < next.Order ? (previous.Order + next.Order) / 2 : previous.Order + 1, }; } + + // Duplicated logic because Picture can't be IObjectWithId but needs to be ordered + public static double PickOrder(List items, BetweenPosition? between = null) + where T : class, IOrderable + { + var previousId = between?.Previous; + var nextId = between?.Next; + var previous = previousId is not null ? items.Find(item => item.Id == previousId) : null; + var next = nextId is not null ? items.Find(item => item.Id == nextId) : null; + + // There are various things we chould check for such as whether + // previous.Order + 1 actually puts it after previous (i.e. there isn't an item at previous.Order + <1) + // but even if that were the case, there's about a 50/50 chance that that's what actually should happen. + // So, overthinking it is probably not valuable. + return (previous, next) switch + { + // another user deleted items in the meantime? + (null, null) => items.Select(s => s.Order).DefaultIfEmpty().Max() + 1, + (_, null) => previous.Order + 1, + (null, _) => next.Order - 1, + // If the next item has been shifted previous the previous item, then between is likely not the actual intent, + // so we revert to only using previous + _ => previous.Order < next.Order ? (previous.Order + next.Order) / 2 : previous.Order + 1, + }; + } } diff --git a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs index b3d9f5f2ca..3732e63f0d 100644 --- a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs +++ b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs @@ -1,4 +1,5 @@ using System.Text.Json; +using MiniLcm.Media; using Soenneker.Utils.AutoBogus.Config; using Soenneker.Utils.AutoBogus.Context; using Soenneker.Utils.AutoBogus.Generators; @@ -56,9 +57,15 @@ public static AutoFakerConfig MakeConfig(string[]? validWs = null, int repeatCou }, true), new PredicateOverride(morph => { - // Unkown values map to null and get replaced with MorphType.Stem so they're not round-tripped + // Unknown values map to null and get replaced with MorphType.Stem so they're not round-tripped return morph is not MorphTypeKind.Unknown; }, true), + new SimpleOverride(context => + { + // MediaUri values created by AutoFaker should use NotFound authority since they don't point at actual files + // We keep the FileId so that distinct pictures will still have distincy MediaUri values + context.Instance = new MediaUri(context.Instance.As().FileId, MediaUri.NotFoundAuthority); + }, false), new SimpleGenericOverride(typeof(JsonPatchDocument<>), context => { context.Instance = Activator.CreateInstance(context.GenerateType.Type!)!; diff --git a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/EntryFakerHelper.cs b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/EntryFakerHelper.cs index 949635083b..71a884d72e 100644 --- a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/EntryFakerHelper.cs +++ b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/EntryFakerHelper.cs @@ -60,6 +60,11 @@ public static async Task PrepareToCreateEntry( { exampleSentence.SenseId = sense.Id; } + var order = 0; + foreach (var picture in sense.Pictures) + { + picture.Order = ++order; + } } } diff --git a/backend/FwLite/MiniLcm/IMiniLcmReadApi.cs b/backend/FwLite/MiniLcm/IMiniLcmReadApi.cs index 99cfe11980..36523faf83 100644 --- a/backend/FwLite/MiniLcm/IMiniLcmReadApi.cs +++ b/backend/FwLite/MiniLcm/IMiniLcmReadApi.cs @@ -30,6 +30,7 @@ public interface IMiniLcmReadApi Task GetPublication(Guid id); Task GetSemanticDomain(Guid id); Task GetExampleSentence(Guid entryId, Guid senseId, Guid id); + Task GetPicture(Guid entryId, Guid senseId, Guid id); /// /// Get the index of an entry within the sorted/filtered entry list. /// Returns -1 if the entry is not found. diff --git a/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs b/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs index 1708b878c0..310095dd30 100644 --- a/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs +++ b/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs @@ -115,6 +115,29 @@ Task UpdateExampleSentence(Guid entryId, Task UpdateTranslation(Guid entryId, Guid senseId, Guid exampleSentenceId, Guid translationId, UpdateObjectInput update); #endregion + #region Picture + /// + /// Creates the provided picture and adds it to the specified sense + /// + /// The ID of the sense's parent entry + /// The ID of picture's parent sense + /// The picture to create + /// Where the picture should be inserted in the sense's list of pictures. If null it will be appended to the end of the list. + /// + Task CreatePicture(Guid entryId, Guid senseId, Picture picture, BetweenPosition? position = null); + Task UpdatePicture(Guid entryId, + Guid senseId, + Guid pictureId, + UpdateObjectInput update); + Task UpdatePicture(Guid entryId, + Guid senseId, + Picture before, + Picture after, + IMiniLcmApi? api = null); + Task MovePicture(Guid entryId, Guid senseId, Guid pictureId, BetweenPosition position); + Task DeletePicture(Guid entryId, Guid senseId, Guid pictureId); + #endregion + #region Submit (fire-and-forget write variants for sync) // Result-less write variants the sync uses instead of the returning Update/Create methods above. The CRDT // overrides them to submit the change without fetching the result, so applying to an object the other side @@ -130,6 +153,7 @@ Task UpdateExampleSentence(Guid entryId, // Dependency types too (they sync before entries, outside EntrySync's try/catch). WritingSystem is omitted // (its update resolves the entity id, so it can't be a blind submit); MorphType is omitted (not deletable). Task SubmitUpdatePartOfSpeech(Guid id, UpdateObjectInput update) => UpdatePartOfSpeech(id, update); + Task SubmitUpdatePicture(Guid entryId, Guid senseId, Guid pictureId, UpdateObjectInput update) => UpdatePicture(entryId, senseId, pictureId, update); Task SubmitUpdatePublication(Guid id, UpdateObjectInput update) => UpdatePublication(id, update); Task SubmitUpdateSemanticDomain(Guid id, UpdateObjectInput update) => UpdateSemanticDomain(id, update); Task SubmitUpdateComplexFormType(Guid id, UpdateObjectInput update) => UpdateComplexFormType(id, update); diff --git a/backend/FwLite/MiniLcm/Media/MediaUri.cs b/backend/FwLite/MiniLcm/Media/MediaUri.cs index e69a63f7a7..2393dd812e 100644 --- a/backend/FwLite/MiniLcm/Media/MediaUri.cs +++ b/backend/FwLite/MiniLcm/Media/MediaUri.cs @@ -6,7 +6,8 @@ namespace MiniLcm.Media; [JsonConverter(typeof(MediaUriJsonConverter))] public readonly record struct MediaUri { - public static readonly MediaUri NotFound = new MediaUri(Guid.Empty, "not-found"); + public const string NotFoundAuthority = "not-found"; + public static readonly MediaUri NotFound = new MediaUri(Guid.Empty, NotFoundAuthority); public static readonly string NotFoundString = NotFound.ToString(); public const string Scheme = "sil-media"; public MediaUri(Guid fileId, string authority) diff --git a/backend/FwLite/MiniLcm/Models/Picture.cs b/backend/FwLite/MiniLcm/Models/Picture.cs new file mode 100644 index 0000000000..5036530d0c --- /dev/null +++ b/backend/FwLite/MiniLcm/Models/Picture.cs @@ -0,0 +1,29 @@ +using MiniLcm.Media; + +namespace MiniLcm.Models; + +public class Picture : IOrderable +{ + public virtual Guid Id { get; set; } // Will correspond to the CmPicture.Guid property in liblcm + public double Order { get; set; } + public virtual MediaUri MediaUri { get; set; } + public virtual RichMultiString Caption { get; set; } = []; + + public Picture Copy() + { + return new Picture + { + Id = Id, + Order = Order, + MediaUri = MediaUri, + Caption = Caption.Copy(), + }; + } + + public static int ComparePictures(Picture a, Picture b) + { + return a.Order == b.Order ? + a.Id.CompareTo(b.Id) : + a.Order.CompareTo(b.Order); + } +} diff --git a/backend/FwLite/MiniLcm/Models/Sense.cs b/backend/FwLite/MiniLcm/Models/Sense.cs index b4938dc867..6bf64b78fb 100644 --- a/backend/FwLite/MiniLcm/Models/Sense.cs +++ b/backend/FwLite/MiniLcm/Models/Sense.cs @@ -25,6 +25,7 @@ public class Sense : IObjectWithId, IOrderable [MiniLcmInternal, NotMapped, JsonIgnore, EditorBrowsable(EditorBrowsableState.Never)] public IEnumerable SemanticDomainRows => SemanticDomains; public virtual List ExampleSentences { get; set; } = []; + public virtual List Pictures { get; set; } = []; public Guid[] GetReferences() { @@ -57,7 +58,8 @@ public Sense Copy() PartOfSpeech = PartOfSpeech?.Copy(), PartOfSpeechId = PartOfSpeechId, SemanticDomains = [..SemanticDomains.Select(s => s.Copy())], - ExampleSentences = [..ExampleSentences.Select(s => s.Copy())] + ExampleSentences = [..ExampleSentences.Select(s => s.Copy())], + Pictures = [..Pictures.Select(s => s.Copy())], }; } } diff --git a/backend/FwLite/MiniLcm/Normalization/MiniLcmApiWriteNormalizationWrapper.cs b/backend/FwLite/MiniLcm/Normalization/MiniLcmApiWriteNormalizationWrapper.cs index bf2d901f8f..dfb231e83d 100644 --- a/backend/FwLite/MiniLcm/Normalization/MiniLcmApiWriteNormalizationWrapper.cs +++ b/backend/FwLite/MiniLcm/Normalization/MiniLcmApiWriteNormalizationWrapper.cs @@ -371,6 +371,7 @@ private static Sense NormalizeSense(Sense sense) copy.Gloss = StringNormalizer.Normalize(sense.Gloss); copy.PartOfSpeech = sense.PartOfSpeech is not null ? NormalizePartOfSpeech(sense.PartOfSpeech) : null; copy.SemanticDomains = [.. sense.SemanticDomains.Select(NormalizeSemanticDomain)]; + copy.Pictures = [.. sense.Pictures.Select(NormalizePicture)]; copy.ExampleSentences = [.. sense.ExampleSentences.Select(NormalizeExampleSentence)]; return copy; } @@ -439,6 +440,49 @@ private static Translation NormalizeTranslation(Translation translation) #endregion + #region Picture + + + private static Picture NormalizePicture(Picture picture) + { + var copy = picture.Copy(); + copy.Caption = StringNormalizer.Normalize(picture.Caption); + // Normalizing MediaUri might change the filename, we want to accept whatever FW Classic gives us even if it's wrong + return copy; + } + + public async Task CreatePicture(Guid entryId, Guid senseId, Picture picture, BetweenPosition? position = null) + { + return await _api.CreatePicture(entryId, senseId, NormalizePicture(picture), position); + } + + public Task UpdatePicture(Guid entryId, Guid senseId, Guid pictureId, UpdateObjectInput update) + { + return _api.UpdatePicture(entryId, senseId, pictureId, NormalizePatch(update)); + } + + public Task SubmitUpdatePicture(Guid entryId, Guid senseId, Guid pictureId, UpdateObjectInput update) + { + return _api.SubmitUpdatePicture(entryId, senseId, pictureId, NormalizePatch(update)); + } + + public async Task UpdatePicture(Guid entryId, Guid senseId, Picture before, Picture after, IMiniLcmApi? api = null) + { + return await _api.UpdatePicture(entryId, senseId, NormalizePicture(before), NormalizePicture(after), api); + } + + public Task MovePicture(Guid entryId, Guid senseId, Guid pictureId, BetweenPosition position) + { + return _api.MovePicture(entryId, senseId, pictureId, position); + } + + public Task DeletePicture(Guid entryId, Guid senseId, Guid pictureId) + { + return _api.DeletePicture(entryId, senseId, pictureId); + } + + #endregion + #region Bulk Import // Normalizing the bulk import methods may seem unintuitive: diff --git a/backend/FwLite/MiniLcm/SyncHelpers/PictureSync.cs b/backend/FwLite/MiniLcm/SyncHelpers/PictureSync.cs new file mode 100644 index 0000000000..a69b8f4701 --- /dev/null +++ b/backend/FwLite/MiniLcm/SyncHelpers/PictureSync.cs @@ -0,0 +1,79 @@ +using MiniLcm.Models; +using SystemTextJsonPatch; + +namespace MiniLcm.SyncHelpers; + +public static class PictureSync +{ + public static async Task Sync(Guid entryId, + Guid senseId, + IList beforePictures, + IList afterPictures, + IMiniLcmApi api) + { + return await DiffCollection.DiffOrderable( + beforePictures, + afterPictures, + new PicturesDiffApi(api, entryId, senseId)); + } + + public static async Task Sync(Guid entryId, + Guid senseId, + Picture beforePicture, + Picture afterPicture, + IMiniLcmApi api) + { + var updateObjectInput = DiffToUpdate(beforePicture, afterPicture); + if (updateObjectInput is not null) + await api.SubmitUpdatePicture(entryId, senseId, beforePicture.Id, updateObjectInput); + return updateObjectInput is not null ? 1 : 0; + } + + public static UpdateObjectInput? DiffToUpdate(Picture beforePicture, + Picture afterPicture) + { + JsonPatchDocument patchDocument = new(); + patchDocument.Operations.AddRange(MultiStringDiff.GetMultiStringDiff( + nameof(Picture.Caption), + beforePicture.Caption, + afterPicture.Caption)); + patchDocument.Operations.AddRange(SimpleStringDiff.GetStringDiff( + nameof(Picture.MediaUri), + beforePicture.MediaUri.ToString(), + afterPicture.MediaUri.ToString())); + + if (patchDocument.Operations.Count == 0) return null; + return new UpdateObjectInput(patchDocument); + } + + private class PicturesDiffApi(IMiniLcmApi api, Guid entryId, Guid senseId) : IOrderableCollectionDiffApi + { + public Guid GetId(Picture value) + { + return value.Id; + } + + public async Task Add(Picture afterPicture, BetweenPosition between) + { + await api.CreatePicture(entryId, senseId, afterPicture, new BetweenPosition(between.Previous?.Id, between.Next?.Id)); + return 1; + } + + public async Task Move(Picture picture, BetweenPosition between) + { + await api.MovePicture(entryId, senseId, picture.Id, new BetweenPosition(between.Previous?.Id, between.Next?.Id)); + return 1; + } + + public async Task Remove(Picture beforePicture) + { + await api.DeletePicture(entryId, senseId, beforePicture.Id); + return 1; + } + + public Task Replace(Picture beforePicture, Picture afterPicture) + { + return Sync(entryId, senseId, beforePicture, afterPicture, api); + } + } +} diff --git a/backend/FwLite/MiniLcm/SyncHelpers/SenseSync.cs b/backend/FwLite/MiniLcm/SyncHelpers/SenseSync.cs index acc37d7568..6fceed0462 100644 --- a/backend/FwLite/MiniLcm/SyncHelpers/SenseSync.cs +++ b/backend/FwLite/MiniLcm/SyncHelpers/SenseSync.cs @@ -21,6 +21,11 @@ public static async Task Sync(Guid entryId, beforeSense.ExampleSentences, afterSense.ExampleSentences, api); + changes += await PictureSync.Sync(entryId, + beforeSense.Id, + beforeSense.Pictures, + afterSense.Pictures, + api); changes += await DiffCollection.Diff( beforeSense.SemanticDomains, afterSense.SemanticDomains, diff --git a/backend/LfClassicData/Entities/Entry.cs b/backend/LfClassicData/Entities/Entry.cs index 01c7b1037a..aaf73c9156 100644 --- a/backend/LfClassicData/Entities/Entry.cs +++ b/backend/LfClassicData/Entities/Entry.cs @@ -24,6 +24,7 @@ public class Sense public required Dictionary Definition { get; set; } public required Dictionary? PhonologyNote { get; set; } public List? Examples { get; set; } = []; + public List? Pictures { get; set; } = []; } [BsonIgnoreExtraElements] @@ -49,3 +50,12 @@ public class OptionListItem public string? Value { get; set; } public string? Abbreviation { get; set; } } + +[BsonIgnoreExtraElements] +public class Picture +{ + public Guid Guid { get; set; } + public required string FileName { get; set; } + + public required Dictionary Caption { get; set; } +} diff --git a/backend/LfClassicData/LfClassicMiniLcmApi.cs b/backend/LfClassicData/LfClassicMiniLcmApi.cs index a89ef0eeac..a9352a0e0d 100644 --- a/backend/LfClassicData/LfClassicMiniLcmApi.cs +++ b/backend/LfClassicData/LfClassicMiniLcmApi.cs @@ -3,6 +3,7 @@ using LfClassicData.Entities.MongoUtils; using Microsoft.Extensions.Caching.Memory; using MiniLcm; +using MiniLcm.Media; using MiniLcm.Models; using MongoDB.Bson; using MongoDB.Driver; @@ -334,6 +335,7 @@ private async ValueTask ToSense(Guid entryId, Entities.Sense sense) .Select(sd => new SemanticDomain { Id = Guid.Empty, Code = sd, Name = new MultiString { { "en", sd } } }) .ToList(), ExampleSentences = sense.Examples?.OfType().Select(example => ToExampleSentence(sense.Guid, example)).ToList() ?? [], + Pictures = sense.Pictures?.OfType().Select(pic => ToPicture(sense.Guid, pic)).ToList() ?? [], }; } @@ -349,6 +351,17 @@ private static ExampleSentence ToExampleSentence(Guid senseId, Example example) }; } + private static MiniLcm.Models.Picture ToPicture(Guid senseId, Entities.Picture picture) + { + return new MiniLcm.Models.Picture + { + Id = picture.Guid, + Caption = ToRichMultiString(picture.Caption), + // TODO: Create a LfClassicMediaAdapter that can create MediaUris for LF URLs, then use that rather than returning NotFound + MediaUri = MediaUri.NotFound, + }; + } + private static MultiString ToMultiString(Dictionary? multiTextValue) { var ms = new MultiString(); @@ -435,6 +448,17 @@ private static SemanticDomain ToSemanticDomain(Entities.OptionListItem item) return ToExampleSentence(sense.Guid, exampleSentence); } + public async Task GetPicture(Guid entryId, Guid senseId, Guid id) + { + var entry = await Entries.Find(e => e.Guid == entryId).FirstOrDefaultAsync(); + if (entry is null) return null; + var sense = entry.Senses?.FirstOrDefault(s => s?.Guid == senseId); + if (sense is null) return null; + var picture = sense.Pictures?.FirstOrDefault(e => e?.Guid == id); + if (picture is null) return null; + return ToPicture(sense.Guid, picture); + } + public Task GetEntryIndex(Guid entryId, string? query = null, IndexQueryOptions? options = null) { throw new NotImplementedException(); diff --git a/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IPicture.ts b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IPicture.ts new file mode 100644 index 0000000000..ec6024469b --- /dev/null +++ b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/IPicture.ts @@ -0,0 +1,16 @@ +/* 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 {IRichMultiString} from '$lib/dotnet-types/i-multi-string'; + +export interface IPicture +{ + id: string; + order: number; + mediaUri: string; + caption: IRichMultiString; + deletedAt?: string; +} +/* eslint-enable */ diff --git a/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/ISense.ts b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/ISense.ts index b4a6c43f88..e959982322 100644 --- a/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/ISense.ts +++ b/frontend/viewer/src/lib/dotnet-types/generated-types/MiniLcm/Models/ISense.ts @@ -9,6 +9,7 @@ import type {IMultiString} from '$lib/dotnet-types/i-multi-string'; import type {IPartOfSpeech} from './IPartOfSpeech'; import type {ISemanticDomain} from './ISemanticDomain'; import type {IExampleSentence} from './IExampleSentence'; +import type {IPicture} from './IPicture'; export interface ISense extends IObjectWithId { @@ -21,5 +22,6 @@ export interface ISense extends IObjectWithId partOfSpeechId?: string; semanticDomains: ISemanticDomain[]; exampleSentences: IExampleSentence[]; + pictures: IPicture[]; } /* eslint-enable */ diff --git a/frontend/viewer/src/lib/sandbox/Sandbox.svelte b/frontend/viewer/src/lib/sandbox/Sandbox.svelte index 48779558c8..7a0f88a28b 100644 --- a/frontend/viewer/src/lib/sandbox/Sandbox.svelte +++ b/frontend/viewer/src/lib/sandbox/Sandbox.svelte @@ -343,7 +343,7 @@ f.id)} respectOrder {overrides}> + sense={makeSense({id: '1', gloss: {'en': 'Hello'}, entryId: 'e1', definition: {}, semanticDomains: [], exampleSentences: [], pictures: []})}/> {#snippet failed(error)} diff --git a/frontend/viewer/src/lib/utils.ts b/frontend/viewer/src/lib/utils.ts index 2fbe669bfb..55ccdacd9f 100644 --- a/frontend/viewer/src/lib/utils.ts +++ b/frontend/viewer/src/lib/utils.ts @@ -59,7 +59,8 @@ export function defaultSense(entryId: string): ISense { partOfSpeechId: undefined, partOfSpeech: undefined, semanticDomains: [], - exampleSentences: [] + exampleSentences: [], + pictures: [], }; } diff --git a/frontend/viewer/src/project/demo/demo-entry-data.ts b/frontend/viewer/src/project/demo/demo-entry-data.ts index e0fdd9b3ae..787da7cb05 100644 --- a/frontend/viewer/src/project/demo/demo-entry-data.ts +++ b/frontend/viewer/src/project/demo/demo-entry-data.ts @@ -153,6 +153,7 @@ export const _entries: IEntry[] = [ 'partOfSpeech': partsOfSpeech[1], // noun 'partOfSpeechId': partsOfSpeech[1].id, 'semanticDomains': [], + 'pictures': [], 'exampleSentences': [ { 'id': 'ex-001', @@ -170,6 +171,7 @@ export const _entries: IEntry[] = [ 'partOfSpeech': partsOfSpeech[1], // noun 'partOfSpeechId': partsOfSpeech[1].id, 'semanticDomains': [], + 'pictures': [], 'exampleSentences': [] }, { @@ -180,6 +182,7 @@ export const _entries: IEntry[] = [ 'partOfSpeech': partsOfSpeech[1], // noun 'partOfSpeechId': partsOfSpeech[1].id, 'semanticDomains': [], + 'pictures': [], 'exampleSentences': [] }, { @@ -189,6 +192,7 @@ export const _entries: IEntry[] = [ 'partOfSpeech': partsOfSpeech[1], // noun 'partOfSpeechId': partsOfSpeech[1].id, 'semanticDomains': [], + 'pictures': [], 'exampleSentences': [] }, { @@ -199,6 +203,7 @@ export const _entries: IEntry[] = [ 'partOfSpeech': partsOfSpeech[1], // noun 'partOfSpeechId': partsOfSpeech[1].id, 'semanticDomains': [], + 'pictures': [], 'exampleSentences': [] } ], 'note': {}, @@ -220,6 +225,7 @@ export const _entries: IEntry[] = [ 'partOfSpeech': partsOfSpeech[1], // noun 'partOfSpeechId': partsOfSpeech[1].id, 'semanticDomains': [], + 'pictures': [], 'exampleSentences': [] }, { @@ -230,6 +236,7 @@ export const _entries: IEntry[] = [ 'partOfSpeech': partsOfSpeech[1], // noun 'partOfSpeechId': partsOfSpeech[1].id, 'semanticDomains': [], + 'pictures': [], 'exampleSentences': [] }, { @@ -240,6 +247,7 @@ export const _entries: IEntry[] = [ 'partOfSpeech': partsOfSpeech[1], // noun 'partOfSpeechId': partsOfSpeech[1].id, 'semanticDomains': [], + 'pictures': [], 'exampleSentences': [] }, { @@ -249,7 +257,9 @@ export const _entries: IEntry[] = [ 'gloss': { 'en': '2', 'pt': '2' }, 'partOfSpeech': partsOfSpeech[1], // noun 'partOfSpeechId': partsOfSpeech[1].id, - 'semanticDomains': [], 'exampleSentences': [] + 'semanticDomains': [], + 'pictures': [], + 'exampleSentences': [] }, { 'id': '3360f2c7-1026-c558-a0fb-e9574aae16ee', @@ -259,6 +269,7 @@ export const _entries: IEntry[] = [ 'partOfSpeech': partsOfSpeech[1], // noun 'partOfSpeechId': partsOfSpeech[1].id, 'semanticDomains': [], + 'pictures': [], 'exampleSentences': [] } ], @@ -290,6 +301,7 @@ export const allWsEntry: IEntry = { partOfSpeech: partsOfSpeech[1], partOfSpeechId: partsOfSpeech[1].id, semanticDomains: [], + pictures: [], exampleSentences: [{ id: '00000000-0000-0000-0000-000000000003', senseId: '00000000-0000-0000-0000-000000000002',