diff options
-rw-r--r-- | ext/js/background/backend.js | 26 | ||||
-rw-r--r-- | ext/js/language/translator.js | 64 | ||||
-rw-r--r-- | test/data/test-translator-data.json | 6848 |
3 files changed, 6290 insertions, 648 deletions
diff --git a/ext/js/background/backend.js b/ext/js/background/backend.js index 715b916b..9b35e9b1 100644 --- a/ext/js/background/backend.js +++ b/ext/js/background/backend.js @@ -1891,30 +1891,18 @@ class Backend { } _getTranslatorEnabledDictionaryMap(options) { - const dictionaries = []; - const {dictionaries: optionsDictionaries} = options; - for (const title in optionsDictionaries) { - if (!Object.prototype.hasOwnProperty.call(optionsDictionaries, title)) { continue; } - const dictionary = optionsDictionaries[title]; + const enabledDictionaryMap = new Map(); + const {dictionaries} = options; + for (const title in dictionaries) { + if (!Object.prototype.hasOwnProperty.call(dictionaries, title)) { continue; } + const dictionary = dictionaries[title]; if (!dictionary.enabled) { continue; } - dictionaries.push({ - title, - index: dictionaries.length, + enabledDictionaryMap.set(title, { + index: enabledDictionaryMap.size, priority: dictionary.priority, allowSecondarySearches: dictionary.allowSecondarySearches }); } - - dictionaries.sort((v1, v2) => { - const i = v2.priority - v1.priority; - return i !== 0 ? i : v1.index - v2.index; - }); - - const enabledDictionaryMap = new Map(); - for (let i = 0, ii = dictionaries.length; i < ii; ++i) { - const {title, allowSecondarySearches} = dictionaries[i]; - enabledDictionaryMap.set(title, {order: i, allowSecondarySearches}); - } return enabledDictionaryMap; } diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index e78b928b..163affd3 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -78,7 +78,8 @@ class Translator { * enabledDictionaryMap: (Map of [ * (string), * { - * order: (number), + * index: (number), + * priority: (number), * allowSecondarySearches: (boolean) * } * ]) @@ -111,7 +112,8 @@ class Translator { * enabledDictionaryMap: (Map of [ * (string), * { - * order: (number) + * index: (number), + * priority: (number) * } * ]) * } @@ -883,7 +885,8 @@ class Translator { _getDictionaryOrder(dictionary, enabledDictionaryMap) { const info = enabledDictionaryMap.get(dictionary); - return typeof info !== 'undefined' ? info.order : 0; + const {index, priority} = typeof info !== 'undefined' ? info : {index: enabledDictionaryMap.size, priority: 0}; + return {index, priority}; } _getTagNamesWithCategory(tags, category) { @@ -1019,12 +1022,14 @@ class Translator { return result; } - _getMinDictionaryOrder(definitions) { - let result = Number.MAX_SAFE_INTEGER; - for (const {dictionaryOrder} of definitions) { - if (dictionaryOrder < result) { result = dictionaryOrder; } + _getBestDictionaryOrder(definitions) { + let index = Number.MAX_SAFE_INTEGER; + let priority = Number.MIN_SAFE_INTEGER; + for (const {dictionaryOrder: {index: index2, priority: priority2}} of definitions) { + if (index2 < index) { index = index2; } + if (priority2 > priority) { priority = priority2; } } - return result; + return {index, priority}; } // Common data creation and cloning functions @@ -1124,7 +1129,7 @@ class Translator { _createGroupedTermDefinition(definitions) { const {expression, reading, furiganaSegments, reasons, source, rawSource, sourceTerm} = definitions[0]; const score = this._getMaxDefinitionScore(definitions); - const dictionaryOrder = this._getMinDictionaryOrder(definitions); + const dictionaryOrder = this._getBestDictionaryOrder(definitions); const dictionaryNames = this._getUniqueDictionaryNames(definitions); const termTags = this._getUniqueTermTags(definitions); const termDetailsList = [this._createTermDetails(sourceTerm, expression, reading, furiganaSegments, termTags)]; @@ -1157,7 +1162,7 @@ class Translator { } _createMergedTermDefinition(source, rawSource, definitions, expressions, readings, termDetailsList, reasons, score) { - const dictionaryOrder = this._getMinDictionaryOrder(definitions); + const dictionaryOrder = this._getBestDictionaryOrder(definitions); const sourceTermExactMatchCount = this._getSourceTermMatchCountSum(definitions); const dictionaryNames = this._getUniqueDictionaryNames(definitions); return { @@ -1208,7 +1213,7 @@ class Translator { const {glossary} = definitions[0]; const score = this._getMaxDefinitionScore(definitions); - const dictionaryOrder = this._getMinDictionaryOrder(definitions); + const dictionaryOrder = this._getBestDictionaryOrder(definitions); return { type: 'termMergedByGlossary', // id @@ -1279,29 +1284,40 @@ class Translator { if (definitions.length <= 1) { return; } const stringComparer = this._stringComparer; const compareFunction = (v1, v2) => { - let i = v1.dictionaryOrder - v2.dictionaryOrder; + // Sort by dictionary priority + let i = v2.dictionaryOrder.priority - v1.dictionaryOrder.priority; if (i !== 0) { return i; } + // Sort by length of source term i = v2.source.length - v1.source.length; if (i !== 0) { return i; } + // Sort by the number of inflection reasons i = v1.reasons.length - v2.reasons.length; if (i !== 0) { return i; } + // Sort by how many terms exactly match the source (e.g. for exact kana prioritization) i = v2.sourceTermExactMatchCount - v1.sourceTermExactMatchCount; if (i !== 0) { return i; } + // Sort by term score i = v2.score - v1.score; if (i !== 0) { return i; } + // Sort by expression string comparison (skip if either expression is not a string, e.g. array) const expression1 = v1.expression; const expression2 = v2.expression; - if (typeof expression1 !== 'string' || typeof expression2 !== 'string') { return 0; } // Skip if either is not a string (array) + if (typeof expression1 === 'string' && typeof expression2 === 'string') { + i = expression2.length - expression1.length; + if (i !== 0) { return i; } - i = expression2.length - expression1.length; - if (i !== 0) { return i; } + i = stringComparer.compare(expression1, expression2); + if (i !== 0) { return i; } + } - return stringComparer.compare(expression1, expression2); + // Sort by dictionary order + i = v1.dictionaryOrder.index - v2.dictionaryOrder.index; + return i; }; definitions.sort(compareFunction); } @@ -1329,14 +1345,18 @@ class Translator { _sortTermDefinitionMeta(definition) { const compareFunction = (v1, v2) => { - // Sort by dictionary - let i = v1.dictionaryOrder - v2.dictionaryOrder; + // Sort by dictionary priority + let i = v2.dictionaryOrder.priority - v1.dictionaryOrder.priority; if (i !== 0) { return i; } // Sory by expression order i = v1.expressionIndex - v2.expressionIndex; if (i !== 0) { return i; } + // Sort by dictionary order + i = v1.dictionaryOrder.index - v2.dictionaryOrder.index; + if (i !== 0) { return i; } + // Default order i = v1.index - v2.index; return i; @@ -1353,8 +1373,12 @@ class Translator { _sortKanjiDefinitionMeta(definition) { const compareFunction = (v1, v2) => { - // Sort by dictionary - let i = v1.dictionaryOrder - v2.dictionaryOrder; + // Sort by dictionary priority + let i = v2.dictionaryOrder.priority - v1.dictionaryOrder.priority; + if (i !== 0) { return i; } + + // Sort by dictionary order + i = v1.dictionaryOrder.index - v2.dictionaryOrder.index; if (i !== 0) { return i; } // Default order diff --git a/test/data/test-translator-data.json b/test/data/test-translator-data.json index a4036d61..45dd72a1 100644 --- a/test/data/test-translator-data.json +++ b/test/data/test-translator-data.json @@ -5,7 +5,8 @@ [ "${title}", { - "order": 0 + "index": 0, + "priority": 0 } ] ] @@ -27,7 +28,8 @@ [ "${title}", { - "order": 0, + "index": 0, + "priority": 0, "allowSecondarySearches": false } ] @@ -143,7 +145,10 @@ { "index": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "character": "打", "frequency": 1 } @@ -259,7 +264,10 @@ { "index": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "character": "込", "frequency": 2 } @@ -296,7 +304,10 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -348,7 +359,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -358,7 +372,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -432,7 +449,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -442,7 +462,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -462,7 +485,10 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -514,7 +540,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -524,7 +553,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -598,7 +630,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -608,7 +643,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -640,7 +678,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -696,7 +737,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -706,7 +750,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -784,7 +831,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -794,7 +844,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -814,7 +867,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -870,7 +926,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -880,7 +939,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -958,7 +1020,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -968,7 +1033,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -988,7 +1056,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -1044,7 +1115,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -1054,7 +1128,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -1132,7 +1209,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -1142,7 +1222,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -1162,7 +1245,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -1218,7 +1304,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -1228,7 +1317,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -1306,7 +1398,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -1316,7 +1411,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -1336,7 +1434,10 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -1388,7 +1489,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -1398,7 +1502,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -1472,7 +1579,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -1482,7 +1592,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -1502,7 +1615,10 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -1554,7 +1670,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -1564,7 +1683,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -1638,7 +1760,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -1648,7 +1773,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -1680,7 +1808,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -1744,7 +1875,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -1754,7 +1888,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -1766,7 +1903,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -1859,7 +1999,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -1869,7 +2012,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -1881,7 +2027,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -1908,7 +2057,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -1972,7 +2124,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -1982,7 +2137,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -1994,7 +2152,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -2087,7 +2248,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -2097,7 +2261,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -2109,7 +2276,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -2136,7 +2306,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -2200,7 +2373,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -2210,7 +2386,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -2222,7 +2401,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -2315,7 +2497,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -2325,7 +2510,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -2337,7 +2525,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -2364,7 +2555,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -2428,7 +2622,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -2438,7 +2635,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -2450,7 +2650,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -2543,7 +2746,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -2553,7 +2759,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -2565,7 +2774,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -2594,7 +2806,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -2650,7 +2865,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -2660,7 +2878,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -2738,7 +2959,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -2748,7 +2972,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -2770,7 +2997,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -2826,7 +3056,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -2836,7 +3069,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -2914,7 +3150,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -2924,7 +3163,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -2946,7 +3188,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -3002,7 +3247,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -3012,7 +3260,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -3090,7 +3341,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -3100,7 +3354,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -3122,7 +3379,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -3178,7 +3438,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -3188,7 +3451,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -3266,7 +3532,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -3276,7 +3545,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -3296,7 +3568,10 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -3348,7 +3623,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -3358,7 +3636,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -3432,7 +3713,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -3442,7 +3726,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -3462,7 +3749,10 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -3514,7 +3804,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -3524,7 +3817,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -3598,7 +3894,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -3608,7 +3907,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -3640,7 +3942,10 @@ "score": 1, "sequence": 5, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -3785,7 +4090,10 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -3837,7 +4145,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -3847,7 +4158,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -3921,7 +4235,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -3931,7 +4248,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -3963,7 +4283,10 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -4015,7 +4338,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -4025,7 +4351,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -4099,7 +4428,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -4109,7 +4441,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -4141,7 +4476,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -4197,7 +4535,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -4207,7 +4548,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -4285,7 +4629,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -4295,7 +4642,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -4315,7 +4665,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -4371,7 +4724,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -4381,7 +4737,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -4459,7 +4818,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -4469,7 +4831,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -4501,7 +4866,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -4557,7 +4925,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -4567,7 +4938,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -4645,7 +5019,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -4655,7 +5032,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -4675,7 +5055,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -4731,7 +5114,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -4741,7 +5127,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -4819,7 +5208,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -4829,7 +5221,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -4861,7 +5256,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -4925,7 +5323,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -4935,7 +5336,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -4947,7 +5351,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -5040,7 +5447,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -5050,7 +5460,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -5062,7 +5475,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -5089,7 +5505,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -5153,7 +5572,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -5163,7 +5585,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -5175,7 +5600,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -5268,7 +5696,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -5278,7 +5709,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -5290,7 +5724,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -5319,7 +5756,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -5375,7 +5815,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -5385,7 +5828,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -5463,7 +5909,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -5473,7 +5922,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -5495,7 +5947,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -5551,7 +6006,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -5561,7 +6019,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -5639,7 +6100,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -5649,7 +6113,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -5681,7 +6148,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -5745,7 +6215,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -5755,7 +6228,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -5767,7 +6243,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -5860,7 +6339,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -5870,7 +6352,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -5882,7 +6367,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -5909,7 +6397,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -5973,7 +6464,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -5983,7 +6477,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -5995,7 +6492,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -6088,7 +6588,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -6098,7 +6601,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -6110,7 +6616,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -6139,7 +6648,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -6195,7 +6707,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -6205,7 +6720,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -6283,7 +6801,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -6293,7 +6814,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -6315,7 +6839,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -6371,7 +6898,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -6381,7 +6911,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -6459,7 +6992,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -6469,7 +7005,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -6501,7 +7040,10 @@ "score": 1, "sequence": 5, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -6668,7 +7210,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -6816,7 +7361,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -6964,7 +7512,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -7112,7 +7663,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -7262,7 +7816,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -7396,7 +7953,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -7530,7 +8090,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -7664,7 +8227,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -7796,7 +8362,10 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -7920,7 +8489,10 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -8054,7 +8626,10 @@ "reasons": [], "score": 10, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -8136,7 +8711,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -8146,7 +8724,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -8158,7 +8739,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -8251,7 +8835,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -8315,7 +8902,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -8325,7 +8915,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -8337,7 +8930,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -8430,7 +9026,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -8440,7 +9039,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -8452,7 +9054,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -8479,7 +9084,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -8543,7 +9151,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -8553,7 +9164,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -8565,7 +9179,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -8658,7 +9275,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -8668,7 +9288,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -8680,7 +9303,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -8703,7 +9329,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -8713,7 +9342,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -8725,7 +9357,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -8750,7 +9385,10 @@ "reasons": [], "score": 10, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -8814,7 +9452,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -8824,7 +9465,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -8836,7 +9480,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -8911,7 +9558,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -8975,7 +9625,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -8985,7 +9638,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -8997,7 +9653,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -9090,7 +9749,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -9100,7 +9762,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -9112,7 +9777,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -9139,7 +9807,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -9203,7 +9874,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -9213,7 +9887,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -9225,7 +9902,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -9318,7 +9998,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -9328,7 +10011,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -9340,7 +10026,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -9363,7 +10052,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -9373,7 +10065,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -9385,7 +10080,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -9412,7 +10110,10 @@ ], "score": 10, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -9468,7 +10169,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -9478,7 +10182,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9540,7 +10247,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -9596,7 +10306,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -9606,7 +10319,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9684,7 +10400,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -9694,7 +10413,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9716,7 +10438,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -9772,7 +10497,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -9782,7 +10510,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9860,7 +10591,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -9870,7 +10604,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9886,7 +10623,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -9896,7 +10636,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -9916,7 +10659,10 @@ ], "score": 10, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -9972,7 +10718,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -9982,7 +10731,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -10044,7 +10796,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -10100,7 +10855,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -10110,7 +10868,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -10188,7 +10949,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -10198,7 +10962,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -10220,7 +10987,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -10276,7 +11046,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -10286,7 +11059,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -10364,7 +11140,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -10374,7 +11153,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -10390,7 +11172,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -10400,7 +11185,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -10418,7 +11206,10 @@ "reasons": [], "score": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -10470,7 +11261,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -10480,7 +11274,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -10536,7 +11333,10 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -10588,7 +11388,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -10598,7 +11401,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -10672,7 +11478,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -10682,7 +11491,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -10698,7 +11510,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -10708,7 +11523,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -10726,7 +11544,10 @@ "reasons": [], "score": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -10778,7 +11599,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -10788,7 +11612,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -10844,7 +11671,10 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -10896,7 +11726,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -10906,7 +11739,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -10980,7 +11816,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -10990,7 +11829,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -11006,7 +11848,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -11016,7 +11861,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -11045,7 +11893,10 @@ "reasons": [], "score": 10, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -11132,7 +11983,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -11142,7 +11996,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -11154,7 +12011,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -11227,7 +12087,10 @@ "index": 0, "expressionIndex": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -11237,7 +12100,10 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -11249,7 +12115,10 @@ "index": 0, "expressionIndex": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -11274,7 +12143,10 @@ "reasons": [], "score": 10, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -11342,7 +12214,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -11352,7 +12227,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -11364,7 +12242,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -11416,7 +12297,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -11480,7 +12364,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -11490,7 +12377,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -11502,7 +12392,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -11595,7 +12488,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -11605,7 +12501,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -11617,7 +12516,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -11640,7 +12542,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -11650,7 +12555,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -11662,7 +12570,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -11689,7 +12600,10 @@ "reasons": [], "score": 10, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -11757,7 +12671,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -11767,7 +12684,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -11779,7 +12699,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -11831,7 +12754,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -11895,7 +12821,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -11905,7 +12834,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -11917,7 +12849,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -12010,7 +12945,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -12020,7 +12958,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -12032,7 +12973,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -12055,7 +12999,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -12065,7 +13012,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -12077,7 +13027,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -12104,7 +13057,10 @@ "reasons": [], "score": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -12172,7 +13128,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -12182,7 +13141,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -12194,7 +13156,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -12246,7 +13211,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -12310,7 +13278,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -12320,7 +13291,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -12332,7 +13306,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -12425,7 +13402,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -12435,7 +13415,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -12447,7 +13430,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -12470,7 +13456,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -12480,7 +13469,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -12492,7 +13484,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -12519,7 +13514,10 @@ "reasons": [], "score": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -12587,7 +13585,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -12597,7 +13598,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -12609,7 +13613,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -12661,7 +13668,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -12725,7 +13735,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -12735,7 +13748,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -12747,7 +13763,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -12840,7 +13859,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -12850,7 +13872,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -12862,7 +13887,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -12885,7 +13913,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -12895,7 +13926,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -12907,7 +13941,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -12933,7 +13970,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -12943,7 +13983,10 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -12953,7 +13996,10 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -12963,7 +14009,10 @@ "index": 3, "expressionIndex": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -12975,7 +14024,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -12993,7 +14045,10 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -13019,7 +14074,10 @@ ], "score": 10, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -13080,7 +14138,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -13090,7 +14151,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -13148,7 +14212,10 @@ "index": 0, "expressionIndex": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -13158,7 +14225,10 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -13176,7 +14246,10 @@ "reasons": [], "score": 10, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -13236,7 +14309,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -13246,7 +14322,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -13293,7 +14372,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -13349,7 +14431,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -13359,7 +14444,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -13437,7 +14525,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -13447,7 +14538,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -13463,7 +14557,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -13473,7 +14570,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -13493,7 +14593,10 @@ "reasons": [], "score": 10, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -13553,7 +14656,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -13563,7 +14669,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -13610,7 +14719,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -13666,7 +14778,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -13676,7 +14791,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -13754,7 +14872,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -13764,7 +14885,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -13780,7 +14904,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -13790,7 +14917,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -13810,7 +14940,10 @@ "reasons": [], "score": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -13870,7 +15003,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -13880,7 +15016,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -13927,7 +15066,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -13983,7 +15125,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -13993,7 +15138,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -14071,7 +15219,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -14081,7 +15232,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -14097,7 +15251,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -14107,7 +15264,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -14127,7 +15287,10 @@ "reasons": [], "score": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -14187,7 +15350,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -14197,7 +15363,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -14244,7 +15413,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -14300,7 +15472,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -14310,7 +15485,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -14388,7 +15566,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -14398,7 +15579,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -14414,7 +15598,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -14424,7 +15611,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -14443,7 +15633,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -14453,7 +15646,10 @@ "index": 2, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -14463,7 +15659,10 @@ "index": 1, "expressionIndex": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -14473,7 +15672,10 @@ "index": 3, "expressionIndex": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -14490,7 +15692,10 @@ "reasons": [], "score": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -14546,7 +15751,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -14556,7 +15764,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -14574,7 +15785,10 @@ "reasons": [], "score": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -14630,7 +15844,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -14640,7 +15857,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -14685,7 +15905,10 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -14737,7 +15960,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -14747,7 +15973,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -14821,7 +16050,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -14831,7 +16063,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -14847,7 +16082,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -14857,7 +16095,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -14874,7 +16115,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -14884,7 +16128,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -14901,7 +16148,10 @@ "reasons": [], "score": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -14957,7 +16207,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -14967,7 +16220,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -14985,7 +16241,10 @@ "reasons": [], "score": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -15041,7 +16300,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -15051,7 +16313,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -15096,7 +16361,10 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -15148,7 +16416,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -15158,7 +16429,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -15232,7 +16506,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -15242,7 +16519,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -15258,7 +16538,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -15268,7 +16551,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -15285,7 +16571,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -15295,7 +16584,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -15331,7 +16623,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -15395,7 +16690,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -15405,7 +16703,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -15417,7 +16718,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -15510,7 +16814,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -15520,7 +16827,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -15532,7 +16842,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -15563,7 +16876,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -15627,7 +16943,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -15637,7 +16956,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -15649,7 +16971,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -15742,7 +17067,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -15752,7 +17080,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -15764,7 +17095,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -15795,7 +17129,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -15859,7 +17196,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -15869,7 +17209,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -15881,7 +17224,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -15974,7 +17320,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -15984,7 +17333,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -15996,7 +17348,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -16027,7 +17382,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -16091,7 +17449,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -16101,7 +17462,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -16113,7 +17477,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -16206,7 +17573,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -16216,7 +17586,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -16228,7 +17601,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -16257,7 +17633,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -16313,7 +17692,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -16323,7 +17705,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -16401,7 +17786,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -16411,7 +17799,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -16433,7 +17824,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -16489,7 +17883,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -16499,7 +17896,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -16577,7 +17977,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -16587,7 +17990,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -16609,7 +18015,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -16665,7 +18074,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -16675,7 +18087,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -16753,7 +18168,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -16763,7 +18181,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -16785,7 +18206,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -16841,7 +18265,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -16851,7 +18278,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -16929,7 +18359,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -16939,7 +18372,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -16959,7 +18395,10 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -17011,7 +18450,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -17021,7 +18463,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -17095,7 +18540,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -17105,7 +18553,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -17125,7 +18576,10 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -17177,7 +18631,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -17187,7 +18644,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -17261,7 +18721,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -17271,7 +18734,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -17318,7 +18784,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -17382,7 +18851,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -17392,7 +18864,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -17404,7 +18879,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -17497,7 +18975,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -17507,7 +18988,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -17519,7 +19003,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -17546,7 +19033,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -17610,7 +19100,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -17620,7 +19113,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -17632,7 +19128,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -17725,7 +19224,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -17735,7 +19237,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -17747,7 +19252,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -17774,7 +19282,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -17838,7 +19349,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -17848,7 +19362,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -17860,7 +19377,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -17953,7 +19473,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -17963,7 +19486,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -17975,7 +19501,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -18002,7 +19531,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -18066,7 +19598,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -18076,7 +19611,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -18088,7 +19626,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -18181,7 +19722,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -18191,7 +19735,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -18203,7 +19750,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -18232,7 +19782,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -18288,7 +19841,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -18298,7 +19854,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -18376,7 +19935,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -18386,7 +19948,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -18408,7 +19973,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -18464,7 +20032,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -18474,7 +20045,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -18552,7 +20126,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -18562,7 +20139,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -18584,7 +20164,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -18640,7 +20223,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -18650,7 +20236,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -18728,7 +20317,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -18738,7 +20330,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -18760,7 +20355,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -18816,7 +20414,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -18826,7 +20427,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -18904,7 +20508,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -18914,7 +20521,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -18934,7 +20544,10 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -18986,7 +20599,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -18996,7 +20612,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -19070,7 +20689,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -19080,7 +20702,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -19100,7 +20725,10 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -19152,7 +20780,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -19162,7 +20793,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -19236,7 +20870,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -19246,7 +20883,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -19293,7 +20933,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -19357,7 +21000,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -19367,7 +21013,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -19379,7 +21028,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -19472,7 +21124,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -19482,7 +21137,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -19494,7 +21152,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -19521,7 +21182,10 @@ "score": 10, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -19585,7 +21249,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -19595,7 +21262,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -19607,7 +21277,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -19700,7 +21373,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -19710,7 +21386,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -19722,7 +21401,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -19749,7 +21431,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -19813,7 +21498,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -19823,7 +21511,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -19835,7 +21526,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -19928,7 +21622,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": false, @@ -19938,7 +21635,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "hasReading": true, @@ -19950,7 +21650,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "うちこむ", "pitches": [ @@ -19977,7 +21680,10 @@ "score": 1, "sequence": 4, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -20041,7 +21747,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -20051,7 +21760,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -20063,7 +21775,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -20156,7 +21871,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": false, @@ -20166,7 +21884,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "hasReading": true, @@ -20178,7 +21899,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打ち込む", "reading": "ぶちこむ", "pitches": [ @@ -20207,7 +21931,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -20263,7 +21990,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -20273,7 +22003,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -20351,7 +22084,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -20361,7 +22097,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -20383,7 +22122,10 @@ "score": 10, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -20439,7 +22181,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -20449,7 +22194,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -20527,7 +22275,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -20537,7 +22288,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -20559,7 +22313,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -20615,7 +22372,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -20625,7 +22385,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -20703,7 +22466,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": false, @@ -20713,7 +22479,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "うつ", "hasReading": true, @@ -20735,7 +22504,10 @@ "score": 1, "sequence": 3, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -20791,7 +22563,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -20801,7 +22576,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -20879,7 +22657,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": false, @@ -20889,7 +22670,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打つ", "reading": "ぶつ", "hasReading": true, @@ -20909,7 +22693,10 @@ "score": 1, "sequence": 1, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -20961,7 +22748,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -20971,7 +22761,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -21045,7 +22838,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": false, @@ -21055,7 +22851,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "だ", "hasReading": true, @@ -21075,7 +22874,10 @@ "score": 1, "sequence": 2, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -21127,7 +22929,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -21137,7 +22942,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -21211,7 +23019,10 @@ "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": false, @@ -21221,7 +23032,10 @@ "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "expression": "打", "reading": "ダース", "hasReading": true, @@ -21270,7 +23084,10 @@ "score": 100, "sequence": 6, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -21383,7 +23200,10 @@ "score": 90, "sequence": 7, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -21478,7 +23298,10 @@ "score": 100, "sequence": 6, "dictionary": "Test Dictionary 2", - "dictionaryOrder": 0, + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, "dictionaryNames": [ "Test Dictionary 2" ], @@ -21556,6 +23379,3813 @@ } ] } + }, + { + "comment": "Search merged mode with non-primary definitions", + "func": "findTerms", + "mode": "merge", + "text": "うちこむ", + "options": "default", + "expected": { + "length": 4, + "definitions": [ + { + "type": "termMerged", + "source": "うちこむ", + "rawSource": "うちこむ", + "reasons": [], + "score": 10, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": [ + "打ち込む" + ], + "reading": [ + "うちこむ", + "ぶちこむ" + ], + "expressions": [ + { + "sourceTerm": "うちこむ", + "expression": "打ち込む", + "reading": "うちこむ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag6", + "category": "default", + "notes": "", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag7", + "category": "default", + "notes": "", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 8 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ] + }, + { + "sourceTerm": "うちこむ", + "expression": "打ち込む", + "reading": "ぶちこむ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 9 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ] + } + ], + "definitions": [ + { + "type": "termMergedByGlossary", + "source": "うちこむ", + "rawSource": "うちこむ", + "reasons": [], + "score": 10, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": [ + "打ち込む" + ], + "reading": [ + "うちこむ" + ], + "expressions": [ + { + "sourceTerm": "うちこむ", + "expression": "打ち込む", + "reading": "うちこむ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 8 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ] + } + ], + "glossary": [ + "definition13", + "definition14" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "definitions": [ + { + "type": "term", + "id": 7, + "source": "うちこむ", + "rawSource": "うちこむ", + "sourceTerm": "うちこむ", + "reasons": [], + "score": 10, + "sequence": 4, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": "打ち込む", + "reading": "うちこむ", + "expressions": [ + { + "sourceTerm": "うちこむ", + "expression": "打ち込む", + "reading": "うちこむ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 8 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ] + } + ], + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "glossary": [ + "definition13", + "definition14" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 8 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ], + "sourceTermExactMatchCount": 0 + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 8 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ], + "only": [ + "うちこむ" + ], + "sourceTermExactMatchCount": 0 + }, + { + "type": "termMergedByGlossary", + "source": "うちこむ", + "rawSource": "うちこむ", + "reasons": [], + "score": 10, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": [ + "打ち込む" + ], + "reading": [ + "ぶちこむ" + ], + "expressions": [ + { + "sourceTerm": "うちこむ", + "expression": "打ち込む", + "reading": "ぶちこむ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 9 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ] + } + ], + "glossary": [ + "definition17", + "definition18" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "definitions": [ + { + "type": "term", + "id": 9, + "source": "うちこむ", + "rawSource": "うちこむ", + "sourceTerm": "うちこむ", + "reasons": [], + "score": 10, + "sequence": 4, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": "打ち込む", + "reading": "ぶちこむ", + "expressions": [ + { + "sourceTerm": "うちこむ", + "expression": "打ち込む", + "reading": "ぶちこむ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 9 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ] + } + ], + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "glossary": [ + "definition17", + "definition18" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 9 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ], + "sourceTermExactMatchCount": 0 + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 9 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ], + "only": [ + "ぶちこむ" + ], + "sourceTermExactMatchCount": 0 + }, + { + "type": "termMergedByGlossary", + "source": "うちこむ", + "rawSource": "うちこむ", + "reasons": [], + "score": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": [ + "打ち込む" + ], + "reading": [ + "うちこむ" + ], + "expressions": [ + { + "sourceTerm": "うちこむ", + "expression": "打ち込む", + "reading": "うちこむ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag6", + "category": "default", + "notes": "", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag7", + "category": "default", + "notes": "", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 8 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ] + } + ], + "glossary": [ + "definition15", + "definition16" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "definitions": [ + { + "type": "term", + "id": 8, + "source": "うちこむ", + "rawSource": "うちこむ", + "sourceTerm": "うちこむ", + "reasons": [], + "score": 1, + "sequence": 4, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": "打ち込む", + "reading": "うちこむ", + "expressions": [ + { + "sourceTerm": "うちこむ", + "expression": "打ち込む", + "reading": "うちこむ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag6", + "category": "default", + "notes": "", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag7", + "category": "default", + "notes": "", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 8 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ] + } + ], + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "glossary": [ + "definition15", + "definition16" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termTags": [ + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag6", + "category": "default", + "notes": "", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag7", + "category": "default", + "notes": "", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 8 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ], + "sourceTermExactMatchCount": 0 + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 8 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ], + "only": [ + "うちこむ" + ], + "sourceTermExactMatchCount": 0 + }, + { + "type": "termMergedByGlossary", + "source": "うちこむ", + "rawSource": "うちこむ", + "reasons": [], + "score": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": [ + "打ち込む" + ], + "reading": [ + "ぶちこむ" + ], + "expressions": [ + { + "sourceTerm": "うちこむ", + "expression": "打ち込む", + "reading": "ぶちこむ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 9 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ] + } + ], + "glossary": [ + "definition19", + "definition20" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "definitions": [ + { + "type": "term", + "id": 10, + "source": "うちこむ", + "rawSource": "うちこむ", + "sourceTerm": "うちこむ", + "reasons": [], + "score": 1, + "sequence": 4, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": "打ち込む", + "reading": "ぶちこむ", + "expressions": [ + { + "sourceTerm": "うちこむ", + "expression": "打ち込む", + "reading": "ぶちこむ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 9 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ] + } + ], + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ], + "glossary": [ + "definition19", + "definition20" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 9 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ], + "sourceTermExactMatchCount": 0 + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 9 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ], + "only": [ + "ぶちこむ" + ], + "sourceTermExactMatchCount": 0 + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 2, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 8 + }, + { + "index": 1, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 3, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 9 + } + ], + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "pitches": [ + { + "position": 0, + "tags": [] + }, + { + "position": 3, + "tags": [] + } + ] + } + ], + "sourceTermExactMatchCount": 0 + }, + { + "type": "termMerged", + "source": "うち", + "rawSource": "うち", + "reasons": [ + "masu stem" + ], + "score": 10, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": [ + "打つ" + ], + "reading": [ + "うつ", + "ぶつ" + ], + "expressions": [ + { + "sourceTerm": "うつ", + "expression": "打つ", + "reading": "うつ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "つ", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": true, + "frequency": 6 + } + ], + "pitches": [] + }, + { + "sourceTerm": "うつ", + "expression": "打つ", + "reading": "ぶつ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "つ", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": true, + "frequency": 7 + } + ], + "pitches": [] + } + ], + "definitions": [ + { + "type": "termMergedByGlossary", + "source": "うち", + "rawSource": "うち", + "reasons": [], + "score": 10, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": [ + "打つ" + ], + "reading": [ + "うつ" + ], + "expressions": [ + { + "sourceTerm": "うつ", + "expression": "打つ", + "reading": "うつ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "つ", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": true, + "frequency": 6 + } + ], + "pitches": [] + } + ], + "glossary": [ + "definition5", + "definition6" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "definitions": [ + { + "type": "term", + "id": 3, + "source": "うち", + "rawSource": "うち", + "sourceTerm": "うつ", + "reasons": [ + "masu stem" + ], + "score": 10, + "sequence": 3, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": "打つ", + "reading": "うつ", + "expressions": [ + { + "sourceTerm": "うつ", + "expression": "打つ", + "reading": "うつ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "つ", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": true, + "frequency": 6 + } + ], + "pitches": [] + } + ], + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "つ", + "furigana": "" + } + ], + "glossary": [ + "definition5", + "definition6" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": true, + "frequency": 6 + } + ], + "pitches": [], + "sourceTermExactMatchCount": 0 + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": true, + "frequency": 6 + } + ], + "pitches": [], + "only": [ + "うつ" + ], + "sourceTermExactMatchCount": 0 + }, + { + "type": "termMergedByGlossary", + "source": "うち", + "rawSource": "うち", + "reasons": [], + "score": 10, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": [ + "打つ" + ], + "reading": [ + "ぶつ" + ], + "expressions": [ + { + "sourceTerm": "うつ", + "expression": "打つ", + "reading": "ぶつ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "つ", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": true, + "frequency": 7 + } + ], + "pitches": [] + } + ], + "glossary": [ + "definition9", + "definition10" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "definitions": [ + { + "type": "term", + "id": 5, + "source": "うち", + "rawSource": "うち", + "sourceTerm": "うつ", + "reasons": [], + "score": 10, + "sequence": 3, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": "打つ", + "reading": "ぶつ", + "expressions": [ + { + "sourceTerm": "うつ", + "expression": "打つ", + "reading": "ぶつ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "つ", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": true, + "frequency": 7 + } + ], + "pitches": [] + } + ], + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "つ", + "furigana": "" + } + ], + "glossary": [ + "definition9", + "definition10" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": true, + "frequency": 7 + } + ], + "pitches": [], + "sourceTermExactMatchCount": 0 + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": true, + "frequency": 7 + } + ], + "pitches": [], + "only": [ + "ぶつ" + ], + "sourceTermExactMatchCount": 0 + }, + { + "type": "termMergedByGlossary", + "source": "うち", + "rawSource": "うち", + "reasons": [], + "score": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": [ + "打つ" + ], + "reading": [ + "うつ" + ], + "expressions": [ + { + "sourceTerm": "うつ", + "expression": "打つ", + "reading": "うつ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "つ", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": true, + "frequency": 6 + } + ], + "pitches": [] + } + ], + "glossary": [ + "definition7", + "definition8" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "definitions": [ + { + "type": "term", + "id": 4, + "source": "うち", + "rawSource": "うち", + "sourceTerm": "うつ", + "reasons": [ + "masu stem" + ], + "score": 1, + "sequence": 3, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": "打つ", + "reading": "うつ", + "expressions": [ + { + "sourceTerm": "うつ", + "expression": "打つ", + "reading": "うつ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "つ", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": true, + "frequency": 6 + } + ], + "pitches": [] + } + ], + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "つ", + "furigana": "" + } + ], + "glossary": [ + "definition7", + "definition8" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": true, + "frequency": 6 + } + ], + "pitches": [], + "sourceTermExactMatchCount": 0 + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": true, + "frequency": 6 + } + ], + "pitches": [], + "only": [ + "うつ" + ], + "sourceTermExactMatchCount": 0 + }, + { + "type": "termMergedByGlossary", + "source": "うち", + "rawSource": "うち", + "reasons": [], + "score": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": [ + "打つ" + ], + "reading": [ + "ぶつ" + ], + "expressions": [ + { + "sourceTerm": "うつ", + "expression": "打つ", + "reading": "ぶつ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "つ", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": true, + "frequency": 7 + } + ], + "pitches": [] + } + ], + "glossary": [ + "definition11", + "definition12" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "definitions": [ + { + "type": "term", + "id": 6, + "source": "うち", + "rawSource": "うち", + "sourceTerm": "うつ", + "reasons": [], + "score": 1, + "sequence": 3, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": "打つ", + "reading": "ぶつ", + "expressions": [ + { + "sourceTerm": "うつ", + "expression": "打つ", + "reading": "ぶつ", + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "つ", + "furigana": "" + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termFrequency": "normal", + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": true, + "frequency": 7 + } + ], + "pitches": [] + } + ], + "furiganaSegments": [ + { + "text": "打", + "furigana": "ぶ" + }, + { + "text": "つ", + "furigana": "" + } + ], + "glossary": [ + "definition11", + "definition12" + ], + "definitionTags": [ + { + "name": "tag1", + "category": "category1", + "notes": "tag1 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag2", + "category": "category2", + "notes": "tag2 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "termTags": [ + { + "name": "tag3", + "category": "category3", + "notes": "tag3 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag4", + "category": "category4", + "notes": "tag4 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "tag5", + "category": "category5", + "notes": "tag5 notes", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": true, + "frequency": 7 + } + ], + "pitches": [], + "sourceTermExactMatchCount": 0 + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": true, + "frequency": 7 + } + ], + "pitches": [], + "only": [ + "ぶつ" + ], + "sourceTermExactMatchCount": 0 + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 2, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "うつ", + "hasReading": true, + "frequency": 6 + }, + { + "index": 1, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": false, + "frequency": 2 + }, + { + "index": 3, + "expressionIndex": 1, + "dictionary": "Test Dictionary 2", + "dictionaryOrder": { + "index": 0, + "priority": 0 + }, + "expression": "打つ", + "reading": "ぶつ", + "hasReading": true, + "frequency": 7 + } + ], + "pitches": [], + "sourceTermExactMatchCount": 0 + } + ] + } } ] }
\ No newline at end of file |