forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheLibrary.ru.js
763 lines (723 loc) · 23.7 KB
/
eLibrary.ru.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
{
"translatorID": "587709d3-80c5-467d-9fc8-ed41c31e20cf",
"label": "eLibrary.ru",
"creator": "Avram Lyon",
"target": "^https?://(www\\.)?elibrary\\.ru/",
"minVersion": "2.1",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsbv",
"lastUpdated": "2020-03-09 18:50:52"
}
/*
***** BEGIN LICENSE BLOCK *****
eLibrary.ru Translator
Copyright © 2010-2011 Avram Lyon, [email protected]
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
function detectWeb(doc, url) {
if (url.match(/\/item.asp/)) {
return getDocType(doc);
}
else if (url.match(/\/(query_results|contents|org_items|itembox_items)\.asp/)) {
return "multiple";
}
return false;
}
function doWeb(doc, url) {
var articles = [];
if (detectWeb(doc, url) == "multiple") {
var results = ZU.xpath(doc, '//table[@id="restab"]/tbody/tr[starts-with(@id, "arw")]/td[2]');
// Zotero.debug('results.length: ' + results.length);
var items = {};
for (let i = 0; i < results.length; i++) {
// Zotero.debug('result [' + i + '] text: ' + results[i].textContent);
var title = ZU.xpathText(results[i], './a');
var uri = ZU.xpathText(results[i], ' ./a/@href');
if (!title || !uri) continue;
items[uri] = fixCasing(title);
}
Zotero.selectItems(items, function (items) {
if (!items) {
return;
}
for (let i in items) {
articles.push(i);
}
Zotero.Utilities.processDocuments(articles, scrape);
});
}
else {
scrape(doc, url);
}
}
function fixCasing(string) {
if (string && string == string.toUpperCase()) {
return ZU.capitalizeTitle(string, true);
}
else return string;
}
function getDocType(doc) {
var docType = ZU.xpathText(doc, '//tr/td/text()[contains(., "Тип:")]/following-sibling::*[1]');
var itemType;
switch (docType) {
case "обзорная статья":
case "статья в журнале - научная статья":
case "научная статья":
case "статья в журнале":
case "статья в открытом архиве":
itemType = "journalArticle";
break;
case "статья в сборнике трудов конференции":
itemType = "conferencePaper";
break;
case "учебное пособие":
case "монография":
itemType = "book";
break;
case "публикация в сборнике трудов конференции":
itemType = "conferencePaper";
break;
default:
Zotero.debug("Unknown type: " + docType + ". Using 'journalArticle'");
itemType = "journalArticle";
break;
}
return itemType;
}
function scrape(doc, url) {
var item = new Zotero.Item();
item.itemType = getDocType(doc);
item.title = fixCasing(doc.title);
item.url = url;
var rightPart = doc.getElementById("leftcol").nextSibling;
var centralColumn = ZU.xpath(rightPart, './table/tbody/tr[2]/td[@align="left"]');
var datablock = ZU.xpath(centralColumn, './div[1]');
var authors = ZU.xpath(datablock, './/table[1]//b');
// Zotero.debug('authors.length: ' + authors.length);
for (let i = 0; i < authors.length; i++) {
var dirty = authors[i].textContent;
// Zotero.debug('author[' + i + '] text: ' + dirty);
/* Common author field formats are:
(1) "LAST FIRST PATRONIMIC"
(2) "LAST F. P." || "LAST F.P." || "LAST F.P" || "LAST F."
In all these cases, we put comma after LAST for `ZU.cleanAuthor()` to work.
Other formats are rare, but possible, e.g. "ВАН ДЕ КЕРЧОВЕ Р." == "Van de Kerchove R.".
They go to single-field mode (assuming they got no comma). */
var nameFormat1RE = new ZU.XRegExp("^\\p{Letter}+\\s\\p{Letter}+\\s\\p{Letter}+$");
var nameFormat2RE = new ZU.XRegExp("^\\p{Letter}+\\s\\p{Letter}\\.(\\s?\\p{Letter}\\.?)?$");
var isFormat1 = ZU.XRegExp.test(dirty, nameFormat1RE);
var isFormat2 = ZU.XRegExp.test(dirty, nameFormat2RE);
if (isFormat1 || isFormat2) {
// add comma before the first space
dirty = dirty.replace(/^([^\s]*)(\s)/, '$1, ');
}
var cleaned = ZU.cleanAuthor(dirty, "author", true);
/* Now `cleaned.firstName` is:
(1) "FIRST PATRONIMIC"
(2) "F. P." || "F."
The `fixCasing()` makes 2nd letter lowercase sometimes,
for example, "S. V." -> "S. v.", but "S. K." -> "S. K.".
Thus, we can only apply it to Format1 . */
if (isFormat1) {
// "FIRST PATRONIMIC" -> "First Patronimic"
cleaned.firstName = fixCasing(cleaned.firstName);
}
if (cleaned.firstName === undefined) {
// Unable to parse. Restore punctuation.
cleaned.fieldMode = true;
cleaned.lastName = dirty;
}
cleaned.lastName = fixCasing(cleaned.lastName, true);
// Skip entries with an @ sign-- email addresses slip in otherwise
if (!cleaned.lastName.includes("@")) item.creators.push(cleaned);
}
var mapping = {
Издательство: "publisher",
"Дата депонирования": "date",
"Год издания": "date",
Год: "date",
Том: "volume",
Номер: "issue",
ISSN: "ISSN",
"Число страниц": "pages", // e.g. "83"
Страницы: "pages", // e.g. "10-16"
Язык: "language",
"Место издания": "place"
};
for (let key in mapping) {
var t = ZU.xpathText(datablock, './/tr/td/text()[contains(., "' + key + ':")]/following-sibling::*[1]');
if (t) {
item[mapping[key]] = t;
}
}
/*
// Times-cited in Russian-Science-Citation-Index.
// This value is hardly useful for most users, would just clutter "extra" field.
// Keeping this code just-in-case.
var rsci = ZU.xpathText(doc, '//tr/td/text()[contains(., "Цитирований в РИНЦ")]/following-sibling::*[2]');
Zotero.debug("Russian Science Citation Index: " + rsci);
if (rsci) item.extra = "Цитируемость в РИНЦ: " + rsci;
*/
var journalBlock = ZU.xpath(datablock, './table/tbody[tr[1]/td/font[contains(text(), "ЖУРНАЛ:")]]/tr[2]/td[2]');
if (!item.publicationTitle) item.publicationTitle = ZU.xpathText(journalBlock, ".//a[1]");
item.publicationTitle = fixCasing(item.publicationTitle);
var tags = ZU.xpath(datablock, './table[tbody/tr/td/font[contains(text(), "КЛЮЧЕВЫЕ СЛОВА:")]]//tr[2]/td/a');
for (let j = 0; j < tags.length; j++) {
item.tags.push(fixCasing(tags[j].textContent));
}
item.abstractNote = ZU.xpathText(datablock, './table/tbody/tr[td/font[text() = "АННОТАЦИЯ:"]]/following-sibling::*[1]');
// Language to RFC-4646 code
switch (item.language) {
case "русский":
item.language = "ru";
break;
case "английский":
item.language = "en";
break;
default:
Zotero.debug("Unknown language: " + item.language + " - keeping as-is.");
break;
}
item.DOI = ZU.xpathText(doc, '/html/head/meta[@name="doi"]/@content');
/* var pdf = false;
// Now see if we have a free PDF to download
var pdfImage = doc.evaluate('//a/img[@src="/images/pdf_green.gif"]', doc, null,XPathResult.ANY_TYPE, null).iterateNext();
if (pdfImage) {
// A green PDF is a free one. We need to construct the POST request
var postData = [], postField;
var postNode = doc.evaluate('//form[@name="results"]/input', doc, null,XPathResult.ANY_TYPE, null);
while ((postField = postNode.iterateNext()) !== null) {
postData.push(postField.name + "=" +postField.value);
}
postData = postData.join("&");
Zotero.debug(postData + postNode.iterateNext());
Zotero.Utilities.HTTP.doPost('http://elibrary.ru/full_text.asp', postData, function(text) {
var href = text.match(/http:\/\/elibrary.ru\/download\/.*?\.pdf/)[0];
pdf = {url:href, title:"eLibrary.ru полный текст", mimeType:"application/pdf"};
});
}*/
item.complete();
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://elibrary.ru/org_items.asp?orgsid=3326",
"items": "multiple"
},
{
"type": "web",
"url": "https://elibrary.ru/item.asp?id=9541154",
"items": [
{
"itemType": "journalArticle",
"title": "Иноязычные заимствования в художественной прозе на иврите в XX в",
"creators": [
{
"firstName": "М. В.",
"lastName": "Свет",
"creatorType": "author"
}
],
"date": "2007",
"ISSN": "0320-8095",
"issue": "1",
"language": "ru",
"libraryCatalog": "eLibrary.ru",
"pages": "40-58",
"publicationTitle": "Вестник Московского Университета. Серия 13: Востоковедение",
"url": "https://elibrary.ru/item.asp?id=9541154",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://elibrary.ru/item.asp?id=17339044",
"items": [
{
"itemType": "journalArticle",
"title": "Использование Молекулярно-Генетических Методов Установления Закономерностей Наследования Для Выявления Доноров Значимых Признаков Яблони",
"creators": [
{
"firstName": "Иван Иванович",
"lastName": "Супрун",
"creatorType": "author"
},
{
"firstName": "Елена Владимировна",
"lastName": "Ульяновская",
"creatorType": "author"
},
{
"firstName": "Евгений Николаевич",
"lastName": "Седов",
"creatorType": "author"
},
{
"firstName": "Галина Алексеевна",
"lastName": "Седышева",
"creatorType": "author"
},
{
"firstName": "Зоя Михайловна",
"lastName": "Серова",
"creatorType": "author"
}
],
"date": "2012",
"ISSN": "2219-5335",
"abstractNote": "На основе полученных новых знаний по формированию и проявлению ценных селекционных признаков выделены новые доноры и комплексные доноры значимых признаков яблони.",
"issue": "13 (1)",
"language": "ru",
"libraryCatalog": "eLibrary.ru",
"pages": "1-10",
"publicationTitle": "Плодоводство И Виноградарство Юга России",
"url": "https://elibrary.ru/item.asp?id=17339044",
"attachments": [],
"tags": [
{
"tag": "Apple-Tree"
},
{
"tag": "Immunity"
},
{
"tag": "Scab"
},
{
"tag": "Variety"
},
{
"tag": "Иммунитет"
},
{
"tag": "Парша"
},
{
"tag": "Сорт"
},
{
"tag": "Яблоня"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://elibrary.ru/item.asp?id=21640363",
"items": [
{
"itemType": "journalArticle",
"title": "На пути к верификации C программ. Часть 3. Перевод из языка C-light в язык C-light-kernel и его формальное обоснование",
"creators": [
{
"firstName": "В. А.",
"lastName": "Непомнящий",
"creatorType": "author"
},
{
"firstName": "И. С.",
"lastName": "Ануреев",
"creatorType": "author"
},
{
"firstName": "И. Н.",
"lastName": "Михайлов",
"creatorType": "author"
},
{
"firstName": "А. В.",
"lastName": "Промский",
"creatorType": "author"
}
],
"date": "14.06.2002",
"abstractNote": "Описаны правила перевода из языка C-light в язык C-light-kernel, являющиеся основой двухуровневой схемы верификации C-программ. Для языка C-light предложена модифицированная операционная семантика. Модификация позволяет упростить как описание семантики сложных конструкций языка C-light, так и доказательство непротиворечивости аксиоматической семантики языка C-light-kernel. Определено понятие семантического расширения и проведено формальное обоснование корректности перевода. Предполагается реализовать правила перевода в системе верификации программ.",
"issue": "097",
"language": "ru",
"libraryCatalog": "eLibrary.ru",
"pages": "83",
"url": "https://elibrary.ru/item.asp?id=21640363",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://elibrary.ru/item.asp?id=21665052",
"items": [
{
"itemType": "journalArticle",
"title": "Информационно-поисковая полнотекстовая система \"Боярские списки XVIII века\"",
"creators": [
{
"firstName": "А. В.",
"lastName": "Захаров",
"creatorType": "author"
}
],
"date": "08.04.2005",
"abstractNote": "В полнотекстовой электронной публикации (со статусом препринта), основанной по технологии реляционных баз данных, представлены боярские списки из коллекции документов Российского государственного архива древних актов и научной библиотеки Казанского федерального университета. Публикуемые документы составлялись Разрядным приказом и Сенатом для пофамильного учета думных и московских чинов (\"царедворцев\"). Ключевая археографическая проблема проектирования базы данных состоит в максимально адекватном отображении структуры и текстовых данных источника с возможностью поиска информации по нескольким параметрам. База данных \"Боярские списки XVIII века\" доступна в сети Интернет с 2003 г. Зарегистрирована ФГУП \"Информрегистр\" в 2005 г. Сфера применения: исследования по генеалогии, биографике, археографии, история России, преподавание исторической информатики. К настоящему времени в базе данных размещены полные тексты 14 боярских и чиновных списков 1700-1721 гг.",
"issue": "0220510249",
"language": "ru",
"libraryCatalog": "eLibrary.ru",
"url": "https://elibrary.ru/item.asp?id=21665052",
"attachments": [],
"tags": [
{
"tag": "Археография"
},
{
"tag": "Боярские Списки"
},
{
"tag": "Информационная Система"
},
{
"tag": "Источниковедение"
},
{
"tag": "Московские Чины"
},
{
"tag": "Петр I"
},
{
"tag": "Полнотекстовая База Данных"
},
{
"tag": "Разрядный Приказ"
},
{
"tag": "Царедворцы"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://elibrary.ru/item.asp?id=20028198",
"items": [
{
"itemType": "book",
"title": "Аппарат издания и правила оформления",
"creators": [
{
"firstName": "Людмила Павловна",
"lastName": "Стычишина",
"creatorType": "author"
},
{
"firstName": "А. В.",
"lastName": "Хохлов",
"creatorType": "author"
}
],
"language": "ru",
"libraryCatalog": "eLibrary.ru",
"publisher": "Изд-во Политехнического университета",
"url": "https://elibrary.ru/item.asp?id=20028198",
"attachments": [],
"tags": [
{
"tag": "Аппарат Издания"
},
{
"tag": "Издательское Дело"
},
{
"tag": "Культура. Наука. Просвещение"
},
{
"tag": "Оформление Изданий"
},
{
"tag": "Оформление Книги"
},
{
"tag": "Печать"
},
{
"tag": "Подготовка Рукописи И Графических Материалов К Изданию"
},
{
"tag": "Редакционно-Издательский Процесс"
},
{
"tag": "Российская Федерация"
},
{
"tag": "Теория И Практика Издательского Дела"
},
{
"tag": "Техническое Оформление"
},
{
"tag": "Учебное Пособие Для Высшей Школы"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://elibrary.ru/item.asp?id=38164350",
"items": [
{
"itemType": "journalArticle",
"title": "Графики негладких контактных отображений на группах карно с сублоренцевой структурой",
"creators": [
{
"firstName": "М. Б.",
"lastName": "Карманова",
"creatorType": "author"
}
],
"date": "2019",
"DOI": "10.31857/S0869-56524863275-279",
"ISSN": "0869-5652",
"abstractNote": "Для классов графиков -отображений нильпотентных градуированных групп доказана формула площади на сублоренцевых структурах произвольной глубины с многомерным временем.",
"issue": "3",
"language": "ru",
"libraryCatalog": "eLibrary.ru",
"pages": "275-279",
"publicationTitle": "Доклады Академии Наук",
"url": "https://elibrary.ru/item.asp?id=38164350",
"volume": "486",
"attachments": [],
"tags": [
{
"tag": "Contact Mapping"
},
{
"tag": "Graph-Mapping"
},
{
"tag": "Intrinsic Basis"
},
{
"tag": "Multidimensional Time"
},
{
"tag": "Nilpotent Graded Group"
},
{
"tag": "Sub-Lorentzian Structure"
},
{
"tag": "Surface Area"
},
{
"tag": "Внутренний Базис"
},
{
"tag": "Контактное Отображение"
},
{
"tag": "Многомерное Время"
},
{
"tag": "Нильпотентная Градуированная Группа"
},
{
"tag": "Отображение-График"
},
{
"tag": "Площадь Поверхности"
},
{
"tag": "Сублоренцева Структура"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://elibrary.ru/item.asp?id=30694319",
"items": [
{
"itemType": "conferencePaper",
"title": "Intellectual Differentiation in the Structure of Students' Civil Identity",
"creators": [
{
"firstName": "M. K.",
"lastName": "Akimova",
"creatorType": "author"
},
{
"firstName": "E. I.",
"lastName": "Gorbacheva",
"creatorType": "author"
},
{
"firstName": "S. V.",
"lastName": "Persiyantseva",
"creatorType": "author"
},
{
"firstName": "S. V.",
"lastName": "Yaroshevskaya",
"creatorType": "author"
}
],
"date": "2017",
"DOI": "10.15405/epsbs.2017.12.1",
"language": "en",
"libraryCatalog": "eLibrary.ru",
"pages": "1-7",
"url": "https://elibrary.ru/item.asp?id=30694319",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://elibrary.ru/item.asp?id=18310800",
"items": [
{
"itemType": "journalArticle",
"title": "Обзор И Инвентаризация Археологических Раскопок В Долине Каракол (парк Уч-Энмек). Доклад Бельгийско-Российской Экспедиции В Алтайские Горы (2007-2008)",
"creators": [
{
"firstName": "Й.",
"lastName": "Боургеоис",
"creatorType": "author"
},
{
"firstName": "Щ.",
"lastName": "Гхеыле",
"creatorType": "author"
},
{
"firstName": "Р.",
"lastName": "Гооссенс",
"creatorType": "author"
},
{
"lastName": "Де Щулф А.",
"creatorType": "author",
"fieldMode": true
},
{
"firstName": "Е.",
"lastName": "Дворников",
"creatorType": "author"
},
{
"firstName": "А. В.",
"lastName": "Ебел",
"creatorType": "author"
},
{
"lastName": "Ван Хооф Л.",
"creatorType": "author",
"fieldMode": true
},
{
"firstName": "С.",
"lastName": "Лоуте",
"creatorType": "author"
},
{
"lastName": "Де Лангхе К.",
"creatorType": "author",
"fieldMode": true
},
{
"firstName": "А.",
"lastName": "Малмендиер",
"creatorType": "author"
},
{
"lastName": "Ван Де Керчове Р.",
"creatorType": "author",
"fieldMode": true
},
{
"firstName": "Р.",
"lastName": "Цаппелле",
"creatorType": "author"
},
{
"lastName": "Те Киефте Д.",
"creatorType": "author",
"fieldMode": true
}
],
"date": "2009",
"abstractNote": "О результатах совместной бельгийско-российской археологической экспедиции в Парке Уч-Энмек (Горный Алтай) (2007-2008), занимавшейся изучением могил скифской культуры.",
"issue": "1 (4)",
"language": "ru",
"libraryCatalog": "eLibrary.ru",
"pages": "10-20",
"publicationTitle": "Мир Евразии",
"url": "https://elibrary.ru/item.asp?id=18310800",
"attachments": [],
"tags": [
{
"tag": "Belgian-Russian Expedition"
},
{
"tag": "Karakol"
},
{
"tag": "Scythian Culture"
},
{
"tag": "Uch Enmek Park"
},
{
"tag": "Бельгийско-Русская Экспедиция"
},
{
"tag": "Каракол"
},
{
"tag": "Парк Уч-Энмек"
},
{
"tag": "Скифская Культура"
}
],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/