-
Notifications
You must be signed in to change notification settings - Fork 2
/
anthologieAPI-migrated.sql
2168 lines (1870 loc) · 780 KB
/
anthologieAPI-migrated.sql
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
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.7.0
-- https://www.phpmyadmin.net/
--
-- Hôte : database:3306
-- Généré le : ven. 22 sep. 2017 à 02:34
-- Version du serveur : 5.7.18
-- Version de PHP : 7.0.16
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de données : `anthologieAPI`
--
-- --------------------------------------------------------
--
-- Structure de la table `authors`
--
CREATE TABLE `authors` (
`id_author` int(10) UNSIGNED NOT NULL,
`city_born` int(11) DEFAULT NULL,
`city_died` int(11) DEFAULT NULL,
`id_era` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`born` int(11) DEFAULT NULL,
`born_range` int(11) DEFAULT NULL,
`died` int(11) DEFAULT NULL,
`died_range` int(11) DEFAULT NULL,
`activity_start` int(11) DEFAULT NULL,
`activity_end` int(11) DEFAULT NULL,
`activity_range` int(11) DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `authors`
--
INSERT INTO `authors` (`id_author`, `city_born`, `city_died`, `id_era`, `id_user`, `id_group`, `born`, `born_range`, `died`, `died_range`, `activity_start`, `activity_end`, `activity_range`, `createdAt`, `updatedAt`) VALUES
(1, 3, 4, NULL, 1, NULL, -307, 2, -240, 0, NULL, NULL, NULL, '2017-05-29 09:06:43', '2017-05-29 09:12:31'),
(2, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2017-05-29 09:13:23', '2017-05-29 09:13:50'),
(3, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2017-05-29 09:16:00', '2017-05-29 09:16:00'),
(4, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2017-05-29 09:17:08', '2017-05-29 09:17:25'),
(5, 2, 5, NULL, 1, NULL, -110, 0, -37, 2, NULL, NULL, NULL, '2017-05-29 09:18:39', '2017-05-29 09:21:52'),
(6, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2017-05-29 09:23:08', '2017-05-29 09:23:08'),
(7, 0, 0, NULL, 1, NULL, -335, 5, -260, 0, NULL, NULL, NULL, '2017-05-29 09:24:19', '2017-05-29 09:26:17'),
(8, 6, 0, NULL, 1, NULL, -620, 0, -550, 50, NULL, NULL, NULL, '2017-05-29 09:28:44', '2017-05-29 09:31:33'),
(9, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2017-05-29 09:33:17', '2017-05-29 09:33:38'),
(10, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2017-05-29 09:35:06', '2017-05-29 09:35:23'),
(11, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-15 10:39:56', '2017-09-15 10:42:13'),
(12, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-15 10:40:16', '2017-09-15 10:40:16');
-- --------------------------------------------------------
--
-- Structure de la table `authors_entities__entities_authors`
--
CREATE TABLE `authors_entities__entities_authors` (
`id` int(10) UNSIGNED NOT NULL,
`authors_entities` int(11) DEFAULT NULL,
`entities_authors` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `authors_entities__entities_authors`
--
INSERT INTO `authors_entities__entities_authors` (`id`, `authors_entities`, `entities_authors`) VALUES
(1, 1, 1),
(2, 2, 2),
(3, 4, 5),
(4, 5, 6),
(5, 4, 29),
(9, 11, 8);
-- --------------------------------------------------------
--
-- Structure de la table `authors_images__images_authors`
--
CREATE TABLE `authors_images__images_authors` (
`id` int(10) UNSIGNED NOT NULL,
`authors_images` int(11) DEFAULT NULL,
`images_authors` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `author_authority`
--
CREATE TABLE `author_authority` (
`id_author_authority` int(10) UNSIGNED NOT NULL,
`id_author` int(11) DEFAULT NULL,
`URI` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `author_versions`
--
CREATE TABLE `author_versions` (
`id_author_version` int(10) UNSIGNED NOT NULL,
`id_author` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`id_language` int(11) DEFAULT NULL,
`name` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`about` longtext COLLATE utf8_unicode_ci,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `author_versions`
--
INSERT INTO `author_versions` (`id_author_version`, `id_author`, `id_user`, `id_group`, `id_language`, `name`, `about`, `createdAt`, `updatedAt`) VALUES
(1, 1, 1, NULL, 3, 'Callimachus', NULL, '2017-05-29 09:06:43', '2017-05-29 09:06:43'),
(2, 1, 1, NULL, 4, 'Καλλίμαχος', NULL, '2017-05-29 09:07:08', '2017-05-29 09:07:08'),
(3, 2, 1, NULL, 3, 'Meleager', NULL, '2017-05-29 09:13:23', '2017-05-29 09:13:23'),
(4, 2, 1, NULL, 2, 'Méléagre', NULL, '2017-05-29 09:13:33', '2017-05-29 09:13:33'),
(5, 2, 1, NULL, 4, 'Μελέαγρος', NULL, '2017-05-29 09:13:50', '2017-05-29 09:13:50'),
(6, 3, 1, NULL, 3, 'Constantinus Cephalas', NULL, '2017-05-29 09:16:00', '2017-05-29 09:16:00'),
(7, 4, 1, NULL, 3, 'Antipater of Sidon', NULL, '2017-05-29 09:17:08', '2017-05-29 09:17:08'),
(8, 4, 1, NULL, 4, 'Ἀντίπατρος ὁ Σιδώνιος', NULL, '2017-05-29 09:17:25', '2017-05-29 09:17:25'),
(9, 5, 1, NULL, 3, 'Philodemus of Gadara', NULL, '2017-05-29 09:18:39', '2017-05-29 09:18:39'),
(10, 5, 1, NULL, 4, 'Φιλόδημος ὁ Γαδαρεύς', NULL, '2017-05-29 09:18:58', '2017-05-29 09:18:58'),
(11, 6, 1, NULL, 3, 'Statyllius Flaccus', NULL, '2017-05-29 09:23:08', '2017-05-29 09:23:08'),
(12, 7, 1, NULL, 3, 'Asclepiades of Samos', NULL, '2017-05-29 09:24:19', '2017-05-29 09:24:19'),
(13, 7, 1, NULL, 4, 'Ἀσκληπιάδης ὁ Σάμιος', NULL, '2017-05-29 09:24:36', '2017-05-29 09:24:36'),
(14, 8, 1, NULL, 3, 'Alcaeus of Mytilene', NULL, '2017-05-29 09:28:44', '2017-05-29 09:28:45'),
(15, 8, 1, NULL, 3, 'Ἀλκαῖος ὁ Μυτιληναῖος', NULL, '2017-05-29 09:29:05', '2017-05-29 09:29:05'),
(16, 9, 1, NULL, 3, 'Rufinus', NULL, '2017-05-29 09:33:17', '2017-05-29 09:33:17'),
(17, 9, 1, NULL, 4, 'Ῥουφῖνος', NULL, '2017-05-29 09:33:38', '2017-05-29 09:33:38'),
(18, 10, 1, NULL, 3, 'Marcus Argentarius', NULL, '2017-05-29 09:35:07', '2017-05-29 09:35:07'),
(19, 10, 1, NULL, 1, 'Μάρκος Ἀργεντάριος', NULL, '2017-05-29 09:35:23', '2017-05-29 09:35:23'),
(20, 11, 2, NULL, 1, 'Anonimo', NULL, '2017-09-15 10:39:57', '2017-09-15 10:39:57'),
(21, 12, 2, NULL, 1, 'Anonimo', NULL, '2017-09-15 10:40:16', '2017-09-15 10:40:16'),
(22, 11, 2, NULL, 2, 'Anonyme', NULL, '2017-09-15 10:42:13', '2017-09-15 10:42:13');
-- --------------------------------------------------------
--
-- Structure de la table `books`
--
CREATE TABLE `books` (
`id_book` int(10) UNSIGNED NOT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `books_versions`
--
CREATE TABLE `books_versions` (
`id_book_version` int(10) UNSIGNED NOT NULL,
`id_book` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`id_language` int(11) DEFAULT NULL,
`name` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `cities`
--
CREATE TABLE `cities` (
`id_city` int(10) UNSIGNED NOT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`GPS` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `cities`
--
INSERT INTO `cities` (`id_city`, `id_user`, `id_group`, `GPS`, `createdAt`, `updatedAt`) VALUES
(2, 1, NULL, '32.6544208,35.6878856', '2017-05-29 08:59:52', '2017-05-29 09:02:50'),
(3, 1, NULL, '32.8079925,21.8661611', '2017-05-29 09:08:19', '2017-05-29 09:09:17'),
(4, 1, NULL, '31.2000995,29.9185702', '2017-05-29 09:10:29', '2017-08-15 10:11:04'),
(5, 1, NULL, '40.8059273,14.3468049', '2017-05-29 09:20:44', '2017-05-29 09:21:43'),
(6, 1, NULL, '39.1000356,26.5547483', '2017-05-29 09:30:16', '2017-05-29 09:31:23'),
(7, 2, NULL, '33.560556,35.398056', '2017-09-15 11:40:37', '2017-09-15 16:39:33');
-- --------------------------------------------------------
--
-- Structure de la table `cities_images__images_cities`
--
CREATE TABLE `cities_images__images_cities` (
`id` int(10) UNSIGNED NOT NULL,
`cities_images` int(11) DEFAULT NULL,
`images_cities` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `cities_versions`
--
CREATE TABLE `cities_versions` (
`id_city_version` int(10) UNSIGNED NOT NULL,
`id_city` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`id_language` int(11) DEFAULT NULL,
`name` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`current_name` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` longtext COLLATE utf8_unicode_ci,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `cities_versions`
--
INSERT INTO `cities_versions` (`id_city_version`, `id_city`, `id_user`, `id_group`, `id_language`, `name`, `current_name`, `description`, `createdAt`, `updatedAt`) VALUES
(1, 1, 1, NULL, 2, 'Paris', NULL, NULL, '2017-05-26 19:47:58', '2017-05-26 19:47:58'),
(2, 2, 1, NULL, 3, 'Umm Qais', NULL, NULL, '2017-05-29 08:59:52', '2017-05-29 08:59:52'),
(3, 2, 1, NULL, 8, 'Gadara', NULL, NULL, '2017-05-29 09:01:04', '2017-05-29 09:01:04'),
(4, 2, 1, NULL, 2, 'Umm Qeis', NULL, NULL, '2017-05-29 09:02:18', '2017-05-29 09:02:18'),
(5, 3, 1, NULL, 3, 'Cyrene', NULL, NULL, '2017-05-29 09:08:19', '2017-05-29 09:08:19'),
(6, 3, 1, NULL, 4, 'Κυρήνη Kyrēnē', NULL, NULL, '2017-05-29 09:08:35', '2017-05-29 09:08:35'),
(7, 4, 1, NULL, 3, 'Alexandria', NULL, NULL, '2017-05-29 09:10:29', '2017-05-29 09:10:29'),
(8, 4, 1, NULL, 4, 'Ἀλεξάνδρεια', NULL, NULL, '2017-05-29 09:11:50', '2017-05-29 09:11:50'),
(9, 5, 1, NULL, 1, 'Ercolano', NULL, NULL, '2017-05-29 09:20:44', '2017-05-29 09:20:44'),
(10, 5, 1, NULL, 3, 'Herculaneum', NULL, NULL, '2017-05-29 09:21:00', '2017-05-29 09:21:00'),
(11, 6, 1, NULL, 3, 'Mytilene', NULL, NULL, '2017-05-29 09:30:16', '2017-05-29 09:30:16'),
(12, 6, 1, NULL, 4, 'Μυτιλήνη', NULL, NULL, '2017-05-29 09:30:34', '2017-05-29 09:30:34'),
(13, 4, 3, NULL, 2, 'Alexandrie', NULL, NULL, '2017-08-15 10:10:56', '2017-08-15 10:10:56'),
(14, 7, 2, NULL, 1, 'Sidone', NULL, NULL, '2017-09-15 11:40:37', '2017-09-15 11:40:37'),
(15, 7, 2, NULL, 4, 'Σιδών', NULL, NULL, '2017-09-15 11:41:28', '2017-09-15 11:41:28'),
(16, 7, 2, NULL, 2, 'Sidon', NULL, NULL, '2017-09-15 11:41:38', '2017-09-15 11:41:38');
-- --------------------------------------------------------
--
-- Structure de la table `entities`
--
CREATE TABLE `entities` (
`id_entity` int(10) UNSIGNED NOT NULL,
`id_book` int(11) DEFAULT NULL,
`id_era` int(11) DEFAULT NULL,
`id_genre` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`title` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`date` int(11) DEFAULT NULL,
`date_range` int(11) DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `entities`
--
INSERT INTO `entities` (`id_entity`, `id_book`, `id_era`, `id_genre`, `id_user`, `id_group`, `title`, `date`, `date_range`, `createdAt`, `updatedAt`) VALUES
(1, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.6', NULL, NULL, '2017-05-29 09:36:47', '2017-09-18 13:51:32'),
(2, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 4.1', NULL, NULL, '2017-05-29 09:37:13', '2017-08-15 10:57:22'),
(3, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 14.2', NULL, NULL, '2017-05-29 09:38:02', '2017-05-29 10:02:11'),
(4, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 14.7', NULL, NULL, '2017-05-29 09:40:43', '2017-05-29 10:02:27'),
(5, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.3', NULL, NULL, '2017-05-29 09:42:58', '2017-09-15 11:34:36'),
(6, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.4', NULL, NULL, '2017-05-29 09:52:32', '2017-08-29 13:22:28'),
(7, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.5', NULL, NULL, '2017-05-29 09:52:41', '2017-08-29 13:23:00'),
(8, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.2', NULL, NULL, '2017-05-29 09:52:49', '2017-09-15 11:18:23'),
(9, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.7', NULL, NULL, '2017-05-29 09:52:56', '2017-09-05 09:33:45'),
(10, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.10', NULL, NULL, '2017-05-29 09:53:02', '2017-09-05 09:35:27'),
(11, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.8', NULL, NULL, '2017-05-29 09:53:11', '2017-09-05 09:39:02'),
(12, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.9', NULL, NULL, '2017-05-29 09:53:17', '2017-09-05 10:22:37'),
(13, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.11', NULL, NULL, '2017-05-29 09:53:23', '2017-08-15 10:59:51'),
(14, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.12', NULL, NULL, '2017-05-29 09:53:29', '2017-09-05 09:52:20'),
(15, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.13', NULL, NULL, '2017-05-29 09:53:35', '2017-08-15 11:00:28'),
(16, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.14', NULL, NULL, '2017-05-29 09:53:42', '2017-08-15 11:00:47'),
(17, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.15', NULL, NULL, '2017-05-29 09:53:51', '2017-08-15 11:01:12'),
(18, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.16', NULL, NULL, '2017-05-29 09:53:58', '2017-08-15 11:01:29'),
(19, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 5.18', NULL, NULL, '2017-05-29 09:54:04', '2017-08-15 11:01:44'),
(20, NULL, NULL, NULL, 3, NULL, 'Greek Anthology 5.19', NULL, NULL, '2017-05-31 20:29:59', '2017-08-15 11:02:04'),
(21, NULL, NULL, NULL, 2, NULL, 'Greek Anthology 5.20', NULL, NULL, '2017-08-29 16:08:17', '2017-08-29 16:08:17'),
(22, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 4.2', NULL, NULL, '2017-09-05 10:01:36', '2017-09-05 10:08:29'),
(23, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 4.4', NULL, NULL, '2017-09-05 10:09:15', '2017-09-05 10:16:14'),
(24, NULL, NULL, NULL, 1, NULL, 'Greek Anthology 4.3', NULL, NULL, '2017-09-05 10:10:02', '2017-09-05 10:15:47'),
(25, NULL, NULL, NULL, 5, NULL, 'Greek Anthology 6.2', NULL, NULL, '2017-09-11 10:23:05', '2017-09-11 10:23:05'),
(26, NULL, NULL, NULL, 5, NULL, 'Greek Anthology 6.2', NULL, NULL, '2017-09-11 10:23:05', '2017-09-11 10:23:05'),
(27, NULL, NULL, NULL, 2, NULL, 'Greek Anthology 5.21', NULL, NULL, '2017-09-11 10:24:35', '2017-09-11 10:24:35'),
(28, NULL, NULL, NULL, 5, NULL, 'Greek Anthology 7.1', NULL, NULL, '2017-09-11 10:36:52', '2017-09-11 10:36:53'),
(29, NULL, NULL, NULL, 5, NULL, 'Greek Anthology 7.2', NULL, NULL, '2017-09-11 10:37:37', '2017-09-11 11:07:56'),
(30, NULL, NULL, NULL, 5, NULL, 'Greek Anthology 7.3', NULL, NULL, '2017-09-11 10:37:49', '2017-09-11 10:37:49'),
(31, NULL, NULL, NULL, 44, NULL, 'Philoctète', NULL, NULL, '2017-09-18 12:44:41', '2017-09-18 12:53:07'),
(32, NULL, NULL, NULL, 44, NULL, 'Philoctète 135-218', NULL, NULL, '2017-09-18 13:48:26', '2017-09-18 16:41:04'),
(33, NULL, NULL, NULL, 2, NULL, 'Greek Anthology 5.22', NULL, NULL, '2017-09-18 13:50:26', '2017-09-18 13:50:26'),
(34, NULL, NULL, NULL, 44, NULL, 'Philoctète', NULL, NULL, '2017-09-18 13:55:33', '2017-09-18 13:55:33'),
(35, NULL, NULL, NULL, 2, NULL, 'Greek Anthology 5.1', NULL, NULL, '2017-09-19 14:44:23', '2017-09-19 14:50:30');
-- --------------------------------------------------------
--
-- Structure de la table `entities_drafts`
--
CREATE TABLE `entities_drafts` (
`id_entity_draft` int(10) UNSIGNED NOT NULL,
`id_entity` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`id_language` int(11) DEFAULT NULL,
`text_translated` longtext COLLATE utf8_unicode_ci,
`edition` longtext COLLATE utf8_unicode_ci,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `entities_drafts`
--
INSERT INTO `entities_drafts` (`id_entity_draft`, `id_entity`, `id_user`, `id_group`, `id_language`, `text_translated`, `edition`, `createdAt`, `updatedAt`) VALUES
(1, 1, 1, NULL, 3, 'Just making sure everything is good!\nNice!', NULL, '2017-09-06 11:36:02', '2017-09-06 11:36:08'),
(3, 29, 2, NULL, 1, 'jkkjkj jhjhgjhgjg', NULL, '2017-09-11 11:07:11', '2017-09-11 11:07:22'),
(4, 1, 2, NULL, 1, 'hgfhgf', '', '2017-09-18 13:51:32', '2017-09-18 13:51:32');
-- --------------------------------------------------------
--
-- Structure de la table `entities_id_entity__entities_references`
--
CREATE TABLE `entities_id_entity__entities_references` (
`id` int(10) UNSIGNED NOT NULL,
`entities_references` int(11) DEFAULT NULL,
`entities_id_entity` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `entities_imagesmanuscript__images_manuscripts`
--
CREATE TABLE `entities_imagesmanuscript__images_manuscripts` (
`id` int(10) UNSIGNED NOT NULL,
`entities_imagesManuscript` int(11) DEFAULT NULL,
`images_manuscripts` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `entities_imagesmanuscript__images_manuscripts`
--
INSERT INTO `entities_imagesmanuscript__images_manuscripts` (`id`, `entities_imagesManuscript`, `images_manuscripts`) VALUES
(1, 30, 2),
(2, 8, 3),
(3, 35, 4);
-- --------------------------------------------------------
--
-- Structure de la table `entities_images__images_entities`
--
CREATE TABLE `entities_images__images_entities` (
`id` int(10) UNSIGNED NOT NULL,
`entities_images` int(11) DEFAULT NULL,
`images_entities` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `entities_images__images_entities`
--
INSERT INTO `entities_images__images_entities` (`id`, `entities_images`, `images_entities`) VALUES
(1, 8, 1);
-- --------------------------------------------------------
--
-- Structure de la table `entities_internalref_targets__entities_internalref_sources`
--
CREATE TABLE `entities_internalref_targets__entities_internalref_sources` (
`id` int(10) UNSIGNED NOT NULL,
`entities_internalRef_sources` int(11) DEFAULT NULL,
`entities_internalRef_targets` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `entities_internalref_targets__entities_internalref_sources`
--
INSERT INTO `entities_internalref_targets__entities_internalref_sources` (`id`, `entities_internalRef_sources`, `entities_internalRef_targets`) VALUES
(1, 1, 8);
-- --------------------------------------------------------
--
-- Structure de la table `entities_keywords__keywords_entities`
--
CREATE TABLE `entities_keywords__keywords_entities` (
`id` int(10) UNSIGNED NOT NULL,
`entities_keywords` int(11) DEFAULT NULL,
`keywords_entities` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `entities_keywords__keywords_entities`
--
INSERT INTO `entities_keywords__keywords_entities` (`id`, `entities_keywords`, `keywords_entities`) VALUES
(1, 1, 1),
(2, 1, 3),
(3, 5, 2),
(4, 6, 5),
(5, 6, 6),
(6, 6, 8),
(7, 7, 4),
(8, 7, 7),
(9, 9, 9),
(10, 12, 11),
(11, 14, 10),
(12, 1, 12),
(13, 8, 1),
(14, 8, 13),
(15, 8, 14),
(16, 8, 15),
(17, 8, 16),
(18, 8, 17),
(19, 5, 18),
(20, 5, 19);
-- --------------------------------------------------------
--
-- Structure de la table `entities_notes__notes_entities`
--
CREATE TABLE `entities_notes__notes_entities` (
`id` int(10) UNSIGNED NOT NULL,
`entities_notes` int(11) DEFAULT NULL,
`notes_entities` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `entities_notes__notes_entities`
--
INSERT INTO `entities_notes__notes_entities` (`id`, `entities_notes`, `notes_entities`) VALUES
(3, 1, 3),
(4, 8, 4),
(5, 35, 5);
-- --------------------------------------------------------
--
-- Structure de la table `entities_scholies__scholies_entities`
--
CREATE TABLE `entities_scholies__scholies_entities` (
`id` int(10) UNSIGNED NOT NULL,
`entities_scholies` int(11) DEFAULT NULL,
`scholies_entities` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `entities_scholies__scholies_entities`
--
INSERT INTO `entities_scholies__scholies_entities` (`id`, `entities_scholies`, `scholies_entities`) VALUES
(1, 1, 1),
(2, 8, 2);
-- --------------------------------------------------------
--
-- Structure de la table `entities_versions`
--
CREATE TABLE `entities_versions` (
`id_entity_version` int(10) UNSIGNED NOT NULL,
`id_entity` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`id_language` int(11) DEFAULT NULL,
`text_translated` longtext COLLATE utf8_unicode_ci,
`edition` longtext COLLATE utf8_unicode_ci,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `entities_versions`
--
INSERT INTO `entities_versions` (`id_entity_version`, `id_entity`, `id_user`, `id_group`, `id_language`, `text_translated`, `edition`, `createdAt`, `updatedAt`) VALUES
(1, 1, 1, NULL, 8, 'ὤμοσε Καλλίγνωτος Ἰωνίδι, μήποτε κείνης\nἕξειν μήτε φίλον κρέσσονα μήτε φίλην.\nὤμοσεν: ἀλλὰ λέγουσιν ἀληθέα, τοὺς ἐν ἔρωτι\nὅρκους.μὴ δύνειν οὔατ᾽ ἐς ἀθανάτων.\n\n νῦν δ᾽ ὁ μὲν ἀρσενικῷ θέρεται πυρί: τῆς δὲ ταλαίνης\nνύμφης, ὡς Μεγαρέων, οὐ λόγος οὐδ᾽ ἀριθμός. .', NULL, '2017-05-29 09:58:43', '2017-05-29 09:58:43'),
(2, 1, 1, NULL, 1, 'Callignoto ha giurato a Ionide che mai\namerà qualcuno più di lei - né uomo né donna.\nL’ha giurato, ma è vero quel che dice la gente : i giuramenti in amore\nnon arrivano agli orecchi degli immortali.\nOra il fuoco che lo scalda è un ragazzo : la sua triste\ngiovane sposa, come i megarici, non la calcola più.', NULL, '2017-05-29 09:59:14', '2017-05-29 09:59:14'),
(3, 1, 1, NULL, 1, 'Callignoto giurò a Ionide che non avrebbe mai avuto \nné un amico né un’amica migliore di quella.\nGiurò: ma dicono cose vere, (dicendo) che i giuramenti in amore \nnon entrano nelle orecchie degli immortali.\nMa ora egli è bruciato da un fuoco virile, e della misera fidanzata \nnon (c’è) né stima né considerazione, come dei Megaresi.', NULL, '2017-05-29 09:59:27', '2017-05-29 09:59:27'),
(4, 1, 1, NULL, 1, 'Callignoto giurò a Ionide che non avrebbe mai avuto \nun compagno o una compagna migliore di lei.\nSi dice, però, che i giuramenti d’amore \nnon arrivino alle orecchie degli dei immortali, ed è vero.\nInfatti ora egli arde di passione per un uomo e non ha più \nné stima né considerazione della povera fidanzata, come dei Megaresi.', NULL, '2017-05-29 09:59:42', '2017-05-29 09:59:42'),
(5, 2, 1, NULL, 8, 'Μοῦσα φίλα, τίνι τάνδε φέρεις πάγκαρπον ἀοιδάν;\nἢ τίς ὁ καὶ τεύξας ὑμνοθετᾶν στέφανον;\nἄνυσε μὲν Μελέαγρος, ἀριζάλῳ δὲ Διοκλεῖ\nμναμόσυνον ταύταν ἐξεπόνησε χάριν,\n\n πολλὰ μὲν ἐμπλέξας Ἀνύτης κρίνα, πολλὰ δὲ Μοιροῦς\nλείρια, καὶ Σαπφοῦς βαιὰ μέν, ἀλλὰ ῥόδα:\nνάρκισσόν τε τορῶν Μελανιππίδου ἔγκυον ὕμνων,\nκαὶ νέον οἰνάνθης κλῆμα Σιμωνίδεω:\nσὺν δ᾽ ἀναμὶξ πλέξας μυρόπνουν εὐάνθεμον ἶριν\n\n Νοσσίδος, ἧς δέλτοις κηρὸν ἔτηξεν Ἔρως:\nτῇ δ᾽ ἅμα καὶ σάμψυχον ἀφ᾽ ἡδυπνόοιο Ῥιανοῦ,\nκαὶ γλυκὺν Ἠρίννης παρθενόχρωτα κρόκον,\nἈλκαίου τε λάληθρον ἐν ὑμνοπόλοις ὑάκινθον,\nκαὶ Σαμίου δάφνης κλῶνα μελαμπέταλον\n\n ἐν δὲ Λεωνίδεω θαλεροὺς κισσοῖο κορύμβους,\nΜνασάλκου τε κόμας ὀξυτόρου πίτυος:\nβλαισήν τε πλατάνιστον ἀπέθρισε Παμφίλου οἴμης,\nσύμπλεκτον καρύης ἔρνεσι Παγκράτεος,\n\n Τύμνεὼ τ᾽ εὐπέταλον λεύκην, χλοερόν τε σίσυμβρον\n\n Νικίου, Εὐφήμου τ᾽ ἀμμότροφον πάραλον\nἐν δ᾽ ἄρα Δαμάγητον, ἴον μέλαν, ἡδύ τε μύρτον\nΚαλλιμάχου, στυφελοῦ μεστὸν ἀεὶ μέλιτος,\nλυχνίδα τ᾽ Εὐφορίωνος, ἰδ᾽ ἐν Μούσαις κυκλάμινον,\nὃς Διὸς ἐκ κούρων ἔσχεν ἐπωνυμίην.\n\n τῇσι δ᾽ ἅμ᾽ Ἡγήσιππον ἐνέπλεκε, μαινάδα βότρυν,\nΠέρσου τ᾽ εὐώδη σχοῖνον ἀμησάμενος,\nσὺν δ᾽ ἅμα καὶ γλυκὺ μῆλον ἀπ᾽ ἀκρεμόνων Διοτίμου,\nκαὶ ῥοιῆς ἄνθη πρῶτα Μενεκράτεος,\nσμυρναίους τε κλάδους Νικαινέτου, ἠδὲ Φαέννου\n\n τέρμινθον, βλωθρὴν τ᾽ ἀχράδα Σιμμίεω:\nἐν δὲ καὶ ἐκ λειμῶνος ἀμωμήτοιο σελίνου\nβαιὰ διακνίζων ἄνθεα Παρθενίδος,\nλείψανὰ τ᾽ εὐκαρπεῦντα μελιστάκτων ἀπὸ Μουσέων,\nξανθοὺς ἐκ καλάμης Βακχυλίδεω στάχυας:\n\n ἐν δ᾽ ἄρ᾽ Ἀνακρείοντα, τὸ μὲν γλυκὺ κεῖνο μέλισμα,\nνέκταρος, εἰς δ᾽ ἐλέγους ἄσπορον ἀνθέμιον\nἐν δὲ καὶ ἐκ φορβῆς σκολιότριχος ἄνθος ἀκάνθης\nἈρχιλόχου, μικρὰς στράγγας ἀπ᾽ ὠκεανοῦ:\nτοῖς δ᾽ ἅμ᾽ Ἀλεξάνδροιο νέους ὄρπηκας ἐλαίης,\n\n ἠδὲ Πολυκλείτου πορφυρέην κύανον.\nἐν δ᾽ ἄρ᾽ ἀμάρακον ἧκε, Πολύστρατον, ἄνθος ἀοιδῶν,\nφοίνισσάν τε νέην κύπρον ἀπ᾽ Ἀντιπάτρου:\nκαὶ μὴν καὶ Συρίαν σταχυότριχα θήκατο νάρδον,\nὑμνοθέταν, Ἑρμοῦ δῶρον ἀειδόμενον\n\n ἐν δὲ Ποσείδιππόν τε καὶ Ἡδύλον, ἄγρι᾽ ἀρούρης,\nΣικελίδεὼ τ᾽ ἀνέμοις ἄνθεα φυόμενα.\n\n ναὶ μὴν καὶ χρύσειον ἀεὶ θείοιο Πλάτωνος\nκλῶνα, τὸν ἐξ ἀρετῆς πάντοθι λαμπόμενον\nἄστρων τ᾽ ἴδριν Ἄρατον ὁμοῦ βάλεν, οὐρανομάκεως\n\n φοίνικος κείρας πρωτογόνους ἕλικας,\nλωτὸν τ᾽ εὐχαίτην Χαιρήμονος, ἐν φλογὶ μίξας\nΦαιδίμου, Ἀνταγόρου τ᾽ εὔστροφον ὄμμα βοός,\nτάν τε φιλάκρητον Θεοδωρίδεω νεοθαλῆ\nἕρπυλλον, κυάμων τ᾽ ἄνθεα Φανίεω,\n\n ἄλλων τ᾽ ἔρνεα πολλὰ νεόγραφα: τοῖς δ᾽ ἅμα Μούσης\nκαὶ σφετέρης ἔτι που πρώιμα λευκόια.\nἀλλὰ φίλοις μὲν ἐμοῖσι φέρω χάριν ἔστι δὲ μύσταις\nκοινὸς ὁ τῶν Μουσέων ἡδυεπὴς στέφανος.', NULL, '2017-05-29 10:00:25', '2017-05-29 10:00:25'),
(6, 2, 1, NULL, 7, 'Cara Musa per chi porti questi frutti canori?', NULL, '2017-05-29 10:00:49', '2017-05-29 10:00:49'),
(7, 2, 1, NULL, 7, 'Μοῦσα φίλα, τίνι τάνδε φέρεις πάγκαρπον ἀοιδάν;\nἢ τίς ὁ καὶ τεύξας ὑμνοθετᾶν στέφανον;\nἌνυσε μὲν Μελέαγρος, ἀριζάλῳ δὲ Διοκλεῖ\nμναμόσυνον ταύταν ἐξεπόνησε χάριν:\nπολλὰ μὲν ἐμπλέξας Ἀνύτης κρίνα, πολλὰ δὲ \nΜοιροῦς\nλείρια, καὶ Σαπφοῦς βαιὰ μὲν, ἀλλὰ ῥόδα:\nνάρκισσόν τε τορῶν Μελανιππίδου ἔγκυον ὕμνων,\nκαὶ νέον οἰνάνθης κλῆμα Σιμωνίδεω:\nσὺν δ᾽ ἀναμὶξ πλέξας μυρόπνουν εὐάνθεμον ἶριν\nΝοσσίδος, ἧς δέλτοις κηρὸν ἔτηξεν Ἔρως:\nτῇ δ᾽ ἅμα καὶ σάμψυχον ἀφ᾽ ἡδυπνόοιο Ῥιανοῦ,\nκαὶ γλυκὺν Ἠρίννης παρθενόχρωτα κρόκον,\nἈλκαίου τε λάληθρον ἐν ὑμνοπόλοις ὑάκινθον,\nκαὶ Σαμίου δάφνης κλῶνα μελαμπέταλον:\nἐν δὲ Λεωνίδεω θαλεροὺς κισσοῖο κορύμβους,\nΜνασάλκου τεκόμας ὀξυτόρου πίτυος:\nβλαισήν τε πλατάνιστον ἀπέθρισε Παμφίλου οἴνης,\nσύμπλεκτον καρύης ἔρνεσι Παγκράτεος,\nΤύμνεὼ τ᾽ εὐπέταλον λεύκην, χλοερόν τε σίσυμβρον\nΝικίου, Εὐφήμου τ᾽ ἀμμότροφον πάραλον:\nἐν δ᾽ ἄρα Δαμαγήτου, ἴον μέλαν, ἡδύ τε μύρτον\nΚαλλιμάχου, στυφελοῦ μεστὸν ἀεὶ μέλιτος, \nλυχνίδα τ᾽ Εὐφορίωνος, ἰδ᾽ ἐν Μούσησιν ἄμωμον,\nὃς Διὸς ἐκ κούρων ἔσχεν ἐπωνυμίην.\nΤῇσι δ᾽ ἅμ᾽ Ἡγησίππου νέπλεκε μαινάδα βότρυν, \nΠέρσου τ᾽ εὐώδη σχοῖνον ἀμησάμενος,\nσὺν δ᾽ ἅμα καὶ γλυκὺμηλον ἀπ᾽ ἀκρεμόνων Διοτίμου, \nκαὶ ῥοιῆς ἄνθη πρῶτα Μενεκράτεος, \nμυρραίους τε κλάδους Νικαινέτου, ἠδὲ Φαέννου\nτέρμινθον, βλωθρὴν τ᾽ ἀχράδα Σιμίεω:\nἐν δὲ καὶ ἐκ λειμῶνος ἀμωμήτοιο σέλινα,\nβαιὰ διακνίζων ἄνθεα, Παρθενίδος,\nλείψανὰ τ᾽ εὐκαρπεῦντα μελιστάκτων ἀπὸ Μουσέων,\nξανθοὺς ἐκ καλάμης Βακχυλίδεω στάχυας:\nἐν δ᾽ ἄρ᾽ Ἀνακρείοντα, τὸ μὲν γλυκὺ κεῖνο μέλισμα\nνέκταρος, ἐν δ᾽ ἐλέγους ἄσπορον ἀνθέμιον:\nἐν δὲ καὶ ἐκ φορβῆς σκολιότριχος ἄνθος ἀκάνθης \nἈρχιλόχου μικρὰς στράγγας ἀπ᾽ ὠκεανοῦ \nτοῖς δ᾽ ἅμ᾽ Ἀλεξάνδροιο νέους ὄρπηκας ἐλαίης\nἠδὲ Πολυκλείτου πορφυρέoν κύαmον. \nἐν δ᾽ ἄρ᾽ ἀμάρακον ἧκε Πολuστραvτοu, ἄνθος ἀοιδῶν, \nφοίνισσάν τε νέην κύπρον ἀπ᾽ Ἀντιπάτρου:\nναὶ μὴν καὶ Συρίαν σταχυότριχα θήκατο νάρδον\nὑμνοθέταν Ἑρμοῦ δῶρον ἀειδόμενον. \nEν δὲ Ποσείδιππόν τε καὶ Ἡδύλον ἄγρι᾽ ἀρούρης, \nΣικελίδεὼ τ᾽ ἀνέμοις ἄνθεα φυόμενα:\nναὶ μὴν καὶ χρύσειον ἀεὶ θείοιο Πλάτωνος\nκλῶνα, τὸν ἐξ ἀρετῆς πάντοθι λαμπόμενον. \nἌστρων τ᾽ ἴδριν Ἄρατον ὁμοῦ βάλεν, οὐρανομάκευς\nφοίνικος κείρας πρωτογόνους ἕλικας,\nλωτὸν τ᾽ εὐχαίτην Χαιρήμονος, ἐν φλογὶ μίξας\nΦαιδίμου, Ἀνταγόρου τ᾽ εὔστροφον ὄμμα βοός,\nτάν τε φιλάκρητον Θεοδωρίδεω νεοθαλῆ\nἕρπυλλον, κυάνων τ᾽ ἄνθεα Φανίεω,\nἄλλων τ᾽ ἔρνεα πολλὰ νεόγραφα: τοῖς δ᾽ ἅμα Μούσης\nκαὶ σφετέρης ἔτι που πρώιμα λευκόια.\nἈλλὰ φίλοις μὲν ἐμοῖσι φέρω χάριν: ἔστι δὲ μύσταις\nκοινὸς ὁ τῶν Μουσέων ἡδυεπὴς στέφανος.', NULL, '2017-05-29 10:01:09', '2017-05-29 10:01:09'),
(8, 2, 1, NULL, 1, 'Musa amata, a chi porti questo canto di frutti?\nChi intrecciò questa corona di poeti?\nLa realizzò Meleagro: compose questo dono come \nricordo per il celebre Diocle;\nunì tanti gigli di Anite, tanti narcisi di Mero\ne pochi fiori di Saffo, ma erano rose;\nun narciso di Melanippide, pieno di canti acuti, \ne un ramo giovane della infiorescenza della vite di Simonide;\nintrecciò contemporaneamente in modo confuso l’iris dal fiore profumato \ndi Nosside, sulle cui tavolette Amore sciolse la cera;\ninsieme a lei la maggiorana lontana dal dolce Riano,\ne il dolce zafferano dal colore verginale d’Erinna,\ne il giacinto d’Alceo rinomato tra i poeti, e il fascio d’alloro di Samio dalle foglie scure;\ne di Leonida le sommità fiorenti dell’edera,\ne di Mnasalce la chioma di pino pungente;\ntagliò i rami del contorto platano del canto di Panfilo,\ne intrecciò in ghirlande il noce di Pancrate, \nil pioppo frondoso di Timne, la verdeggiante menta \ndi Nicia, di Eufemo la pianta che cresce nella sabbia vicino la costa;\npoi ancora di Damageto, la scura violetta, e il dolce mirto \ndi Callimaco, sempre pieno di aspro miele, \ne d’Euforione la licnide, il cardamomo per le Muse,\nche prese il nome dai giovani fanciulli di Zeus.\nDunque aggiungeva a questi di Egesippo il grappolo d’uva furente, \ndopo aver raccolto anche un giunco profumato di Perse,\ncon una dolce mela di Diotimo\ndai rami e prima ancora fiori di melograno di Menecrate,\nrami di mirra di Niceneto, un pistacchio \ndi Foenno e un alto pero di Simia;\nraccogliendo inoltre dal prato perfetto \nun po’ di sedano e fiori di Partenide, \ne spighe dorate dalla paglia di Bacchilide,\nreliquie fiorenti di dolcissime Muse:\nE dunque per Anacreonte, quel famoso dolce canto,\ndi miele, fiore sterile di elegie\nnonché fiore d’acanto dalla chioma ricciuta, formato dall’insegnamento\ndi Archiloco, scelse piccole gocce dal grande Oceano:\ninvece per Alessandro acerbi ramoscelli d’ulivo,\ne per Policlito un lapislazzulo di porpora.\nPer Polistrato, invece, trovò una maggiorana, fiore aedo,\ne per Antipatro una giovane alcanna fenicia:\ne pose anche un nardo di Siria coronato di spighe,\npoeta lirico, celebrato dono di Ermes,\nper Edilo e Posidippo scelse l’erbetta del campo,\nfiori generati dalle correnti del Sicelide.\nSicuramente anche del sempre divino Platone \nmise un ramo dorato che risplendeva di virtù. \nInsieme, sistemò anche Arato, esperto di stelle, \ntagliando i viticci appena nati di una palma altissima, \ne mise anche il frondoso loto di Cherèmone, dopo aver finito \ndi mescolare nella fiamma di Fedimo l’occhio girevole di bue di Antagora,\nil fresco serpillo amante del vino di Teodorida,\nun fiore di fiordalisi di Fania, e molti frutti già scritti di altri personaggi:\na questi, inoltre, aggiunse, se non erro, \ngarofani di stagione della loro Musa.\nRingrazio i miei amici, ma la soave corona \ndelle Muse è di comune possesso degli iniziati.', NULL, '2017-05-29 10:01:33', '2017-05-29 10:01:33'),
(9, 2, 1, NULL, 1, 'Musa amata, a chi porti questo canto di frutti?\nChi intrecciò questa corona di poeti?', NULL, '2017-05-29 10:01:44', '2017-05-29 10:01:44'),
(10, 3, 1, NULL, 8, ' Παλλὰς ἐγὼ χρυσῆ σφυρήλατος: αὐτὰρ ὁ χρυσὸς\nαἰζηῶν πέλεται δῶρον ἀοιδοπόλων.\nἥμισυ μὲν χρυσοῖο Χαρίσιος, ὀγδοάτην δὲ\nΘέσπις, καὶ δεκάτην μοῖραν ἔδωκε Σόλων,\n\n αὐτὰρ ἐεικοστὴν Θεμίσων τὰ δὲ λοιπὰ τάλαντα\nἐννέα, καὶ τέχνη δῶρον Ἀριστοδίκου.', NULL, '2017-05-29 10:02:11', '2017-05-29 10:02:11'),
(11, 4, 1, NULL, 8, 'χάλκεός εἰμι λέων κρουνοὶ δέ μοι ὄμματα δοιά,\nκαὶ στόμα, καὶ δὲ θέναρ δεξιτεροῖο ποδός.\nπλήθει δὲ κρητῆρα δύ᾽ ἤμασι δεξιὸν ὄμμα,\nκαὶ λαιὸν τρισσοῖς, καὶ πισύροισι θέναρ:\n\n ἄρκιον ἓξ ὥραις πλῆσαι στόμα: σὺν δ᾽ ἅμα πάντα,\nκαὶ στόμα καὶ γλῆναι καὶ θέναρ, εἰπὲ πόσον.', NULL, '2017-05-29 10:02:27', '2017-05-29 10:02:27'),
(12, 5, 1, NULL, 8, ' ὄρθρος ἔβη, Χρύσιλλα, πάλαι δ᾽ ἠῷος ἀλέκτωρ\nκηρύσσων φθονερὴν Ἠριγένειαν ἄγει.\nὀρνίθων ἔρροις φθονερώτατος, ὅς με διώκεις\nοἴκοθεν εἰς πολλοὺς ἠιθέων ὀάρους.\n\n γηράσκεις, Τιθωνέ: τί γὰρ σὴν εὐνέτιν Ἠῶ\nοὕτως ὀρθριδίην ἤλασας ἐκ λεχέων;', NULL, '2017-05-29 10:02:49', '2017-05-29 10:02:49'),
(13, 5, 1, NULL, 1, 'L’alba è andata, Crisilla, e il gallo del mattino da molto tempo\nporta cantando Erigenia maligna.\nVa’ in malora, (tu che sei) il più invidioso degli uccelli, che mi spingi\nfuori dalla casa verso molte chiacchiere di giovani.\nStai invecchiando, Titone: perché infatti così di primo mattino \nscacciasti dal letto la tua amante Aurora?', NULL, '2017-05-29 10:03:09', '2017-05-29 10:03:09'),
(14, 5, 1, NULL, 1, 'L’alba è giunta, Crisilla: il canto del gallo mattutino \nda sempre annuncia l’arrivo di Erigenia maligna. \nVa’ in malora, tu che tra gli uccelli sei il più invidioso!\nMi spingi fuori di casa a perdermi in chiacchiere tra giovani!\nStai invecchiando, Titone: altrimenti perché avresti cacciato \ncosì presto la tua amante Aurora dal letto?', NULL, '2017-05-29 10:03:23', '2017-05-29 10:03:23'),
(15, 6, 1, NULL, 8, 'τὸν σιγῶντα, Φιλαινί, συνίστορα τῶν ἀλαλήτων\nλύχνον ἐλαιηρῆς ἐκμεθύσασα δρόσου,\nἔξιθι: μαρτυρίην γὰρ Ἔρως μόνος οὐκ ἐφίλησεν\nἔμπνουν καὶ πηκτὴν κλεῖε, Φιλαινί, θύρην.\n\n καὶ σύ, φίλη Ξανθώ, με: σὺ δ᾽, ὦ φιλεράστρια κοίτη,\nἤδη τῆς Παφίης ἴσθι τὰ λειπόμενα.', NULL, '2017-05-29 10:03:48', '2017-05-29 10:03:48'),
(16, 6, 1, NULL, 1, 'O Filènide, esci, dopo aver inzuppato d’olio d’oliva\nla lucerna che tace, testimone delle cose indicibili;\ninfatti Eros solo non apprezzò la testimonianza viva;\no Filènide, chiudi la solida porta.\nE tu, Xantò, baciami; e tu, o letto d’amore,\noramai sappi le cose che rimangono di Afrodite.', NULL, '2017-05-29 10:03:58', '2017-05-29 10:03:58'),
(17, 6, 1, NULL, 1, 'Vattene via e chiudi la porta, Filènide, dopo aver riempito d’olio\nla lanterna, testimone muta di segreti indicibili:\ninfatti, solamente Eros non ha mai gradito chi li rivela.\nE tu, Xantò, baciami; mentre per te, mio letto amante di amanti, \nè tempo di conoscere ciò che rimane da scoprire dell’amore.', NULL, '2017-05-29 10:04:09', '2017-05-29 10:04:09'),
(18, 7, 1, NULL, 8, 'ἀργύρεον νυχίων με συνίστορα πιστὸν ἐρώτων\nοὐ πιστῇ λύχνον Φλάκκος ἔδωκε Νάπῃ,\nἧς παρὰ νῦν λεχέεσσι μαραίνομαι, εἰς ἐπιόρκου\nπαντοπαθῆ κούρης αἴσχεα δερκόμενος.\n\n Φλάκκε, σὲ δ᾽ ἄγρυπνον χαλεπαὶ τείρουσι μέριμναι:\nἄμφω δ᾽ ἀλλήλων ἄνδιχα καιόμεθα.', NULL, '2017-05-29 10:04:38', '2017-05-29 10:04:38'),
(19, 7, 1, NULL, 1, 'Flacco donò me, (che sono) un lume d’argento,\naffidabile testimone d’amori notturni, \nall’inaffidabile Nape, presso il letto della quale ora mi consumo, \nvedendo tutte le esperienze vergognose della fanciulla traditrice.\nFlacco, penosi affanni logorano te, insonne:\ned entrambi bruciamo l’uno senza l’altro.', NULL, '2017-05-29 10:05:17', '2017-05-29 10:05:17'),
(20, 7, 1, NULL, 1, 'Io, lume argenteo, d’amori notturni testimone fidato,\nfui dato in dono all’infida Nape, e presso il talamo di lei, ora,\nmi consumo assistendo alle relazioni vergognose\nd’ogni sorta della fanciulla spergiura.\nO Flacco, anche tu, insonne, sei logorato da penosi affanni:\nl’uno senza l’altro, entrambi, bruciamo.', NULL, '2017-05-29 10:05:32', '2017-05-29 10:05:32'),
(21, 8, 1, NULL, 8, ' τὴν καταφλεξίπολιν Σθενελαΐδα, τὴν βαρύμισθον,\nτὴν τοῖς βουλομένοις χρυσὸν ἐρευγομένην\nγυμνήν μοι διὰ νυκτὸς ὅλης παρέκλινεν ὄνειρος\nἄχρι φίλης ἠοῦς προῖκα χαριζομένην.\n\n οὐκέτι γουνάσομαι τὴν βάρβαρον, οὐδ᾽ ἐπ᾽ ἐμαυτῷ\nκλαύσομαι, ὕπνον ἔχων κεῖνα χαριζόμενον.', NULL, '2017-05-29 10:06:24', '2017-05-29 10:06:24'),
(22, 9, 1, NULL, 8, ' λύχνε, σὲ γὰρ παρεοῦσα τρὶς ὤμοσεν Ἡράκλεια\nἥξειν, κοὐχ ἥκει: λύχνε, σὺ δ᾽, εἰ θεὸς εἶ,\n\n τὴν δολίην ἀπάμυνον ὅταν φίλον ἔνδον ἔχουσα\nπαίζῃ, ἀποσβεσθεὶς μηκέτι φῶς πάρεχε.', NULL, '2017-05-29 10:06:41', '2017-05-29 10:06:41'),
(23, 9, 1, NULL, 1, 'O lume, Eraclea, mentre era qui, giurò infatti tre volte su di te\nche sarebbe venuta, e non è venuta; tu dunque, lume, se sei un dio,\npunisci quell’infida: qualora, avendo un amante in casa,\nsi diverta, essendoti spento, non fornire più luce.', NULL, '2017-05-29 10:06:55', '2017-05-29 10:06:55'),
(24, 9, 1, NULL, 1, 'Mentre era qui, Eraclea giurò tre volte su di te, lume,\nche sarebbe tornata, ma non si è fatta viva; lume, dunque, se davvero sei un dio,\nvendicati di quell’infida: si sta divertendo tra le braccia di un amante?\nSpegniti e non far più luce.', NULL, '2017-05-29 10:07:03', '2017-05-29 10:07:03'),
(25, 10, 1, NULL, 8, ' ἐχθαίρω τὸν Ἔρωτα: τί γὰρ βαρὺς οὐκ ἐπὶ θῆρας\nὄρνυται, ἀλλ᾽ ἐπ᾽ ἐμὴν ἰοβολεῖ κραδίην;\nτί πλέον, εἰ θεὸς ἄνδρα καταφλέγεί; ἢ τί τὸ σεμνὸν\nδῃώσας ἀπ᾽ ἐμῆς ἆθλον ἔχει κεφαλῆς;', NULL, '2017-05-29 10:07:33', '2017-05-29 10:07:33'),
(28, 11, 1, NULL, 8, ' νὺξ ἱερὴ καὶ λύχνε, συνίστορας οὔτινας ἄλλους\nὅρκοις, ἀλλ᾽ ὑμέας, εἱλόμεθ᾽ ἀμφότεροι\nχὠ μὲν ἐμὲ στέρξειν, κεῖνον δ᾽ ἐγὼ οὔ ποτε λείψειν\nὠμόσαμεν κοινὴν δ᾽ εἴχετε μαρτυρίην.\n\n νῦν δ᾽ ὁ μὲν μὲν ὅρκια φησιν ἐν ὕδατι κεῖνα φέρεσθαι,\nλύχνε, σὺ δ᾽ ἐν κόλποις αὐτὸν ὁρᾷς ἑτέρων.', NULL, '2017-05-29 10:09:19', '2017-05-29 10:09:19'),
(29, 11, 1, NULL, 1, 'Notte divina e lucerna, entrambi scegliemmo, come testimoni di giuramento, nessun altro se non voi, noi giurammo egli di amarmi e io che non avrei mai lasciato quello; e voi avevate una prova comune. Ora egli dice che questi giuramenti sono nell’acqua, lucerna, e tu lo vedi tra le braccia di altre.', NULL, '2017-05-29 10:09:28', '2017-05-29 10:09:28'),
(30, 11, 1, NULL, 1, 'Notte divina e lucerna, solo voi e nessun altro scegliemmo come complici delle nostre promesse. Lui giurò che mi avrebbe amata e io che non l’avrei mai lasciato; voi due eravate testimoni dei nostri giuramenti. Ora (egli) dice che quelle promesse scorrono come acqua, lucerna, tu lo vedi tra le braccia di altre.', NULL, '2017-05-29 10:09:36', '2017-05-29 10:09:36'),
(31, 12, 1, NULL, 1, 'Ῥουφῖνος τῇ μῇ γλυκερωτάτῃ Ἐλπίδι πολλὰ\nχαίρειν, εἰ χαίρειν χωρὶς ἐμοῦ δύναται.\nοὐκέτι βαστάζω, μὰ τὰ ς1᾽ ὄμματα, τὴν φιλέρημον\nκαὶ τὴν μουνολεχῆ σεῖο διαζυγίην\n\n ἀλλ᾽ αἰεὶ δακρύοισι πεφυρμένος ἢ πὶ Κορησσὸν\nἔρχομαι ἢ μεγάλης νηὸν ἐς Ἀρτέμιδος.\nαὔριον ἀλλὰ πάτρη με δεδέξεται: ἐς δὲ σὸν ὄμμα\nπτήσομαι, ἐρρῶσθαι μυρία ς1᾽ εὐχόμενος.', NULL, '2017-05-29 10:09:53', '2017-05-29 10:09:53'),
(32, 13, 1, NULL, 8, 'εἰ τοὺς ἐν πελάγει σῴζεις, Κύπρι, κἀμὲ τὸν ἐν γᾷ\nναυαγόν, φιλίη, σῶσον ἀπολλύμενον.', NULL, '2017-05-29 10:10:10', '2017-05-29 10:10:10'),
(33, 14, 1, NULL, 8, ' λουσάμενοι, Προδίκη, πυκασώμεθα, καὶ τὸν ἄκρατον \nἕλκωμεν, κύλικας μείζονας αἰρόμενοι.\nβαιὸς ὁ χαιρόντων ἐστὶν βίος: εἶτα τὰ λοιπὰ\nγῆρας κωλύσει, καὶ τὸ τέλος θάνατος.', NULL, '2017-05-29 10:10:26', '2017-05-29 10:10:26'),
(34, 15, 1, NULL, 8, 'ἑξήκοντα τελεῖ Χαριτὼ λυκαβαντίδας ὥρας,\nἀλλ᾽ ἔτι κυανέων σύρμα μένει πλοκάμων,\nκἠν στέρνοις ἔτι κεῖνα τὰ λύγδινα κώνια μαστῶν\nἕστηκεν, μίτρης γυμνὰ περιδρομάδος,\n\n καὶ χρὼς ἀρρυτίδωτος ἔτ᾽ ἀμβροσίην, ἔτι πειθὼ\nπᾶσαν, ἔτι στάζει μυριάδας χαρίτων.\nἀλλὰ πόθους ὀργῶντας ὅσοι μὴ φεύγετ᾽ ἐρασταί,\nδεῦρ᾽ ἴτε, τῆς ἐτέων ληθόμενοι δεκάδος.', NULL, '2017-05-29 10:10:46', '2017-05-29 10:10:46'),
(35, 16, 1, NULL, 8, 'Εὐρώπης τὸ φίλημα, καὶ ἢν ἄχρι χείλεος ἔλθῃ,\nἡδύ γε, κἂν ψαύσῃ μοῦνον ἄκρου στόματος:\nψαύει δ᾽ οὐκ ἄκροις τοῖς χείλεσιν, ἀλλ᾽ ἐρίσασα\nτὸ στόμα τὴν ψυχὴν ἐξ ὀνύχων ἀνάγει.', NULL, '2017-05-29 10:11:04', '2017-05-29 10:11:04'),
(36, 17, 1, NULL, 1, 'ποῦ νῦν Πραξιτέλης; ποῦ δ᾽ αἱ χέρες αἱ Πολυκλείτου,\nαἱ ταῖς πρόσθε τέχναις πνεῦμα χαριζόμεναι ;\nτίς πλοκάμους Μελίτης εὐώδεας, ἢ πυρόεντα\nὄμματα καὶ δειρῆς φέγγος ἀποπλάσεται;\n\n ποῦ πλάσται; ποῦ δ᾽ εἰσὶ λιθοξόοι; ἔπρεπε τοίῃ\nμορφῇ νηὸν ἔχειν, ὡς μακάρων ξοάνῳ.', NULL, '2017-05-29 10:11:16', '2017-05-29 10:11:16'),
(37, 18, 1, NULL, 8, 'μήνη χρυσόκερως, δέρκευ τάδε, καὶ περιλαμπεῖς\nἀστέρες, οὓς κόλποις Ὠκεανὸς δέχεται,\nὥς με μόνον προλιποῦσα μυρόπνοος ᾤχετ᾽ Ἀρίστη:\nἑκταίην δ᾽ εὑρεῖν τὴν μάγον οὐ δύναμαι.\n\n ἀλλ᾽ ἔμπης αὐτὴν ζωγρήσομεν, ἢν ἐπιπέμψω\nΚύπριδος ἰχνευτὰς ἀργυρέους σκύλακας.', NULL, '2017-05-29 10:11:32', '2017-05-29 10:11:32'),
(38, 19, 1, NULL, 8, ' μᾶλλον τῶν σοβαρῶν τὰς δουλίδας ἐκλεγόμεσθα,\nοἱ μὴ τοῖς σπαταλοῖς κλέμμασι τερπόμενοι.\nταῖς μὲν χρὼς ἀπόδωδε μύρου, σοβαρόν τε φρύαγμα,\nκαὶ μέχρι † κινδύνου ἑσπομένη σύνοδος:\n\n ταῖς δὲ χάρις καὶ χρὼς ἴδιος, καὶ λέκτρον ἑτοῖμον,\nδώροις ἐκ σπατάλης οὐκ † ἀλεγιζόμενον.\nμιμοῦμαι Πύρρον τὸν Ἀχιλλέος, ὃς προέκρινεν\nἙρμιόνης ἀλόχου τὴν λάτριν Ἀνδρομάχην.', NULL, '2017-05-29 10:11:48', '2017-05-29 10:11:48'),
(40, 10, 41, NULL, 1, 'Io odio Eros: perché infatti non si avventa violento sulle fiere,\nma lancia dardi contro il mio cuore?\nChe vantaggio c’è, se un dio brucia un uomo? Oppure, quale gloria\ndopo avermi ucciso ottiene in premio dalla mia testa?', NULL, '2017-09-05 09:32:41', '2017-09-05 09:32:41'),
(41, 9, 41, NULL, 9, 'λύχνε, σὲ γὰρ παρεοῦσα τρὶς ὤμοσεν Ἡράκλεια\nἥξειν, κοὐχ ἥκει• λύχνε, σὺ δ᾽, εἰ θεὸς εἶ,\nτὴν δολίην ἀπάμυνον• ὅταν φίλον ἔνδον ἔχουσα\nπαίζῃ, ἀποσβεσθεὶς μηκέτι φῶς πάρεχε.', NULL, '2017-09-05 09:33:45', '2017-09-05 09:33:45'),
(42, 10, 41, NULL, 1, 'Odio Eros: perché mai non si avventa violento sulle fiere,\nma scocca dardi contro il mio cuore? \nSe un dio con il suo fuoco fa ardere un uomo, quale vantaggio ricava per sè? \nO quale gloria ottiene in premio dalla mia testa dopo avermi tolto il respiro?', NULL, '2017-09-05 09:35:27', '2017-09-05 09:35:27'),
(43, 11, 41, NULL, 9, 'νὺξ ἱερὴ καὶ λύχνε, συνίστορας οὔτινας ἄλλους\nὅρκοις, ἀλλ᾽ ὑμέας, εἱλόμεθ᾽ ἀμφότεροι\nχὠ μὲν ἐμὲ στέρξειν, κεῖνον δ᾽ ἐγὼ οὔ ποτε λείψειν\nὠμόσαμεν κοινὴν δ᾽ εἴχετε μαρτυρίην.\nνῦν δ᾽ ὁ μὲν μὲν ὅρκια φησιν ἐν ὕδατι κεῖνα φέρεσθαι,\nλύχνε, σὺ δ᾽ ἐν κόλποις αὐτὸν ὁρᾷς ἑτέρων.', NULL, '2017-09-05 09:39:02', '2017-09-05 09:39:02'),
(44, 14, 43, NULL, 1, 'Dopo esserci bagnati, Prodice, cingiamoci il capo di fiori\ne beviamo il vino prendendo coppe più grandi.\nLa vita di coloro che gioiscono è breve; in seguito \nvecchiaia impedirà ciò che resta, e infine la morte', NULL, '2017-09-05 09:39:55', '2017-09-05 09:39:55'),
(45, 12, 41, NULL, 1, 'Io, Rufino, alla mia dolcissima Speranza (auguro di) gioire \nmolto, se può gioire senza di me.\nNon reggo più, per i tuoi occhi, la separazione \nda te, che porta solitudine e dorme sola.\nMa sempre inondato di lacrime vado \no a Coresso o al tempio della grande Artemide.\nMa domani la patria mi accoglierà; e volerò verso \nil tuo volto, augurandoti mille volte di star bene.', NULL, '2017-09-05 09:50:55', '2017-09-05 09:50:55'),
(46, 14, 43, NULL, 1, 'Dopo il bagno, Prodice, incoroniamoci di fiori \ne beviamo il vino da coppe più grandi.\nBreve è la vita di chi gioisce; poi \nla vecchiaia ostacolerà tutto ciò che resta e, alla fine, morte.', NULL, '2017-09-05 09:52:20', '2017-09-05 09:52:20'),
(47, 12, 41, NULL, 9, 'Ῥουφῖνος τῇ μῇ γλυκερωτάτῃ Ἐλπίδι πολλὰ \nχαίρειν, εἰ χαίρειν χωρὶς ἐμοῦ δύναται. \nοὐκέτι βαστάζω, μὰ τὰ ς᾽ ὄμματα, τὴν φιλέρημον \nκαὶ τὴν μουνολεχῆ σεῖο διαζυγίην \nἀλλ᾽ αἰεὶ δακρύοισι πεφυρμένος ἢ ἐπιορκήσων\nἔρχομαι ἢ μεγάλης νηὸν ἐς Ἀρτέμιδος. \nαὔριον ἀλλὰ πάτρη με δεδέξεται: ἐς δὲ σὸν ὄμμα \nπτήσομαι, ἐρρῶσθαι μυρίας εὐχόμενος.', NULL, '2017-09-05 09:53:19', '2017-09-05 09:53:19'),
(48, 12, 41, NULL, 1, 'Dal tuo Rufino, mia dolcissima Speranza, tanti auguri \ndi felicità, se puoi essere felice senza di me. \nLo giuro sui tuoi occhi, non sopporto più \ndi stare e dormire da solo lontano da te.\nMa sempre bagnato di lacrime, o vado \na Coresso o al tempio della grande Artemide.\nMa domani la patria mi accoglierà; volerò \nda te, per farti mille e mille auguri.', NULL, '2017-09-05 09:54:00', '2017-09-05 09:54:00'),
(49, 8, 43, NULL, 1, 'Un sogno mi ha coricato vicino per tutta la notte, nuda,\nStenelaide, colei che accende fuochi per la città, la costosissima,\ncolei che fa vomitare oro a chi la vuole\ndonandosi lei gratis fino alla dolce aurora.\nNon pregherò più la straniera né mi piangerò\naddosso, avendo un sonno che me la dona (dato che il sonno me la dona)', NULL, '2017-09-05 09:54:35', '2017-09-05 09:54:35'),
(50, 8, 43, NULL, 1, 'Stenelaide, che infiamma tutta la città, la costosissima,\nche fa vomitare oro a chi la vuole\nun sogno me l’ha coricata vicino per tutta la notte, nuda,\nche si donava gratis fino alla dolce aurora.\nCon il sonno che me la dona, non pregherò più \nla selvaggia né mi piangerò addosso.', NULL, '2017-09-05 09:55:32', '2017-09-05 09:55:32'),
(51, 12, 41, NULL, 1, 'Io, Rufino, alla mia dolcissima Speranza (auguro di) gioire \nmolto, se può gioire senza di me.\nNon reggo più, per i tuoi occhi, la separazione \nda te, che porta solitudine e dorme sola.\nMa sempre inondato di lacrime vado \no a spergiurare o al tempio della grande Artemide.\nMa domani la patria mi accoglierà; e volerò verso \nil tuo volto, augurandoti mille volte di star bene.', NULL, '2017-09-05 09:57:14', '2017-09-05 09:57:14'),
(52, 22, 40, NULL, 8, ' ἄνθεά σοι δρέψας Ἑλικώνια, καὶ κλυτοδένδρου\r\n Πιερίης κείρας πρωτοφύτους κάλυκας,\r\n καὶ σελίδος νεαρῆς θερίσας στάχυν, ἀντανέπλεξα\r\n τοῖς Μελεαγρείοις ὡς ἴκελον στεφάνοις.\r\n\r\n ἀλλὰ παλαιοτέρων εἰδὼς κλέος, ἐσθλὲ Κάμιλλε,\r\n γνῶθι καὶ ὁπλοτέρων τὴν ὀλιγοστιχίην.\r\n Ἀντίπατρος πρέψει στεφάνῳ στάχυς: ὡς δὲ κόρυμβος\r\n Κριναγόρας λάμψει δ᾽ ὡς βότρυς Ἀντίφιλος,\r\n Τύλλιος ὡς μελίλωτον, ἀμάρακον ὣς Φιλόδημος:\r\n\r\n μύρτα δ᾽ ὁ Παρμενίων: ὡς ῥόδον Ἀντιφάνης:\r\n κισσὸς δ᾽ Αὐτομέδων Ζωνᾶς κρίνα δρῦς δὲ Βιάνωρ:\r\n Ἀντίγονος δ᾽ ἐλάη, καὶ Διόδωρος ἴον\r\nΕὔηνον δάφνῃ, συνεπιπλεκτοὺς δὲ περισσοὺς\r\nεἴκασον οἷς ἐθέλεις ἄνθεσιν ἀρτιφύτοις.\r\n\r\n ', NULL, '2017-09-05 10:01:36', '2017-09-05 10:01:37'),
(54, 22, 40, NULL, 7, 'Φιλὶππου στέφανος\n\nἄνθεά σοι δρέψας Ἑλικώνια, καὶ κλυτοδένρου \nΠιερίης κείρας πρωτοφύτους κάλυκας,\nκαὶ σελίδος νεαρῆς θερίσας στάχυν,\nἀντανέπλεξα τοῖς Μελεαγρείοις ὡς ἴκελον στεφάνοις. \nἀλλὰ παλαιοτέρων εἰδὼς κλέος, ἐσθλὲ Κάμιλλε, \nγνῶθι καὶ ὁπλοτέρων τὴν ὀλιγοστιχίην. \nἈντίπατρος πρέψει στεφάνῳστάχυς: ὡς δὲ κόρυμβος \nΚριναγόρας λάμψει δ᾽ ὡς βότρυς Ἀντίφιλος, \nΤύλλιος ὡς μελίλωτον, ἀμάρακον ὣς Φιλόδημος: \nμύρτα δ᾽ ὁ Παρμενίων: ὡς ῥόδον Ἀντιφάνης: \nκισσὸς δ᾽ Αὐτομέδων Ζωνᾶς κρίνα δρῦς δὲ Βιάνωρ: \nἈντίγονος δ᾽ ἐλάη καὶ Διόδωρος ἴον \nΕὔηνον δάφνῃ, συνεπιπλεκτοὺς δὲ περισσοὺς \nεἴκασον οἷς ἐθέλεις ἄνθεσιν ἀρτιφύτοις.', NULL, '2017-09-05 10:05:50', '2017-09-05 10:05:50'),
(55, 22, 40, NULL, 1, 'Raccolsi i tuoi fiori sul monte Elicona,\ne tagliando i boccioli appena schiusi nella Pieria,\nregione famosa per i suoi alberi,\ne mietendo le spighe dei novelli fogli di papiro,\nintrecciai corone emulando Meleagro.\nMa tu più tra gli antichi conosci, nobile Camillo,\nla gloria e leggi poesie brevi dei poeti più recenti.\nNella corona si distingue la spiga d’Antipatro;\ncome il corimbo brilla Crinagora, Antifilo come il grappolo d’uva;\nTullio risplende come il meliloto, Filodemo come la maggiorana;\nParmenione è come il mirto, come la rosa Antifane;\nAutomedonte somiglia all’edera, Zona ai gigli,Bianore alla quercia;\nAntigone come l’ulivo e Diodoro come la viola,\ninfine si nota l’alloro d’Eveno; intreccia i restanti,\nassociando a loro fiori appena nati, come tu vuoi.', NULL, '2017-09-05 10:06:30', '2017-09-05 10:06:30'),
(56, 22, 40, NULL, 7, 'Φιλίππου στέφανος\n\nἄνθεά σοι δρέψας Ἑλικώνια, καὶ κλυτοδένρου \nΠιερίης κείρας πρωτοφύτους κάλυκας,\nκαὶ σελίδος νεαρῆς θερίσας στάχυν,\nἀντανέπλεξα τοῖς Μελεαγρείοις ὡς ἴκελον στεφάνοις. \nἀλλὰ παλαιοτέρων εἰδὼς κλέος, ἐσθλὲ Κάμιλλε, \nγνῶθι καὶ ὁπλοτέρων τὴν ὀλιγοστιχίην. \nἈντίπατρος πρέψει στεφάνῳ στάχυς: ὡς δὲ κόρυμβος \nΚριναγόρας λάμψει δ᾽ ὡς βότρυς Ἀντίφιλος, \nΤύλλιος ὡς μελίλωτον, ἀμάρακον ὣς Φιλόδημος: \nμύρτα δ᾽ ὁ Παρμενίων: ὡς ῥόδον Ἀντιφάνης: \nκισσὸς δ᾽ Αὐτομέδων Ζωνᾶς κρίνα δρῦς δὲ Βιάνωρ: \nἈντίγονος δ᾽ ἐλάη καὶ Διόδωρος ἴον \nΕὔηνον δάφνῃ, συνεπιπλεκτοὺς; δὲ περισσοὺς \nεἴκασον οἷς ἐθέλεις ἄνθεσιν ἀρτιφύτοις.', NULL, '2017-09-05 10:07:57', '2017-09-05 10:07:57'),
(57, 22, 40, NULL, 1, 'La corona di Filippo\n\nRaccolsi i tuoi fiori sul monte Elicona,\ne tagliando i boccioli appena schiusi nella Pieria,\nregione famosa per i suoi alberi,\ne mietendo le spighe dei novelli fogli di papiro,\nintrecciai corone emulando Meleagro.\nMa tu, poiché conosci la gloria dei poeti più antichi, nobile Camillo,\nimpara le brevi poesie dei poeti più recenti.\nNella corona si distingue la spiga d’Antipatro;\ncome il corimbo brilla Crinagora, Antifilo come il grappolo d’uva;\nTullio risplende come il meliloto, Filodemo come la maggiorana;\nParmenione è come il mirto, come la rosa Antifane;\nAutomedonte somiglia all’edera, Zona ai gigli, Bianore alla quercia;\nAntigone come l’ulivo e Diodoro come la viola,\ninfine si nota l’alloro d’Eveno; intreccia i restanti,\nassociando a loro fiori appena nati, come tu vuoi.', NULL, '2017-09-05 10:08:29', '2017-09-05 10:08:29'),
(58, 23, 40, NULL, 8, ' στῆλαι καὶ γραφίδες καὶ κύρβιες, εὐφροσύνης μὲν\r\n αἴτια τοῖς ταῦτα κτησαμένοις μεγάλης,\r\n ἀλλ᾽ ἐς ὅσον ζώουσι τὰ γὰρ κενὰ κύδεα φωτῶν\r\n ψυχαῖς οἰχομένων οὐ μάλα συμφέρεται\r\n\r\n ἡ δ᾽ ἀρετὴ σοφίης τε χάρις καὶ κεῖθι συνέρπει,\r\n κἀνθάδε μιμνάζει μνῆστιν ἐφελκομένη.\r\nοὕτως οὔτε Πλάτων βρενθύεται οὔτ᾽ [ἄρ᾽] Ὅμηρος\r\n χρώμασιν ἢ στήλαις, ἀλλὰ μόνῃ σοφίῃ.\r\nὄλβιοι ὧν μνήμη πινυτῶν ἐνὶ τεύχεσι βίβλων,\r\n\r\n ἀλλ᾽ οὐκ ἐς κενεὰς εἰκόνας ἐνδιάει.\r\n', NULL, '2017-09-05 10:09:15', '2017-09-05 10:09:15'),
(59, 24, 40, NULL, 8, 'συλλογὴ νέων ἐπιγραμμάτων ἐκτεθεῖσα ἐν Κωνσταντίνου πόλει πρὸς Θεόδωρον Δεκουρίωνα τὸν Κοσμᾶ: εἴρηται δὲ τὰ προοίμια μετὰ τὰς συνεχεῖς ἀκροάσεις τὰς κατ᾽ ἐκεῖνο καιροῦ γενομένας.\r\n οἶμαι μὲν ὑμᾶς, ἄνδρες, ἐμπεπλησμένους\r\nἐκ τῆς τοσαύτης τῶν λόγων πανδαισίας,\r\nἔτι που τὰ σιτία προσκόρως ἐρυγγάνειν:\r\nκαὶ δὴ κάθησθε τῇ τρυφῇ σεσαγμένοι:\r\n\r\n λόγων γὰρ ἡμῖν πολυτελῶν καὶ ποικίλων\r\nπολλοὶ προθέντες παμμιγεῖς εὐωχίας,\r\nπεριφρονεῖν πείθουσι τῶν εἰθισμένων.\r\nτί δὲ νῦν ποιήσω; μὴ τὰ προὐξειργασμένα\r\nοὕτως ἐάσω συντετῆχθαι κείμενα;\r\n\r\n ἢ καὶ προθῶμαι τῆς ἀγορᾶς ἐν τῷ μέσῳ,\r\nπαλιγκαπήλοις εὐτελῶς ἀπεμπολῶν;\r\nκαὶ τίς μετασχεῖν τῶν ἐμῶν ἀνέξεται;\r\nτίς δ᾽ ἂν πρίαιτο τοὺς λόγους τριωβόλου,\r\nεἰ μὴ φέροι πως ὦτα μὴ τετρημένα;\r\n\r\n ἀλλ᾽ ἐστὶν ἐλπὶς εὐμενῶς τῶν δρωμένων\r\nὑμᾶς μεταλαβεῖν, κοὐ κατεβλακευμένως:\r\nἔθος γὰρ ὑμῖν τῇ προθυμίᾳ μόνῃ\r\nτῇ τῶν καλούντων ἐμμετρεῖν τὰ σιτία.\r\nκαὶ πρός γε τούτῳ δεῖπνον ἠρανισμένον\r\n\r\n ἥκω προθήσων ἐκ νέων ἡδυσμάτων.\r\nἐπεὶ γὰρ οὐκ ἔνεστιν ἐξ ἐμοῦ μόνου\r\nὑμᾶς μεταλαβεῖν, ἄνδρες, ἀξίας τροφῆς,\r\nπολλοὺς ἔπεισα συλλαβεῖν μοι τοῦ πόνου,\r\nκαὶ συγκαταβαλεῖν καὶ συνεστιᾶν πλέον.\r\n\r\n \r\n καὶ δὴ παρέσχον ἀφθόνως οἱ πλούσιοι\r\nἐξ ὧν τρυφῶσι: καὶ παραλαβὼν γνησίως\r\nἐν τοῖς ἐκείνων πέμμασι φρυάττομαι.\r\nτοῦτο δέ τις αὐτῶν προσφόρως, δεικνὺς ἐμέ,\r\nἴσως ἐρεῖ πρὸς ἄλλον \r\n ἀρτίως ἐμοῦ\r\n\r\n \r\n μάζαν μεμαχότος μουσικήν τε καὶ νέαν,\r\n\r\n οὗτος παρέθηκεν τὴν ὑπ᾽ ἐμοῦ μεμαγμένην.\r\n \r\n ταυτὶ μὲν οὖν ἐρεῖ τις † οὐδὲ τῶν σοφωτάτων,\r\nτῶν ὀψοποιῶν, ὧν χάριν δοκῶ μόνος\r\nεἶναι τοσαύτης ἡγεμὼν πανδαισίας.\r\n\r\n θαρρῶν γὰρ αὐτοῖς λιτὸν οἴκοθεν μέρος\r\nκαὐτὸς παρέμιξα, τοῦ δοκεῖν μὴ παντελῶς\r\nξένος τις εἶναι τῶν ὑπ᾽ ἐμοῦ συνηγμένων.\r\nἀλλ᾽ ἐξ ἑκάστου σμικρὸν εἰσάγω μέρος,\r\nὅσον ἀπογεῦσαι: τῶν δὲ λοιπῶν εἰ θέλοι\r\n\r\n τυχεῖν τις ἁπάντων καὶ μετασχεῖν εἰς κόρον,\r\nἴστω γε ταῦτα κατ᾽ ἀγορὰν ζητητέα.\r\nκόσμον δὲ προσθεὶς τοῖς ἐμοῖς πονήμασι,\r\nἐκ τοῦ Βασιλέως τοὺς προλόγους ποιήσομαι:\r\nἅπαντα γάρ μοι δεξιῶς προβήσεται.\r\n\r\n καί μοι μεγίστων πραγμάτων ὑμνουμένων\r\nεὑρεῖν γένοιτο καὶ λόγους ἐπηρμένους.\r\nμή τις ὑπαυχενίοιο λιπὼν ζωστῆρα λεπάδνου\r\nβάρβαρος ἐς Βασιλῆα βιημάχον ὄμμα τανύσσῃ:\r\nμηδ᾽ ἔτι Περσὶς ἄναλκις ἀναστείλασα καλύπτρην\r\n\r\n ὄρθιον ἀθρήσειεν ἐποκλάζουσα δὲ γαίῃ,\r\nκαὶ λόφον αὐχήεντα καταγνάμπτουσα τενόντων,\r\nΑὐσονίοις ἄκλητος ὑποκλίνοιτο ταλάντοις.\r\nἑσπερίη θεράπαινα, σὺ δ᾽ ἐς κρηπῖδα Γαδείρων,\r\nκαὶ παρὰ πορθμὸνἼβηρα καὶ Ὠκεανίτιδα Θούλην,\r\n\r\n ἤπιον ἀμπνεύσειας, ἀμοιβαίων δὲ τυράννων\r\n\r\n κράατα μετρήσασα τεῇ κρυφθέντα κονίῃ,\r\nθαρσαλέαις παλάμῃσι φίλην ἀγκάζεο Ῥώμην\r\nΚαυκασίῳ δὲ τένοντι καὶ ἐν ῥηγμῖνι Κυταίῃ,\r\nὁππόθι ταυρείοιο ποδὸς δουπήτορι χαλκῷ\r\n\r\n σκληρὰ σιδηρείης ἐλακίζετο νῶτα κονίης,\r\nσύννομον Ἀδρυάδεσσιν ἀναπλέξασα χορείην\r\nΦασιὰς εἱλίσσοιτο φίλῳ σκιρτήματι νύμφη,\r\nκαὶ καμάτους μέλψειε πολυσκήπτρου βασιλῆος,\r\nμόχθον ἀπορρίψασα γιγαντείου τοκετοῖο.\r\n\r\n μηδὲ γὰρ αὐχήσειεν Ἰωλκίδος ἔμβολον Ἀργοῦς,\r\nὅττι πόνους ἥρωος ἀγασσαμένη Παγασαίου\r\nοὐκέτι Κολχὶς ἄρουρα, γονῇ πλησθεῖσα Γιγάντων,\r\nεὐπτολέμοις σταχύεσσι μαχήμονα βῶλον ἀνοίγει.\r\nκεῖνα γὰρ ἢ μῦθός τις ἀνέπλασεν, ἢ διὰ τέχνης\r\n\r\n οὐχ ὁσίης τετέλεστο, πόθων ὅτε λύσσαν ἑλοῦσα\r\nπαρθενικὴ δολόεσσα μάγον κίνησεν ἀνάγκην\r\nἀλλὰ δόλων ἔκτοσθε καὶ ὀρφναίου κυκεῶνος\r\nΒάκτριος ἡμετέροισι Γίγας δούπησε βελέμνοις.\r\nοὐκέτι μοι χῶρός τις ἀνέμβατος, ἀλλ᾽ ἐνὶ πόντῳ\r\n\r\n Ὑρκανίου κόλποιο καὶ ἐς βυθὸν Αἰθιοπῆα\r\nἸταλικαῖς νήεσσιν ἐρέσσεται ἥμερον ὕδωρ.\r\nἀλλ᾽ ἴθι νῦν, ἀφύλακτος ὅλην ἤπειρον ὁδεύων,\r\nΑὐσόνιε, σκίρτησον, ὁδοιπόρε: Μασσαγέτην δὲ\r\nἀμφιθέων ἀγκῶνα καὶ ἄξενα τέμπεα Σούσων,\r\n\r\n Ἰνδῴης ἐπίβηθι κατ᾽ ὀργάδος, ἐν δὲ κελεύθοις\r\nεἴποτε διψήσειας, ἀρύεο δοῦλον Ὑδάσπην:\r\nναὶ μὴν καὶ κυανωπὸν ὑπὲρ δύσιν ἄτρομος ἕρπων\r\nκύρβιας Ἀλκείδαο μετέρχεο: θαρσαλέως δὲ\r\nἴχνιον ἀμπαύσειας ἐπὶ ψαμάθοισιν Ἰβήρων,\r\n\r\n ὁππόθι, καλλιρέεθρον ὑπὲρ βαλβῖδα θαλάσσης,\r\nδίζυγος ἠπείροιο συναντήσασα κεραίη\r\nἐλπίδας ἀνθρώποισι βατῆς εὔνησε πορείης.\r\n\r\n ἐσχατιὴν δὲ Λίβυσσαν ἐπιστείβων Νασαμώνων\r\nἔρχεο καὶ παρὰ Σύρτιν, ὅπῃ νοτίῃσι θυέλλαις\r\n\r\n ἐς κλίσιν ἀντίπρωρον ἀνακλασθεῖσα Βορῆος,\r\nκαὶ ψαφαρὴν ἄμπωτιν ὕπερ, ῥηγμῖνι ἁλίπλῳ\r\nἀνδράσι δῖα θάλασσα πόρον χερσαῖον ἀνοίγει.\r\nοὐδὲ γὰρ ὀθνείης σε δεδέξεται ἤθεα γαίης,\r\nἀλλὰ σοφοῦ κτεάνοισιν ὁμιλήσεις Βασιλῆος,\r\n\r\n ἔνθα κεν ἀίξειας, ἐπεὶ κυκλώσατο κόσμον\r\nκοιρανίῃ: Τάναϊς δὲ μάτην ἤπειρον ὁρίζων\r\nἐς Σκυθίην πλάζοιτο καὶ ἐς Μαιώτιδα λίμνην.\r\nτοὔνεκεν, ὁππότε πάντα φίλης πέπληθε γαλήνης,\r\nὁππότε καὶ ξείνοιο καὶ ἐνδαπίοιο κυδοιμοῦ\r\n\r\n ἐλπίδες ἐθραύσθησαν ὑφ᾽ ἡμετέρῳ Βασιλῆι,\r\nδεῦρο, μάκαρ Θεόδωρε, σοφὸν στήσαντες ἀγῶνα\r\nπαίγνια κινήσωμεν ἀοιδοπόλοιο χορείης.\r\nσοὶ γὰρ ἐγὼ τὸν ἄεθλον ἐμόχθεον εἰς σὲ δὲ μύθων\r\nἐργασίην ἤσκησα, μιῇ δ᾽ ὑπὸ σύζυγι βίβλῳ\r\n\r\n ἐμπορίην ἤθροισα πολυξείνοιο μελίσσης,\r\nκαὶ τόσον ἐξ ἐλέγοιο πολυσπερὲς ἄνθος ἀγείρας,\r\nστέμμα σοι εὐμύθοιο καθήρμοσα Καλλιοπείης,\r\nὡς φηγὸν Κρονίωνι καὶ ὁλκάδας Ἐννοσιγαίῳ,\r\nὡς Ἄρεϊ ζωστῆρα καὶ Ἀπόλλωνι φαρέτρην,\r\n\r\n ὡς χέλυν Ἑρμάωνι καὶ ἡμερίδας Διονύσῳ.\r\nοἶδα γὰρ ὡς ἄλληκτον ἐμῆς ἱδρῶτι μερίμνης\r\nεὖχος ἐπιστάξειεν ἐπωνυμίη Θεοδώρου.\r\nπρῶτα δέ σοι λέξαιμι, παλαιγενέεσσιν ἐρίζων,\r\nὅσσαπερ ἐγράψαντο νέης γενετῆρες ἀοιδῆς\r\n\r\n ὡς προτέροις μακάρεσσιν ἀνειμένα: καὶ γὰρ ἐῴκει\r\nγράμματος ἀρχαίοιο σοφὸν μίμημα φυλάξαι.\r\nἀλλὰ πάλιν μετ᾽ ἐκεῖνα % παλαίτερον εὖχος ἀγείρει\r\nὅσσαπερ ἢ γραφίδεσσι χαράξαμεν ἤ τινι χώρῳ,\r\n\r\n εἴτε καὶ εὐποίητον ἐπὶ βρέτας, εἴτε καὶ ἄλλης\r\n\r\n τέχνης ἐργοπόνοιο πολυσπερέεσσιν ἀέθλοις.\r\nκαὶ τριτάτην βαλβῖδα νεήνιδος ἔλλαχε βίβλου\r\nὅσσα θέμις, τύμβοισι τάπερ Θεὸς ἐν μὲν ἀοιδῇ\r\nἐκτελέειν νεύσειεν, ἐν ἀτρεκίῃ δὲ διώκειν.\r\nὅσσα δὲ καὶ βιότοιο πολυσπερέεσσι κελεύθοις\r\n\r\n γράψαμεν, ἀσταθέος δὲ τύχης σφαλεροῖσι ταλάντοις,\r\nδέρκεό μοι βίβλοιο παρὰ κρηπῖδα τετάρτην.\r\nναὶ τάχα καὶ πέμπτοιο χάρις θέλξειεν ἀέθλου,\r\nὁππόθι κερτομέοντες ἐπεσβόλον ἦχον ἀοιδῆς\r\nγράψαμεν. ἑκταῖον δὲ μέλος κλέπτουσα Κυθήρη\r\n\r\n εἰς ὀάρους ἐλέγοιο παρατρέψειε πορείην\r\nκαὶ γλυκεροὺς ἐς ἔρωτας. ἐν ἑβδομάτῃ δὲ μελίσσῃ\r\nεὐφροσύνας Βάκχοιο, φιλακρήτους τε χορείας,\r\nκαὶ μέθυ, καὶ κρητῆρα, καὶ ὄλβια δεῖπνα νοήσεις.', NULL, '2017-09-05 10:10:02', '2017-09-05 10:10:02'),
(60, 24, 40, NULL, 7, 'συλλογὴ νέων ἐπιγραμμάτων ἐκτεθεῖσαἐν\nΚωνσταντίνου πόλει πρὸς Θεόδωρον\nΔεκουρίωνα \nτὸν Κοσμᾶ: εἴρηται δὲ τὰπροοίμια μετὰ τὰς συν εχεῖς ἀκροάσεις\nτὰςκατ᾽ἐκεῖνο καιροῦ γενομένας.\n\nοἶμαι μὲν ὑμᾶς, ἄνδρες, ἐμπεπλησμένους \nἐκ τῆς τοσαύτης τῶν λόγων πανδαισίας, \nἔτι που τὰ σιτία προσκόρως ἐρυγγάνειν: \nκαὶ δὴ κάθησθε τῇ τρυφῇ σεσαγμένοι: \nλόγων γὰρ ἡμῖν πολυτελῶν καὶ ποικίλων \nπολλοὶ προθέντες παμμιγεῖς εὐωχίας, \nπεριφρονεῖν πείθουσι τῶν εἰθισμένων. \nτί δὲ νῦν ποιήσω;\nμὴ τὰ προὐξειργασμένα \nοὕτως ἐάσω συντετῆχθαι κείμενα; \nἢ καὶ προθῶμαι τῆς ἀγορᾶς ἐν τῷ μέσῳ, \nπαλιγκαπήλοις εὐτελῶς ἀπεμπολῶν; \nκαὶ τίς μετασχεῖν τῶν ἐμῶν ἀνέξεται; \nτίς δ᾽ ἂν πρίαιτο τοὺς λόγους τριωβόλου, \nεἰ μὴ φέροι πως ὦτα μὴ τετρημένα; \nἀλλ᾽ ἐστὶν ἐλπὶς εὐμενῶς τῶν δρωμένων \nὑμᾶς μεταλαβεῖν, κοὐ κατεβλακευμένως;\nἔθος γὰρ ὑμῖν τῇ προθυμίᾳ μόνῃ\nτῇ τῶν καλούντων ἐμμετρεῖν τὰσιτία. \nκαὶ πρός γε τούτῳ δεῖπνον ἠρανισμένον \nἥκω προθήσων ἐκ νέων ἡδυσμάτων. \nἐπεὶ γὰρ οὐκ ἔν εστιν ἐξ ἐμοῦ μόνου\nὑμᾶς μεταλαβεῖν, ἄνδρες, ἀξίας τροφῆς, \nπολλοὺς ἔπεισα συλλαβεῖν μοιτοῦ πόνου, \nκαὶ συγκαταβαλεῖν καὶ συνεστιᾶν πλέον. \nκαὶ δὴ παρέσχον ἀφθόνως οἱ πλούσιοι\nἐξ ὧν τρυφῶσι: καὶ παραλαβὼν γνησίως \nἐν τοῖς ἐκείνων πέμμασι φρυάττομαι. \nτοῦτο δέ τις αὐτῶν προσφόρως, δεικνὺς ἐμέ, \nἴσωςἐρεῖ πρὸςἄλλον “ἀρτίως ἐμοῦ\nμάζαν μεμαχότος μουσικήν τε καὶ νέαν, \nοὗτος παρέθηκεν τὴν ὑπ᾽ ἐμοῦ μεμαγμένην.”\nταυτὶ μὲν οὖν ἐρεῖ τις † οὐδὲ τῶν σοφωτάτων \nτῶν ὀψοποιῶν, ὧν χάριν δοκῶ μόνος\nεἶναι τοσαύτης ἡγεμὼν πανδαισίας.\nθαρρῶν γὰρ αὐτοῖς λιτὸν οἴκοθεν μέρος\nκαὐτὸς παρέμιξα, τοῦ δοκεῖν μὴ παντελῶς\nξένος τις εἶναι τῶν ὑπ᾽ ἐμοῦ συνηγμένων.\nἀλλ᾽ ἐξ ἑκάστου σμικρὸν εἰσάγω μέρος,\nὅσον ἀπογεῦσαι: τῶν δὲ λοιπῶν εἰ θέλοι\nτυχεῖν τις ἁπάντων καὶ μετασχεῖν εἰς κόρον,\nἴστω γε ταῦτα κατ᾽ ἀγορὰν ζητητέα.\nΚόσμον δὲ προσθεὶς τοῖς ἐμοῖς πονήμασι,\nἐκ τοῦ Βασιλέως τοὺς προλόγους ποιήσομαι:\nἅπαντα γάρ μοι δεξιῶς προβήσεται.\nκαί μοι μεγίστων πραγμάτων ὑμνουμένων\nεὑρεῖν γένοιτο καὶ λόγους ἐπηρμένους.\n', NULL, '2017-09-05 10:15:17', '2017-09-05 10:15:17'),
(61, 24, 40, NULL, 1, 'La raccolta dei nuovi epigrammi è stata pubblicata nella città di Costantino per Teodoro Decurione figlio di Cosma: i proemi sono stati pubblicati dopo continue letture nate in quella circostanza.\n\nSignori, ritengo che voi, saturi \ndi un tale banchetto di parole,\nqui, ormai, vomitate il cibo per sazietà:\ne quindi state seduti ricolmi di lussuria;\ninfatti molti offrendoci un festino \nconfuso di parole sfarzose e oscure,\nci persuadono a guardare con disprezzo \ni cibi che provocano assuefazione.\nOra che cosa farò? Lascerò che le cose preparate deperiscano abbandonate da una parte? \nOppure le esporrò nel mezzo della piazza,\nvendendole a buon mercato ai rivenditori?\nE chi si asterrà dal comprare i miei prodotti?\nChi comprerebbe parole per tre oboli,\nse non portasse le orecchie bucate in questo modo? \nMa c’è per me una speranza che voi partecipiate con gioia, e non con mollezza, a ciò che faccio;\nPer voi, infatti, è usanza adattare cibi all’unico desiderio dei vostri invitati. \nGiungo dalle navi di spezie offrendo loro un pasto gradito. \nPoiché non è possibile che voi, uomini, riceveste solo da me i valori del cibo, persuasi molti a soccorrermi nel mio lavoro e a gettare insieme e invitare a banchetto i più.\nAllora i ricchi diedero (i loro beni) con generosità a coloro che si dilettavano di loro, e sono molto orgoglioso di prendere in modo legittimo i loro dolci. \nMentre io indicavo, uno di loro in modo conveniente chiese questo all’altro: “Avendo io impastato una focaccia musicale e fresca proprio ora, egli gliela dà impastata da me.”\nA costui dunque chiedo chi non si ricordi dei più valenti \nfra i cuochi, la cui grazia sembra\nessere la sola guida di un assai maestoso banchetto.\nIncoraggiato, ho mischiato una piccola parte del mio piatto \nalle altre, per non sembrare completamente \ndi essere un qualche parassita fra i convitati presso casa mia.\nMa da ciascuno porto via una misera parte, tanto grande quanto un assaggio (di grandezza tale per assaggiare); di tutto il resto se qualcuno desiderasse trovarlo tutto e trarre da questo sazietà, dovete sapere che dobbiamo andare al mercato.\nPer dare onore ai miei sforzi, incomincerò l’esordio dal sovrano; \ninfatti procederà tutto a mio favore.\nE per cantare le grandi imprese che io possa trovare anche un linguaggio elevato .', NULL, '2017-09-05 10:15:47', '2017-09-05 10:15:47'),
(62, 23, 40, NULL, 7, 'στῆλαι καὶ γραφίδες καὶ κύρβιες,\nεὐφροσύνης μὲν \nαἴτια τοῖς ταῦτα κτησαμένοις μεγάλης, \nἀλλ᾽ ἐς ὅσον ζώουσι τὰ γὰρ κενὰ\nκύδεα φωτῶν \nψυχαῖς οἰχομένων οὐ μάλα συμφέρεται \nἡ δ᾽ ἀρετὴ σοφίης τε χάρις καὶ κεῖθι\nσυνέρπει, \nκἀνθάδε μιμνάζει μνῆστιν ἐφελκομένη. \nοὕτως οὔτε Πλάτων βρενθύεται οὔτ᾽\n[ἄρ᾽] Ὅμηρος \nχρώμασιν ἢ στήλαις, ἀλλὰ μόνῃ σοφίῃ. \nὄλβιοι ὧν μνήμη πινυτῶν ἐνὶ τεύχεσι\nβίβλων, \nἀλλ᾽ οὐκ ἐς κενεὰς εἰκόνας ἐνδιάει.', NULL, '2017-09-05 10:16:06', '2017-09-05 10:16:06'),
(63, 23, 40, NULL, 1, 'Colonne e stilo e tavole sono motivo di grande gioia per quelli che se le procurano,\nfinchè sono vivi: infatti, le vane glorie, poiché se ne vanno, sicuramente non giovano alle anime dei mortali.\nMa il valore, la bellezza dell’arte restano anche là, e qui rimane il ricordo.\nCosì né Platone né dunque Omero si inorgogliscono per quadri o stele, ma per la sola sapienza.\nO beati, giacché sapienti, la memoria si conserva nei libri e non resta in vane immagini.', NULL, '2017-09-05 10:16:14', '2017-09-05 10:16:14'),
(64, 12, 1, NULL, 8, '\n Ῥουφῖνος τῇ μῇ γλυκερωτάτῃ Ἐλπίδι πολλὰ\nχαίρειν, εἰ χαίρειν χωρὶς ἐμοῦ δύναται.\nοὐκέτι βαστάζω, μὰ τὰ ς1᾽ ὄμματα, τὴν φιλέρημον\nκαὶ τὴν μουνολεχῆ σεῖο διαζυγίην\n\n ἀλλ᾽ αἰεὶ δακρύοισι πεφυρμένος ἢ πὶ Κορησσὸν\nἔρχομαι ἢ μεγάλης νηὸν ἐς Ἀρτέμιδος.\nαὔριον ἀλλὰ πάτρη με δεδέξεται: ἐς δὲ σὸν ὄμμα\nπτήσομαι, ἐρρῶσθαι μυρία ς1᾽ εὐχόμενος.', NULL, '2017-09-05 10:22:37', '2017-09-05 10:22:37'),
(65, 25, 5, NULL, 8, '\n τόξα τάδε πτολέμοιο πεπαυμένα δακρυόεντος\n νηῷ Ἀθηναίης κεῖται ὑπορρόφια,\n πολλάκι δὴ στονόεντα κατὰ κλόνον ἐν δαῒ φωτῶν\n Περσῶν ἱππομάχων αἵματι λουσάμενα.\n\n ', NULL, '2017-09-11 10:23:05', '2017-09-11 10:23:05'),
(66, 26, 5, NULL, 8, '\n τόξα τάδε πτολέμοιο πεπαυμένα δακρυόεντος\n νηῷ Ἀθηναίης κεῖται ὑπορρόφια,\n πολλάκι δὴ στονόεντα κατὰ κλόνον ἐν δαῒ φωτῶν\n Περσῶν ἱππομάχων αἵματι λουσάμενα.\n\n ', NULL, '2017-09-11 10:23:05', '2017-09-11 10:23:05'),
(67, 27, 2, NULL, 8, '\n οὐκ ἔλεγον, Προδίκη, Γηράσκομεν ; οὐ προεφώνουν\n\n ἥξουσιν ταχέως αἱ διαλυσίφιλοι ;\n νῦν ῥυτίδες καὶ θρὶξ πολιὴ καὶ σῶμα ῥακῶδες,\nκαὶ στόμα τὰς προτέρας οὐκέτ᾽ ἔχον χάριτας.\n\n μή τις σοι, μετέωρε, προσέρχεται, ἢ κολακεύων\n λίσσεται; ὡς δὲ τάφον νῦν σε παρερχόμεθα.\n', NULL, '2017-09-11 10:24:35', '2017-09-11 10:24:35'),
(68, 28, 5, NULL, 8, '\n ἡρώων τὸν ἀοιδὸν Ἴῳ ἔνι παῖδες Ὅμηρον\n ἤκαχον, ἐκ Μουσέων γρῖφον ὑφηνάμενοι:\n νέκταρι δ᾽ εἰνάλιαι Νηρηίδες ἐχρίσαντο,\n καὶ νέκυν ἀκταίῃ θῆκαν ὑπὸ σπιλάδι,\n\n ὅττι Θέτιν κύδηνε καὶ υἱέα, καὶ μόθον ἄλλων\n ἡρώων, Ἰθακοῦ τ᾽ ἔργματα Λαρτιάδεω.\n ὀλβίστη νήσων πόντῳ Ἴος, ὅττι κέκευθε\n βαιὴ Μουσάων ἀστέρα καὶ Χαρίτων.\n', NULL, '2017-09-11 10:36:52', '2017-09-11 10:36:53'),
(69, 29, 5, NULL, 8, '\n τὰν μερόπων Πειθώ, τὸ μέγα στόμα, τὰν ἴσα Μούσαις\n φθεγξαμέναν κεφαλάν, ὦ ξένε, Μαιονίδεω\nἅδ᾽ ἔλαχον νασῖτις Ἴου σπιλάς: οὐ γὰρ ἐν ἄλλᾳ\n ἱερόν, ἀλλ᾽ ἐν ἐμοί, πνεῦμα θανὼν ἔλιπεν,\n\n \n ᾧ νεῦμα Κρονίδαο τὸ παγκρατές, ᾦ καὶ Ὄλυμπον\nκαὶ τὰν Αἴαντος ναύμαχον εἶπε βίαν,\n καὶ τὸν Ἀχιλλείοις Φαρσαλίσιν Ἕκτορα, πώλοις\n ὀστέα Δαρδανικῷ δρυπτόμενον πεδίῳ.\nεἰ δ᾽ ὀλίγα κρύπτω τὸν ταλίκον, ἴσθ᾽ ὅτι κεύθει\n\n καὶ Θέτιδος γαμέταν ἁ βραχύβωλος Ἴκος.\n ', NULL, '2017-09-11 10:37:37', '2017-09-11 10:37:37'),
(70, 30, 5, NULL, 8, '\n ἐνθάδε τὴν ἱερὴν κεφαλὴν κατὰ γαῖα καλύπτει,\n ἀνδρῶν ἡρώων κοσμήτορα, θεῖον Ὅμηρον.\n', NULL, '2017-09-11 10:37:49', '2017-09-11 10:37:49'),
(71, 29, 2, NULL, 1, 'llala lalal', NULL, '2017-09-11 11:07:56', '2017-09-11 11:07:56'),
(72, 8, 2, NULL, 3, 'She who sets the town on fire, Sthenelais, the hight-priced whore,\nwhose breath smells of gold for those who desire her,\nlay by me naked in my dream all night long\nuntil the sweet dawn, giving herself to me for nothing.\nNo longer shall I implore the cruel beauty, nor mourn for myself,\nnow I have Sleep to grant me what he granted.', NULL, '2017-09-15 10:46:15', '2017-09-15 10:46:15'),
(74, 8, 2, NULL, 2, 'Sthénélaïde, celle qui fait brûler les villes, celle qui se fait payer cher,\ncelle qui crache de l’or d’après ceux qui la désirent,\nle rêve l’a couchée nue à mes côtés toute la nuit\nme donnant du plaisir gratuitement jusqu’à l’aurore.\nJe ne devrai pas la supplier à genoux, cette barbare, ni pleurer sur moi-même,\nparce que j’ai le Sommeil qui m’accorde ces plaisirs.', NULL, '2017-09-15 10:50:46', '2017-09-15 10:50:46'),
(75, 8, 2, NULL, 1, 'Stenelaide, la brucia-città che si fa pagare cara,\nquella che sputa oro secondo i suoi spasimanti,\nil sogno l’ha fatta dormire nuda accanto a me tutta la notte\ndandomi piacere gratis fino all’alba.\nNon dovrò supplicarla in ginocchio, questa barbara, né piangermi addosso,\nperché ho il Sonno che mi accorda questi piaceri.', NULL, '2017-09-15 11:02:20', '2017-09-15 11:02:21'),
(76, 5, 2, NULL, 3, 'The day has broken, Chrysilla, and for long early-rising chanticleer\nis crowing to summon envious Dawn.\nA course on thee, most jealous of fowls, who drivest me\nfrom home to the tireless chatter of the young men.\nThou art growing old, Tithonus, or why dost thou chase thy consort Aurora\nso early from thy bed?', NULL, '2017-09-15 11:24:00', '2017-09-15 11:24:00'),
(78, 5, 2, NULL, 1, 'Arriva il giorno, Crisilla, da tempo, all’alba, il gallo mattutino\ncantando ha portato l’Aurora invidiosa.\nVa al diavolo tu, il più geloso degli uccelli, che mi butti\nfuori di casa verso i numerosi discorsi dei giovani.\nInvecchi Titone ; altrimenti perché cacci dal letto così presto\nla tua consorte Aurora ?', NULL, '2017-09-15 11:24:26', '2017-09-15 11:24:26'),
(79, 5, 2, NULL, 2, 'Le jour se lève, Chrysille, et depuis longtemps, le coq matinier\nchantant a fait apparaître l’Aurore envieuse.\nVa au diable toi, le plus jaloux des oiseaux, qui me presse\nhors de la maison vers les nombreux chants des célibataires.\nTu vieillis, Tithon ; pourquoi sinon tu chasses ton épouse Aurore\ndu lit si tôt ?', NULL, '2017-09-15 11:24:46', '2017-09-15 11:24:46'),
(80, 33, 2, NULL, 8, '\n σοί με λάτριν γλυκύδωρος Ἔρως παρέδωκε, Βοῶπι,\nταῦρον ὑποζεύξας εἰς πόθον αὐτόμολον,\nαὐτοθελῆ, πάνδουλον, ἑκούσιον, αὐτοκέλευστον,\n αἰτήσοντα πικρὴν μήποτ᾽ ἐλευθερίην\n\n ἄχρι, φίλη, πολιῆς καὶ γήραος: ὄμμα βάλοι δὲ\n μήποτ᾽ ἐφ᾽ ἡμετέραις ἐλπίσι βασκανίη.\n\n ', NULL, '2017-09-18 13:50:26', '2017-09-18 13:50:26'),
(82, 32, 44, NULL, 4, 'Τί χρή, τί χρή με, δέσποτ\', ἐν ξένᾳ ξένον\nστέγειν, ἢ τί λέγειν πρὸς ἄνδρ\' ὑπόπταν;\nΦράζε μοι·\nτέχνα γὰρ τέχνας ἑτέρας\nπρούχει καὶ γνώμα παρ\' ὅτῳ τὸ θεῖον \nΔιὸς σκῆπτρον ἀνάσσεται·\nσὲ δ\', ὦ τέκνον, τόδ\' ἐλήλυθεν\nπᾶν κράτος ὠγύγιον· τό μοι ἔννεπε\nτί σοι χρεὼν ὑπουργεῖν.\n\n{ΝΕ.} Νῦν μέν, ἴσως γὰρ τόπον ἐσχατιαῖς\nπροσιδεῖν ἐθέλεις ὅντινα κεῖται,\nδέρκου θαρσῶν· ὁπόταν δὲ μόλῃ\nδεινὸς ὁδίτης, τῶνδ\' οὑκ μελάθρων\nπρὸς ἐμὴν αἰεὶ χεῖρα προχωρῶν \nπειρῶ τὸ παρὸν θεραπεύειν.\n\n{ΧΟ.} Μέλον πάλαι μέλημά μοι λέγεις, ἄναξ,\nφρουρεῖν ὄμμ\' ἐπὶ σῷ μάλιστα καιρῷ·\nνῦν δέ μοι\nλέγ\' αὐλὰς ποίας ἔνεδρος\nναίει καὶ χῶρον τίν\' ἔχει· τὸ γάρ μοι \nμαθεῖν οὐκ ἀποκαίριον, \nμὴ προσπεσών με λάθῃ ποθέν·\nτίς τόπος ἢ τίς ἕδρα, τίν\' ἔχει στίβον,\nἔναυλον ἢ θυραῖον;\n\n{ΝΕ.} Οἶκον μὲν ὁρᾷς τόνδ\' ἀμφίθυρον\nπετρίνης κοίτης.\n\n{ΧΟ.} Ποῦ γὰρ ὁ τλάμων αὐτὸς ἄπεστιν;\n\n{ΝΕ.} Δῆλον ἔμοιγ\' ὡς φορβῆς χρείᾳ\nστίβον ὀγμεύει τῇδε πέλας που.\nταύτην γὰρ ἔχειν βιοτῆς αὐτὸν\nλόγος ἐστὶ φύσιν, θηροβολοῦντα\nπτηνοῖς ἰοῖς, στυγερὸν στυγερῶς,\nοὐδέ τιν\' αὐτῷ\nπαιῶνα κακῶν ἐπινωμᾶν.\n \n{ΧΟ.} Οἰκτίρω νιν ἔγωγ\', ὅπως,\nμή του κηδομένου βροτῶν,\nμηδὲ ξύντροφον ὄμμ\' ἔχων,\nδύστανος, μόνος αἰεί,\nνοσεῖ μὲν νόσον ἀγρίαν,\nἀλύει δ\' ἐπὶ παντί τῳ\nχρείας ἱσταμένῳ· πῶς ποτε, πῶς δύσμορος ἀντέχει; \nὮ παλάμαι θνητῶν,\nὦ δύστανα γένη βροτῶν\nοἷς μὴ μέτριος αἰών.\n\nΟὗτος πρωτογόνων ἴσως \nοἴκων οὐδενὸς ὕστερος,\nπάντων ἄμμορος ἐν βίῳ\nκεῖται μοῦνος ἀπ\' ἄλλων, \nστικτῶν ἢ λασίων μετὰ\nθηρῶν, ἔν τ\' ὀδύναις ὁμοῦ\nλιμῷ τ\' οἰκτρὸς ἀνήκεστ’ ἀμερίμνητα τ’ ἔχων βάρη.\nἁ δ\' ἀθυρόστομος\nἀχὼ τηλεφανὴς πικραῖς\nοἰμωγαῖς ὑπακούει.\n\n{ΝΕ.} Οὐδὲν τούτων θαυμαστὸν ἐμοί·\nθεῖα γάρ, εἴπερ κἀγώ τι φρονῶ,\nκαὶ τὰ παθήματα κεῖνα πρὸς αὐτὸν\nτῆς ὠμόφρονος Χρύσης ἐπέβη\nκαὶ νῦν ἃ πονεῖ δίχα κηδεμόνων,\nοὐκ ἔσθ\' ὡς οὐ θεῶν του μελέτῃ\nτοῦ μὴ πρότερον τόνδ\' ἐπὶ Τροίᾳ\nτεῖναι τὰ θεῶν ἀμάχητα βέλη,\nπρὶν ὅδ\' ἐξήκοι χρόνος ᾧ λέγεται\nχρῆναί σφ\' ὑπὸ τῶνδε δαμῆναι.\n \n{ΧΟ.} Εὔστομ\' ἔχε, παῖ. {ΝΕ.} Τί τόδε; {ΧΟ.} Προὐφάνη κτύπος,\nφωτὸς σύντροφος ὡς τειρομένου του,\nἤ που τᾷδ\' ἢ τᾷδε τόπων·\nβάλλει, βάλλει μ\' ἐτύμα\nφθογγά του στίβου κατ\' ἀνάγ-\nκαν ἕρποντος, οὐδέ με λά-\nθει βαρεῖα τηλόθεν αὐ-\nδὰ τρυσάνωρ· διάσημα γὰρ θρηνεῖ. \n\nἈλλ\' ἔχε, τέκνον, {ΝΕ.} Λέγ\' ὅ τι. {ΧΟ.} φροντίδας νέας·\nὡς οὐκ ἔξεδρος, ἀλλ\' ἔντοπος ἁνήρ,\nοὐ μολπὰν σύριγγος ἔχων,\nὡς ποιμὴν ἀγροβάτας,\nἀλλ\' ἤ που πταίων ὑπ\' ἀνάγ-\nκας βοᾷ τηλωπὸν ἰω-\nάν, ἢ ναὸς ἄξενον αὐγά-\nζων ὅρμον· προβοᾷ τι γὰρ δεινόν. ', 'Schein', '2017-09-18 16:32:44', '2017-09-18 16:32:44');
INSERT INTO `entities_versions` (`id_entity_version`, `id_entity`, `id_user`, `id_group`, `id_language`, `text_translated`, `edition`, `createdAt`, `updatedAt`) VALUES
(85, 32, 44, NULL, 2, 'Que faut-il, maître, que faut-il que moi, étranger en terre étrangère, que faut-il que je taise, ou que je dise, à un homme soupçonneux, dis-moi? Car l’art surpasse tout autre art, et de même pour le jugement, chez l’homme qui possède le divin sceptre de Zeus. Et c’est à toi, enfant, qu’est allée cette toute-puissance ancestrale; dis-moi donc en quoi il faut t’aider.\nEh bien – car peut-être veux-tu te tourner vers le lieu au loin où il réside – regarde avec confiance; lorsque viendra le terrible voyageur de ces noires demeures, approche-toi toujours de mon bras et tente de t’occuper de la situation présente.\nCe que tu décris est une préoccupation que j’ai de longue date, roi, que mon oeil veille sur ton plus grand avantage; maintenant dis-moi dans quelle sorte de logis l’habitant vit et quel pays il occupe. Car ce n’est pas un mauvais moment pour moi de l’apprendre, de peur qu’il me tombe dessus à l’improviste, sortant de je ne sais où. Comment est le site? Comment sa demeure? Comment est sa piste? Vers l’intérieur ou l’extérieur?\nTu vois cette maison à deux portes, faite dans un lit de pierre.\nMais où le malheureux lui-même est-il parti?\nIl me semble évident que par besoin de nourriture, il traîne son pas quelque part près d’ici. \nCar on dit qu’il a une telle sorte de mode de vie: chassant les créatures ailées de ses flèches, misérable, misérablement, sans personne qui lui apporte un remède à ses maux.\n\nJe l’ai en pitié, et comment, sans que quelqu’un des mortels ne s’en occupe, privé de l’oeil d’un convive, malheureux, toujours seul, il souffre d’un mal sauvage, et perd ses moyens à chaque fois que se manifeste quelque chose de l’ordre du besoin. Comment donc, comment le malheureux endure-t-il? Ô violences des mortels, ô pauvres races des mortels pour qui la vie n’est pas normale.\n\nCelui-là, peut-être issu des maisons ancestrales, inférieur à personne, privé de tout dans son existence, il gît, seul à l’écart des autres, en compagnie des bêtes tachetées et velues, pitoyable dans les douleurs mélangées à la faim, portant des fardeaux inguérissables dont personne ne s’inquiète. Et celle à la bouche sans porte, l’Écho qu’on entend de loin, répond à ses lamentations aiguës.\nRien de ces choses n’est étonnant à mes yeux. Car ils sont d’origine divine, si du moins mon idée vaut quelque chose, ces maux qui sont venus à lui à cause de Chrysè aux sauvages pensées, et ces épreuves qu’il vit maintenant, sans aides, il n’est pas possible que ce ne soit pas par l’effet du souci de l’un des dieux; souci de ce que cet homme ne tende pas contre Troie les flèches imprenables des dieux, avant que le moment ne soit arrivé, moment pour lequel il est dit qu’il est nécessaire qu’ils (= les Troyens) soient domptés par ces hommes (= les Grecs).\n\nAie la bouche tranquille, enfant. Néo. Pourquoi cela? Choeur. Un son s’est fait entendre compagnon d’un homme sans doute affaibli, venu de lieux ici ou là. Ils me frappent, ils me frappent, les authentiques sons d’un homme marchant suivant la nécessité de son pied, et ne m’a pas échappé une lourde voix au loin d’un homme épuisé; car il émet des plaintes distinctes.\n\nAllons, enfant, aie… Néo. Dis ce que tu penses. Choeur. … des idées nouvelles.\nL’homme n’est pas ailleurs, mais ici même, ne s’accompagnant pas du chant d’une syrinx, tel un berger qui bat la campagne, mais plutôt, il lance un cri visible de loin, soit parce qu’il trébuche sous le coup de la contrainte, soit parce qu’il aperçoit le port inhospitalier d’un navire. En effet, il lance un cri terrible.', 'Elsa', '2017-09-18 16:41:04', '2017-09-18 16:41:04'),
(87, 35, 2, NULL, 3, 'Warming the hearts of youth with learned fervour,\nI will make Love the beginning of my discourse,\nfor it is he who lighteth the torch for youth', 'Paton', '2017-09-19 14:45:45', '2017-09-19 14:45:45'),
(88, 35, 2, NULL, 2, 'Enflammant le cœur des jeunes avec une ferveur savante,\nje ferai que l’Amour soit le commencement de ces discours ;\nc’est lui, en effet, qui allume le flambeau pour les jeunes', 'marviro', '2017-09-19 14:46:08', '2017-09-19 14:46:08'),
(89, 35, 2, NULL, 1, 'Accendendo il cuore dei giovani d’un fuoco sapiente\nfaccio che l’Amore sia l’inizio di questi discorsi\nperché è proprio lui che accende la fiamma per i giovani', 'marviro', '2017-09-19 14:46:29', '2017-09-19 14:46:29'),
(90, 35, 2, NULL, 8, 'νέοις ἀνάπτων καρδίας σοφὴν ζέσιν,\nἀρχὴν Ἔρωτα τῶν λόγων ποιήσομαι:\nπυρσὸν γὰρ οὗτος ἐξανάπτει τοῖς νέοις. ', '', '2017-09-19 14:50:30', '2017-09-19 14:50:30');
-- --------------------------------------------------------
--
-- Structure de la table `entities_versions_align`
--
CREATE TABLE `entities_versions_align` (
`id_align` int(10) UNSIGNED NOT NULL,
`id_entity` int(11) DEFAULT NULL,
`source` int(11) DEFAULT NULL,
`source_lang` int(11) DEFAULT NULL,
`target` int(11) DEFAULT NULL,
`target_lang` int(11) DEFAULT NULL,
`json` longtext COLLATE utf8_unicode_ci,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `entities_versions_align`
--
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(1, 1, 1, 8, 4, 1, '[[[{\"t\":\"ὤμοσε\",\"h\":[[1],[]],\"pos\":\"[1][1]\",\"parent\":0,\"children\":1},{\"t\":\"Καλλίγνωτος\",\"h\":[[2],[1]],\"pos\":\"[1][2]\",\"parent\":0,\"children\":2},{\"t\":\"Ἰωνίδι\",\"h\":[[3],[]],\"pos\":\"[1][3]\",\"parent\":0,\"children\":3},{\"p\":\",\"},{\"t\":\"μήποτε\",\"h\":[[4],[]],\"pos\":\"[1][4]\",\"parent\":0,\"children\":4},{\"t\":\"κείνης\",\"h\":[[5],[]],\"pos\":\"[1][5]\",\"parent\":0,\"children\":5}],[{\"t\":\"ἕξειν\",\"h\":[[6],[]],\"pos\":\"[1][6]\",\"parent\":0,\"children\":6},{\"t\":\"μήτε\",\"h\":[[7],[]],\"pos\":\"[1][7]\",\"parent\":0,\"children\":7},{\"t\":\"φίλον\",\"h\":[[8],[]],\"pos\":\"[1][8]\",\"parent\":0,\"children\":8},{\"t\":\"κρέσσονα\",\"h\":[[9],[]],\"pos\":\"[1][9]\",\"parent\":0,\"children\":9},{\"t\":\"μήτε\",\"h\":[[10],[]],\"pos\":\"[1][10]\",\"parent\":0,\"children\":10},{\"t\":\"φίλην\",\"h\":[[11],[]],\"pos\":\"[1][11]\",\"parent\":0,\"children\":11},{\"p\":\".\"}],[{\"t\":\"ὤμοσεν\",\"h\":[[12],[]],\"pos\":\"[1][12]\",\"parent\":0,\"children\":12},{\"p\":\":\"},{\"t\":\"ἀλλὰ\",\"h\":[[13],[]],\"pos\":\"[1][13]\",\"parent\":0,\"children\":13},{\"t\":\"λέγουσιν\",\"h\":[[14],[]],\"pos\":\"[1][14]\",\"parent\":0,\"children\":14},{\"t\":\"ἀληθέα\",\"h\":[[15],[]],\"pos\":\"[1][15]\",\"parent\":0,\"children\":15},{\"p\":\",\"},{\"t\":\"τοὺς\",\"h\":[[16],[]],\"pos\":\"[1][16]\",\"parent\":0,\"children\":16},{\"t\":\"ἐν\",\"h\":[[17],[]],\"pos\":\"[1][17]\",\"parent\":0,\"children\":17},{\"t\":\"ἔρωτι\",\"h\":[[18],[]],\"pos\":\"[1][18]\",\"parent\":0,\"children\":18}],[{\"t\":\"ὅρκους\",\"h\":[[19],[]],\"pos\":\"[1][19]\",\"parent\":0,\"children\":19},{\"p\":\".\"},{\"t\":\"μὴ\",\"h\":[[20],[]],\"pos\":\"[1][20]\",\"parent\":0,\"children\":20},{\"t\":\"δύνειν\",\"h\":[[21],[]],\"pos\":\"[1][21]\",\"parent\":0,\"children\":21},{\"t\":\"οὔατ\",\"h\":[[22],[]],\"pos\":\"[1][22]\",\"parent\":0,\"children\":22},{\"t\":\"ἐς\",\"h\":[[23],[]],\"pos\":\"[1][23]\",\"parent\":0,\"children\":23},{\"t\":\"ἀθανάτων\",\"h\":[[24],[32]],\"pos\":\"[1][24]\",\"parent\":0,\"children\":24},{\"p\":\".\"}],[],[{\"t\":\"νῦν\",\"h\":[[25],[]],\"pos\":\"[1][25]\",\"parent\":0,\"children\":25},{\"t\":\"δ\",\"h\":[[26],[]],\"pos\":\"[1][26]\",\"parent\":0,\"children\":26},{\"t\":\"ὁ\",\"h\":[[27],[]],\"pos\":\"[1][27]\",\"parent\":0,\"children\":27},{\"t\":\"μὲν\",\"h\":[[28],[]],\"pos\":\"[1][28]\",\"parent\":0,\"children\":28},{\"t\":\"ἀρσενικῷ\",\"h\":[[29],[]],\"pos\":\"[1][29]\",\"parent\":0,\"children\":29},{\"t\":\"θέρεται\",\"h\":[[30],[]],\"pos\":\"[1][30]\",\"parent\":0,\"children\":30},{\"t\":\"πυρί\",\"h\":[[31],[]],\"pos\":\"[1][31]\",\"parent\":0,\"children\":31},{\"p\":\":\"},{\"t\":\"τῆς\",\"h\":[[32],[]],\"pos\":\"[1][32]\",\"parent\":0,\"children\":32},{\"t\":\"δὲ\",\"h\":[[33],[]],\"pos\":\"[1][33]\",\"parent\":0,\"children\":33},{\"t\":\"ταλαίνης\",\"h\":[[34],[]],\"pos\":\"[1][34]\",\"parent\":0,\"children\":34}],[{\"t\":\"νύμφης\",\"h\":[[35],[]],\"pos\":\"[1][35]\",\"parent\":0,\"children\":35},{\"p\":\",\"},{\"t\":\"ὡς\",\"h\":[[36],[]],\"pos\":\"[1][36]\",\"parent\":0,\"children\":36},{\"t\":\"Μεγαρέων\",\"h\":[[37],[58]],\"pos\":\"[1][37]\",\"parent\":0,\"children\":37},{\"p\":\",\"},{\"t\":\"οὐ\",\"h\":[[38],[]],\"pos\":\"[1][38]\",\"parent\":0,\"children\":38},{\"t\":\"λόγος\",\"h\":[[39],[]],\"pos\":\"[1][39]\",\"parent\":0,\"children\":39},{\"t\":\"οὐδ\",\"h\":[[40],[]],\"pos\":\"[1][40]\",\"parent\":0,\"children\":40},{\"t\":\"ἀριθμός\",\"h\":[[41],[]],\"pos\":\"[1][41]\",\"parent\":0,\"children\":41},{\"p\":\".\"},{\"p\":\".\"}]],[[{\"t\":\"Callignoto\",\"h\":[[2],[1]],\"pos\":\"[2][1]\",\"parent\":1,\"children\":1},{\"t\":\"giurò\",\"h\":[[],[2]],\"pos\":\"[2][2]\",\"parent\":1,\"children\":2},{\"t\":\"a\",\"h\":[[],[3]],\"pos\":\"[2][3]\",\"parent\":1,\"children\":3},{\"t\":\"Ionide\",\"h\":[[],[4]],\"pos\":\"[2][4]\",\"parent\":1,\"children\":4},{\"t\":\"che\",\"h\":[[],[5]],\"pos\":\"[2][5]\",\"parent\":1,\"children\":5},{\"t\":\"non\",\"h\":[[],[6]],\"pos\":\"[2][6]\",\"parent\":1,\"children\":6},{\"t\":\"avrebbe\",\"h\":[[],[7]],\"pos\":\"[2][7]\",\"parent\":1,\"children\":7},{\"t\":\"mai\",\"h\":[[],[8]],\"pos\":\"[2][8]\",\"parent\":1,\"children\":8},{\"t\":\"avuto\",\"h\":[[],[9]],\"pos\":\"[2][9]\",\"parent\":1,\"children\":9}],[{\"t\":\"un\",\"h\":[[],[10]],\"pos\":\"[2][10]\",\"parent\":1,\"children\":10},{\"t\":\"compagno\",\"h\":[[],[11]],\"pos\":\"[2][11]\",\"parent\":1,\"children\":11},{\"t\":\"o\",\"h\":[[],[12]],\"pos\":\"[2][12]\",\"parent\":1,\"children\":12},{\"t\":\"una\",\"h\":[[],[13]],\"pos\":\"[2][13]\",\"parent\":1,\"children\":13},{\"t\":\"compagna\",\"h\":[[],[14]],\"pos\":\"[2][14]\",\"parent\":1,\"children\":14},{\"t\":\"migliore\",\"h\":[[],[15]],\"pos\":\"[2][15]\",\"parent\":1,\"children\":15},{\"t\":\"di\",\"h\":[[],[16]],\"pos\":\"[2][16]\",\"parent\":1,\"children\":16},{\"t\":\"lei\",\"h\":[[],[17]],\"pos\":\"[2][17]\",\"parent\":1,\"children\":17},{\"p\":\".\"}],[{\"t\":\"Si\",\"h\":[[],[18]],\"pos\":\"[2][18]\",\"parent\":1,\"children\":18},{\"t\":\"dice\",\"h\":[[],[19]],\"pos\":\"[2][19]\",\"parent\":1,\"children\":19},{\"p\":\",\"},{\"t\":\"però\",\"h\":[[],[20]],\"pos\":\"[2][20]\",\"parent\":1,\"children\":20},{\"p\":\",\"},{\"t\":\"che\",\"h\":[[],[21]],\"pos\":\"[2][21]\",\"parent\":1,\"children\":21},{\"t\":\"i\",\"h\":[[],[22]],\"pos\":\"[2][22]\",\"parent\":1,\"children\":22},{\"t\":\"giuramenti\",\"h\":[[],[23]],\"pos\":\"[2][23]\",\"parent\":1,\"children\":23},{\"t\":\"d\",\"h\":[[],[24]],\"pos\":\"[2][24]\",\"parent\":1,\"children\":24},{\"p\":\"’\"},{\"t\":\"amore\",\"h\":[[],[25]],\"pos\":\"[2][25]\",\"parent\":1,\"children\":25}],[{\"t\":\"non\",\"h\":[[],[26]],\"pos\":\"[2][26]\",\"parent\":1,\"children\":26},{\"t\":\"arrivino\",\"h\":[[],[27]],\"pos\":\"[2][27]\",\"parent\":1,\"children\":27},{\"t\":\"alle\",\"h\":[[],[28]],\"pos\":\"[2][28]\",\"parent\":1,\"children\":28},{\"t\":\"orecchie\",\"h\":[[],[29]],\"pos\":\"[2][29]\",\"parent\":1,\"children\":29},{\"t\":\"degli\",\"h\":[[],[30]],\"pos\":\"[2][30]\",\"parent\":1,\"children\":30},{\"t\":\"dei\",\"h\":[[],[31]],\"pos\":\"[2][31]\",\"parent\":1,\"children\":31},{\"t\":\"immortali\",\"h\":[[24],[32]],\"pos\":\"[2][32]\",\"parent\":1,\"children\":32},{\"p\":\",\"},{\"t\":\"ed\",\"h\":[[],[33]],\"pos\":\"[2][33]\",\"parent\":1,\"children\":33},{\"t\":\"è\",\"h\":[[],[34]],\"pos\":\"[2][34]\",\"parent\":1,\"children\":34},{\"t\":\"vero\",\"h\":[[],[35]],\"pos\":\"[2][35]\",\"parent\":1,\"children\":35},{\"p\":\".\"}],[{\"t\":\"Infatti\",\"h\":[[],[36]],\"pos\":\"[2][36]\",\"parent\":1,\"children\":36},{\"t\":\"ora\",\"h\":[[],[37]],\"pos\":\"[2][37]\",\"parent\":1,\"children\":37},{\"t\":\"egli\",\"h\":[[],[38]],\"pos\":\"[2][38]\",\"parent\":1,\"children\":38},{\"t\":\"arde\",\"h\":[[],[39]],\"pos\":\"[2][39]\",\"parent\":1,\"children\":39},{\"t\":\"di\",\"h\":[[],[40]],\"pos\":\"[2][40]\",\"parent\":1,\"children\":40},{\"t\":\"passione\",\"h\":[[],[41]],\"pos\":\"[2][41]\",\"parent\":1,\"children\":41},{\"t\":\"per\",\"h\":[[],[42]],\"pos\":\"[2][42]\",\"parent\":1,\"children\":42},{\"t\":\"un\",\"h\":[[],[43]],\"pos\":\"[2][43]\",\"parent\":1,\"children\":43},{\"t\":\"uomo\",\"h\":[[],[44]],\"pos\":\"[2][44]\",\"parent\":1,\"children\":44},{\"t\":\"e\",\"h\":[[],[45]],\"pos\":\"[2][45]\",\"parent\":1,\"children\":45},{\"t\":\"non\",\"h\":[[],[46]],\"pos\":\"[2][46]\",\"parent\":1,\"children\":46},{\"t\":\"ha\",\"h\":[[],[47]],\"pos\":\"[2][47]\",\"parent\":1,\"children\":47},{\"t\":\"più\",\"h\":[[],[48]],\"pos\":\"[2][48]\",\"parent\":1,\"children\":48}],[{\"t\":\"né\",\"h\":[[],[49]],\"pos\":\"[2][49]\",\"parent\":1,\"children\":49},{\"t\":\"stima\",\"h\":[[],[50]],\"pos\":\"[2][50]\",\"parent\":1,\"children\":50},{\"t\":\"né\",\"h\":[[],[51]],\"pos\":\"[2][51]\",\"parent\":1,\"children\":51},{\"t\":\"considerazione\",\"h\":[[],[52]],\"pos\":\"[2][52]\",\"parent\":1,\"children\":52},{\"t\":\"della\",\"h\":[[],[53]],\"pos\":\"[2][53]\",\"parent\":1,\"children\":53},{\"t\":\"povera\",\"h\":[[],[54]],\"pos\":\"[2][54]\",\"parent\":1,\"children\":54},{\"t\":\"fidanzata\",\"h\":[[],[55]],\"pos\":\"[2][55]\",\"parent\":1,\"children\":55},{\"p\":\",\"},{\"t\":\"come\",\"h\":[[],[56]],\"pos\":\"[2][56]\",\"parent\":1,\"children\":56},{\"t\":\"dei\",\"h\":[[],[57]],\"pos\":\"[2][57]\",\"parent\":1,\"children\":57},{\"t\":\"Megaresi\",\"h\":[[37],[58]],\"pos\":\"[2][58]\",\"parent\":1,\"children\":58},{\"p\":\".\"}]]]', 3, NULL, '2017-05-31 20:28:29', '2017-05-31 20:28:29'),
(2, 1, 1, 8, 2, 1, '[[[],[{\"t\":\"ὤμοσε\",\"h\":[[1],[2,3]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"Καλλίγνωτος\",\"h\":[[2],[]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"Ἰωνίδι\",\"h\":[[3],[]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"p\":\",\",\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"μήποτε\",\"h\":[[5],[]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"κείνης\",\"h\":[[6],[]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"ἕξειν\",\"h\":[[7],[]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"μήτε\",\"h\":[[8],[]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"φίλον\",\"h\":[[9],[]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"κρέσσονα\",\"h\":[[10],[]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"μήτε\",\"h\":[[11],[]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"φίλην\",\"h\":[[12],[]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\".\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"}],[{\"t\":\"ὤμοσεν\",\"h\":[[14],[]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"p\":\":\",\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"ἀλλὰ\",\"h\":[[16],[]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"λέγουσιν\",\"h\":[[17],[]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"ἀληθέα\",\"h\":[[18],[]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"p\":\",\",\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"τοὺς\",\"h\":[[20],[]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"ἐν\",\"h\":[[21],[]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"ἔρωτι\",\"h\":[[22],[]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"}],[{\"t\":\"ὅρκους\",\"h\":[[23],[]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"p\":\".\",\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"μὴ\",\"h\":[[25],[]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"δύνειν\",\"h\":[[26],[]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"οὔατ᾽\",\"h\":[[27],[]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"ἐς\",\"h\":[[28],[]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"ἀθανάτων\",\"h\":[[29],[]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"p\":\".\",\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"}],[],[{\"t\":\"νῦν\",\"h\":[[31],[]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"δ᾽\",\"h\":[[32],[]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"ὁ\",\"h\":[[33],[]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"μὲν\",\"h\":[[34],[]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"ἀρσενικῷ\",\"h\":[[35],[]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"θέρεται\",\"h\":[[36],[]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"πυρί\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"p\":\":\",\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"τῆς\",\"h\":[[39],[]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"δὲ\",\"h\":[[40],[]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"ταλαίνης\",\"h\":[[41],[]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"}],[{\"t\":\"νύμφης\",\"h\":[[42],[]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"p\":\",\",\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"ὡς\",\"h\":[[44],[]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"t\":\"Μεγαρέων\",\"h\":[[45],[]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"p\":\",\",\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"οὐ\",\"h\":[[47],[]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"λόγος\",\"h\":[[48],[]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"οὐδ᾽\",\"h\":[[49],[]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"ἀριθμός\",\"h\":[[50],[]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"p\":\".\",\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"p\":\".\",\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[]],[[{\"t\":\"Callignoto\",\"h\":[[],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"ha\",\"h\":[[1],[2,3]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"giurato\",\"h\":[[1],[2,3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"a\",\"h\":[[],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"Ionide\",\"h\":[[],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"che\",\"h\":[[],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"mai\",\"h\":[[],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"}],[{\"t\":\"amerà\",\"h\":[[],[8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"qualcuno\",\"h\":[[],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"più\",\"h\":[[],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"di\",\"h\":[[],[11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"lei\",\"h\":[[],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"p\":\"-\",\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"né\",\"h\":[[],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"uomo\",\"h\":[[],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"né\",\"h\":[[],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"donna\",\"h\":[[],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\".\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"}],[{\"t\":\"L\",\"h\":[[],[19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"p\":\"’\",\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"ha\",\"h\":[[],[21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"giurato\",\"h\":[[],[22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"p\":\",\",\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"ma\",\"h\":[[],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"p\":\"è\",\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"vero\",\"h\":[[],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"quel\",\"h\":[[],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"che\",\"h\":[[],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"dice\",\"h\":[[],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"la\",\"h\":[[],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"gente\",\"h\":[[],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"p\":\":\",\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"i\",\"h\":[[],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"giuramenti\",\"h\":[[],[34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"in\",\"h\":[[],[35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"amore\",\"h\":[[],[36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"}],[{\"t\":\"non\",\"h\":[[],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"arrivano\",\"h\":[[],[38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"agli\",\"h\":[[],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"orecchi\",\"h\":[[],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"degli\",\"h\":[[],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"immortali\",\"h\":[[],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"p\":\".\",\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"}],[{\"t\":\"Ora\",\"h\":[[],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"il\",\"h\":[[],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"fuoco\",\"h\":[[],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"che\",\"h\":[[],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"lo\",\"h\":[[],[48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"scalda\",\"h\":[[],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"p\":\"è\",\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"un\",\"h\":[[],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"ragazzo\",\"h\":[[],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"p\":\":\",\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"la\",\"h\":[[],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"sua\",\"h\":[[],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"triste\",\"h\":[[],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"}],[{\"t\":\"giovane\",\"h\":[[],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"sposa\",\"h\":[[],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"p\":\",\",\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"come\",\"h\":[[],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"i\",\"h\":[[],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"megarici\",\"h\":[[],[62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"p\":\",\",\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"non\",\"h\":[[],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"la\",\"h\":[[],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"calcola\",\"h\":[[],[66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"più\",\"h\":[[],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"p\":\".\",\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"}]]]', 9, NULL, '2017-09-05 08:08:38', '2017-09-05 08:08:38'),
(3, 1, 1, 8, 2, 1, '[[[],[{\"t\":\"ὤμοσε\",\"h\":[[1,2],[1,2,3]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"Καλλίγνωτος\",\"h\":[[1,2],[1,2,3]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"Ἰωνίδι\",\"h\":[[3],[]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"p\":\",\",\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"μήποτε\",\"h\":[[5],[]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"κείνης\",\"h\":[[6],[]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"ἕξειν\",\"h\":[[7],[]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"μήτε\",\"h\":[[8],[]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"φίλον\",\"h\":[[9],[]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"κρέσσονα\",\"h\":[[10],[]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"μήτε\",\"h\":[[11],[]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"φίλην\",\"h\":[[12],[]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\".\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"}],[{\"t\":\"ὤμοσεν\",\"h\":[[14],[]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"p\":\":\",\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"ἀλλὰ\",\"h\":[[16],[]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"λέγουσιν\",\"h\":[[17],[]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"ἀληθέα\",\"h\":[[18],[]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"p\":\",\",\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"τοὺς\",\"h\":[[20],[]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"ἐν\",\"h\":[[21],[]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"ἔρωτι\",\"h\":[[22],[]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"}],[{\"t\":\"ὅρκους\",\"h\":[[23],[]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"p\":\".\",\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"μὴ\",\"h\":[[25],[]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"δύνειν\",\"h\":[[26],[]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"οὔατ᾽\",\"h\":[[27],[]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"ἐς\",\"h\":[[28],[]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"ἀθανάτων\",\"h\":[[29],[]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"p\":\".\",\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"}],[],[{\"t\":\"νῦν\",\"h\":[[31],[]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"δ᾽\",\"h\":[[32],[]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"ὁ\",\"h\":[[33],[]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"μὲν\",\"h\":[[34],[]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"ἀρσενικῷ\",\"h\":[[35],[]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"θέρεται\",\"h\":[[36],[]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"πυρί\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"p\":\":\",\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"τῆς\",\"h\":[[39],[]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"δὲ\",\"h\":[[40],[]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"ταλαίνης\",\"h\":[[41],[]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"}],[{\"t\":\"νύμφης\",\"h\":[[42],[]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"p\":\",\",\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"ὡς\",\"h\":[[44],[]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"t\":\"Μεγαρέων\",\"h\":[[45],[]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"p\":\",\",\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"οὐ\",\"h\":[[47],[]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"λόγος\",\"h\":[[48],[]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"οὐδ᾽\",\"h\":[[49],[]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"ἀριθμός\",\"h\":[[50],[]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"p\":\".\",\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"p\":\".\",\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[]],[[{\"t\":\"Callignoto\",\"h\":[[1,2],[1,2,3]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"ha\",\"h\":[[1,2],[1,2,3]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"giurato\",\"h\":[[1,2],[1,2,3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"a\",\"h\":[[],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"Ionide\",\"h\":[[],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"che\",\"h\":[[],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"mai\",\"h\":[[],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"}],[{\"t\":\"amerà\",\"h\":[[],[8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"qualcuno\",\"h\":[[],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"più\",\"h\":[[],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"di\",\"h\":[[],[11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"lei\",\"h\":[[],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"p\":\"-\",\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"né\",\"h\":[[],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"uomo\",\"h\":[[],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"né\",\"h\":[[],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"donna\",\"h\":[[],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\".\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"}],[{\"t\":\"L\",\"h\":[[],[19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"p\":\"’\",\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"ha\",\"h\":[[],[21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"giurato\",\"h\":[[],[22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"p\":\",\",\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"ma\",\"h\":[[],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"p\":\"è\",\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"vero\",\"h\":[[],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"quel\",\"h\":[[],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"che\",\"h\":[[],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"dice\",\"h\":[[],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"la\",\"h\":[[],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"gente\",\"h\":[[],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"p\":\":\",\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"i\",\"h\":[[],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"giuramenti\",\"h\":[[],[34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"in\",\"h\":[[],[35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"amore\",\"h\":[[],[36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"}],[{\"t\":\"non\",\"h\":[[],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"arrivano\",\"h\":[[],[38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"agli\",\"h\":[[],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"orecchi\",\"h\":[[],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"degli\",\"h\":[[],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"immortali\",\"h\":[[],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"p\":\".\",\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"}],[{\"t\":\"Ora\",\"h\":[[],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"il\",\"h\":[[],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"fuoco\",\"h\":[[],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"che\",\"h\":[[],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"lo\",\"h\":[[],[48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"scalda\",\"h\":[[],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"p\":\"è\",\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"un\",\"h\":[[],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"ragazzo\",\"h\":[[],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"p\":\":\",\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"la\",\"h\":[[],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"sua\",\"h\":[[],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"triste\",\"h\":[[],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"}],[{\"t\":\"giovane\",\"h\":[[],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"sposa\",\"h\":[[],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"p\":\",\",\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"come\",\"h\":[[],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"i\",\"h\":[[],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"megarici\",\"h\":[[],[62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"p\":\",\",\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"non\",\"h\":[[],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"la\",\"h\":[[],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"calcola\",\"h\":[[],[66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"più\",\"h\":[[],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"p\":\".\",\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"}]]]', 1, NULL, '2017-09-05 08:10:33', '2017-09-05 08:10:33'),
(4, 1, 1, 8, 2, 1, '[[[],[{\"t\":\"ὤμοσε\",\"h\":[[1],[2,3]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"Καλλίγνωτος\",\"h\":[[2],[]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"Ἰωνίδι\",\"h\":[[3],[]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"p\":\",\",\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"μήποτε\",\"h\":[[5],[]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"κείνης\",\"h\":[[6],[]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"ἕξειν\",\"h\":[[7],[]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"μήτε\",\"h\":[[8],[]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"φίλον\",\"h\":[[9],[]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"κρέσσονα\",\"h\":[[10],[]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"μήτε\",\"h\":[[11],[]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"φίλην\",\"h\":[[12],[]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\".\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"}],[{\"t\":\"ὤμοσεν\",\"h\":[[14],[]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"p\":\":\",\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"ἀλλὰ\",\"h\":[[16],[]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"λέγουσιν\",\"h\":[[17],[]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"ἀληθέα\",\"h\":[[18],[]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"p\":\",\",\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"τοὺς\",\"h\":[[20,21,22],[35,36]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"ἐν\",\"h\":[[20,21,22],[35,36]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"ἔρωτι\",\"h\":[[20,21,22],[35,36]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"}],[{\"t\":\"ὅρκους\",\"h\":[[23],[34]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"p\":\".\",\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"μὴ\",\"h\":[[25],[]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"δύνειν\",\"h\":[[26],[]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"οὔατ᾽\",\"h\":[[27],[]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"ἐς\",\"h\":[[28],[]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"ἀθανάτων\",\"h\":[[29],[]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"p\":\".\",\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"}],[],[{\"t\":\"νῦν\",\"h\":[[31],[]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"δ᾽\",\"h\":[[32],[]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"ὁ\",\"h\":[[33],[]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"μὲν\",\"h\":[[34],[]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"ἀρσενικῷ\",\"h\":[[35],[]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"θέρεται\",\"h\":[[36],[]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"πυρί\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"p\":\":\",\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"τῆς\",\"h\":[[39],[]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"δὲ\",\"h\":[[40],[]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"ταλαίνης\",\"h\":[[41],[]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"}],[{\"t\":\"νύμφης\",\"h\":[[42],[]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"p\":\",\",\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"ὡς\",\"h\":[[44],[]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"t\":\"Μεγαρέων\",\"h\":[[45],[]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"p\":\",\",\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"οὐ\",\"h\":[[47],[]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"λόγος\",\"h\":[[48],[]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"οὐδ᾽\",\"h\":[[49],[]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"ἀριθμός\",\"h\":[[50],[]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"p\":\".\",\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"p\":\".\",\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[]],[[{\"t\":\"Callignoto\",\"h\":[[],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"ha\",\"h\":[[1],[2,3]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"giurato\",\"h\":[[1],[2,3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"a\",\"h\":[[],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"Ionide\",\"h\":[[],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"che\",\"h\":[[],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"mai\",\"h\":[[],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"}],[{\"t\":\"amerà\",\"h\":[[],[8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"qualcuno\",\"h\":[[],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"più\",\"h\":[[],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"di\",\"h\":[[],[11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"lei\",\"h\":[[],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"p\":\"-\",\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"né\",\"h\":[[],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"uomo\",\"h\":[[],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"né\",\"h\":[[],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"donna\",\"h\":[[],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\".\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"}],[{\"t\":\"L\",\"h\":[[],[19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"p\":\"’\",\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"ha\",\"h\":[[],[21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"giurato\",\"h\":[[],[22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"p\":\",\",\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"ma\",\"h\":[[],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"p\":\"è\",\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"vero\",\"h\":[[],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"quel\",\"h\":[[],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"che\",\"h\":[[],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"dice\",\"h\":[[],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"la\",\"h\":[[],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"gente\",\"h\":[[],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"p\":\":\",\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"i\",\"h\":[[],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"giuramenti\",\"h\":[[23],[34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"in\",\"h\":[[20,21,22],[35,36]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"amore\",\"h\":[[20,21,22],[35,36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"}],[{\"t\":\"non\",\"h\":[[],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"arrivano\",\"h\":[[],[38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"agli\",\"h\":[[],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"orecchi\",\"h\":[[],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"degli\",\"h\":[[],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"immortali\",\"h\":[[],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"p\":\".\",\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"}],[{\"t\":\"Ora\",\"h\":[[],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"il\",\"h\":[[],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"fuoco\",\"h\":[[],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"che\",\"h\":[[],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"lo\",\"h\":[[],[48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"scalda\",\"h\":[[],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"p\":\"è\",\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"un\",\"h\":[[],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"ragazzo\",\"h\":[[],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"p\":\":\",\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"la\",\"h\":[[],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"sua\",\"h\":[[],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"triste\",\"h\":[[],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"}],[{\"t\":\"giovane\",\"h\":[[],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"sposa\",\"h\":[[],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"p\":\",\",\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"come\",\"h\":[[],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"i\",\"h\":[[],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"megarici\",\"h\":[[],[62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"p\":\",\",\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"non\",\"h\":[[],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"la\",\"h\":[[],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"calcola\",\"h\":[[],[66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"più\",\"h\":[[],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"p\":\".\",\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"}]]]', 10, NULL, '2017-09-05 08:12:15', '2017-09-05 08:12:15'),
(5, 1, 1, 8, 2, 1, '[[[],[{\"t\":\"ὤμοσε\",\"h\":[[1],[2,3]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"Καλλίγνωτος\",\"h\":[[2],[1]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"Ἰωνίδι\",\"h\":[[3],[4,5]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"p\":\",\",\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"μήποτε\",\"h\":[[5],[6,7]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"κείνης\",\"h\":[[6],[9]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"ἕξειν\",\"h\":[[7],[]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"μήτε\",\"h\":[[8],[]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"φίλον\",\"h\":[[9],[]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"κρέσσονα\",\"h\":[[10],[]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"μήτε\",\"h\":[[11],[]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"φίλην\",\"h\":[[12],[]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\".\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"}],[{\"t\":\"ὤμοσεν\",\"h\":[[14],[]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"p\":\":\",\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"ἀλλὰ\",\"h\":[[16],[]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"λέγουσιν\",\"h\":[[17],[]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"ἀληθέα\",\"h\":[[18],[]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"p\":\",\",\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"τοὺς\",\"h\":[[20],[]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"ἐν\",\"h\":[[21],[]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"ἔρωτι\",\"h\":[[22],[]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"}],[{\"t\":\"ὅρκους\",\"h\":[[23],[]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"p\":\".\",\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"μὴ\",\"h\":[[25],[]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"δύνειν\",\"h\":[[26],[]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"οὔατ᾽\",\"h\":[[27],[]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"ἐς\",\"h\":[[28],[]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"ἀθανάτων\",\"h\":[[29],[]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"p\":\".\",\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"}],[],[{\"t\":\"νῦν\",\"h\":[[31],[]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"δ᾽\",\"h\":[[32],[]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"ὁ\",\"h\":[[33],[]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"μὲν\",\"h\":[[34],[]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"ἀρσενικῷ\",\"h\":[[35],[]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"θέρεται\",\"h\":[[36],[]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"πυρί\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"p\":\":\",\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"τῆς\",\"h\":[[39],[]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"δὲ\",\"h\":[[40],[]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"ταλαίνης\",\"h\":[[41],[]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"}],[{\"t\":\"νύμφης\",\"h\":[[42],[]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"p\":\",\",\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"ὡς\",\"h\":[[44],[]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"t\":\"Μεγαρέων\",\"h\":[[45],[]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"p\":\",\",\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"οὐ\",\"h\":[[47],[]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"λόγος\",\"h\":[[48],[]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"οὐδ᾽\",\"h\":[[49],[]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"ἀριθμός\",\"h\":[[50],[]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"p\":\".\",\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"p\":\".\",\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[]],[[{\"t\":\"Callignoto\",\"h\":[[2],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"ha\",\"h\":[[1],[2,3]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"giurato\",\"h\":[[1],[2,3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"a\",\"h\":[[3],[4,5]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"Ionide\",\"h\":[[3],[4,5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"che\",\"h\":[[5],[6,7]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"mai\",\"h\":[[5],[6,7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"}],[{\"t\":\"amerà\",\"h\":[[],[8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"qualcuno\",\"h\":[[6],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"più\",\"h\":[[],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"di\",\"h\":[[],[11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"lei\",\"h\":[[],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"p\":\"-\",\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"né\",\"h\":[[],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"uomo\",\"h\":[[],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"né\",\"h\":[[],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"donna\",\"h\":[[],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\".\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"}],[{\"t\":\"L\",\"h\":[[],[19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"p\":\"’\",\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"ha\",\"h\":[[],[21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"giurato\",\"h\":[[],[22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"p\":\",\",\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"ma\",\"h\":[[],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"p\":\"è\",\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"vero\",\"h\":[[],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"quel\",\"h\":[[],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"che\",\"h\":[[],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"dice\",\"h\":[[],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"la\",\"h\":[[],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"gente\",\"h\":[[],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"p\":\":\",\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"i\",\"h\":[[],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"giuramenti\",\"h\":[[],[34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"in\",\"h\":[[],[35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"amore\",\"h\":[[],[36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"}],[{\"t\":\"non\",\"h\":[[],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"arrivano\",\"h\":[[],[38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"agli\",\"h\":[[],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"orecchi\",\"h\":[[],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"degli\",\"h\":[[],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"immortali\",\"h\":[[],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"p\":\".\",\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"}],[{\"t\":\"Ora\",\"h\":[[],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"il\",\"h\":[[],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"fuoco\",\"h\":[[],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"che\",\"h\":[[],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"lo\",\"h\":[[],[48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"scalda\",\"h\":[[],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"p\":\"è\",\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"un\",\"h\":[[],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"ragazzo\",\"h\":[[],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"p\":\":\",\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"la\",\"h\":[[],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"sua\",\"h\":[[],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"triste\",\"h\":[[],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"}],[{\"t\":\"giovane\",\"h\":[[],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"sposa\",\"h\":[[],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"p\":\",\",\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"come\",\"h\":[[],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"i\",\"h\":[[],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"megarici\",\"h\":[[],[62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"p\":\",\",\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"non\",\"h\":[[],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"la\",\"h\":[[],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"calcola\",\"h\":[[],[66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"più\",\"h\":[[],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"p\":\".\",\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"}]]]', 2, NULL, '2017-09-05 08:14:50', '2017-09-05 08:14:50');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(6, 1, 1, 8, 2, 1, '[[[],[{\"t\":\"ὤμοσε\",\"h\":[[1],[1]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"Καλλίγνωτος\",\"h\":[[2],[]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"Ἰωνίδι\",\"h\":[[3],[]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"p\":\",\",\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"μήποτε\",\"h\":[[5],[]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"κείνης\",\"h\":[[6],[]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"ἕξειν\",\"h\":[[7],[]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"μήτε\",\"h\":[[8],[]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"φίλον\",\"h\":[[9],[]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"κρέσσονα\",\"h\":[[10],[]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"μήτε\",\"h\":[[11],[]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"φίλην\",\"h\":[[12],[]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\".\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"}],[{\"t\":\"ὤμοσεν\",\"h\":[[14],[]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"p\":\":\",\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"ἀλλὰ\",\"h\":[[16],[]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"λέγουσιν\",\"h\":[[17],[]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"ἀληθέα\",\"h\":[[18],[]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"p\":\",\",\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"τοὺς\",\"h\":[[20],[]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"ἐν\",\"h\":[[21],[]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"ἔρωτι\",\"h\":[[22],[]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"}],[{\"t\":\"ὅρκους\",\"h\":[[23],[]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"p\":\".\",\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"μὴ\",\"h\":[[25],[]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"δύνειν\",\"h\":[[26],[]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"οὔατ᾽\",\"h\":[[27],[]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"ἐς\",\"h\":[[28],[]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"ἀθανάτων\",\"h\":[[29],[]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"p\":\".\",\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"}],[],[{\"t\":\"νῦν\",\"h\":[[31],[]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"δ᾽\",\"h\":[[32],[]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"ὁ\",\"h\":[[33],[]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"μὲν\",\"h\":[[34],[]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"ἀρσενικῷ\",\"h\":[[35],[]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"θέρεται\",\"h\":[[36],[]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"πυρί\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"p\":\":\",\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"τῆς\",\"h\":[[39],[]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"δὲ\",\"h\":[[40],[]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"ταλαίνης\",\"h\":[[41],[]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"}],[{\"t\":\"νύμφης\",\"h\":[[42],[]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"p\":\",\",\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"ὡς\",\"h\":[[44],[]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"t\":\"Μεγαρέων\",\"h\":[[45],[]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"p\":\",\",\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"οὐ\",\"h\":[[47],[]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"λόγος\",\"h\":[[48],[]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"οὐδ᾽\",\"h\":[[49],[]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"ἀριθμός\",\"h\":[[50],[]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"p\":\".\",\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"p\":\".\",\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[]],[[{\"t\":\"Callignoto\",\"h\":[[1],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"ha\",\"h\":[[],[2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"giurato\",\"h\":[[],[3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"a\",\"h\":[[],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"Ionide\",\"h\":[[],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"che\",\"h\":[[],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"mai\",\"h\":[[],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"}],[{\"t\":\"amerà\",\"h\":[[],[8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"qualcuno\",\"h\":[[],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"più\",\"h\":[[],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"di\",\"h\":[[],[11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"lei\",\"h\":[[],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"p\":\"-\",\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"né\",\"h\":[[],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"uomo\",\"h\":[[],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"né\",\"h\":[[],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"donna\",\"h\":[[],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\".\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"}],[{\"t\":\"L\",\"h\":[[],[19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"p\":\"’\",\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"ha\",\"h\":[[],[21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"giurato\",\"h\":[[],[22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"p\":\",\",\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"ma\",\"h\":[[],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"p\":\"è\",\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"vero\",\"h\":[[],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"quel\",\"h\":[[],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"che\",\"h\":[[],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"dice\",\"h\":[[],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"la\",\"h\":[[],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"gente\",\"h\":[[],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"p\":\":\",\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"i\",\"h\":[[],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"giuramenti\",\"h\":[[],[34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"in\",\"h\":[[],[35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"amore\",\"h\":[[],[36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"}],[{\"t\":\"non\",\"h\":[[],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"arrivano\",\"h\":[[],[38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"agli\",\"h\":[[],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"orecchi\",\"h\":[[],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"degli\",\"h\":[[],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"immortali\",\"h\":[[],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"p\":\".\",\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"}],[{\"t\":\"Ora\",\"h\":[[],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"il\",\"h\":[[],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"fuoco\",\"h\":[[],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"che\",\"h\":[[],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"lo\",\"h\":[[],[48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"scalda\",\"h\":[[],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"p\":\"è\",\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"un\",\"h\":[[],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"ragazzo\",\"h\":[[],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"p\":\":\",\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"la\",\"h\":[[],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"sua\",\"h\":[[],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"triste\",\"h\":[[],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"}],[{\"t\":\"giovane\",\"h\":[[],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"sposa\",\"h\":[[],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"p\":\",\",\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"come\",\"h\":[[],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"i\",\"h\":[[],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"megarici\",\"h\":[[],[62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"p\":\",\",\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"non\",\"h\":[[],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"la\",\"h\":[[],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"calcola\",\"h\":[[],[66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"più\",\"h\":[[],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"p\":\".\",\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"}]]]', 7, NULL, '2017-09-05 08:16:52', '2017-09-05 08:16:52');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(7, 2, 7, 7, 8, 1, '[[[],[{\"t\":\"Μοῦσα\",\"h\":[[1],[1]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"φίλα\",\"h\":[[2],[]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"p\":\",\",\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"τίνι\",\"h\":[[4],[]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"τάνδε\",\"h\":[[5],[]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"φέρεις\",\"h\":[[6],[]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"t\":\"πάγκαρπον\",\"h\":[[7],[]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"ἀοιδάν\",\"h\":[[8],[]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"p\":\";\",\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"}],[{\"t\":\"ἢ\",\"h\":[[10],[]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"τίς\",\"h\":[[11],[]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"ὁ\",\"h\":[[12],[]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"καὶ\",\"h\":[[13],[]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"t\":\"τεύξας\",\"h\":[[14],[]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"t\":\"ὑμνοθετᾶν\",\"h\":[[15],[]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"στέφανον\",\"h\":[[16],[]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"p\":\";\",\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"}],[{\"t\":\"Ἄνυσε\",\"h\":[[18],[]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"μὲν\",\"h\":[[19],[]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"Μελέαγρος\",\"h\":[[20],[]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"p\":\",\",\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"ἀριζάλῳ\",\"h\":[[22],[]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"δὲ\",\"h\":[[23],[]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"Διοκλεῖ\",\"h\":[[24],[]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"}],[{\"t\":\"μναμόσυνον\",\"h\":[[25],[]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"ταύταν\",\"h\":[[26],[]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"ἐξεπόνησε\",\"h\":[[27],[]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"χάριν\",\"h\":[[28],[]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"p\":\":\",\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"}],[{\"t\":\"πολλὰ\",\"h\":[[30],[]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"μὲν\",\"h\":[[31],[]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"ἐμπλέξας\",\"h\":[[32],[]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"Ἀνύτης\",\"h\":[[33],[]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"κρίνα\",\"h\":[[34],[]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"p\":\",\",\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"πολλὰ\",\"h\":[[36],[]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"δὲ\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"}],[{\"t\":\"Μοιροῦς\",\"h\":[[38],[]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"}],[{\"t\":\"λείρια\",\"h\":[[39],[]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"p\":\",\",\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"καὶ\",\"h\":[[41],[]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"t\":\"Σαπφοῦς\",\"h\":[[42],[]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"t\":\"βαιὰ\",\"h\":[[43],[]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"μὲν\",\"h\":[[44],[]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"p\":\",\",\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"t\":\"ἀλλὰ\",\"h\":[[46],[]],\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"ῥόδα\",\"h\":[[47],[]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"p\":\":\",\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"}],[{\"t\":\"νάρκισσόν\",\"h\":[[49],[]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"τε\",\"h\":[[50],[]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"t\":\"τορῶν\",\"h\":[[51],[]],\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"t\":\"Μελανιππίδου\",\"h\":[[52],[]],\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"},{\"t\":\"ἔγκυον\",\"h\":[[53],[]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"t\":\"ὕμνων\",\"h\":[[54],[]],\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"},{\"p\":\",\",\"parent\":0,\"children\":55,\"pos\":\"[1][55]\"}],[{\"t\":\"καὶ\",\"h\":[[56],[]],\"parent\":0,\"children\":56,\"pos\":\"[1][56]\"},{\"t\":\"νέον\",\"h\":[[57],[]],\"parent\":0,\"children\":57,\"pos\":\"[1][57]\"},{\"t\":\"οἰνάνθης\",\"h\":[[58],[]],\"parent\":0,\"children\":58,\"pos\":\"[1][58]\"},{\"t\":\"κλῆμα\",\"h\":[[59],[]],\"parent\":0,\"children\":59,\"pos\":\"[1][59]\"},{\"t\":\"Σιμωνίδεω\",\"h\":[[60],[]],\"parent\":0,\"children\":60,\"pos\":\"[1][60]\"},{\"p\":\":\",\"parent\":0,\"children\":61,\"pos\":\"[1][61]\"}],[{\"t\":\"σὺν\",\"h\":[[62],[]],\"parent\":0,\"children\":62,\"pos\":\"[1][62]\"},{\"t\":\"δ᾽\",\"h\":[[63],[]],\"parent\":0,\"children\":63,\"pos\":\"[1][63]\"},{\"t\":\"ἀναμὶξ\",\"h\":[[64],[]],\"parent\":0,\"children\":64,\"pos\":\"[1][64]\"},{\"t\":\"πλέξας\",\"h\":[[65],[]],\"parent\":0,\"children\":65,\"pos\":\"[1][65]\"},{\"t\":\"μυρόπνουν\",\"h\":[[66],[]],\"parent\":0,\"children\":66,\"pos\":\"[1][66]\"},{\"t\":\"εὐάνθεμον\",\"h\":[[67],[]],\"parent\":0,\"children\":67,\"pos\":\"[1][67]\"},{\"t\":\"ἶριν\",\"h\":[[68],[]],\"parent\":0,\"children\":68,\"pos\":\"[1][68]\"}],[{\"t\":\"Νοσσίδος\",\"h\":[[69],[]],\"parent\":0,\"children\":69,\"pos\":\"[1][69]\"},{\"p\":\",\",\"parent\":0,\"children\":70,\"pos\":\"[1][70]\"},{\"t\":\"ἧς\",\"h\":[[71],[]],\"parent\":0,\"children\":71,\"pos\":\"[1][71]\"},{\"t\":\"δέλτοις\",\"h\":[[72],[]],\"parent\":0,\"children\":72,\"pos\":\"[1][72]\"},{\"t\":\"κηρὸν\",\"h\":[[73],[]],\"parent\":0,\"children\":73,\"pos\":\"[1][73]\"},{\"t\":\"ἔτηξεν\",\"h\":[[74],[]],\"parent\":0,\"children\":74,\"pos\":\"[1][74]\"},{\"t\":\"Ἔρως\",\"h\":[[75],[]],\"parent\":0,\"children\":75,\"pos\":\"[1][75]\"},{\"p\":\":\",\"parent\":0,\"children\":76,\"pos\":\"[1][76]\"}],[{\"t\":\"τῇ\",\"h\":[[77],[]],\"parent\":0,\"children\":77,\"pos\":\"[1][77]\"},{\"t\":\"δ᾽\",\"h\":[[78],[]],\"parent\":0,\"children\":78,\"pos\":\"[1][78]\"},{\"t\":\"ἅμα\",\"h\":[[79],[]],\"parent\":0,\"children\":79,\"pos\":\"[1][79]\"},{\"t\":\"καὶ\",\"h\":[[80],[]],\"parent\":0,\"children\":80,\"pos\":\"[1][80]\"},{\"t\":\"σάμψυχον\",\"h\":[[81],[]],\"parent\":0,\"children\":81,\"pos\":\"[1][81]\"},{\"t\":\"ἀφ᾽\",\"h\":[[82],[]],\"parent\":0,\"children\":82,\"pos\":\"[1][82]\"},{\"t\":\"ἡδυπνόοιο\",\"h\":[[83],[]],\"parent\":0,\"children\":83,\"pos\":\"[1][83]\"},{\"t\":\"Ῥιανοῦ\",\"h\":[[84],[]],\"parent\":0,\"children\":84,\"pos\":\"[1][84]\"},{\"p\":\",\",\"parent\":0,\"children\":85,\"pos\":\"[1][85]\"}],[{\"t\":\"καὶ\",\"h\":[[86],[]],\"parent\":0,\"children\":86,\"pos\":\"[1][86]\"},{\"t\":\"γλυκὺν\",\"h\":[[87],[]],\"parent\":0,\"children\":87,\"pos\":\"[1][87]\"},{\"t\":\"Ἠρίννης\",\"h\":[[88],[]],\"parent\":0,\"children\":88,\"pos\":\"[1][88]\"},{\"t\":\"παρθενόχρωτα\",\"h\":[[89],[]],\"parent\":0,\"children\":89,\"pos\":\"[1][89]\"},{\"t\":\"κρόκον\",\"h\":[[90],[]],\"parent\":0,\"children\":90,\"pos\":\"[1][90]\"},{\"p\":\",\",\"parent\":0,\"children\":91,\"pos\":\"[1][91]\"}],[{\"t\":\"Ἀλκαίου\",\"h\":[[92],[]],\"parent\":0,\"children\":92,\"pos\":\"[1][92]\"},{\"t\":\"τε\",\"h\":[[93],[]],\"parent\":0,\"children\":93,\"pos\":\"[1][93]\"},{\"t\":\"λάληθρον\",\"h\":[[94],[]],\"parent\":0,\"children\":94,\"pos\":\"[1][94]\"},{\"t\":\"ἐν\",\"h\":[[95],[]],\"parent\":0,\"children\":95,\"pos\":\"[1][95]\"},{\"t\":\"ὑμνοπόλοις\",\"h\":[[96],[]],\"parent\":0,\"children\":96,\"pos\":\"[1][96]\"},{\"t\":\"ὑάκινθον\",\"h\":[[97],[]],\"parent\":0,\"children\":97,\"pos\":\"[1][97]\"},{\"p\":\",\",\"parent\":0,\"children\":98,\"pos\":\"[1][98]\"}],[{\"t\":\"καὶ\",\"h\":[[99],[]],\"parent\":0,\"children\":99,\"pos\":\"[1][99]\"},{\"t\":\"Σαμίου\",\"h\":[[100],[]],\"parent\":0,\"children\":100,\"pos\":\"[1][100]\"},{\"t\":\"δάφνης\",\"h\":[[101],[]],\"parent\":0,\"children\":101,\"pos\":\"[1][101]\"},{\"t\":\"κλῶνα\",\"h\":[[102],[]],\"parent\":0,\"children\":102,\"pos\":\"[1][102]\"},{\"t\":\"μελαμπέταλον\",\"h\":[[103],[]],\"parent\":0,\"children\":103,\"pos\":\"[1][103]\"},{\"p\":\":\",\"parent\":0,\"children\":104,\"pos\":\"[1][104]\"}],[{\"t\":\"ἐν\",\"h\":[[105],[]],\"parent\":0,\"children\":105,\"pos\":\"[1][105]\"},{\"t\":\"δὲ\",\"h\":[[106],[]],\"parent\":0,\"children\":106,\"pos\":\"[1][106]\"},{\"t\":\"Λεωνίδεω\",\"h\":[[107],[]],\"parent\":0,\"children\":107,\"pos\":\"[1][107]\"},{\"t\":\"θαλεροὺς\",\"h\":[[108],[]],\"parent\":0,\"children\":108,\"pos\":\"[1][108]\"},{\"t\":\"κισσοῖο\",\"h\":[[109],[]],\"parent\":0,\"children\":109,\"pos\":\"[1][109]\"},{\"t\":\"κορύμβους\",\"h\":[[110],[]],\"parent\":0,\"children\":110,\"pos\":\"[1][110]\"},{\"p\":\",\",\"parent\":0,\"children\":111,\"pos\":\"[1][111]\"}],[{\"t\":\"Μνασάλκου\",\"h\":[[112],[]],\"parent\":0,\"children\":112,\"pos\":\"[1][112]\"},{\"t\":\"τεκόμας\",\"h\":[[113],[]],\"parent\":0,\"children\":113,\"pos\":\"[1][113]\"},{\"t\":\"ὀξυτόρου\",\"h\":[[114],[]],\"parent\":0,\"children\":114,\"pos\":\"[1][114]\"},{\"t\":\"πίτυος\",\"h\":[[115],[]],\"parent\":0,\"children\":115,\"pos\":\"[1][115]\"},{\"p\":\":\",\"parent\":0,\"children\":116,\"pos\":\"[1][116]\"}],[{\"t\":\"βλαισήν\",\"h\":[[117],[]],\"parent\":0,\"children\":117,\"pos\":\"[1][117]\"},{\"t\":\"τε\",\"h\":[[118],[]],\"parent\":0,\"children\":118,\"pos\":\"[1][118]\"},{\"t\":\"πλατάνιστον\",\"h\":[[119],[]],\"parent\":0,\"children\":119,\"pos\":\"[1][119]\"},{\"t\":\"ἀπέθρισε\",\"h\":[[120],[]],\"parent\":0,\"children\":120,\"pos\":\"[1][120]\"},{\"t\":\"Παμφίλου\",\"h\":[[121],[]],\"parent\":0,\"children\":121,\"pos\":\"[1][121]\"},{\"t\":\"οἴνης\",\"h\":[[122],[]],\"parent\":0,\"children\":122,\"pos\":\"[1][122]\"},{\"p\":\",\",\"parent\":0,\"children\":123,\"pos\":\"[1][123]\"}],[{\"t\":\"σύμπλεκτον\",\"h\":[[124],[]],\"parent\":0,\"children\":124,\"pos\":\"[1][124]\"},{\"t\":\"καρύης\",\"h\":[[125],[]],\"parent\":0,\"children\":125,\"pos\":\"[1][125]\"},{\"t\":\"ἔρνεσι\",\"h\":[[126],[]],\"parent\":0,\"children\":126,\"pos\":\"[1][126]\"},{\"t\":\"Παγκράτεος\",\"h\":[[127],[]],\"parent\":0,\"children\":127,\"pos\":\"[1][127]\"},{\"p\":\",\",\"parent\":0,\"children\":128,\"pos\":\"[1][128]\"}],[{\"t\":\"Τύμνεὼ\",\"h\":[[129],[]],\"parent\":0,\"children\":129,\"pos\":\"[1][129]\"},{\"t\":\"τ᾽\",\"h\":[[130],[]],\"parent\":0,\"children\":130,\"pos\":\"[1][130]\"},{\"t\":\"εὐπέταλον\",\"h\":[[131],[]],\"parent\":0,\"children\":131,\"pos\":\"[1][131]\"},{\"t\":\"λεύκην\",\"h\":[[132],[]],\"parent\":0,\"children\":132,\"pos\":\"[1][132]\"},{\"p\":\",\",\"parent\":0,\"children\":133,\"pos\":\"[1][133]\"},{\"t\":\"χλοερόν\",\"h\":[[134],[]],\"parent\":0,\"children\":134,\"pos\":\"[1][134]\"},{\"t\":\"τε\",\"h\":[[135],[]],\"parent\":0,\"children\":135,\"pos\":\"[1][135]\"},{\"t\":\"σίσυμβρον\",\"h\":[[136],[]],\"parent\":0,\"children\":136,\"pos\":\"[1][136]\"}],[{\"t\":\"Νικίου\",\"h\":[[137],[]],\"parent\":0,\"children\":137,\"pos\":\"[1][137]\"},{\"p\":\",\",\"parent\":0,\"children\":138,\"pos\":\"[1][138]\"},{\"t\":\"Εὐφήμου\",\"h\":[[139],[]],\"parent\":0,\"children\":139,\"pos\":\"[1][139]\"},{\"t\":\"τ᾽\",\"h\":[[140],[]],\"parent\":0,\"children\":140,\"pos\":\"[1][140]\"},{\"t\":\"ἀμμότροφον\",\"h\":[[141],[]],\"parent\":0,\"children\":141,\"pos\":\"[1][141]\"},{\"t\":\"πάραλον\",\"h\":[[142],[]],\"parent\":0,\"children\":142,\"pos\":\"[1][142]\"},{\"p\":\":\",\"parent\":0,\"children\":143,\"pos\":\"[1][143]\"}],[{\"t\":\"ἐν\",\"h\":[[144],[]],\"parent\":0,\"children\":144,\"pos\":\"[1][144]\"},{\"t\":\"δ᾽\",\"h\":[[145],[]],\"parent\":0,\"children\":145,\"pos\":\"[1][145]\"},{\"t\":\"ἄρα\",\"h\":[[146],[]],\"parent\":0,\"children\":146,\"pos\":\"[1][146]\"},{\"t\":\"Δαμαγήτου\",\"h\":[[147],[]],\"parent\":0,\"children\":147,\"pos\":\"[1][147]\"},{\"p\":\",\",\"parent\":0,\"children\":148,\"pos\":\"[1][148]\"},{\"t\":\"ἴον\",\"h\":[[149],[]],\"parent\":0,\"children\":149,\"pos\":\"[1][149]\"},{\"t\":\"μέλαν\",\"h\":[[150],[]],\"parent\":0,\"children\":150,\"pos\":\"[1][150]\"},{\"p\":\",\",\"parent\":0,\"children\":151,\"pos\":\"[1][151]\"},{\"t\":\"ἡδύ\",\"h\":[[152],[]],\"parent\":0,\"children\":152,\"pos\":\"[1][152]\"},{\"t\":\"τε\",\"h\":[[153],[]],\"parent\":0,\"children\":153,\"pos\":\"[1][153]\"},{\"t\":\"μύρτον\",\"h\":[[154],[]],\"parent\":0,\"children\":154,\"pos\":\"[1][154]\"}],[{\"t\":\"Καλλιμάχου\",\"h\":[[155],[]],\"parent\":0,\"children\":155,\"pos\":\"[1][155]\"},{\"p\":\",\",\"parent\":0,\"children\":156,\"pos\":\"[1][156]\"},{\"t\":\"στυφελοῦ\",\"h\":[[157],[]],\"parent\":0,\"children\":157,\"pos\":\"[1][157]\"},{\"t\":\"μεστὸν\",\"h\":[[158],[]],\"parent\":0,\"children\":158,\"pos\":\"[1][158]\"},{\"t\":\"ἀεὶ\",\"h\":[[159],[]],\"parent\":0,\"children\":159,\"pos\":\"[1][159]\"},{\"t\":\"μέλιτος\",\"h\":[[160],[]],\"parent\":0,\"children\":160,\"pos\":\"[1][160]\"},{\"p\":\",\",\"parent\":0,\"children\":161,\"pos\":\"[1][161]\"}],[{\"t\":\"λυχνίδα\",\"h\":[[162],[]],\"parent\":0,\"children\":162,\"pos\":\"[1][162]\"},{\"t\":\"τ᾽\",\"h\":[[163],[]],\"parent\":0,\"children\":163,\"pos\":\"[1][163]\"},{\"t\":\"Εὐφορίωνος\",\"h\":[[164],[]],\"parent\":0,\"children\":164,\"pos\":\"[1][164]\"},{\"p\":\",\",\"parent\":0,\"children\":165,\"pos\":\"[1][165]\"},{\"t\":\"ἰδ᾽\",\"h\":[[166],[]],\"parent\":0,\"children\":166,\"pos\":\"[1][166]\"},{\"t\":\"ἐν\",\"h\":[[167],[]],\"parent\":0,\"children\":167,\"pos\":\"[1][167]\"},{\"t\":\"Μούσησιν\",\"h\":[[168],[]],\"parent\":0,\"children\":168,\"pos\":\"[1][168]\"},{\"t\":\"ἄμωμον\",\"h\":[[169],[]],\"parent\":0,\"children\":169,\"pos\":\"[1][169]\"},{\"p\":\",\",\"parent\":0,\"children\":170,\"pos\":\"[1][170]\"}],[{\"t\":\"ὃς\",\"h\":[[171],[]],\"parent\":0,\"children\":171,\"pos\":\"[1][171]\"},{\"t\":\"Διὸς\",\"h\":[[172],[]],\"parent\":0,\"children\":172,\"pos\":\"[1][172]\"},{\"t\":\"ἐκ\",\"h\":[[173],[]],\"parent\":0,\"children\":173,\"pos\":\"[1][173]\"},{\"t\":\"κούρων\",\"h\":[[174],[]],\"parent\":0,\"children\":174,\"pos\":\"[1][174]\"},{\"t\":\"ἔσχεν\",\"h\":[[175],[]],\"parent\":0,\"children\":175,\"pos\":\"[1][175]\"},{\"t\":\"ἐπωνυμίην\",\"h\":[[176],[]],\"parent\":0,\"children\":176,\"pos\":\"[1][176]\"},{\"p\":\".\",\"parent\":0,\"children\":177,\"pos\":\"[1][177]\"}],[{\"t\":\"Τῇσι\",\"h\":[[178],[]],\"parent\":0,\"children\":178,\"pos\":\"[1][178]\"},{\"t\":\"δ᾽\",\"h\":[[179],[]],\"parent\":0,\"children\":179,\"pos\":\"[1][179]\"},{\"t\":\"ἅμ᾽\",\"h\":[[180],[]],\"parent\":0,\"children\":180,\"pos\":\"[1][180]\"},{\"t\":\"Ἡγησίππου\",\"h\":[[181],[]],\"parent\":0,\"children\":181,\"pos\":\"[1][181]\"},{\"t\":\"νέπλεκε\",\"h\":[[182],[]],\"parent\":0,\"children\":182,\"pos\":\"[1][182]\"},{\"t\":\"μαινάδα\",\"h\":[[183],[]],\"parent\":0,\"children\":183,\"pos\":\"[1][183]\"},{\"t\":\"βότρυν\",\"h\":[[184],[]],\"parent\":0,\"children\":184,\"pos\":\"[1][184]\"},{\"p\":\",\",\"parent\":0,\"children\":185,\"pos\":\"[1][185]\"}],[{\"t\":\"Πέρσου\",\"h\":[[186],[]],\"parent\":0,\"children\":186,\"pos\":\"[1][186]\"},{\"t\":\"τ᾽\",\"h\":[[187],[]],\"parent\":0,\"children\":187,\"pos\":\"[1][187]\"},{\"t\":\"εὐώδη\",\"h\":[[188],[]],\"parent\":0,\"children\":188,\"pos\":\"[1][188]\"},{\"t\":\"σχοῖνον\",\"h\":[[189],[]],\"parent\":0,\"children\":189,\"pos\":\"[1][189]\"},{\"t\":\"ἀμησάμενος\",\"h\":[[190],[]],\"parent\":0,\"children\":190,\"pos\":\"[1][190]\"},{\"p\":\",\",\"parent\":0,\"children\":191,\"pos\":\"[1][191]\"}],[{\"t\":\"σὺν\",\"h\":[[192],[]],\"parent\":0,\"children\":192,\"pos\":\"[1][192]\"},{\"t\":\"δ᾽\",\"h\":[[193],[]],\"parent\":0,\"children\":193,\"pos\":\"[1][193]\"},{\"t\":\"ἅμα\",\"h\":[[194],[]],\"parent\":0,\"children\":194,\"pos\":\"[1][194]\"},{\"t\":\"καὶ\",\"h\":[[195],[]],\"parent\":0,\"children\":195,\"pos\":\"[1][195]\"},{\"t\":\"γλυκὺμηλον\",\"h\":[[196],[]],\"parent\":0,\"children\":196,\"pos\":\"[1][196]\"},{\"t\":\"ἀπ᾽\",\"h\":[[197],[]],\"parent\":0,\"children\":197,\"pos\":\"[1][197]\"},{\"t\":\"ἀκρεμόνων\",\"h\":[[198],[]],\"parent\":0,\"children\":198,\"pos\":\"[1][198]\"},{\"t\":\"Διοτίμου\",\"h\":[[199],[]],\"parent\":0,\"children\":199,\"pos\":\"[1][199]\"},{\"p\":\",\",\"parent\":0,\"children\":200,\"pos\":\"[1][200]\"}],[{\"t\":\"καὶ\",\"h\":[[201],[]],\"parent\":0,\"children\":201,\"pos\":\"[1][201]\"},{\"t\":\"ῥοιῆς\",\"h\":[[202],[]],\"parent\":0,\"children\":202,\"pos\":\"[1][202]\"},{\"t\":\"ἄνθη\",\"h\":[[203],[]],\"parent\":0,\"children\":203,\"pos\":\"[1][203]\"},{\"t\":\"πρῶτα\",\"h\":[[204],[]],\"parent\":0,\"children\":204,\"pos\":\"[1][204]\"},{\"t\":\"Μενεκράτεος\",\"h\":[[205],[]],\"parent\":0,\"children\":205,\"pos\":\"[1][205]\"},{\"p\":\",\",\"parent\":0,\"children\":206,\"pos\":\"[1][206]\"}],[{\"t\":\"μυρραίους\",\"h\":[[207],[]],\"parent\":0,\"children\":207,\"pos\":\"[1][207]\"},{\"t\":\"τε\",\"h\":[[208],[]],\"parent\":0,\"children\":208,\"pos\":\"[1][208]\"},{\"t\":\"κλάδους\",\"h\":[[209],[]],\"parent\":0,\"children\":209,\"pos\":\"[1][209]\"},{\"t\":\"Νικαινέτου\",\"h\":[[210],[]],\"parent\":0,\"children\":210,\"pos\":\"[1][210]\"},{\"p\":\",\",\"parent\":0,\"children\":211,\"pos\":\"[1][211]\"},{\"t\":\"ἠδὲ\",\"h\":[[212],[]],\"parent\":0,\"children\":212,\"pos\":\"[1][212]\"},{\"t\":\"Φαέννου\",\"h\":[[213],[]],\"parent\":0,\"children\":213,\"pos\":\"[1][213]\"}],[{\"t\":\"τέρμινθον\",\"h\":[[214],[]],\"parent\":0,\"children\":214,\"pos\":\"[1][214]\"},{\"p\":\",\",\"parent\":0,\"children\":215,\"pos\":\"[1][215]\"},{\"t\":\"βλωθρὴν\",\"h\":[[216],[]],\"parent\":0,\"children\":216,\"pos\":\"[1][216]\"},{\"t\":\"τ᾽\",\"h\":[[217],[]],\"parent\":0,\"children\":217,\"pos\":\"[1][217]\"},{\"t\":\"ἀχράδα\",\"h\":[[218],[]],\"parent\":0,\"children\":218,\"pos\":\"[1][218]\"},{\"t\":\"Σιμίεω\",\"h\":[[219],[]],\"parent\":0,\"children\":219,\"pos\":\"[1][219]\"},{\"p\":\":\",\"parent\":0,\"children\":220,\"pos\":\"[1][220]\"}],[{\"t\":\"ἐν\",\"h\":[[221],[]],\"parent\":0,\"children\":221,\"pos\":\"[1][221]\"},{\"t\":\"δὲ\",\"h\":[[222],[]],\"parent\":0,\"children\":222,\"pos\":\"[1][222]\"},{\"t\":\"καὶ\",\"h\":[[223],[]],\"parent\":0,\"children\":223,\"pos\":\"[1][223]\"},{\"t\":\"ἐκ\",\"h\":[[224],[]],\"parent\":0,\"children\":224,\"pos\":\"[1][224]\"},{\"t\":\"λειμῶνος\",\"h\":[[225],[]],\"parent\":0,\"children\":225,\"pos\":\"[1][225]\"},{\"t\":\"ἀμωμήτοιο\",\"h\":[[226],[]],\"parent\":0,\"children\":226,\"pos\":\"[1][226]\"},{\"t\":\"σέλινα\",\"h\":[[227],[]],\"parent\":0,\"children\":227,\"pos\":\"[1][227]\"},{\"p\":\",\",\"parent\":0,\"children\":228,\"pos\":\"[1][228]\"}],[{\"t\":\"βαιὰ\",\"h\":[[229],[]],\"parent\":0,\"children\":229,\"pos\":\"[1][229]\"},{\"t\":\"διακνίζων\",\"h\":[[230],[]],\"parent\":0,\"children\":230,\"pos\":\"[1][230]\"},{\"t\":\"ἄνθεα\",\"h\":[[231],[]],\"parent\":0,\"children\":231,\"pos\":\"[1][231]\"},{\"p\":\",\",\"parent\":0,\"children\":232,\"pos\":\"[1][232]\"},{\"t\":\"Παρθενίδος\",\"h\":[[233],[]],\"parent\":0,\"children\":233,\"pos\":\"[1][233]\"},{\"p\":\",\",\"parent\":0,\"children\":234,\"pos\":\"[1][234]\"}],[{\"t\":\"λείψανὰ\",\"h\":[[235],[]],\"parent\":0,\"children\":235,\"pos\":\"[1][235]\"},{\"t\":\"τ᾽\",\"h\":[[236],[]],\"parent\":0,\"children\":236,\"pos\":\"[1][236]\"},{\"t\":\"εὐκαρπεῦντα\",\"h\":[[237],[]],\"parent\":0,\"children\":237,\"pos\":\"[1][237]\"},{\"t\":\"μελιστάκτων\",\"h\":[[238],[]],\"parent\":0,\"children\":238,\"pos\":\"[1][238]\"},{\"t\":\"ἀπὸ\",\"h\":[[239],[]],\"parent\":0,\"children\":239,\"pos\":\"[1][239]\"},{\"t\":\"Μουσέων\",\"h\":[[240],[]],\"parent\":0,\"children\":240,\"pos\":\"[1][240]\"},{\"p\":\",\",\"parent\":0,\"children\":241,\"pos\":\"[1][241]\"}],[{\"t\":\"ξανθοὺς\",\"h\":[[242],[]],\"parent\":0,\"children\":242,\"pos\":\"[1][242]\"},{\"t\":\"ἐκ\",\"h\":[[243],[]],\"parent\":0,\"children\":243,\"pos\":\"[1][243]\"},{\"t\":\"καλάμης\",\"h\":[[244],[]],\"parent\":0,\"children\":244,\"pos\":\"[1][244]\"},{\"t\":\"Βακχυλίδεω\",\"h\":[[245],[]],\"parent\":0,\"children\":245,\"pos\":\"[1][245]\"},{\"t\":\"στάχυας\",\"h\":[[246],[]],\"parent\":0,\"children\":246,\"pos\":\"[1][246]\"},{\"p\":\":\",\"parent\":0,\"children\":247,\"pos\":\"[1][247]\"}],[{\"t\":\"ἐν\",\"h\":[[248],[]],\"parent\":0,\"children\":248,\"pos\":\"[1][248]\"},{\"t\":\"δ᾽\",\"h\":[[249],[]],\"parent\":0,\"children\":249,\"pos\":\"[1][249]\"},{\"t\":\"ἄρ᾽\",\"h\":[[250],[]],\"parent\":0,\"children\":250,\"pos\":\"[1][250]\"},{\"t\":\"Ἀνακρείοντα\",\"h\":[[251],[]],\"parent\":0,\"children\":251,\"pos\":\"[1][251]\"},{\"p\":\",\",\"parent\":0,\"children\":252,\"pos\":\"[1][252]\"},{\"t\":\"τὸ\",\"h\":[[253],[]],\"parent\":0,\"children\":253,\"pos\":\"[1][253]\"},{\"t\":\"μὲν\",\"h\":[[254],[]],\"parent\":0,\"children\":254,\"pos\":\"[1][254]\"},{\"t\":\"γλυκὺ\",\"h\":[[255],[]],\"parent\":0,\"children\":255,\"pos\":\"[1][255]\"},{\"t\":\"κεῖνο\",\"h\":[[256],[]],\"parent\":0,\"children\":256,\"pos\":\"[1][256]\"},{\"t\":\"μέλισμα\",\"h\":[[257],[]],\"parent\":0,\"children\":257,\"pos\":\"[1][257]\"}],[{\"t\":\"νέκταρος\",\"h\":[[258],[]],\"parent\":0,\"children\":258,\"pos\":\"[1][258]\"},{\"p\":\",\",\"parent\":0,\"children\":259,\"pos\":\"[1][259]\"},{\"t\":\"ἐν\",\"h\":[[260],[]],\"parent\":0,\"children\":260,\"pos\":\"[1][260]\"},{\"t\":\"δ᾽\",\"h\":[[261],[]],\"parent\":0,\"children\":261,\"pos\":\"[1][261]\"},{\"t\":\"ἐλέγους\",\"h\":[[262],[]],\"parent\":0,\"children\":262,\"pos\":\"[1][262]\"},{\"t\":\"ἄσπορον\",\"h\":[[263],[]],\"parent\":0,\"children\":263,\"pos\":\"[1][263]\"},{\"t\":\"ἀνθέμιον\",\"h\":[[264],[]],\"parent\":0,\"children\":264,\"pos\":\"[1][264]\"},{\"p\":\":\",\"parent\":0,\"children\":265,\"pos\":\"[1][265]\"}],[{\"t\":\"ἐν\",\"h\":[[266],[]],\"parent\":0,\"children\":266,\"pos\":\"[1][266]\"},{\"t\":\"δὲ\",\"h\":[[267],[]],\"parent\":0,\"children\":267,\"pos\":\"[1][267]\"},{\"t\":\"καὶ\",\"h\":[[268],[]],\"parent\":0,\"children\":268,\"pos\":\"[1][268]\"},{\"t\":\"ἐκ\",\"h\":[[269],[]],\"parent\":0,\"children\":269,\"pos\":\"[1][269]\"},{\"t\":\"φορβῆς\",\"h\":[[270],[]],\"parent\":0,\"children\":270,\"pos\":\"[1][270]\"},{\"t\":\"σκολιότριχος\",\"h\":[[271],[]],\"parent\":0,\"children\":271,\"pos\":\"[1][271]\"},{\"t\":\"ἄνθος\",\"h\":[[272],[]],\"parent\":0,\"children\":272,\"pos\":\"[1][272]\"},{\"t\":\"ἀκάνθης\",\"h\":[[273],[]],\"parent\":0,\"children\":273,\"pos\":\"[1][273]\"}],[{\"t\":\"Ἀρχιλόχου\",\"h\":[[274],[]],\"parent\":0,\"children\":274,\"pos\":\"[1][274]\"},{\"t\":\"μικρὰς\",\"h\":[[275],[]],\"parent\":0,\"children\":275,\"pos\":\"[1][275]\"},{\"t\":\"στράγγας\",\"h\":[[276],[]],\"parent\":0,\"children\":276,\"pos\":\"[1][276]\"},{\"t\":\"ἀπ᾽\",\"h\":[[277],[]],\"parent\":0,\"children\":277,\"pos\":\"[1][277]\"},{\"t\":\"ὠκεανοῦ\",\"h\":[[278],[]],\"parent\":0,\"children\":278,\"pos\":\"[1][278]\"}],[{\"t\":\"τοῖς\",\"h\":[[279],[]],\"parent\":0,\"children\":279,\"pos\":\"[1][279]\"},{\"t\":\"δ᾽\",\"h\":[[280],[]],\"parent\":0,\"children\":280,\"pos\":\"[1][280]\"},{\"t\":\"ἅμ᾽\",\"h\":[[281],[]],\"parent\":0,\"children\":281,\"pos\":\"[1][281]\"},{\"t\":\"Ἀλεξάνδροιο\",\"h\":[[282],[]],\"parent\":0,\"children\":282,\"pos\":\"[1][282]\"},{\"t\":\"νέους\",\"h\":[[283],[]],\"parent\":0,\"children\":283,\"pos\":\"[1][283]\"},{\"t\":\"ὄρπηκας\",\"h\":[[284],[]],\"parent\":0,\"children\":284,\"pos\":\"[1][284]\"},{\"t\":\"ἐλαίης\",\"h\":[[285],[]],\"parent\":0,\"children\":285,\"pos\":\"[1][285]\"}],[{\"t\":\"ἠδὲ\",\"h\":[[286],[]],\"parent\":0,\"children\":286,\"pos\":\"[1][286]\"},{\"t\":\"Πολυκλείτου\",\"h\":[[287],[]],\"parent\":0,\"children\":287,\"pos\":\"[1][287]\"},{\"t\":\"πορφυρέ\",\"h\":[[288],[]],\"parent\":0,\"children\":288,\"pos\":\"[1][288]\"},{\"t\":\"oν\",\"h\":[[289],[]],\"parent\":0,\"children\":289,\"pos\":\"[1][289]\"},{\"t\":\"κύα\",\"h\":[[290],[]],\"parent\":0,\"children\":290,\"pos\":\"[1][290]\"},{\"t\":\"mον\",\"h\":[[291],[]],\"parent\":0,\"children\":291,\"pos\":\"[1][291]\"},{\"p\":\".\",\"parent\":0,\"children\":292,\"pos\":\"[1][292]\"}],[{\"t\":\"ἐν\",\"h\":[[293],[]],\"parent\":0,\"children\":293,\"pos\":\"[1][293]\"},{\"t\":\"δ᾽\",\"h\":[[294],[]],\"parent\":0,\"children\":294,\"pos\":\"[1][294]\"},{\"t\":\"ἄρ᾽\",\"h\":[[295],[]],\"parent\":0,\"children\":295,\"pos\":\"[1][295]\"},{\"t\":\"ἀμάρακον\",\"h\":[[296],[]],\"parent\":0,\"children\":296,\"pos\":\"[1][296]\"},{\"t\":\"ἧκε\",\"h\":[[297],[]],\"parent\":0,\"children\":297,\"pos\":\"[1][297]\"},{\"t\":\"Πολ\",\"h\":[[298],[]],\"parent\":0,\"children\":298,\"pos\":\"[1][298]\"},{\"t\":\"uστραvτοu\",\"h\":[[299],[]],\"parent\":0,\"children\":299,\"pos\":\"[1][299]\"},{\"p\":\",\",\"parent\":0,\"children\":300,\"pos\":\"[1][300]\"},{\"t\":\"ἄνθος\",\"h\":[[301],[]],\"parent\":0,\"children\":301,\"pos\":\"[1][301]\"},{\"t\":\"ἀοιδῶν\",\"h\":[[302],[]],\"parent\":0,\"children\":302,\"pos\":\"[1][302]\"},{\"p\":\",\",\"parent\":0,\"children\":303,\"pos\":\"[1][303]\"}],[{\"t\":\"φοίνισσάν\",\"h\":[[304],[]],\"parent\":0,\"children\":304,\"pos\":\"[1][304]\"},{\"t\":\"τε\",\"h\":[[305],[]],\"parent\":0,\"children\":305,\"pos\":\"[1][305]\"},{\"t\":\"νέην\",\"h\":[[306],[]],\"parent\":0,\"children\":306,\"pos\":\"[1][306]\"},{\"t\":\"κύπρον\",\"h\":[[307],[]],\"parent\":0,\"children\":307,\"pos\":\"[1][307]\"},{\"t\":\"ἀπ᾽\",\"h\":[[308],[]],\"parent\":0,\"children\":308,\"pos\":\"[1][308]\"},{\"t\":\"Ἀντιπάτρου\",\"h\":[[309],[]],\"parent\":0,\"children\":309,\"pos\":\"[1][309]\"},{\"p\":\":\",\"parent\":0,\"children\":310,\"pos\":\"[1][310]\"}],[{\"t\":\"ναὶ\",\"h\":[[311],[]],\"parent\":0,\"children\":311,\"pos\":\"[1][311]\"},{\"t\":\"μὴν\",\"h\":[[312],[]],\"parent\":0,\"children\":312,\"pos\":\"[1][312]\"},{\"t\":\"καὶ\",\"h\":[[313],[]],\"parent\":0,\"children\":313,\"pos\":\"[1][313]\"},{\"t\":\"Συρίαν\",\"h\":[[314],[]],\"parent\":0,\"children\":314,\"pos\":\"[1][314]\"},{\"t\":\"σταχυότριχα\",\"h\":[[315],[]],\"parent\":0,\"children\":315,\"pos\":\"[1][315]\"},{\"t\":\"θήκατο\",\"h\":[[316],[]],\"parent\":0,\"children\":316,\"pos\":\"[1][316]\"},{\"t\":\"νάρδον\",\"h\":[[317],[]],\"parent\":0,\"children\":317,\"pos\":\"[1][317]\"}],[{\"t\":\"ὑμνοθέταν\",\"h\":[[318],[]],\"parent\":0,\"children\":318,\"pos\":\"[1][318]\"},{\"t\":\"Ἑρμοῦ\",\"h\":[[319],[]],\"parent\":0,\"children\":319,\"pos\":\"[1][319]\"},{\"t\":\"δῶρον\",\"h\":[[320],[]],\"parent\":0,\"children\":320,\"pos\":\"[1][320]\"},{\"t\":\"ἀειδόμενον\",\"h\":[[321],[]],\"parent\":0,\"children\":321,\"pos\":\"[1][321]\"},{\"p\":\".\",\"parent\":0,\"children\":322,\"pos\":\"[1][322]\"}],[{\"t\":\"Eν\",\"h\":[[323],[]],\"parent\":0,\"children\":323,\"pos\":\"[1][323]\"},{\"t\":\"δὲ\",\"h\":[[324],[]],\"parent\":0,\"children\":324,\"pos\":\"[1][324]\"},{\"t\":\"Ποσείδιππόν\",\"h\":[[325],[]],\"parent\":0,\"children\":325,\"pos\":\"[1][325]\"},{\"t\":\"τε\",\"h\":[[326],[]],\"parent\":0,\"children\":326,\"pos\":\"[1][326]\"},{\"t\":\"καὶ\",\"h\":[[327],[]],\"parent\":0,\"children\":327,\"pos\":\"[1][327]\"},{\"t\":\"Ἡδύλον\",\"h\":[[328],[]],\"parent\":0,\"children\":328,\"pos\":\"[1][328]\"},{\"t\":\"ἄγρι᾽\",\"h\":[[329],[]],\"parent\":0,\"children\":329,\"pos\":\"[1][329]\"},{\"t\":\"ἀρούρης\",\"h\":[[330],[]],\"parent\":0,\"children\":330,\"pos\":\"[1][330]\"},{\"p\":\",\",\"parent\":0,\"children\":331,\"pos\":\"[1][331]\"}],[{\"t\":\"Σικελίδεὼ\",\"h\":[[332],[]],\"parent\":0,\"children\":332,\"pos\":\"[1][332]\"},{\"t\":\"τ᾽\",\"h\":[[333],[]],\"parent\":0,\"children\":333,\"pos\":\"[1][333]\"},{\"t\":\"ἀνέμοις\",\"h\":[[334],[]],\"parent\":0,\"children\":334,\"pos\":\"[1][334]\"},{\"t\":\"ἄνθεα\",\"h\":[[335],[]],\"parent\":0,\"children\":335,\"pos\":\"[1][335]\"},{\"t\":\"φυόμενα\",\"h\":[[336],[]],\"parent\":0,\"children\":336,\"pos\":\"[1][336]\"},{\"p\":\":\",\"parent\":0,\"children\":337,\"pos\":\"[1][337]\"}],[{\"t\":\"ναὶ\",\"h\":[[338],[]],\"parent\":0,\"children\":338,\"pos\":\"[1][338]\"},{\"t\":\"μὴν\",\"h\":[[339],[]],\"parent\":0,\"children\":339,\"pos\":\"[1][339]\"},{\"t\":\"καὶ\",\"h\":[[340],[]],\"parent\":0,\"children\":340,\"pos\":\"[1][340]\"},{\"t\":\"χρύσειον\",\"h\":[[341],[]],\"parent\":0,\"children\":341,\"pos\":\"[1][341]\"},{\"t\":\"ἀεὶ\",\"h\":[[342],[]],\"parent\":0,\"children\":342,\"pos\":\"[1][342]\"},{\"t\":\"θείοιο\",\"h\":[[343],[]],\"parent\":0,\"children\":343,\"pos\":\"[1][343]\"},{\"t\":\"Πλάτωνος\",\"h\":[[344],[]],\"parent\":0,\"children\":344,\"pos\":\"[1][344]\"}],[{\"t\":\"κλῶνα\",\"h\":[[345],[]],\"parent\":0,\"children\":345,\"pos\":\"[1][345]\"},{\"p\":\",\",\"parent\":0,\"children\":346,\"pos\":\"[1][346]\"},{\"t\":\"τὸν\",\"h\":[[347],[]],\"parent\":0,\"children\":347,\"pos\":\"[1][347]\"},{\"t\":\"ἐξ\",\"h\":[[348],[]],\"parent\":0,\"children\":348,\"pos\":\"[1][348]\"},{\"t\":\"ἀρετῆς\",\"h\":[[349],[]],\"parent\":0,\"children\":349,\"pos\":\"[1][349]\"},{\"t\":\"πάντοθι\",\"h\":[[350],[]],\"parent\":0,\"children\":350,\"pos\":\"[1][350]\"},{\"t\":\"λαμπόμενον\",\"h\":[[351],[]],\"parent\":0,\"children\":351,\"pos\":\"[1][351]\"},{\"p\":\".\",\"parent\":0,\"children\":352,\"pos\":\"[1][352]\"}],[{\"t\":\"Ἄστρων\",\"h\":[[353],[]],\"parent\":0,\"children\":353,\"pos\":\"[1][353]\"},{\"t\":\"τ᾽\",\"h\":[[354],[]],\"parent\":0,\"children\":354,\"pos\":\"[1][354]\"},{\"t\":\"ἴδριν\",\"h\":[[355],[]],\"parent\":0,\"children\":355,\"pos\":\"[1][355]\"},{\"t\":\"Ἄρατον\",\"h\":[[356],[]],\"parent\":0,\"children\":356,\"pos\":\"[1][356]\"},{\"t\":\"ὁμοῦ\",\"h\":[[357],[]],\"parent\":0,\"children\":357,\"pos\":\"[1][357]\"},{\"t\":\"βάλεν\",\"h\":[[358],[]],\"parent\":0,\"children\":358,\"pos\":\"[1][358]\"},{\"p\":\",\",\"parent\":0,\"children\":359,\"pos\":\"[1][359]\"},{\"t\":\"οὐρανομάκευς\",\"h\":[[360],[]],\"parent\":0,\"children\":360,\"pos\":\"[1][360]\"}],[{\"t\":\"φοίνικος\",\"h\":[[361],[]],\"parent\":0,\"children\":361,\"pos\":\"[1][361]\"},{\"t\":\"κείρας\",\"h\":[[362],[]],\"parent\":0,\"children\":362,\"pos\":\"[1][362]\"},{\"t\":\"πρωτογόνους\",\"h\":[[363],[]],\"parent\":0,\"children\":363,\"pos\":\"[1][363]\"},{\"t\":\"ἕλικας\",\"h\":[[364],[]],\"parent\":0,\"children\":364,\"pos\":\"[1][364]\"},{\"p\":\",\",\"parent\":0,\"children\":365,\"pos\":\"[1][365]\"}],[{\"t\":\"λωτὸν\",\"h\":[[366],[]],\"parent\":0,\"children\":366,\"pos\":\"[1][366]\"},{\"t\":\"τ᾽\",\"h\":[[367],[]],\"parent\":0,\"children\":367,\"pos\":\"[1][367]\"},{\"t\":\"εὐχαίτην\",\"h\":[[368],[]],\"parent\":0,\"children\":368,\"pos\":\"[1][368]\"},{\"t\":\"Χαιρήμονος\",\"h\":[[369],[]],\"parent\":0,\"children\":369,\"pos\":\"[1][369]\"},{\"p\":\",\",\"parent\":0,\"children\":370,\"pos\":\"[1][370]\"},{\"t\":\"ἐν\",\"h\":[[371],[]],\"parent\":0,\"children\":371,\"pos\":\"[1][371]\"},{\"t\":\"φλογὶ\",\"h\":[[372],[]],\"parent\":0,\"children\":372,\"pos\":\"[1][372]\"},{\"t\":\"μίξας\",\"h\":[[373],[]],\"parent\":0,\"children\":373,\"pos\":\"[1][373]\"}],[{\"t\":\"Φαιδίμου\",\"h\":[[374],[]],\"parent\":0,\"children\":374,\"pos\":\"[1][374]\"},{\"p\":\",\",\"parent\":0,\"children\":375,\"pos\":\"[1][375]\"},{\"t\":\"Ἀνταγόρου\",\"h\":[[376],[]],\"parent\":0,\"children\":376,\"pos\":\"[1][376]\"},{\"t\":\"τ᾽\",\"h\":[[377],[]],\"parent\":0,\"children\":377,\"pos\":\"[1][377]\"},{\"t\":\"εὔστροφον\",\"h\":[[378],[]],\"parent\":0,\"children\":378,\"pos\":\"[1][378]\"},{\"t\":\"ὄμμα\",\"h\":[[379],[]],\"parent\":0,\"children\":379,\"pos\":\"[1][379]\"},{\"t\":\"βοός\",\"h\":[[380],[]],\"parent\":0,\"children\":380,\"pos\":\"[1][380]\"},{\"p\":\",\",\"parent\":0,\"children\":381,\"pos\":\"[1][381]\"}],[{\"t\":\"τάν\",\"h\":[[382],[]],\"parent\":0,\"children\":382,\"pos\":\"[1][382]\"},{\"t\":\"τε\",\"h\":[[383],[]],\"parent\":0,\"children\":383,\"pos\":\"[1][383]\"},{\"t\":\"φιλάκρητον\",\"h\":[[384],[]],\"parent\":0,\"children\":384,\"pos\":\"[1][384]\"},{\"t\":\"Θεοδωρίδεω\",\"h\":[[385],[]],\"parent\":0,\"children\":385,\"pos\":\"[1][385]\"},{\"t\":\"νεοθαλῆ\",\"h\":[[386],[]],\"parent\":0,\"children\":386,\"pos\":\"[1][386]\"}],[{\"t\":\"ἕρπυλλον\",\"h\":[[387],[]],\"parent\":0,\"children\":387,\"pos\":\"[1][387]\"},{\"p\":\",\",\"parent\":0,\"children\":388,\"pos\":\"[1][388]\"},{\"t\":\"κυάνων\",\"h\":[[389],[]],\"parent\":0,\"children\":389,\"pos\":\"[1][389]\"},{\"t\":\"τ᾽\",\"h\":[[390],[]],\"parent\":0,\"children\":390,\"pos\":\"[1][390]\"},{\"t\":\"ἄνθεα\",\"h\":[[391],[]],\"parent\":0,\"children\":391,\"pos\":\"[1][391]\"},{\"t\":\"Φανίεω\",\"h\":[[392],[]],\"parent\":0,\"children\":392,\"pos\":\"[1][392]\"},{\"p\":\",\",\"parent\":0,\"children\":393,\"pos\":\"[1][393]\"}],[{\"t\":\"ἄλλων\",\"h\":[[394],[]],\"parent\":0,\"children\":394,\"pos\":\"[1][394]\"},{\"t\":\"τ᾽\",\"h\":[[395],[]],\"parent\":0,\"children\":395,\"pos\":\"[1][395]\"},{\"t\":\"ἔρνεα\",\"h\":[[396],[]],\"parent\":0,\"children\":396,\"pos\":\"[1][396]\"},{\"t\":\"πολλὰ\",\"h\":[[397],[]],\"parent\":0,\"children\":397,\"pos\":\"[1][397]\"},{\"t\":\"νεόγραφα\",\"h\":[[398],[]],\"parent\":0,\"children\":398,\"pos\":\"[1][398]\"},{\"p\":\":\",\"parent\":0,\"children\":399,\"pos\":\"[1][399]\"},{\"t\":\"τοῖς\",\"h\":[[400],[]],\"parent\":0,\"children\":400,\"pos\":\"[1][400]\"},{\"t\":\"δ᾽\",\"h\":[[401],[]],\"parent\":0,\"children\":401,\"pos\":\"[1][401]\"},{\"t\":\"ἅμα\",\"h\":[[402],[]],\"parent\":0,\"children\":402,\"pos\":\"[1][402]\"},{\"t\":\"Μούσης\",\"h\":[[403],[]],\"parent\":0,\"children\":403,\"pos\":\"[1][403]\"}],[{\"t\":\"καὶ\",\"h\":[[404],[]],\"parent\":0,\"children\":404,\"pos\":\"[1][404]\"},{\"t\":\"σφετέρης\",\"h\":[[405],[]],\"parent\":0,\"children\":405,\"pos\":\"[1][405]\"},{\"t\":\"ἔτι\",\"h\":[[406],[]],\"parent\":0,\"children\":406,\"pos\":\"[1][406]\"},{\"t\":\"που\",\"h\":[[407],[]],\"parent\":0,\"children\":407,\"pos\":\"[1][407]\"},{\"t\":\"πρώιμα\",\"h\":[[408],[]],\"parent\":0,\"children\":408,\"pos\":\"[1][408]\"},{\"t\":\"λευκόια\",\"h\":[[409],[]],\"parent\":0,\"children\":409,\"pos\":\"[1][409]\"},{\"p\":\".\",\"parent\":0,\"children\":410,\"pos\":\"[1][410]\"}],[{\"t\":\"Ἀλλὰ\",\"h\":[[411],[]],\"parent\":0,\"children\":411,\"pos\":\"[1][411]\"},{\"t\":\"φίλοις\",\"h\":[[412],[]],\"parent\":0,\"children\":412,\"pos\":\"[1][412]\"},{\"t\":\"μὲν\",\"h\":[[413],[]],\"parent\":0,\"children\":413,\"pos\":\"[1][413]\"},{\"t\":\"ἐμοῖσι\",\"h\":[[414],[]],\"parent\":0,\"children\":414,\"pos\":\"[1][414]\"},{\"t\":\"φέρω\",\"h\":[[415],[]],\"parent\":0,\"children\":415,\"pos\":\"[1][415]\"},{\"t\":\"χάριν\",\"h\":[[416],[]],\"parent\":0,\"children\":416,\"pos\":\"[1][416]\"},{\"p\":\":\",\"parent\":0,\"children\":417,\"pos\":\"[1][417]\"},{\"t\":\"ἔστι\",\"h\":[[418],[]],\"parent\":0,\"children\":418,\"pos\":\"[1][418]\"},{\"t\":\"δὲ\",\"h\":[[419],[]],\"parent\":0,\"children\":419,\"pos\":\"[1][419]\"},{\"t\":\"μύσταις\",\"h\":[[420],[]],\"parent\":0,\"children\":420,\"pos\":\"[1][420]\"}],[{\"t\":\"κοινὸς\",\"h\":[[421],[]],\"parent\":0,\"children\":421,\"pos\":\"[1][421]\"},{\"t\":\"ὁ\",\"h\":[[422],[]],\"parent\":0,\"children\":422,\"pos\":\"[1][422]\"},{\"t\":\"τῶν\",\"h\":[[423],[]],\"parent\":0,\"children\":423,\"pos\":\"[1][423]\"},{\"t\":\"Μουσέων\",\"h\":[[424],[]],\"parent\":0,\"children\":424,\"pos\":\"[1][424]\"},{\"t\":\"ἡδυεπὴς\",\"h\":[[425],[]],\"parent\":0,\"children\":425,\"pos\":\"[1][425]\"},{\"t\":\"στέφανος\",\"h\":[[426],[]],\"parent\":0,\"children\":426,\"pos\":\"[1][426]\"},{\"p\":\".\",\"parent\":0,\"children\":427,\"pos\":\"[1][427]\"}],[]],[[{\"t\":\"Musa\",\"h\":[[1],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"amata\",\"h\":[[],[2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"p\":\",\",\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"a\",\"h\":[[],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"chi\",\"h\":[[],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"porti\",\"h\":[[],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"questo\",\"h\":[[],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"canto\",\"h\":[[],[8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"di\",\"h\":[[],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"frutti\",\"h\":[[],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"p\":\"?\",\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"}],[{\"t\":\"Chi\",\"h\":[[],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"intrecciò\",\"h\":[[],[13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"questa\",\"h\":[[],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"corona\",\"h\":[[],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"di\",\"h\":[[],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"poeti\",\"h\":[[],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\"?\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"}],[{\"t\":\"La\",\"h\":[[],[19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"realizzò\",\"h\":[[],[20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"Meleagro\",\"h\":[[],[21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"p\":\":\",\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"compose\",\"h\":[[],[23]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"questo\",\"h\":[[],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"dono\",\"h\":[[],[25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"come\",\"h\":[[],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"}],[{\"t\":\"ricordo\",\"h\":[[],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"per\",\"h\":[[],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"il\",\"h\":[[],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"celebre\",\"h\":[[],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"Diocle\",\"h\":[[],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"p\":\";\",\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"}],[{\"t\":\"unì\",\"h\":[[],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"tanti\",\"h\":[[],[34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"gigli\",\"h\":[[],[35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"di\",\"h\":[[],[36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"Anite\",\"h\":[[],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"p\":\",\",\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"tanti\",\"h\":[[],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"narcisi\",\"h\":[[],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"di\",\"h\":[[],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"Mero\",\"h\":[[],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"}],[{\"t\":\"e\",\"h\":[[],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"pochi\",\"h\":[[],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"fiori\",\"h\":[[],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"di\",\"h\":[[],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"Saffo\",\"h\":[[],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"p\":\",\",\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"ma\",\"h\":[[],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"erano\",\"h\":[[],[50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"rose\",\"h\":[[],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"p\":\";\",\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"}],[{\"t\":\"un\",\"h\":[[],[53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"narciso\",\"h\":[[],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"di\",\"h\":[[],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"Melanippide\",\"h\":[[],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"p\":\",\",\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"pieno\",\"h\":[[],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"di\",\"h\":[[],[59]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"canti\",\"h\":[[],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"acuti\",\"h\":[[],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"p\":\",\",\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"}],[{\"t\":\"e\",\"h\":[[],[63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"un\",\"h\":[[],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"ramo\",\"h\":[[],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"giovane\",\"h\":[[],[66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"della\",\"h\":[[],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"t\":\"infiorescenza\",\"h\":[[],[68]],\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"},{\"t\":\"della\",\"h\":[[],[69]],\"parent\":1,\"children\":69,\"pos\":\"[2][69]\"},{\"t\":\"vite\",\"h\":[[],[70]],\"parent\":1,\"children\":70,\"pos\":\"[2][70]\"},{\"t\":\"di\",\"h\":[[],[71]],\"parent\":1,\"children\":71,\"pos\":\"[2][71]\"},{\"t\":\"Simonide\",\"h\":[[],[72]],\"parent\":1,\"children\":72,\"pos\":\"[2][72]\"},{\"p\":\";\",\"parent\":1,\"children\":73,\"pos\":\"[2][73]\"}],[{\"t\":\"intrecciò\",\"h\":[[],[74]],\"parent\":1,\"children\":74,\"pos\":\"[2][74]\"},{\"t\":\"contemporaneamente\",\"h\":[[],[75]],\"parent\":1,\"children\":75,\"pos\":\"[2][75]\"},{\"t\":\"in\",\"h\":[[],[76]],\"parent\":1,\"children\":76,\"pos\":\"[2][76]\"},{\"t\":\"modo\",\"h\":[[],[77]],\"parent\":1,\"children\":77,\"pos\":\"[2][77]\"},{\"t\":\"confuso\",\"h\":[[],[78]],\"parent\":1,\"children\":78,\"pos\":\"[2][78]\"},{\"t\":\"l\",\"h\":[[],[79]],\"parent\":1,\"children\":79,\"pos\":\"[2][79]\"},{\"p\":\"’\",\"parent\":1,\"children\":80,\"pos\":\"[2][80]\"},{\"t\":\"iris\",\"h\":[[],[81]],\"parent\":1,\"children\":81,\"pos\":\"[2][81]\"},{\"t\":\"dal\",\"h\":[[],[82]],\"parent\":1,\"children\":82,\"pos\":\"[2][82]\"},{\"t\":\"fiore\",\"h\":[[],[83]],\"parent\":1,\"children\":83,\"pos\":\"[2][83]\"},{\"t\":\"profumato\",\"h\":[[],[84]],\"parent\":1,\"children\":84,\"pos\":\"[2][84]\"}],[{\"t\":\"di\",\"h\":[[],[85]],\"parent\":1,\"children\":85,\"pos\":\"[2][85]\"},{\"t\":\"Nosside\",\"h\":[[],[86]],\"parent\":1,\"children\":86,\"pos\":\"[2][86]\"},{\"p\":\",\",\"parent\":1,\"children\":87,\"pos\":\"[2][87]\"},{\"t\":\"sulle\",\"h\":[[],[88]],\"parent\":1,\"children\":88,\"pos\":\"[2][88]\"},{\"t\":\"cui\",\"h\":[[],[89]],\"parent\":1,\"children\":89,\"pos\":\"[2][89]\"},{\"t\":\"tavolette\",\"h\":[[],[90]],\"parent\":1,\"children\":90,\"pos\":\"[2][90]\"},{\"t\":\"Amore\",\"h\":[[],[91]],\"parent\":1,\"children\":91,\"pos\":\"[2][91]\"},{\"t\":\"sciolse\",\"h\":[[],[92]],\"parent\":1,\"children\":92,\"pos\":\"[2][92]\"},{\"t\":\"la\",\"h\":[[],[93]],\"parent\":1,\"children\":93,\"pos\":\"[2][93]\"},{\"t\":\"cera\",\"h\":[[],[94]],\"parent\":1,\"children\":94,\"pos\":\"[2][94]\"},{\"p\":\";\",\"parent\":1,\"children\":95,\"pos\":\"[2][95]\"}],[{\"t\":\"insieme\",\"h\":[[],[96]],\"parent\":1,\"children\":96,\"pos\":\"[2][96]\"},{\"t\":\"a\",\"h\":[[],[97]],\"parent\":1,\"children\":97,\"pos\":\"[2][97]\"},{\"t\":\"lei\",\"h\":[[],[98]],\"parent\":1,\"children\":98,\"pos\":\"[2][98]\"},{\"t\":\"la\",\"h\":[[],[99]],\"parent\":1,\"children\":99,\"pos\":\"[2][99]\"},{\"t\":\"maggiorana\",\"h\":[[],[100]],\"parent\":1,\"children\":100,\"pos\":\"[2][100]\"},{\"t\":\"lontana\",\"h\":[[],[101]],\"parent\":1,\"children\":101,\"pos\":\"[2][101]\"},{\"t\":\"dal\",\"h\":[[],[102]],\"parent\":1,\"children\":102,\"pos\":\"[2][102]\"},{\"t\":\"dolce\",\"h\":[[],[103]],\"parent\":1,\"children\":103,\"pos\":\"[2][103]\"},{\"t\":\"Riano\",\"h\":[[],[104]],\"parent\":1,\"children\":104,\"pos\":\"[2][104]\"},{\"p\":\",\",\"parent\":1,\"children\":105,\"pos\":\"[2][105]\"}],[{\"t\":\"e\",\"h\":[[],[106]],\"parent\":1,\"children\":106,\"pos\":\"[2][106]\"},{\"t\":\"il\",\"h\":[[],[107]],\"parent\":1,\"children\":107,\"pos\":\"[2][107]\"},{\"t\":\"dolce\",\"h\":[[],[108]],\"parent\":1,\"children\":108,\"pos\":\"[2][108]\"},{\"t\":\"zafferano\",\"h\":[[],[109]],\"parent\":1,\"children\":109,\"pos\":\"[2][109]\"},{\"t\":\"dal\",\"h\":[[],[110]],\"parent\":1,\"children\":110,\"pos\":\"[2][110]\"},{\"t\":\"colore\",\"h\":[[],[111]],\"parent\":1,\"children\":111,\"pos\":\"[2][111]\"},{\"t\":\"verginale\",\"h\":[[],[112]],\"parent\":1,\"children\":112,\"pos\":\"[2][112]\"},{\"t\":\"d\",\"h\":[[],[113]],\"parent\":1,\"children\":113,\"pos\":\"[2][113]\"},{\"p\":\"’\",\"parent\":1,\"children\":114,\"pos\":\"[2][114]\"},{\"t\":\"Erinna\",\"h\":[[],[115]],\"parent\":1,\"children\":115,\"pos\":\"[2][115]\"},{\"p\":\",\",\"parent\":1,\"children\":116,\"pos\":\"[2][116]\"}],[{\"t\":\"e\",\"h\":[[],[117]],\"parent\":1,\"children\":117,\"pos\":\"[2][117]\"},{\"t\":\"il\",\"h\":[[],[118]],\"parent\":1,\"children\":118,\"pos\":\"[2][118]\"},{\"t\":\"giacinto\",\"h\":[[],[119]],\"parent\":1,\"children\":119,\"pos\":\"[2][119]\"},{\"t\":\"d\",\"h\":[[],[120]],\"parent\":1,\"children\":120,\"pos\":\"[2][120]\"},{\"p\":\"’\",\"parent\":1,\"children\":121,\"pos\":\"[2][121]\"},{\"t\":\"Alceo\",\"h\":[[],[122]],\"parent\":1,\"children\":122,\"pos\":\"[2][122]\"},{\"t\":\"rinomato\",\"h\":[[],[123]],\"parent\":1,\"children\":123,\"pos\":\"[2][123]\"},{\"t\":\"tra\",\"h\":[[],[124]],\"parent\":1,\"children\":124,\"pos\":\"[2][124]\"},{\"t\":\"i\",\"h\":[[],[125]],\"parent\":1,\"children\":125,\"pos\":\"[2][125]\"},{\"t\":\"poeti\",\"h\":[[],[126]],\"parent\":1,\"children\":126,\"pos\":\"[2][126]\"},{\"p\":\",\",\"parent\":1,\"children\":127,\"pos\":\"[2][127]\"},{\"t\":\"e\",\"h\":[[],[128]],\"parent\":1,\"children\":128,\"pos\":\"[2][128]\"},{\"t\":\"il\",\"h\":[[],[129]],\"parent\":1,\"children\":129,\"pos\":\"[2][129]\"},{\"t\":\"fascio\",\"h\":[[],[130]],\"parent\":1,\"children\":130,\"pos\":\"[2][130]\"},{\"t\":\"d\",\"h\":[[],[131]],\"parent\":1,\"children\":131,\"pos\":\"[2][131]\"},{\"p\":\"’\",\"parent\":1,\"children\":132,\"pos\":\"[2][132]\"},{\"t\":\"alloro\",\"h\":[[],[133]],\"parent\":1,\"children\":133,\"pos\":\"[2][133]\"},{\"t\":\"di\",\"h\":[[],[134]],\"parent\":1,\"children\":134,\"pos\":\"[2][134]\"},{\"t\":\"Samio\",\"h\":[[],[135]],\"parent\":1,\"children\":135,\"pos\":\"[2][135]\"},{\"t\":\"dalle\",\"h\":[[],[136]],\"parent\":1,\"children\":136,\"pos\":\"[2][136]\"},{\"t\":\"foglie\",\"h\":[[],[137]],\"parent\":1,\"children\":137,\"pos\":\"[2][137]\"},{\"t\":\"scure\",\"h\":[[],[138]],\"parent\":1,\"children\":138,\"pos\":\"[2][138]\"},{\"p\":\";\",\"parent\":1,\"children\":139,\"pos\":\"[2][139]\"}],[{\"t\":\"e\",\"h\":[[],[140]],\"parent\":1,\"children\":140,\"pos\":\"[2][140]\"},{\"t\":\"di\",\"h\":[[],[141]],\"parent\":1,\"children\":141,\"pos\":\"[2][141]\"},{\"t\":\"Leonida\",\"h\":[[],[142]],\"parent\":1,\"children\":142,\"pos\":\"[2][142]\"},{\"t\":\"le\",\"h\":[[],[143]],\"parent\":1,\"children\":143,\"pos\":\"[2][143]\"},{\"t\":\"sommità\",\"h\":[[],[144]],\"parent\":1,\"children\":144,\"pos\":\"[2][144]\"},{\"t\":\"fiorenti\",\"h\":[[],[145]],\"parent\":1,\"children\":145,\"pos\":\"[2][145]\"},{\"t\":\"dell\",\"h\":[[],[146]],\"parent\":1,\"children\":146,\"pos\":\"[2][146]\"},{\"p\":\"’\",\"parent\":1,\"children\":147,\"pos\":\"[2][147]\"},{\"t\":\"edera\",\"h\":[[],[148]],\"parent\":1,\"children\":148,\"pos\":\"[2][148]\"},{\"p\":\",\",\"parent\":1,\"children\":149,\"pos\":\"[2][149]\"}],[{\"t\":\"e\",\"h\":[[],[150]],\"parent\":1,\"children\":150,\"pos\":\"[2][150]\"},{\"t\":\"di\",\"h\":[[],[151]],\"parent\":1,\"children\":151,\"pos\":\"[2][151]\"},{\"t\":\"Mnasalce\",\"h\":[[],[152]],\"parent\":1,\"children\":152,\"pos\":\"[2][152]\"},{\"t\":\"la\",\"h\":[[],[153]],\"parent\":1,\"children\":153,\"pos\":\"[2][153]\"},{\"t\":\"chioma\",\"h\":[[],[154]],\"parent\":1,\"children\":154,\"pos\":\"[2][154]\"},{\"t\":\"di\",\"h\":[[],[155]],\"parent\":1,\"children\":155,\"pos\":\"[2][155]\"},{\"t\":\"pino\",\"h\":[[],[156]],\"parent\":1,\"children\":156,\"pos\":\"[2][156]\"},{\"t\":\"pungente\",\"h\":[[],[157]],\"parent\":1,\"children\":157,\"pos\":\"[2][157]\"},{\"p\":\";\",\"parent\":1,\"children\":158,\"pos\":\"[2][158]\"}],[{\"t\":\"tagliò\",\"h\":[[],[159]],\"parent\":1,\"children\":159,\"pos\":\"[2][159]\"},{\"t\":\"i\",\"h\":[[],[160]],\"parent\":1,\"children\":160,\"pos\":\"[2][160]\"},{\"t\":\"rami\",\"h\":[[],[161]],\"parent\":1,\"children\":161,\"pos\":\"[2][161]\"},{\"t\":\"del\",\"h\":[[],[162]],\"parent\":1,\"children\":162,\"pos\":\"[2][162]\"},{\"t\":\"contorto\",\"h\":[[],[163]],\"parent\":1,\"children\":163,\"pos\":\"[2][163]\"},{\"t\":\"platano\",\"h\":[[],[164]],\"parent\":1,\"children\":164,\"pos\":\"[2][164]\"},{\"t\":\"del\",\"h\":[[],[165]],\"parent\":1,\"children\":165,\"pos\":\"[2][165]\"},{\"t\":\"canto\",\"h\":[[],[166]],\"parent\":1,\"children\":166,\"pos\":\"[2][166]\"},{\"t\":\"di\",\"h\":[[],[167]],\"parent\":1,\"children\":167,\"pos\":\"[2][167]\"},{\"t\":\"Panfilo\",\"h\":[[],[168]],\"parent\":1,\"children\":168,\"pos\":\"[2][168]\"},{\"p\":\",\",\"parent\":1,\"children\":169,\"pos\":\"[2][169]\"}],[{\"t\":\"e\",\"h\":[[],[170]],\"parent\":1,\"children\":170,\"pos\":\"[2][170]\"},{\"t\":\"intrecciò\",\"h\":[[],[171]],\"parent\":1,\"children\":171,\"pos\":\"[2][171]\"},{\"t\":\"in\",\"h\":[[],[172]],\"parent\":1,\"children\":172,\"pos\":\"[2][172]\"},{\"t\":\"ghirlande\",\"h\":[[],[173]],\"parent\":1,\"children\":173,\"pos\":\"[2][173]\"},{\"t\":\"il\",\"h\":[[],[174]],\"parent\":1,\"children\":174,\"pos\":\"[2][174]\"},{\"t\":\"noce\",\"h\":[[],[175]],\"parent\":1,\"children\":175,\"pos\":\"[2][175]\"},{\"t\":\"di\",\"h\":[[],[176]],\"parent\":1,\"children\":176,\"pos\":\"[2][176]\"},{\"t\":\"Pancrate\",\"h\":[[],[177]],\"parent\":1,\"children\":177,\"pos\":\"[2][177]\"},{\"p\":\",\",\"parent\":1,\"children\":178,\"pos\":\"[2][178]\"}],[{\"t\":\"il\",\"h\":[[],[179]],\"parent\":1,\"children\":179,\"pos\":\"[2][179]\"},{\"t\":\"pioppo\",\"h\":[[],[180]],\"parent\":1,\"children\":180,\"pos\":\"[2][180]\"},{\"t\":\"frondoso\",\"h\":[[],[181]],\"parent\":1,\"children\":181,\"pos\":\"[2][181]\"},{\"t\":\"di\",\"h\":[[],[182]],\"parent\":1,\"children\":182,\"pos\":\"[2][182]\"},{\"t\":\"Timne\",\"h\":[[],[183]],\"parent\":1,\"children\":183,\"pos\":\"[2][183]\"},{\"p\":\",\",\"parent\":1,\"children\":184,\"pos\":\"[2][184]\"},{\"t\":\"la\",\"h\":[[],[185]],\"parent\":1,\"children\":185,\"pos\":\"[2][185]\"},{\"t\":\"verdeggiante\",\"h\":[[],[186]],\"parent\":1,\"children\":186,\"pos\":\"[2][186]\"},{\"t\":\"menta\",\"h\":[[],[187]],\"parent\":1,\"children\":187,\"pos\":\"[2][187]\"}],[{\"t\":\"di\",\"h\":[[],[188]],\"parent\":1,\"children\":188,\"pos\":\"[2][188]\"},{\"t\":\"Nicia\",\"h\":[[],[189]],\"parent\":1,\"children\":189,\"pos\":\"[2][189]\"},{\"p\":\",\",\"parent\":1,\"children\":190,\"pos\":\"[2][190]\"},{\"t\":\"di\",\"h\":[[],[191]],\"parent\":1,\"children\":191,\"pos\":\"[2][191]\"},{\"t\":\"Eufemo\",\"h\":[[],[192]],\"parent\":1,\"children\":192,\"pos\":\"[2][192]\"},{\"t\":\"la\",\"h\":[[],[193]],\"parent\":1,\"children\":193,\"pos\":\"[2][193]\"},{\"t\":\"pianta\",\"h\":[[],[194]],\"parent\":1,\"children\":194,\"pos\":\"[2][194]\"},{\"t\":\"che\",\"h\":[[],[195]],\"parent\":1,\"children\":195,\"pos\":\"[2][195]\"},{\"t\":\"cresce\",\"h\":[[],[196]],\"parent\":1,\"children\":196,\"pos\":\"[2][196]\"},{\"t\":\"nella\",\"h\":[[],[197]],\"parent\":1,\"children\":197,\"pos\":\"[2][197]\"},{\"t\":\"sabbia\",\"h\":[[],[198]],\"parent\":1,\"children\":198,\"pos\":\"[2][198]\"},{\"t\":\"vicino\",\"h\":[[],[199]],\"parent\":1,\"children\":199,\"pos\":\"[2][199]\"},{\"t\":\"la\",\"h\":[[],[200]],\"parent\":1,\"children\":200,\"pos\":\"[2][200]\"},{\"t\":\"costa\",\"h\":[[],[201]],\"parent\":1,\"children\":201,\"pos\":\"[2][201]\"},{\"p\":\";\",\"parent\":1,\"children\":202,\"pos\":\"[2][202]\"}],[{\"t\":\"poi\",\"h\":[[],[203]],\"parent\":1,\"children\":203,\"pos\":\"[2][203]\"},{\"t\":\"ancora\",\"h\":[[],[204]],\"parent\":1,\"children\":204,\"pos\":\"[2][204]\"},{\"t\":\"di\",\"h\":[[],[205]],\"parent\":1,\"children\":205,\"pos\":\"[2][205]\"},{\"t\":\"Damageto\",\"h\":[[],[206]],\"parent\":1,\"children\":206,\"pos\":\"[2][206]\"},{\"p\":\",\",\"parent\":1,\"children\":207,\"pos\":\"[2][207]\"},{\"t\":\"la\",\"h\":[[],[208]],\"parent\":1,\"children\":208,\"pos\":\"[2][208]\"},{\"t\":\"scura\",\"h\":[[],[209]],\"parent\":1,\"children\":209,\"pos\":\"[2][209]\"},{\"t\":\"violetta\",\"h\":[[],[210]],\"parent\":1,\"children\":210,\"pos\":\"[2][210]\"},{\"p\":\",\",\"parent\":1,\"children\":211,\"pos\":\"[2][211]\"},{\"t\":\"e\",\"h\":[[],[212]],\"parent\":1,\"children\":212,\"pos\":\"[2][212]\"},{\"t\":\"il\",\"h\":[[],[213]],\"parent\":1,\"children\":213,\"pos\":\"[2][213]\"},{\"t\":\"dolce\",\"h\":[[],[214]],\"parent\":1,\"children\":214,\"pos\":\"[2][214]\"},{\"t\":\"mirto\",\"h\":[[],[215]],\"parent\":1,\"children\":215,\"pos\":\"[2][215]\"}],[{\"t\":\"di\",\"h\":[[],[216]],\"parent\":1,\"children\":216,\"pos\":\"[2][216]\"},{\"t\":\"Callimaco\",\"h\":[[],[217]],\"parent\":1,\"children\":217,\"pos\":\"[2][217]\"},{\"p\":\",\",\"parent\":1,\"children\":218,\"pos\":\"[2][218]\"},{\"t\":\"sempre\",\"h\":[[],[219]],\"parent\":1,\"children\":219,\"pos\":\"[2][219]\"},{\"t\":\"pieno\",\"h\":[[],[220]],\"parent\":1,\"children\":220,\"pos\":\"[2][220]\"},{\"t\":\"di\",\"h\":[[],[221]],\"parent\":1,\"children\":221,\"pos\":\"[2][221]\"},{\"t\":\"aspro\",\"h\":[[],[222]],\"parent\":1,\"children\":222,\"pos\":\"[2][222]\"},{\"t\":\"miele\",\"h\":[[],[223]],\"parent\":1,\"children\":223,\"pos\":\"[2][223]\"},{\"p\":\",\",\"parent\":1,\"children\":224,\"pos\":\"[2][224]\"}],[{\"t\":\"e\",\"h\":[[],[225]],\"parent\":1,\"children\":225,\"pos\":\"[2][225]\"},{\"t\":\"d\",\"h\":[[],[226]],\"parent\":1,\"children\":226,\"pos\":\"[2][226]\"},{\"p\":\"’\",\"parent\":1,\"children\":227,\"pos\":\"[2][227]\"},{\"t\":\"Euforione\",\"h\":[[],[228]],\"parent\":1,\"children\":228,\"pos\":\"[2][228]\"},{\"t\":\"la\",\"h\":[[],[229]],\"parent\":1,\"children\":229,\"pos\":\"[2][229]\"},{\"t\":\"licnide\",\"h\":[[],[230]],\"parent\":1,\"children\":230,\"pos\":\"[2][230]\"},{\"p\":\",\",\"parent\":1,\"children\":231,\"pos\":\"[2][231]\"},{\"t\":\"il\",\"h\":[[],[232]],\"parent\":1,\"children\":232,\"pos\":\"[2][232]\"},{\"t\":\"cardamomo\",\"h\":[[],[233]],\"parent\":1,\"children\":233,\"pos\":\"[2][233]\"},{\"t\":\"per\",\"h\":[[],[234]],\"parent\":1,\"children\":234,\"pos\":\"[2][234]\"},{\"t\":\"le\",\"h\":[[],[235]],\"parent\":1,\"children\":235,\"pos\":\"[2][235]\"},{\"t\":\"Muse\",\"h\":[[],[236]],\"parent\":1,\"children\":236,\"pos\":\"[2][236]\"},{\"p\":\",\",\"parent\":1,\"children\":237,\"pos\":\"[2][237]\"}],[{\"t\":\"che\",\"h\":[[],[238]],\"parent\":1,\"children\":238,\"pos\":\"[2][238]\"},{\"t\":\"prese\",\"h\":[[],[239]],\"parent\":1,\"children\":239,\"pos\":\"[2][239]\"},{\"t\":\"il\",\"h\":[[],[240]],\"parent\":1,\"children\":240,\"pos\":\"[2][240]\"},{\"t\":\"nome\",\"h\":[[],[241]],\"parent\":1,\"children\":241,\"pos\":\"[2][241]\"},{\"t\":\"dai\",\"h\":[[],[242]],\"parent\":1,\"children\":242,\"pos\":\"[2][242]\"},{\"t\":\"giovani\",\"h\":[[],[243]],\"parent\":1,\"children\":243,\"pos\":\"[2][243]\"},{\"t\":\"fanciulli\",\"h\":[[],[244]],\"parent\":1,\"children\":244,\"pos\":\"[2][244]\"},{\"t\":\"di\",\"h\":[[],[245]],\"parent\":1,\"children\":245,\"pos\":\"[2][245]\"},{\"t\":\"Zeus\",\"h\":[[],[246]],\"parent\":1,\"children\":246,\"pos\":\"[2][246]\"},{\"p\":\".\",\"parent\":1,\"children\":247,\"pos\":\"[2][247]\"}],[{\"t\":\"Dunque\",\"h\":[[],[248]],\"parent\":1,\"children\":248,\"pos\":\"[2][248]\"},{\"t\":\"aggiungeva\",\"h\":[[],[249]],\"parent\":1,\"children\":249,\"pos\":\"[2][249]\"},{\"t\":\"a\",\"h\":[[],[250]],\"parent\":1,\"children\":250,\"pos\":\"[2][250]\"},{\"t\":\"questi\",\"h\":[[],[251]],\"parent\":1,\"children\":251,\"pos\":\"[2][251]\"},{\"t\":\"di\",\"h\":[[],[252]],\"parent\":1,\"children\":252,\"pos\":\"[2][252]\"},{\"t\":\"Egesippo\",\"h\":[[],[253]],\"parent\":1,\"children\":253,\"pos\":\"[2][253]\"},{\"t\":\"il\",\"h\":[[],[254]],\"parent\":1,\"children\":254,\"pos\":\"[2][254]\"},{\"t\":\"grappolo\",\"h\":[[],[255]],\"parent\":1,\"children\":255,\"pos\":\"[2][255]\"},{\"t\":\"d\",\"h\":[[],[256]],\"parent\":1,\"children\":256,\"pos\":\"[2][256]\"},{\"p\":\"’\",\"parent\":1,\"children\":257,\"pos\":\"[2][257]\"},{\"t\":\"uva\",\"h\":[[],[258]],\"parent\":1,\"children\":258,\"pos\":\"[2][258]\"},{\"t\":\"furente\",\"h\":[[],[259]],\"parent\":1,\"children\":259,\"pos\":\"[2][259]\"},{\"p\":\",\",\"parent\":1,\"children\":260,\"pos\":\"[2][260]\"}],[{\"t\":\"dopo\",\"h\":[[],[261]],\"parent\":1,\"children\":261,\"pos\":\"[2][261]\"},{\"t\":\"aver\",\"h\":[[],[262]],\"parent\":1,\"children\":262,\"pos\":\"[2][262]\"},{\"t\":\"raccolto\",\"h\":[[],[263]],\"parent\":1,\"children\":263,\"pos\":\"[2][263]\"},{\"t\":\"anche\",\"h\":[[],[264]],\"parent\":1,\"children\":264,\"pos\":\"[2][264]\"},{\"t\":\"un\",\"h\":[[],[265]],\"parent\":1,\"children\":265,\"pos\":\"[2][265]\"},{\"t\":\"giunco\",\"h\":[[],[266]],\"parent\":1,\"children\":266,\"pos\":\"[2][266]\"},{\"t\":\"profumato\",\"h\":[[],[267]],\"parent\":1,\"children\":267,\"pos\":\"[2][267]\"},{\"t\":\"di\",\"h\":[[],[268]],\"parent\":1,\"children\":268,\"pos\":\"[2][268]\"},{\"t\":\"Perse\",\"h\":[[],[269]],\"parent\":1,\"children\":269,\"pos\":\"[2][269]\"},{\"p\":\",\",\"parent\":1,\"children\":270,\"pos\":\"[2][270]\"}],[{\"t\":\"con\",\"h\":[[],[271]],\"parent\":1,\"children\":271,\"pos\":\"[2][271]\"},{\"t\":\"una\",\"h\":[[],[272]],\"parent\":1,\"children\":272,\"pos\":\"[2][272]\"},{\"t\":\"dolce\",\"h\":[[],[273]],\"parent\":1,\"children\":273,\"pos\":\"[2][273]\"},{\"t\":\"mela\",\"h\":[[],[274]],\"parent\":1,\"children\":274,\"pos\":\"[2][274]\"},{\"t\":\"di\",\"h\":[[],[275]],\"parent\":1,\"children\":275,\"pos\":\"[2][275]\"},{\"t\":\"Diotimo\",\"h\":[[],[276]],\"parent\":1,\"children\":276,\"pos\":\"[2][276]\"}],[{\"t\":\"dai\",\"h\":[[],[277]],\"parent\":1,\"children\":277,\"pos\":\"[2][277]\"},{\"t\":\"rami\",\"h\":[[],[278]],\"parent\":1,\"children\":278,\"pos\":\"[2][278]\"},{\"t\":\"e\",\"h\":[[],[279]],\"parent\":1,\"children\":279,\"pos\":\"[2][279]\"},{\"t\":\"prima\",\"h\":[[],[280]],\"parent\":1,\"children\":280,\"pos\":\"[2][280]\"},{\"t\":\"ancora\",\"h\":[[],[281]],\"parent\":1,\"children\":281,\"pos\":\"[2][281]\"},{\"t\":\"fiori\",\"h\":[[],[282]],\"parent\":1,\"children\":282,\"pos\":\"[2][282]\"},{\"t\":\"di\",\"h\":[[],[283]],\"parent\":1,\"children\":283,\"pos\":\"[2][283]\"},{\"t\":\"melograno\",\"h\":[[],[284]],\"parent\":1,\"children\":284,\"pos\":\"[2][284]\"},{\"t\":\"di\",\"h\":[[],[285]],\"parent\":1,\"children\":285,\"pos\":\"[2][285]\"},{\"t\":\"Menecrate\",\"h\":[[],[286]],\"parent\":1,\"children\":286,\"pos\":\"[2][286]\"},{\"p\":\",\",\"parent\":1,\"children\":287,\"pos\":\"[2][287]\"}],[{\"t\":\"rami\",\"h\":[[],[288]],\"parent\":1,\"children\":288,\"pos\":\"[2][288]\"},{\"t\":\"di\",\"h\":[[],[289]],\"parent\":1,\"children\":289,\"pos\":\"[2][289]\"},{\"t\":\"mirra\",\"h\":[[],[290]],\"parent\":1,\"children\":290,\"pos\":\"[2][290]\"},{\"t\":\"di\",\"h\":[[],[291]],\"parent\":1,\"children\":291,\"pos\":\"[2][291]\"},{\"t\":\"Niceneto\",\"h\":[[],[292]],\"parent\":1,\"children\":292,\"pos\":\"[2][292]\"},{\"p\":\",\",\"parent\":1,\"children\":293,\"pos\":\"[2][293]\"},{\"t\":\"un\",\"h\":[[],[294]],\"parent\":1,\"children\":294,\"pos\":\"[2][294]\"},{\"t\":\"pistacchio\",\"h\":[[],[295]],\"parent\":1,\"children\":295,\"pos\":\"[2][295]\"}],[{\"t\":\"di\",\"h\":[[],[296]],\"parent\":1,\"children\":296,\"pos\":\"[2][296]\"},{\"t\":\"Foenno\",\"h\":[[],[297]],\"parent\":1,\"children\":297,\"pos\":\"[2][297]\"},{\"t\":\"e\",\"h\":[[],[298]],\"parent\":1,\"children\":298,\"pos\":\"[2][298]\"},{\"t\":\"un\",\"h\":[[],[299]],\"parent\":1,\"children\":299,\"pos\":\"[2][299]\"},{\"t\":\"alto\",\"h\":[[],[300]],\"parent\":1,\"children\":300,\"pos\":\"[2][300]\"},{\"t\":\"pero\",\"h\":[[],[301]],\"parent\":1,\"children\":301,\"pos\":\"[2][301]\"},{\"t\":\"di\",\"h\":[[],[302]],\"parent\":1,\"children\":302,\"pos\":\"[2][302]\"},{\"t\":\"Simia\",\"h\":[[],[303]],\"parent\":1,\"children\":303,\"pos\":\"[2][303]\"},{\"p\":\";\",\"parent\":1,\"children\":304,\"pos\":\"[2][304]\"}],[{\"t\":\"raccogliendo\",\"h\":[[],[305]],\"parent\":1,\"children\":305,\"pos\":\"[2][305]\"},{\"t\":\"inoltre\",\"h\":[[],[306]],\"parent\":1,\"children\":306,\"pos\":\"[2][306]\"},{\"t\":\"dal\",\"h\":[[],[307]],\"parent\":1,\"children\":307,\"pos\":\"[2][307]\"},{\"t\":\"prato\",\"h\":[[],[308]],\"parent\":1,\"children\":308,\"pos\":\"[2][308]\"},{\"t\":\"perfetto\",\"h\":[[],[309]],\"parent\":1,\"children\":309,\"pos\":\"[2][309]\"}],[{\"t\":\"un\",\"h\":[[],[310]],\"parent\":1,\"children\":310,\"pos\":\"[2][310]\"},{\"t\":\"po\",\"h\":[[],[311]],\"parent\":1,\"children\":311,\"pos\":\"[2][311]\"},{\"p\":\"’\",\"parent\":1,\"children\":312,\"pos\":\"[2][312]\"},{\"t\":\"di\",\"h\":[[],[313]],\"parent\":1,\"children\":313,\"pos\":\"[2][313]\"},{\"t\":\"sedano\",\"h\":[[],[314]],\"parent\":1,\"children\":314,\"pos\":\"[2][314]\"},{\"t\":\"e\",\"h\":[[],[315]],\"parent\":1,\"children\":315,\"pos\":\"[2][315]\"},{\"t\":\"fiori\",\"h\":[[],[316]],\"parent\":1,\"children\":316,\"pos\":\"[2][316]\"},{\"t\":\"di\",\"h\":[[],[317]],\"parent\":1,\"children\":317,\"pos\":\"[2][317]\"},{\"t\":\"Partenide\",\"h\":[[],[318]],\"parent\":1,\"children\":318,\"pos\":\"[2][318]\"},{\"p\":\",\",\"parent\":1,\"children\":319,\"pos\":\"[2][319]\"}],[{\"t\":\"e\",\"h\":[[],[320]],\"parent\":1,\"children\":320,\"pos\":\"[2][320]\"},{\"t\":\"spighe\",\"h\":[[],[321]],\"parent\":1,\"children\":321,\"pos\":\"[2][321]\"},{\"t\":\"dorate\",\"h\":[[],[322]],\"parent\":1,\"children\":322,\"pos\":\"[2][322]\"},{\"t\":\"dalla\",\"h\":[[],[323]],\"parent\":1,\"children\":323,\"pos\":\"[2][323]\"},{\"t\":\"paglia\",\"h\":[[],[324]],\"parent\":1,\"children\":324,\"pos\":\"[2][324]\"},{\"t\":\"di\",\"h\":[[],[325]],\"parent\":1,\"children\":325,\"pos\":\"[2][325]\"},{\"t\":\"Bacchilide\",\"h\":[[],[326]],\"parent\":1,\"children\":326,\"pos\":\"[2][326]\"},{\"p\":\",\",\"parent\":1,\"children\":327,\"pos\":\"[2][327]\"}],[{\"t\":\"reliquie\",\"h\":[[],[328]],\"parent\":1,\"children\":328,\"pos\":\"[2][328]\"},{\"t\":\"fiorenti\",\"h\":[[],[329]],\"parent\":1,\"children\":329,\"pos\":\"[2][329]\"},{\"t\":\"di\",\"h\":[[],[330]],\"parent\":1,\"children\":330,\"pos\":\"[2][330]\"},{\"t\":\"dolcissime\",\"h\":[[],[331]],\"parent\":1,\"children\":331,\"pos\":\"[2][331]\"},{\"t\":\"Muse\",\"h\":[[],[332]],\"parent\":1,\"children\":332,\"pos\":\"[2][332]\"},{\"p\":\":\",\"parent\":1,\"children\":333,\"pos\":\"[2][333]\"}],[{\"t\":\"E\",\"h\":[[],[334]],\"parent\":1,\"children\":334,\"pos\":\"[2][334]\"},{\"t\":\"dunque\",\"h\":[[],[335]],\"parent\":1,\"children\":335,\"pos\":\"[2][335]\"},{\"t\":\"per\",\"h\":[[],[336]],\"parent\":1,\"children\":336,\"pos\":\"[2][336]\"},{\"t\":\"Anacreonte\",\"h\":[[],[337]],\"parent\":1,\"children\":337,\"pos\":\"[2][337]\"},{\"p\":\",\",\"parent\":1,\"children\":338,\"pos\":\"[2][338]\"},{\"t\":\"quel\",\"h\":[[],[339]],\"parent\":1,\"children\":339,\"pos\":\"[2][339]\"},{\"t\":\"famoso\",\"h\":[[],[340]],\"parent\":1,\"children\":340,\"pos\":\"[2][340]\"},{\"t\":\"dolce\",\"h\":[[],[341]],\"parent\":1,\"children\":341,\"pos\":\"[2][341]\"},{\"t\":\"canto\",\"h\":[[],[342]],\"parent\":1,\"children\":342,\"pos\":\"[2][342]\"},{\"p\":\",\",\"parent\":1,\"children\":343,\"pos\":\"[2][343]\"}],[{\"t\":\"di\",\"h\":[[],[344]],\"parent\":1,\"children\":344,\"pos\":\"[2][344]\"},{\"t\":\"miele\",\"h\":[[],[345]],\"parent\":1,\"children\":345,\"pos\":\"[2][345]\"},{\"p\":\",\",\"parent\":1,\"children\":346,\"pos\":\"[2][346]\"},{\"t\":\"fiore\",\"h\":[[],[347]],\"parent\":1,\"children\":347,\"pos\":\"[2][347]\"},{\"t\":\"sterile\",\"h\":[[],[348]],\"parent\":1,\"children\":348,\"pos\":\"[2][348]\"},{\"t\":\"di\",\"h\":[[],[349]],\"parent\":1,\"children\":349,\"pos\":\"[2][349]\"},{\"t\":\"elegie\",\"h\":[[],[350]],\"parent\":1,\"children\":350,\"pos\":\"[2][350]\"}],[{\"t\":\"nonché\",\"h\":[[],[351]],\"parent\":1,\"children\":351,\"pos\":\"[2][351]\"},{\"t\":\"fiore\",\"h\":[[],[352]],\"parent\":1,\"children\":352,\"pos\":\"[2][352]\"},{\"t\":\"d\",\"h\":[[],[353]],\"parent\":1,\"children\":353,\"pos\":\"[2][353]\"},{\"p\":\"’\",\"parent\":1,\"children\":354,\"pos\":\"[2][354]\"},{\"t\":\"acanto\",\"h\":[[],[355]],\"parent\":1,\"children\":355,\"pos\":\"[2][355]\"},{\"t\":\"dalla\",\"h\":[[],[356]],\"parent\":1,\"children\":356,\"pos\":\"[2][356]\"},{\"t\":\"chioma\",\"h\":[[],[357]],\"parent\":1,\"children\":357,\"pos\":\"[2][357]\"},{\"t\":\"ricciuta\",\"h\":[[],[358]],\"parent\":1,\"children\":358,\"pos\":\"[2][358]\"},{\"p\":\",\",\"parent\":1,\"children\":359,\"pos\":\"[2][359]\"},{\"t\":\"formato\",\"h\":[[],[360]],\"parent\":1,\"children\":360,\"pos\":\"[2][360]\"},{\"t\":\"dall\",\"h\":[[],[361]],\"parent\":1,\"children\":361,\"pos\":\"[2][361]\"},{\"p\":\"’\",\"parent\":1,\"children\":362,\"pos\":\"[2][362]\"},{\"t\":\"insegnamento\",\"h\":[[],[363]],\"parent\":1,\"children\":363,\"pos\":\"[2][363]\"}],[{\"t\":\"di\",\"h\":[[],[364]],\"parent\":1,\"children\":364,\"pos\":\"[2][364]\"},{\"t\":\"Archiloco\",\"h\":[[],[365]],\"parent\":1,\"children\":365,\"pos\":\"[2][365]\"},{\"p\":\",\",\"parent\":1,\"children\":366,\"pos\":\"[2][366]\"},{\"t\":\"scelse\",\"h\":[[],[367]],\"parent\":1,\"children\":367,\"pos\":\"[2][367]\"},{\"t\":\"piccole\",\"h\":[[],[368]],\"parent\":1,\"children\":368,\"pos\":\"[2][368]\"},{\"t\":\"gocce\",\"h\":[[],[369]],\"parent\":1,\"children\":369,\"pos\":\"[2][369]\"},{\"t\":\"dal\",\"h\":[[],[370]],\"parent\":1,\"children\":370,\"pos\":\"[2][370]\"},{\"t\":\"grande\",\"h\":[[],[371]],\"parent\":1,\"children\":371,\"pos\":\"[2][371]\"},{\"t\":\"Oceano\",\"h\":[[],[372]],\"parent\":1,\"children\":372,\"pos\":\"[2][372]\"},{\"p\":\":\",\"parent\":1,\"children\":373,\"pos\":\"[2][373]\"}],[{\"t\":\"invece\",\"h\":[[],[374]],\"parent\":1,\"children\":374,\"pos\":\"[2][374]\"},{\"t\":\"per\",\"h\":[[],[375]],\"parent\":1,\"children\":375,\"pos\":\"[2][375]\"},{\"t\":\"Alessandro\",\"h\":[[],[376]],\"parent\":1,\"children\":376,\"pos\":\"[2][376]\"},{\"t\":\"acerbi\",\"h\":[[],[377]],\"parent\":1,\"children\":377,\"pos\":\"[2][377]\"},{\"t\":\"ramoscelli\",\"h\":[[],[378]],\"parent\":1,\"children\":378,\"pos\":\"[2][378]\"},{\"t\":\"d\",\"h\":[[],[379]],\"parent\":1,\"children\":379,\"pos\":\"[2][379]\"},{\"p\":\"’\",\"parent\":1,\"children\":380,\"pos\":\"[2][380]\"},{\"t\":\"ulivo\",\"h\":[[],[381]],\"parent\":1,\"children\":381,\"pos\":\"[2][381]\"},{\"p\":\",\",\"parent\":1,\"children\":382,\"pos\":\"[2][382]\"}],[{\"t\":\"e\",\"h\":[[],[383]],\"parent\":1,\"children\":383,\"pos\":\"[2][383]\"},{\"t\":\"per\",\"h\":[[],[384]],\"parent\":1,\"children\":384,\"pos\":\"[2][384]\"},{\"t\":\"Policlito\",\"h\":[[],[385]],\"parent\":1,\"children\":385,\"pos\":\"[2][385]\"},{\"t\":\"un\",\"h\":[[],[386]],\"parent\":1,\"children\":386,\"pos\":\"[2][386]\"},{\"t\":\"lapislazzulo\",\"h\":[[],[387]],\"parent\":1,\"children\":387,\"pos\":\"[2][387]\"},{\"t\":\"di\",\"h\":[[],[388]],\"parent\":1,\"children\":388,\"pos\":\"[2][388]\"},{\"t\":\"porpora\",\"h\":[[],[389]],\"parent\":1,\"children\":389,\"pos\":\"[2][389]\"},{\"p\":\".\",\"parent\":1,\"children\":390,\"pos\":\"[2][390]\"}],[{\"t\":\"Per\",\"h\":[[],[391]],\"parent\":1,\"children\":391,\"pos\":\"[2][391]\"},{\"t\":\"Polistrato\",\"h\":[[],[392]],\"parent\":1,\"children\":392,\"pos\":\"[2][392]\"},{\"p\":\",\",\"parent\":1,\"children\":393,\"pos\":\"[2][393]\"},{\"t\":\"invece\",\"h\":[[],[394]],\"parent\":1,\"children\":394,\"pos\":\"[2][394]\"},{\"p\":\",\",\"parent\":1,\"children\":395,\"pos\":\"[2][395]\"},{\"t\":\"trovò\",\"h\":[[],[396]],\"parent\":1,\"children\":396,\"pos\":\"[2][396]\"},{\"t\":\"una\",\"h\":[[],[397]],\"parent\":1,\"children\":397,\"pos\":\"[2][397]\"},{\"t\":\"maggiorana\",\"h\":[[],[398]],\"parent\":1,\"children\":398,\"pos\":\"[2][398]\"},{\"p\":\",\",\"parent\":1,\"children\":399,\"pos\":\"[2][399]\"},{\"t\":\"fiore\",\"h\":[[],[400]],\"parent\":1,\"children\":400,\"pos\":\"[2][400]\"},{\"t\":\"aedo\",\"h\":[[],[401]],\"parent\":1,\"children\":401,\"pos\":\"[2][401]\"},{\"p\":\",\",\"parent\":1,\"children\":402,\"pos\":\"[2][402]\"}],[{\"t\":\"e\",\"h\":[[],[403]],\"parent\":1,\"children\":403,\"pos\":\"[2][403]\"},{\"t\":\"per\",\"h\":[[],[404]],\"parent\":1,\"children\":404,\"pos\":\"[2][404]\"},{\"t\":\"Antipatro\",\"h\":[[],[405]],\"parent\":1,\"children\":405,\"pos\":\"[2][405]\"},{\"t\":\"una\",\"h\":[[],[406]],\"parent\":1,\"children\":406,\"pos\":\"[2][406]\"},{\"t\":\"giovane\",\"h\":[[],[407]],\"parent\":1,\"children\":407,\"pos\":\"[2][407]\"},{\"t\":\"alcanna\",\"h\":[[],[408]],\"parent\":1,\"children\":408,\"pos\":\"[2][408]\"},{\"t\":\"fenicia\",\"h\":[[],[409]],\"parent\":1,\"children\":409,\"pos\":\"[2][409]\"},{\"p\":\":\",\"parent\":1,\"children\":410,\"pos\":\"[2][410]\"}],[{\"t\":\"e\",\"h\":[[],[411]],\"parent\":1,\"children\":411,\"pos\":\"[2][411]\"},{\"t\":\"pose\",\"h\":[[],[412]],\"parent\":1,\"children\":412,\"pos\":\"[2][412]\"},{\"t\":\"anche\",\"h\":[[],[413]],\"parent\":1,\"children\":413,\"pos\":\"[2][413]\"},{\"t\":\"un\",\"h\":[[],[414]],\"parent\":1,\"children\":414,\"pos\":\"[2][414]\"},{\"t\":\"nardo\",\"h\":[[],[415]],\"parent\":1,\"children\":415,\"pos\":\"[2][415]\"},{\"t\":\"di\",\"h\":[[],[416]],\"parent\":1,\"children\":416,\"pos\":\"[2][416]\"},{\"t\":\"Siria\",\"h\":[[],[417]],\"parent\":1,\"children\":417,\"pos\":\"[2][417]\"},{\"t\":\"coronato\",\"h\":[[],[418]],\"parent\":1,\"children\":418,\"pos\":\"[2][418]\"},{\"t\":\"di\",\"h\":[[],[419]],\"parent\":1,\"children\":419,\"pos\":\"[2][419]\"},{\"t\":\"spighe\",\"h\":[[],[420]],\"parent\":1,\"children\":420,\"pos\":\"[2][420]\"},{\"p\":\",\",\"parent\":1,\"children\":421,\"pos\":\"[2][421]\"}],[{\"t\":\"poeta\",\"h\":[[],[422]],\"parent\":1,\"children\":422,\"pos\":\"[2][422]\"},{\"t\":\"lirico\",\"h\":[[],[423]],\"parent\":1,\"children\":423,\"pos\":\"[2][423]\"},{\"p\":\",\",\"parent\":1,\"children\":424,\"pos\":\"[2][424]\"},{\"t\":\"celebrato\",\"h\":[[],[425]],\"parent\":1,\"children\":425,\"pos\":\"[2][425]\"},{\"t\":\"dono\",\"h\":[[],[426]],\"parent\":1,\"children\":426,\"pos\":\"[2][426]\"},{\"t\":\"di\",\"h\":[[],[427]],\"parent\":1,\"children\":427,\"pos\":\"[2][427]\"},{\"t\":\"Ermes\",\"h\":[[],[428]],\"parent\":1,\"children\":428,\"pos\":\"[2][428]\"},{\"p\":\",\",\"parent\":1,\"children\":429,\"pos\":\"[2][429]\"}],[{\"t\":\"per\",\"h\":[[],[430]],\"parent\":1,\"children\":430,\"pos\":\"[2][430]\"},{\"t\":\"Edilo\",\"h\":[[],[431]],\"parent\":1,\"children\":431,\"pos\":\"[2][431]\"},{\"t\":\"e\",\"h\":[[],[432]],\"parent\":1,\"children\":432,\"pos\":\"[2][432]\"},{\"t\":\"Posidippo\",\"h\":[[],[433]],\"parent\":1,\"children\":433,\"pos\":\"[2][433]\"},{\"t\":\"scelse\",\"h\":[[],[434]],\"parent\":1,\"children\":434,\"pos\":\"[2][434]\"},{\"t\":\"l\",\"h\":[[],[435]],\"parent\":1,\"children\":435,\"pos\":\"[2][435]\"},{\"p\":\"’\",\"parent\":1,\"children\":436,\"pos\":\"[2][436]\"},{\"t\":\"erbetta\",\"h\":[[],[437]],\"parent\":1,\"children\":437,\"pos\":\"[2][437]\"},{\"t\":\"del\",\"h\":[[],[438]],\"parent\":1,\"children\":438,\"pos\":\"[2][438]\"},{\"t\":\"campo\",\"h\":[[],[439]],\"parent\":1,\"children\":439,\"pos\":\"[2][439]\"},{\"p\":\",\",\"parent\":1,\"children\":440,\"pos\":\"[2][440]\"}],[{\"t\":\"fiori\",\"h\":[[],[441]],\"parent\":1,\"children\":441,\"pos\":\"[2][441]\"},{\"t\":\"generati\",\"h\":[[],[442]],\"parent\":1,\"children\":442,\"pos\":\"[2][442]\"},{\"t\":\"dalle\",\"h\":[[],[443]],\"parent\":1,\"children\":443,\"pos\":\"[2][443]\"},{\"t\":\"correnti\",\"h\":[[],[444]],\"parent\":1,\"children\":444,\"pos\":\"[2][444]\"},{\"t\":\"del\",\"h\":[[],[445]],\"parent\":1,\"children\":445,\"pos\":\"[2][445]\"},{\"t\":\"Sicelide\",\"h\":[[],[446]],\"parent\":1,\"children\":446,\"pos\":\"[2][446]\"},{\"p\":\".\",\"parent\":1,\"children\":447,\"pos\":\"[2][447]\"}],[{\"t\":\"Sicuramente\",\"h\":[[],[448]],\"parent\":1,\"children\":448,\"pos\":\"[2][448]\"},{\"t\":\"anche\",\"h\":[[],[449]],\"parent\":1,\"children\":449,\"pos\":\"[2][449]\"},{\"t\":\"del\",\"h\":[[],[450]],\"parent\":1,\"children\":450,\"pos\":\"[2][450]\"},{\"t\":\"sempre\",\"h\":[[],[451]],\"parent\":1,\"children\":451,\"pos\":\"[2][451]\"},{\"t\":\"divino\",\"h\":[[],[452]],\"parent\":1,\"children\":452,\"pos\":\"[2][452]\"},{\"t\":\"Platone\",\"h\":[[],[453]],\"parent\":1,\"children\":453,\"pos\":\"[2][453]\"}],[{\"t\":\"mise\",\"h\":[[],[454]],\"parent\":1,\"children\":454,\"pos\":\"[2][454]\"},{\"t\":\"un\",\"h\":[[],[455]],\"parent\":1,\"children\":455,\"pos\":\"[2][455]\"},{\"t\":\"ramo\",\"h\":[[],[456]],\"parent\":1,\"children\":456,\"pos\":\"[2][456]\"},{\"t\":\"dorato\",\"h\":[[],[457]],\"parent\":1,\"children\":457,\"pos\":\"[2][457]\"},{\"t\":\"che\",\"h\":[[],[458]],\"parent\":1,\"children\":458,\"pos\":\"[2][458]\"},{\"t\":\"risplendeva\",\"h\":[[],[459]],\"parent\":1,\"children\":459,\"pos\":\"[2][459]\"},{\"t\":\"di\",\"h\":[[],[460]],\"parent\":1,\"children\":460,\"pos\":\"[2][460]\"},{\"t\":\"virtù\",\"h\":[[],[461]],\"parent\":1,\"children\":461,\"pos\":\"[2][461]\"},{\"p\":\".\",\"parent\":1,\"children\":462,\"pos\":\"[2][462]\"}],[{\"t\":\"Insieme\",\"h\":[[],[463]],\"parent\":1,\"children\":463,\"pos\":\"[2][463]\"},{\"p\":\",\",\"parent\":1,\"children\":464,\"pos\":\"[2][464]\"},{\"t\":\"sistemò\",\"h\":[[],[465]],\"parent\":1,\"children\":465,\"pos\":\"[2][465]\"},{\"t\":\"anche\",\"h\":[[],[466]],\"parent\":1,\"children\":466,\"pos\":\"[2][466]\"},{\"t\":\"Arato\",\"h\":[[],[467]],\"parent\":1,\"children\":467,\"pos\":\"[2][467]\"},{\"p\":\",\",\"parent\":1,\"children\":468,\"pos\":\"[2][468]\"},{\"t\":\"esperto\",\"h\":[[],[469]],\"parent\":1,\"children\":469,\"pos\":\"[2][469]\"},{\"t\":\"di\",\"h\":[[],[470]],\"parent\":1,\"children\":470,\"pos\":\"[2][470]\"},{\"t\":\"stelle\",\"h\":[[],[471]],\"parent\":1,\"children\":471,\"pos\":\"[2][471]\"},{\"p\":\",\",\"parent\":1,\"children\":472,\"pos\":\"[2][472]\"}],[{\"t\":\"tagliando\",\"h\":[[],[473]],\"parent\":1,\"children\":473,\"pos\":\"[2][473]\"},{\"t\":\"i\",\"h\":[[],[474]],\"parent\":1,\"children\":474,\"pos\":\"[2][474]\"},{\"t\":\"viticci\",\"h\":[[],[475]],\"parent\":1,\"children\":475,\"pos\":\"[2][475]\"},{\"t\":\"appena\",\"h\":[[],[476]],\"parent\":1,\"children\":476,\"pos\":\"[2][476]\"},{\"t\":\"nati\",\"h\":[[],[477]],\"parent\":1,\"children\":477,\"pos\":\"[2][477]\"},{\"t\":\"di\",\"h\":[[],[478]],\"parent\":1,\"children\":478,\"pos\":\"[2][478]\"},{\"t\":\"una\",\"h\":[[],[479]],\"parent\":1,\"children\":479,\"pos\":\"[2][479]\"},{\"t\":\"palma\",\"h\":[[],[480]],\"parent\":1,\"children\":480,\"pos\":\"[2][480]\"},{\"t\":\"altissima\",\"h\":[[],[481]],\"parent\":1,\"children\":481,\"pos\":\"[2][481]\"},{\"p\":\",\",\"parent\":1,\"children\":482,\"pos\":\"[2][482]\"}],[{\"t\":\"e\",\"h\":[[],[483]],\"parent\":1,\"children\":483,\"pos\":\"[2][483]\"},{\"t\":\"mise\",\"h\":[[],[484]],\"parent\":1,\"children\":484,\"pos\":\"[2][484]\"},{\"t\":\"anche\",\"h\":[[],[485]],\"parent\":1,\"children\":485,\"pos\":\"[2][485]\"},{\"t\":\"il\",\"h\":[[],[486]],\"parent\":1,\"children\":486,\"pos\":\"[2][486]\"},{\"t\":\"frondoso\",\"h\":[[],[487]],\"parent\":1,\"children\":487,\"pos\":\"[2][487]\"},{\"t\":\"loto\",\"h\":[[],[488]],\"parent\":1,\"children\":488,\"pos\":\"[2][488]\"},{\"t\":\"di\",\"h\":[[],[489]],\"parent\":1,\"children\":489,\"pos\":\"[2][489]\"},{\"t\":\"Cherèmone\",\"h\":[[],[490]],\"parent\":1,\"children\":490,\"pos\":\"[2][490]\"},{\"p\":\",\",\"parent\":1,\"children\":491,\"pos\":\"[2][491]\"},{\"t\":\"dopo\",\"h\":[[],[492]],\"parent\":1,\"children\":492,\"pos\":\"[2][492]\"},{\"t\":\"aver\",\"h\":[[],[493]],\"parent\":1,\"children\":493,\"pos\":\"[2][493]\"},{\"t\":\"finito\",\"h\":[[],[494]],\"parent\":1,\"children\":494,\"pos\":\"[2][494]\"}],[{\"t\":\"di\",\"h\":[[],[495]],\"parent\":1,\"children\":495,\"pos\":\"[2][495]\"},{\"t\":\"mescolare\",\"h\":[[],[496]],\"parent\":1,\"children\":496,\"pos\":\"[2][496]\"},{\"t\":\"nella\",\"h\":[[],[497]],\"parent\":1,\"children\":497,\"pos\":\"[2][497]\"},{\"t\":\"fiamma\",\"h\":[[],[498]],\"parent\":1,\"children\":498,\"pos\":\"[2][498]\"},{\"t\":\"di\",\"h\":[[],[499]],\"parent\":1,\"children\":499,\"pos\":\"[2][499]\"},{\"t\":\"Fedimo\",\"h\":[[],[500]],\"parent\":1,\"children\":500,\"pos\":\"[2][500]\"},{\"t\":\"l\",\"h\":[[],[501]],\"parent\":1,\"children\":501,\"pos\":\"[2][501]\"},{\"p\":\"’\",\"parent\":1,\"children\":502,\"pos\":\"[2][502]\"},{\"t\":\"occhio\",\"h\":[[],[503]],\"parent\":1,\"children\":503,\"pos\":\"[2][503]\"},{\"t\":\"girevole\",\"h\":[[],[504]],\"parent\":1,\"children\":504,\"pos\":\"[2][504]\"},{\"t\":\"di\",\"h\":[[],[505]],\"parent\":1,\"children\":505,\"pos\":\"[2][505]\"},{\"t\":\"bue\",\"h\":[[],[506]],\"parent\":1,\"children\":506,\"pos\":\"[2][506]\"},{\"t\":\"di\",\"h\":[[],[507]],\"parent\":1,\"children\":507,\"pos\":\"[2][507]\"},{\"t\":\"Antagora\",\"h\":[[],[508]],\"parent\":1,\"children\":508,\"pos\":\"[2][508]\"},{\"p\":\",\",\"parent\":1,\"children\":509,\"pos\":\"[2][509]\"}],[{\"t\":\"il\",\"h\":[[],[510]],\"parent\":1,\"children\":510,\"pos\":\"[2][510]\"},{\"t\":\"fresco\",\"h\":[[],[511]],\"parent\":1,\"children\":511,\"pos\":\"[2][511]\"},{\"t\":\"serpillo\",\"h\":[[],[512]],\"parent\":1,\"children\":512,\"pos\":\"[2][512]\"},{\"t\":\"amante\",\"h\":[[],[513]],\"parent\":1,\"children\":513,\"pos\":\"[2][513]\"},{\"t\":\"del\",\"h\":[[],[514]],\"parent\":1,\"children\":514,\"pos\":\"[2][514]\"},{\"t\":\"vino\",\"h\":[[],[515]],\"parent\":1,\"children\":515,\"pos\":\"[2][515]\"},{\"t\":\"di\",\"h\":[[],[516]],\"parent\":1,\"children\":516,\"pos\":\"[2][516]\"},{\"t\":\"Teodorida\",\"h\":[[],[517]],\"parent\":1,\"children\":517,\"pos\":\"[2][517]\"},{\"p\":\",\",\"parent\":1,\"children\":518,\"pos\":\"[2][518]\"}],[{\"t\":\"un\",\"h\":[[],[519]],\"parent\":1,\"children\":519,\"pos\":\"[2][519]\"},{\"t\":\"fiore\",\"h\":[[],[520]],\"parent\":1,\"children\":520,\"pos\":\"[2][520]\"},{\"t\":\"di\",\"h\":[[],[521]],\"parent\":1,\"children\":521,\"pos\":\"[2][521]\"},{\"t\":\"fiordalisi\",\"h\":[[],[522]],\"parent\":1,\"children\":522,\"pos\":\"[2][522]\"},{\"t\":\"di\",\"h\":[[],[523]],\"parent\":1,\"children\":523,\"pos\":\"[2][523]\"},{\"t\":\"Fania\",\"h\":[[],[524]],\"parent\":1,\"children\":524,\"pos\":\"[2][524]\"},{\"p\":\",\",\"parent\":1,\"children\":525,\"pos\":\"[2][525]\"},{\"t\":\"e\",\"h\":[[],[526]],\"parent\":1,\"children\":526,\"pos\":\"[2][526]\"},{\"t\":\"molti\",\"h\":[[],[527]],\"parent\":1,\"children\":527,\"pos\":\"[2][527]\"},{\"t\":\"frutti\",\"h\":[[],[528]],\"parent\":1,\"children\":528,\"pos\":\"[2][528]\"},{\"t\":\"già\",\"h\":[[],[529]],\"parent\":1,\"children\":529,\"pos\":\"[2][529]\"},{\"t\":\"scritti\",\"h\":[[],[530]],\"parent\":1,\"children\":530,\"pos\":\"[2][530]\"},{\"t\":\"di\",\"h\":[[],[531]],\"parent\":1,\"children\":531,\"pos\":\"[2][531]\"},{\"t\":\"altri\",\"h\":[[],[532]],\"parent\":1,\"children\":532,\"pos\":\"[2][532]\"},{\"t\":\"personaggi\",\"h\":[[],[533]],\"parent\":1,\"children\":533,\"pos\":\"[2][533]\"},{\"p\":\":\",\"parent\":1,\"children\":534,\"pos\":\"[2][534]\"}],[{\"t\":\"a\",\"h\":[[],[535]],\"parent\":1,\"children\":535,\"pos\":\"[2][535]\"},{\"t\":\"questi\",\"h\":[[],[536]],\"parent\":1,\"children\":536,\"pos\":\"[2][536]\"},{\"p\":\",\",\"parent\":1,\"children\":537,\"pos\":\"[2][537]\"},{\"t\":\"inoltre\",\"h\":[[],[538]],\"parent\":1,\"children\":538,\"pos\":\"[2][538]\"},{\"p\":\",\",\"parent\":1,\"children\":539,\"pos\":\"[2][539]\"},{\"t\":\"aggiunse\",\"h\":[[],[540]],\"parent\":1,\"children\":540,\"pos\":\"[2][540]\"},{\"p\":\",\",\"parent\":1,\"children\":541,\"pos\":\"[2][541]\"},{\"t\":\"se\",\"h\":[[],[542]],\"parent\":1,\"children\":542,\"pos\":\"[2][542]\"},{\"t\":\"non\",\"h\":[[],[543]],\"parent\":1,\"children\":543,\"pos\":\"[2][543]\"},{\"t\":\"erro\",\"h\":[[],[544]],\"parent\":1,\"children\":544,\"pos\":\"[2][544]\"},{\"p\":\",\",\"parent\":1,\"children\":545,\"pos\":\"[2][545]\"}],[{\"t\":\"garofani\",\"h\":[[],[546]],\"parent\":1,\"children\":546,\"pos\":\"[2][546]\"},{\"t\":\"di\",\"h\":[[],[547]],\"parent\":1,\"children\":547,\"pos\":\"[2][547]\"},{\"t\":\"stagione\",\"h\":[[],[548]],\"parent\":1,\"children\":548,\"pos\":\"[2][548]\"},{\"t\":\"della\",\"h\":[[],[549]],\"parent\":1,\"children\":549,\"pos\":\"[2][549]\"},{\"t\":\"loro\",\"h\":[[],[550]],\"parent\":1,\"children\":550,\"pos\":\"[2][550]\"},{\"t\":\"Musa\",\"h\":[[],[551]],\"parent\":1,\"children\":551,\"pos\":\"[2][551]\"},{\"p\":\".\",\"parent\":1,\"children\":552,\"pos\":\"[2][552]\"}],[{\"t\":\"Ringrazio\",\"h\":[[],[553]],\"parent\":1,\"children\":553,\"pos\":\"[2][553]\"},{\"t\":\"i\",\"h\":[[],[554]],\"parent\":1,\"children\":554,\"pos\":\"[2][554]\"},{\"t\":\"miei\",\"h\":[[],[555]],\"parent\":1,\"children\":555,\"pos\":\"[2][555]\"},{\"t\":\"amici\",\"h\":[[],[556]],\"parent\":1,\"children\":556,\"pos\":\"[2][556]\"},{\"p\":\",\",\"parent\":1,\"children\":557,\"pos\":\"[2][557]\"},{\"t\":\"ma\",\"h\":[[],[558]],\"parent\":1,\"children\":558,\"pos\":\"[2][558]\"},{\"t\":\"la\",\"h\":[[],[559]],\"parent\":1,\"children\":559,\"pos\":\"[2][559]\"},{\"t\":\"soave\",\"h\":[[],[560]],\"parent\":1,\"children\":560,\"pos\":\"[2][560]\"},{\"t\":\"corona\",\"h\":[[],[561]],\"parent\":1,\"children\":561,\"pos\":\"[2][561]\"}],[{\"t\":\"delle\",\"h\":[[],[562]],\"parent\":1,\"children\":562,\"pos\":\"[2][562]\"},{\"t\":\"Muse\",\"h\":[[],[563]],\"parent\":1,\"children\":563,\"pos\":\"[2][563]\"},{\"p\":\"è\",\"parent\":1,\"children\":564,\"pos\":\"[2][564]\"},{\"t\":\"di\",\"h\":[[],[565]],\"parent\":1,\"children\":565,\"pos\":\"[2][565]\"},{\"t\":\"comune\",\"h\":[[],[566]],\"parent\":1,\"children\":566,\"pos\":\"[2][566]\"},{\"t\":\"possesso\",\"h\":[[],[567]],\"parent\":1,\"children\":567,\"pos\":\"[2][567]\"},{\"t\":\"degli\",\"h\":[[],[568]],\"parent\":1,\"children\":568,\"pos\":\"[2][568]\"},{\"t\":\"iniziati\",\"h\":[[],[569]],\"parent\":1,\"children\":569,\"pos\":\"[2][569]\"},{\"p\":\".\",\"parent\":1,\"children\":570,\"pos\":\"[2][570]\"}],[]]]', 40, NULL, '2017-09-05 08:21:49', '2017-09-05 08:21:49');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(8, 2, 7, 7, 9, 1, '[[[],[{\"t\":\"Μοῦσα\",\"h\":[[1],[1]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"φίλα\",\"h\":[[2],[2]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"p\":\",\",\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"τίνι\",\"h\":[[4],[]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"τάνδε\",\"h\":[[5],[]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"φέρεις\",\"h\":[[6],[]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"t\":\"πάγκαρπον\",\"h\":[[7],[]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"ἀοιδάν\",\"h\":[[8],[]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"p\":\";\",\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"}],[{\"t\":\"ἢ\",\"h\":[[10],[]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"τίς\",\"h\":[[11],[]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"ὁ\",\"h\":[[12],[]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"καὶ\",\"h\":[[13],[]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"t\":\"τεύξας\",\"h\":[[14],[]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"t\":\"ὑμνοθετᾶν\",\"h\":[[15],[]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"στέφανον\",\"h\":[[16],[]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"p\":\";\",\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"}],[{\"t\":\"Ἄνυσε\",\"h\":[[18],[]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"μὲν\",\"h\":[[19],[]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"Μελέαγρος\",\"h\":[[20],[]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"p\":\",\",\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"ἀριζάλῳ\",\"h\":[[22],[]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"δὲ\",\"h\":[[23],[]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"Διοκλεῖ\",\"h\":[[24],[]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"}],[{\"t\":\"μναμόσυνον\",\"h\":[[25],[]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"ταύταν\",\"h\":[[26],[]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"ἐξεπόνησε\",\"h\":[[27],[]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"χάριν\",\"h\":[[28],[]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"p\":\":\",\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"}],[{\"t\":\"πολλὰ\",\"h\":[[30],[]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"μὲν\",\"h\":[[31],[]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"ἐμπλέξας\",\"h\":[[32],[]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"Ἀνύτης\",\"h\":[[33],[]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"κρίνα\",\"h\":[[34],[]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"p\":\",\",\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"πολλὰ\",\"h\":[[36],[]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"δὲ\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"}],[{\"t\":\"Μοιροῦς\",\"h\":[[38],[]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"}],[{\"t\":\"λείρια\",\"h\":[[39],[]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"p\":\",\",\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"καὶ\",\"h\":[[41],[]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"t\":\"Σαπφοῦς\",\"h\":[[42],[]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"t\":\"βαιὰ\",\"h\":[[43],[]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"μὲν\",\"h\":[[44],[]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"p\":\",\",\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"t\":\"ἀλλὰ\",\"h\":[[46],[]],\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"ῥόδα\",\"h\":[[47],[]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"p\":\":\",\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"}],[{\"t\":\"νάρκισσόν\",\"h\":[[49],[]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"τε\",\"h\":[[50],[]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"t\":\"τορῶν\",\"h\":[[51],[]],\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"t\":\"Μελανιππίδου\",\"h\":[[52],[]],\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"},{\"t\":\"ἔγκυον\",\"h\":[[53],[]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"t\":\"ὕμνων\",\"h\":[[54],[]],\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"},{\"p\":\",\",\"parent\":0,\"children\":55,\"pos\":\"[1][55]\"}],[{\"t\":\"καὶ\",\"h\":[[56],[]],\"parent\":0,\"children\":56,\"pos\":\"[1][56]\"},{\"t\":\"νέον\",\"h\":[[57],[]],\"parent\":0,\"children\":57,\"pos\":\"[1][57]\"},{\"t\":\"οἰνάνθης\",\"h\":[[58],[]],\"parent\":0,\"children\":58,\"pos\":\"[1][58]\"},{\"t\":\"κλῆμα\",\"h\":[[59],[]],\"parent\":0,\"children\":59,\"pos\":\"[1][59]\"},{\"t\":\"Σιμωνίδεω\",\"h\":[[60],[]],\"parent\":0,\"children\":60,\"pos\":\"[1][60]\"},{\"p\":\":\",\"parent\":0,\"children\":61,\"pos\":\"[1][61]\"}],[{\"t\":\"σὺν\",\"h\":[[62],[]],\"parent\":0,\"children\":62,\"pos\":\"[1][62]\"},{\"t\":\"δ᾽\",\"h\":[[63],[]],\"parent\":0,\"children\":63,\"pos\":\"[1][63]\"},{\"t\":\"ἀναμὶξ\",\"h\":[[64],[]],\"parent\":0,\"children\":64,\"pos\":\"[1][64]\"},{\"t\":\"πλέξας\",\"h\":[[65],[]],\"parent\":0,\"children\":65,\"pos\":\"[1][65]\"},{\"t\":\"μυρόπνουν\",\"h\":[[66],[]],\"parent\":0,\"children\":66,\"pos\":\"[1][66]\"},{\"t\":\"εὐάνθεμον\",\"h\":[[67],[]],\"parent\":0,\"children\":67,\"pos\":\"[1][67]\"},{\"t\":\"ἶριν\",\"h\":[[68],[]],\"parent\":0,\"children\":68,\"pos\":\"[1][68]\"}],[{\"t\":\"Νοσσίδος\",\"h\":[[69],[]],\"parent\":0,\"children\":69,\"pos\":\"[1][69]\"},{\"p\":\",\",\"parent\":0,\"children\":70,\"pos\":\"[1][70]\"},{\"t\":\"ἧς\",\"h\":[[71],[]],\"parent\":0,\"children\":71,\"pos\":\"[1][71]\"},{\"t\":\"δέλτοις\",\"h\":[[72],[]],\"parent\":0,\"children\":72,\"pos\":\"[1][72]\"},{\"t\":\"κηρὸν\",\"h\":[[73],[]],\"parent\":0,\"children\":73,\"pos\":\"[1][73]\"},{\"t\":\"ἔτηξεν\",\"h\":[[74],[]],\"parent\":0,\"children\":74,\"pos\":\"[1][74]\"},{\"t\":\"Ἔρως\",\"h\":[[75],[]],\"parent\":0,\"children\":75,\"pos\":\"[1][75]\"},{\"p\":\":\",\"parent\":0,\"children\":76,\"pos\":\"[1][76]\"}],[{\"t\":\"τῇ\",\"h\":[[77],[]],\"parent\":0,\"children\":77,\"pos\":\"[1][77]\"},{\"t\":\"δ᾽\",\"h\":[[78],[]],\"parent\":0,\"children\":78,\"pos\":\"[1][78]\"},{\"t\":\"ἅμα\",\"h\":[[79],[]],\"parent\":0,\"children\":79,\"pos\":\"[1][79]\"},{\"t\":\"καὶ\",\"h\":[[80],[]],\"parent\":0,\"children\":80,\"pos\":\"[1][80]\"},{\"t\":\"σάμψυχον\",\"h\":[[81],[]],\"parent\":0,\"children\":81,\"pos\":\"[1][81]\"},{\"t\":\"ἀφ᾽\",\"h\":[[82],[]],\"parent\":0,\"children\":82,\"pos\":\"[1][82]\"},{\"t\":\"ἡδυπνόοιο\",\"h\":[[83],[]],\"parent\":0,\"children\":83,\"pos\":\"[1][83]\"},{\"t\":\"Ῥιανοῦ\",\"h\":[[84],[]],\"parent\":0,\"children\":84,\"pos\":\"[1][84]\"},{\"p\":\",\",\"parent\":0,\"children\":85,\"pos\":\"[1][85]\"}],[{\"t\":\"καὶ\",\"h\":[[86],[]],\"parent\":0,\"children\":86,\"pos\":\"[1][86]\"},{\"t\":\"γλυκὺν\",\"h\":[[87],[]],\"parent\":0,\"children\":87,\"pos\":\"[1][87]\"},{\"t\":\"Ἠρίννης\",\"h\":[[88],[]],\"parent\":0,\"children\":88,\"pos\":\"[1][88]\"},{\"t\":\"παρθενόχρωτα\",\"h\":[[89],[]],\"parent\":0,\"children\":89,\"pos\":\"[1][89]\"},{\"t\":\"κρόκον\",\"h\":[[90],[]],\"parent\":0,\"children\":90,\"pos\":\"[1][90]\"},{\"p\":\",\",\"parent\":0,\"children\":91,\"pos\":\"[1][91]\"}],[{\"t\":\"Ἀλκαίου\",\"h\":[[92],[]],\"parent\":0,\"children\":92,\"pos\":\"[1][92]\"},{\"t\":\"τε\",\"h\":[[93],[]],\"parent\":0,\"children\":93,\"pos\":\"[1][93]\"},{\"t\":\"λάληθρον\",\"h\":[[94],[]],\"parent\":0,\"children\":94,\"pos\":\"[1][94]\"},{\"t\":\"ἐν\",\"h\":[[95],[]],\"parent\":0,\"children\":95,\"pos\":\"[1][95]\"},{\"t\":\"ὑμνοπόλοις\",\"h\":[[96],[]],\"parent\":0,\"children\":96,\"pos\":\"[1][96]\"},{\"t\":\"ὑάκινθον\",\"h\":[[97],[]],\"parent\":0,\"children\":97,\"pos\":\"[1][97]\"},{\"p\":\",\",\"parent\":0,\"children\":98,\"pos\":\"[1][98]\"}],[{\"t\":\"καὶ\",\"h\":[[99],[]],\"parent\":0,\"children\":99,\"pos\":\"[1][99]\"},{\"t\":\"Σαμίου\",\"h\":[[100],[]],\"parent\":0,\"children\":100,\"pos\":\"[1][100]\"},{\"t\":\"δάφνης\",\"h\":[[101],[]],\"parent\":0,\"children\":101,\"pos\":\"[1][101]\"},{\"t\":\"κλῶνα\",\"h\":[[102],[]],\"parent\":0,\"children\":102,\"pos\":\"[1][102]\"},{\"t\":\"μελαμπέταλον\",\"h\":[[103],[]],\"parent\":0,\"children\":103,\"pos\":\"[1][103]\"},{\"p\":\":\",\"parent\":0,\"children\":104,\"pos\":\"[1][104]\"}],[{\"t\":\"ἐν\",\"h\":[[105],[]],\"parent\":0,\"children\":105,\"pos\":\"[1][105]\"},{\"t\":\"δὲ\",\"h\":[[106],[]],\"parent\":0,\"children\":106,\"pos\":\"[1][106]\"},{\"t\":\"Λεωνίδεω\",\"h\":[[107],[]],\"parent\":0,\"children\":107,\"pos\":\"[1][107]\"},{\"t\":\"θαλεροὺς\",\"h\":[[108],[]],\"parent\":0,\"children\":108,\"pos\":\"[1][108]\"},{\"t\":\"κισσοῖο\",\"h\":[[109],[]],\"parent\":0,\"children\":109,\"pos\":\"[1][109]\"},{\"t\":\"κορύμβους\",\"h\":[[110],[]],\"parent\":0,\"children\":110,\"pos\":\"[1][110]\"},{\"p\":\",\",\"parent\":0,\"children\":111,\"pos\":\"[1][111]\"}],[{\"t\":\"Μνασάλκου\",\"h\":[[112],[]],\"parent\":0,\"children\":112,\"pos\":\"[1][112]\"},{\"t\":\"τεκόμας\",\"h\":[[113],[]],\"parent\":0,\"children\":113,\"pos\":\"[1][113]\"},{\"t\":\"ὀξυτόρου\",\"h\":[[114],[]],\"parent\":0,\"children\":114,\"pos\":\"[1][114]\"},{\"t\":\"πίτυος\",\"h\":[[115],[]],\"parent\":0,\"children\":115,\"pos\":\"[1][115]\"},{\"p\":\":\",\"parent\":0,\"children\":116,\"pos\":\"[1][116]\"}],[{\"t\":\"βλαισήν\",\"h\":[[117],[]],\"parent\":0,\"children\":117,\"pos\":\"[1][117]\"},{\"t\":\"τε\",\"h\":[[118],[]],\"parent\":0,\"children\":118,\"pos\":\"[1][118]\"},{\"t\":\"πλατάνιστον\",\"h\":[[119],[]],\"parent\":0,\"children\":119,\"pos\":\"[1][119]\"},{\"t\":\"ἀπέθρισε\",\"h\":[[120],[]],\"parent\":0,\"children\":120,\"pos\":\"[1][120]\"},{\"t\":\"Παμφίλου\",\"h\":[[121],[]],\"parent\":0,\"children\":121,\"pos\":\"[1][121]\"},{\"t\":\"οἴνης\",\"h\":[[122],[]],\"parent\":0,\"children\":122,\"pos\":\"[1][122]\"},{\"p\":\",\",\"parent\":0,\"children\":123,\"pos\":\"[1][123]\"}],[{\"t\":\"σύμπλεκτον\",\"h\":[[124],[]],\"parent\":0,\"children\":124,\"pos\":\"[1][124]\"},{\"t\":\"καρύης\",\"h\":[[125],[]],\"parent\":0,\"children\":125,\"pos\":\"[1][125]\"},{\"t\":\"ἔρνεσι\",\"h\":[[126],[]],\"parent\":0,\"children\":126,\"pos\":\"[1][126]\"},{\"t\":\"Παγκράτεος\",\"h\":[[127],[]],\"parent\":0,\"children\":127,\"pos\":\"[1][127]\"},{\"p\":\",\",\"parent\":0,\"children\":128,\"pos\":\"[1][128]\"}],[{\"t\":\"Τύμνεὼ\",\"h\":[[129],[]],\"parent\":0,\"children\":129,\"pos\":\"[1][129]\"},{\"t\":\"τ᾽\",\"h\":[[130],[]],\"parent\":0,\"children\":130,\"pos\":\"[1][130]\"},{\"t\":\"εὐπέταλον\",\"h\":[[131],[]],\"parent\":0,\"children\":131,\"pos\":\"[1][131]\"},{\"t\":\"λεύκην\",\"h\":[[132],[]],\"parent\":0,\"children\":132,\"pos\":\"[1][132]\"},{\"p\":\",\",\"parent\":0,\"children\":133,\"pos\":\"[1][133]\"},{\"t\":\"χλοερόν\",\"h\":[[134],[]],\"parent\":0,\"children\":134,\"pos\":\"[1][134]\"},{\"t\":\"τε\",\"h\":[[135],[]],\"parent\":0,\"children\":135,\"pos\":\"[1][135]\"},{\"t\":\"σίσυμβρον\",\"h\":[[136],[]],\"parent\":0,\"children\":136,\"pos\":\"[1][136]\"}],[{\"t\":\"Νικίου\",\"h\":[[137],[]],\"parent\":0,\"children\":137,\"pos\":\"[1][137]\"},{\"p\":\",\",\"parent\":0,\"children\":138,\"pos\":\"[1][138]\"},{\"t\":\"Εὐφήμου\",\"h\":[[139],[]],\"parent\":0,\"children\":139,\"pos\":\"[1][139]\"},{\"t\":\"τ᾽\",\"h\":[[140],[]],\"parent\":0,\"children\":140,\"pos\":\"[1][140]\"},{\"t\":\"ἀμμότροφον\",\"h\":[[141],[]],\"parent\":0,\"children\":141,\"pos\":\"[1][141]\"},{\"t\":\"πάραλον\",\"h\":[[142],[]],\"parent\":0,\"children\":142,\"pos\":\"[1][142]\"},{\"p\":\":\",\"parent\":0,\"children\":143,\"pos\":\"[1][143]\"}],[{\"t\":\"ἐν\",\"h\":[[144],[]],\"parent\":0,\"children\":144,\"pos\":\"[1][144]\"},{\"t\":\"δ᾽\",\"h\":[[145],[]],\"parent\":0,\"children\":145,\"pos\":\"[1][145]\"},{\"t\":\"ἄρα\",\"h\":[[146],[]],\"parent\":0,\"children\":146,\"pos\":\"[1][146]\"},{\"t\":\"Δαμαγήτου\",\"h\":[[147],[]],\"parent\":0,\"children\":147,\"pos\":\"[1][147]\"},{\"p\":\",\",\"parent\":0,\"children\":148,\"pos\":\"[1][148]\"},{\"t\":\"ἴον\",\"h\":[[149],[]],\"parent\":0,\"children\":149,\"pos\":\"[1][149]\"},{\"t\":\"μέλαν\",\"h\":[[150],[]],\"parent\":0,\"children\":150,\"pos\":\"[1][150]\"},{\"p\":\",\",\"parent\":0,\"children\":151,\"pos\":\"[1][151]\"},{\"t\":\"ἡδύ\",\"h\":[[152],[]],\"parent\":0,\"children\":152,\"pos\":\"[1][152]\"},{\"t\":\"τε\",\"h\":[[153],[]],\"parent\":0,\"children\":153,\"pos\":\"[1][153]\"},{\"t\":\"μύρτον\",\"h\":[[154],[]],\"parent\":0,\"children\":154,\"pos\":\"[1][154]\"}],[{\"t\":\"Καλλιμάχου\",\"h\":[[155],[]],\"parent\":0,\"children\":155,\"pos\":\"[1][155]\"},{\"p\":\",\",\"parent\":0,\"children\":156,\"pos\":\"[1][156]\"},{\"t\":\"στυφελοῦ\",\"h\":[[157],[]],\"parent\":0,\"children\":157,\"pos\":\"[1][157]\"},{\"t\":\"μεστὸν\",\"h\":[[158],[]],\"parent\":0,\"children\":158,\"pos\":\"[1][158]\"},{\"t\":\"ἀεὶ\",\"h\":[[159],[]],\"parent\":0,\"children\":159,\"pos\":\"[1][159]\"},{\"t\":\"μέλιτος\",\"h\":[[160],[]],\"parent\":0,\"children\":160,\"pos\":\"[1][160]\"},{\"p\":\",\",\"parent\":0,\"children\":161,\"pos\":\"[1][161]\"}],[{\"t\":\"λυχνίδα\",\"h\":[[162],[]],\"parent\":0,\"children\":162,\"pos\":\"[1][162]\"},{\"t\":\"τ᾽\",\"h\":[[163],[]],\"parent\":0,\"children\":163,\"pos\":\"[1][163]\"},{\"t\":\"Εὐφορίωνος\",\"h\":[[164],[]],\"parent\":0,\"children\":164,\"pos\":\"[1][164]\"},{\"p\":\",\",\"parent\":0,\"children\":165,\"pos\":\"[1][165]\"},{\"t\":\"ἰδ᾽\",\"h\":[[166],[]],\"parent\":0,\"children\":166,\"pos\":\"[1][166]\"},{\"t\":\"ἐν\",\"h\":[[167],[]],\"parent\":0,\"children\":167,\"pos\":\"[1][167]\"},{\"t\":\"Μούσησιν\",\"h\":[[168],[]],\"parent\":0,\"children\":168,\"pos\":\"[1][168]\"},{\"t\":\"ἄμωμον\",\"h\":[[169],[]],\"parent\":0,\"children\":169,\"pos\":\"[1][169]\"},{\"p\":\",\",\"parent\":0,\"children\":170,\"pos\":\"[1][170]\"}],[{\"t\":\"ὃς\",\"h\":[[171],[]],\"parent\":0,\"children\":171,\"pos\":\"[1][171]\"},{\"t\":\"Διὸς\",\"h\":[[172],[]],\"parent\":0,\"children\":172,\"pos\":\"[1][172]\"},{\"t\":\"ἐκ\",\"h\":[[173],[]],\"parent\":0,\"children\":173,\"pos\":\"[1][173]\"},{\"t\":\"κούρων\",\"h\":[[174],[]],\"parent\":0,\"children\":174,\"pos\":\"[1][174]\"},{\"t\":\"ἔσχεν\",\"h\":[[175],[]],\"parent\":0,\"children\":175,\"pos\":\"[1][175]\"},{\"t\":\"ἐπωνυμίην\",\"h\":[[176],[]],\"parent\":0,\"children\":176,\"pos\":\"[1][176]\"},{\"p\":\".\",\"parent\":0,\"children\":177,\"pos\":\"[1][177]\"}],[{\"t\":\"Τῇσι\",\"h\":[[178],[]],\"parent\":0,\"children\":178,\"pos\":\"[1][178]\"},{\"t\":\"δ᾽\",\"h\":[[179],[]],\"parent\":0,\"children\":179,\"pos\":\"[1][179]\"},{\"t\":\"ἅμ᾽\",\"h\":[[180],[]],\"parent\":0,\"children\":180,\"pos\":\"[1][180]\"},{\"t\":\"Ἡγησίππου\",\"h\":[[181],[]],\"parent\":0,\"children\":181,\"pos\":\"[1][181]\"},{\"t\":\"νέπλεκε\",\"h\":[[182],[]],\"parent\":0,\"children\":182,\"pos\":\"[1][182]\"},{\"t\":\"μαινάδα\",\"h\":[[183],[]],\"parent\":0,\"children\":183,\"pos\":\"[1][183]\"},{\"t\":\"βότρυν\",\"h\":[[184],[]],\"parent\":0,\"children\":184,\"pos\":\"[1][184]\"},{\"p\":\",\",\"parent\":0,\"children\":185,\"pos\":\"[1][185]\"}],[{\"t\":\"Πέρσου\",\"h\":[[186],[]],\"parent\":0,\"children\":186,\"pos\":\"[1][186]\"},{\"t\":\"τ᾽\",\"h\":[[187],[]],\"parent\":0,\"children\":187,\"pos\":\"[1][187]\"},{\"t\":\"εὐώδη\",\"h\":[[188],[]],\"parent\":0,\"children\":188,\"pos\":\"[1][188]\"},{\"t\":\"σχοῖνον\",\"h\":[[189],[]],\"parent\":0,\"children\":189,\"pos\":\"[1][189]\"},{\"t\":\"ἀμησάμενος\",\"h\":[[190],[]],\"parent\":0,\"children\":190,\"pos\":\"[1][190]\"},{\"p\":\",\",\"parent\":0,\"children\":191,\"pos\":\"[1][191]\"}],[{\"t\":\"σὺν\",\"h\":[[192],[]],\"parent\":0,\"children\":192,\"pos\":\"[1][192]\"},{\"t\":\"δ᾽\",\"h\":[[193],[]],\"parent\":0,\"children\":193,\"pos\":\"[1][193]\"},{\"t\":\"ἅμα\",\"h\":[[194],[]],\"parent\":0,\"children\":194,\"pos\":\"[1][194]\"},{\"t\":\"καὶ\",\"h\":[[195],[]],\"parent\":0,\"children\":195,\"pos\":\"[1][195]\"},{\"t\":\"γλυκὺμηλον\",\"h\":[[196],[]],\"parent\":0,\"children\":196,\"pos\":\"[1][196]\"},{\"t\":\"ἀπ᾽\",\"h\":[[197],[]],\"parent\":0,\"children\":197,\"pos\":\"[1][197]\"},{\"t\":\"ἀκρεμόνων\",\"h\":[[198],[]],\"parent\":0,\"children\":198,\"pos\":\"[1][198]\"},{\"t\":\"Διοτίμου\",\"h\":[[199],[]],\"parent\":0,\"children\":199,\"pos\":\"[1][199]\"},{\"p\":\",\",\"parent\":0,\"children\":200,\"pos\":\"[1][200]\"}],[{\"t\":\"καὶ\",\"h\":[[201],[]],\"parent\":0,\"children\":201,\"pos\":\"[1][201]\"},{\"t\":\"ῥοιῆς\",\"h\":[[202],[]],\"parent\":0,\"children\":202,\"pos\":\"[1][202]\"},{\"t\":\"ἄνθη\",\"h\":[[203],[]],\"parent\":0,\"children\":203,\"pos\":\"[1][203]\"},{\"t\":\"πρῶτα\",\"h\":[[204],[]],\"parent\":0,\"children\":204,\"pos\":\"[1][204]\"},{\"t\":\"Μενεκράτεος\",\"h\":[[205],[]],\"parent\":0,\"children\":205,\"pos\":\"[1][205]\"},{\"p\":\",\",\"parent\":0,\"children\":206,\"pos\":\"[1][206]\"}],[{\"t\":\"μυρραίους\",\"h\":[[207],[]],\"parent\":0,\"children\":207,\"pos\":\"[1][207]\"},{\"t\":\"τε\",\"h\":[[208],[]],\"parent\":0,\"children\":208,\"pos\":\"[1][208]\"},{\"t\":\"κλάδους\",\"h\":[[209],[]],\"parent\":0,\"children\":209,\"pos\":\"[1][209]\"},{\"t\":\"Νικαινέτου\",\"h\":[[210],[]],\"parent\":0,\"children\":210,\"pos\":\"[1][210]\"},{\"p\":\",\",\"parent\":0,\"children\":211,\"pos\":\"[1][211]\"},{\"t\":\"ἠδὲ\",\"h\":[[212],[]],\"parent\":0,\"children\":212,\"pos\":\"[1][212]\"},{\"t\":\"Φαέννου\",\"h\":[[213],[]],\"parent\":0,\"children\":213,\"pos\":\"[1][213]\"}],[{\"t\":\"τέρμινθον\",\"h\":[[214],[]],\"parent\":0,\"children\":214,\"pos\":\"[1][214]\"},{\"p\":\",\",\"parent\":0,\"children\":215,\"pos\":\"[1][215]\"},{\"t\":\"βλωθρὴν\",\"h\":[[216],[]],\"parent\":0,\"children\":216,\"pos\":\"[1][216]\"},{\"t\":\"τ᾽\",\"h\":[[217],[]],\"parent\":0,\"children\":217,\"pos\":\"[1][217]\"},{\"t\":\"ἀχράδα\",\"h\":[[218],[]],\"parent\":0,\"children\":218,\"pos\":\"[1][218]\"},{\"t\":\"Σιμίεω\",\"h\":[[219],[]],\"parent\":0,\"children\":219,\"pos\":\"[1][219]\"},{\"p\":\":\",\"parent\":0,\"children\":220,\"pos\":\"[1][220]\"}],[{\"t\":\"ἐν\",\"h\":[[221],[]],\"parent\":0,\"children\":221,\"pos\":\"[1][221]\"},{\"t\":\"δὲ\",\"h\":[[222],[]],\"parent\":0,\"children\":222,\"pos\":\"[1][222]\"},{\"t\":\"καὶ\",\"h\":[[223],[]],\"parent\":0,\"children\":223,\"pos\":\"[1][223]\"},{\"t\":\"ἐκ\",\"h\":[[224],[]],\"parent\":0,\"children\":224,\"pos\":\"[1][224]\"},{\"t\":\"λειμῶνος\",\"h\":[[225],[]],\"parent\":0,\"children\":225,\"pos\":\"[1][225]\"},{\"t\":\"ἀμωμήτοιο\",\"h\":[[226],[]],\"parent\":0,\"children\":226,\"pos\":\"[1][226]\"},{\"t\":\"σέλινα\",\"h\":[[227],[]],\"parent\":0,\"children\":227,\"pos\":\"[1][227]\"},{\"p\":\",\",\"parent\":0,\"children\":228,\"pos\":\"[1][228]\"}],[{\"t\":\"βαιὰ\",\"h\":[[229],[]],\"parent\":0,\"children\":229,\"pos\":\"[1][229]\"},{\"t\":\"διακνίζων\",\"h\":[[230],[]],\"parent\":0,\"children\":230,\"pos\":\"[1][230]\"},{\"t\":\"ἄνθεα\",\"h\":[[231],[]],\"parent\":0,\"children\":231,\"pos\":\"[1][231]\"},{\"p\":\",\",\"parent\":0,\"children\":232,\"pos\":\"[1][232]\"},{\"t\":\"Παρθενίδος\",\"h\":[[233],[]],\"parent\":0,\"children\":233,\"pos\":\"[1][233]\"},{\"p\":\",\",\"parent\":0,\"children\":234,\"pos\":\"[1][234]\"}],[{\"t\":\"λείψανὰ\",\"h\":[[235],[]],\"parent\":0,\"children\":235,\"pos\":\"[1][235]\"},{\"t\":\"τ᾽\",\"h\":[[236],[]],\"parent\":0,\"children\":236,\"pos\":\"[1][236]\"},{\"t\":\"εὐκαρπεῦντα\",\"h\":[[237],[]],\"parent\":0,\"children\":237,\"pos\":\"[1][237]\"},{\"t\":\"μελιστάκτων\",\"h\":[[238],[]],\"parent\":0,\"children\":238,\"pos\":\"[1][238]\"},{\"t\":\"ἀπὸ\",\"h\":[[239],[]],\"parent\":0,\"children\":239,\"pos\":\"[1][239]\"},{\"t\":\"Μουσέων\",\"h\":[[240],[]],\"parent\":0,\"children\":240,\"pos\":\"[1][240]\"},{\"p\":\",\",\"parent\":0,\"children\":241,\"pos\":\"[1][241]\"}],[{\"t\":\"ξανθοὺς\",\"h\":[[242],[]],\"parent\":0,\"children\":242,\"pos\":\"[1][242]\"},{\"t\":\"ἐκ\",\"h\":[[243],[]],\"parent\":0,\"children\":243,\"pos\":\"[1][243]\"},{\"t\":\"καλάμης\",\"h\":[[244],[]],\"parent\":0,\"children\":244,\"pos\":\"[1][244]\"},{\"t\":\"Βακχυλίδεω\",\"h\":[[245],[]],\"parent\":0,\"children\":245,\"pos\":\"[1][245]\"},{\"t\":\"στάχυας\",\"h\":[[246],[]],\"parent\":0,\"children\":246,\"pos\":\"[1][246]\"},{\"p\":\":\",\"parent\":0,\"children\":247,\"pos\":\"[1][247]\"}],[{\"t\":\"ἐν\",\"h\":[[248],[]],\"parent\":0,\"children\":248,\"pos\":\"[1][248]\"},{\"t\":\"δ᾽\",\"h\":[[249],[]],\"parent\":0,\"children\":249,\"pos\":\"[1][249]\"},{\"t\":\"ἄρ᾽\",\"h\":[[250],[]],\"parent\":0,\"children\":250,\"pos\":\"[1][250]\"},{\"t\":\"Ἀνακρείοντα\",\"h\":[[251],[]],\"parent\":0,\"children\":251,\"pos\":\"[1][251]\"},{\"p\":\",\",\"parent\":0,\"children\":252,\"pos\":\"[1][252]\"},{\"t\":\"τὸ\",\"h\":[[253],[]],\"parent\":0,\"children\":253,\"pos\":\"[1][253]\"},{\"t\":\"μὲν\",\"h\":[[254],[]],\"parent\":0,\"children\":254,\"pos\":\"[1][254]\"},{\"t\":\"γλυκὺ\",\"h\":[[255],[]],\"parent\":0,\"children\":255,\"pos\":\"[1][255]\"},{\"t\":\"κεῖνο\",\"h\":[[256],[]],\"parent\":0,\"children\":256,\"pos\":\"[1][256]\"},{\"t\":\"μέλισμα\",\"h\":[[257],[]],\"parent\":0,\"children\":257,\"pos\":\"[1][257]\"}],[{\"t\":\"νέκταρος\",\"h\":[[258],[]],\"parent\":0,\"children\":258,\"pos\":\"[1][258]\"},{\"p\":\",\",\"parent\":0,\"children\":259,\"pos\":\"[1][259]\"},{\"t\":\"ἐν\",\"h\":[[260],[]],\"parent\":0,\"children\":260,\"pos\":\"[1][260]\"},{\"t\":\"δ᾽\",\"h\":[[261],[]],\"parent\":0,\"children\":261,\"pos\":\"[1][261]\"},{\"t\":\"ἐλέγους\",\"h\":[[262],[]],\"parent\":0,\"children\":262,\"pos\":\"[1][262]\"},{\"t\":\"ἄσπορον\",\"h\":[[263],[]],\"parent\":0,\"children\":263,\"pos\":\"[1][263]\"},{\"t\":\"ἀνθέμιον\",\"h\":[[264],[]],\"parent\":0,\"children\":264,\"pos\":\"[1][264]\"},{\"p\":\":\",\"parent\":0,\"children\":265,\"pos\":\"[1][265]\"}],[{\"t\":\"ἐν\",\"h\":[[266],[]],\"parent\":0,\"children\":266,\"pos\":\"[1][266]\"},{\"t\":\"δὲ\",\"h\":[[267],[]],\"parent\":0,\"children\":267,\"pos\":\"[1][267]\"},{\"t\":\"καὶ\",\"h\":[[268],[]],\"parent\":0,\"children\":268,\"pos\":\"[1][268]\"},{\"t\":\"ἐκ\",\"h\":[[269],[]],\"parent\":0,\"children\":269,\"pos\":\"[1][269]\"},{\"t\":\"φορβῆς\",\"h\":[[270],[]],\"parent\":0,\"children\":270,\"pos\":\"[1][270]\"},{\"t\":\"σκολιότριχος\",\"h\":[[271],[]],\"parent\":0,\"children\":271,\"pos\":\"[1][271]\"},{\"t\":\"ἄνθος\",\"h\":[[272],[]],\"parent\":0,\"children\":272,\"pos\":\"[1][272]\"},{\"t\":\"ἀκάνθης\",\"h\":[[273],[]],\"parent\":0,\"children\":273,\"pos\":\"[1][273]\"}],[{\"t\":\"Ἀρχιλόχου\",\"h\":[[274],[]],\"parent\":0,\"children\":274,\"pos\":\"[1][274]\"},{\"t\":\"μικρὰς\",\"h\":[[275],[]],\"parent\":0,\"children\":275,\"pos\":\"[1][275]\"},{\"t\":\"στράγγας\",\"h\":[[276],[]],\"parent\":0,\"children\":276,\"pos\":\"[1][276]\"},{\"t\":\"ἀπ᾽\",\"h\":[[277],[]],\"parent\":0,\"children\":277,\"pos\":\"[1][277]\"},{\"t\":\"ὠκεανοῦ\",\"h\":[[278],[]],\"parent\":0,\"children\":278,\"pos\":\"[1][278]\"}],[{\"t\":\"τοῖς\",\"h\":[[279],[]],\"parent\":0,\"children\":279,\"pos\":\"[1][279]\"},{\"t\":\"δ᾽\",\"h\":[[280],[]],\"parent\":0,\"children\":280,\"pos\":\"[1][280]\"},{\"t\":\"ἅμ᾽\",\"h\":[[281],[]],\"parent\":0,\"children\":281,\"pos\":\"[1][281]\"},{\"t\":\"Ἀλεξάνδροιο\",\"h\":[[282],[]],\"parent\":0,\"children\":282,\"pos\":\"[1][282]\"},{\"t\":\"νέους\",\"h\":[[283],[]],\"parent\":0,\"children\":283,\"pos\":\"[1][283]\"},{\"t\":\"ὄρπηκας\",\"h\":[[284],[]],\"parent\":0,\"children\":284,\"pos\":\"[1][284]\"},{\"t\":\"ἐλαίης\",\"h\":[[285],[]],\"parent\":0,\"children\":285,\"pos\":\"[1][285]\"}],[{\"t\":\"ἠδὲ\",\"h\":[[286],[]],\"parent\":0,\"children\":286,\"pos\":\"[1][286]\"},{\"t\":\"Πολυκλείτου\",\"h\":[[287],[]],\"parent\":0,\"children\":287,\"pos\":\"[1][287]\"},{\"t\":\"πορφυρέ\",\"h\":[[288],[]],\"parent\":0,\"children\":288,\"pos\":\"[1][288]\"},{\"t\":\"oν\",\"h\":[[289],[]],\"parent\":0,\"children\":289,\"pos\":\"[1][289]\"},{\"t\":\"κύα\",\"h\":[[290],[]],\"parent\":0,\"children\":290,\"pos\":\"[1][290]\"},{\"t\":\"mον\",\"h\":[[291],[]],\"parent\":0,\"children\":291,\"pos\":\"[1][291]\"},{\"p\":\".\",\"parent\":0,\"children\":292,\"pos\":\"[1][292]\"}],[{\"t\":\"ἐν\",\"h\":[[293],[]],\"parent\":0,\"children\":293,\"pos\":\"[1][293]\"},{\"t\":\"δ᾽\",\"h\":[[294],[]],\"parent\":0,\"children\":294,\"pos\":\"[1][294]\"},{\"t\":\"ἄρ᾽\",\"h\":[[295],[]],\"parent\":0,\"children\":295,\"pos\":\"[1][295]\"},{\"t\":\"ἀμάρακον\",\"h\":[[296],[]],\"parent\":0,\"children\":296,\"pos\":\"[1][296]\"},{\"t\":\"ἧκε\",\"h\":[[297],[]],\"parent\":0,\"children\":297,\"pos\":\"[1][297]\"},{\"t\":\"Πολ\",\"h\":[[298],[]],\"parent\":0,\"children\":298,\"pos\":\"[1][298]\"},{\"t\":\"uστραvτοu\",\"h\":[[299],[]],\"parent\":0,\"children\":299,\"pos\":\"[1][299]\"},{\"p\":\",\",\"parent\":0,\"children\":300,\"pos\":\"[1][300]\"},{\"t\":\"ἄνθος\",\"h\":[[301],[]],\"parent\":0,\"children\":301,\"pos\":\"[1][301]\"},{\"t\":\"ἀοιδῶν\",\"h\":[[302],[]],\"parent\":0,\"children\":302,\"pos\":\"[1][302]\"},{\"p\":\",\",\"parent\":0,\"children\":303,\"pos\":\"[1][303]\"}],[{\"t\":\"φοίνισσάν\",\"h\":[[304],[]],\"parent\":0,\"children\":304,\"pos\":\"[1][304]\"},{\"t\":\"τε\",\"h\":[[305],[]],\"parent\":0,\"children\":305,\"pos\":\"[1][305]\"},{\"t\":\"νέην\",\"h\":[[306],[]],\"parent\":0,\"children\":306,\"pos\":\"[1][306]\"},{\"t\":\"κύπρον\",\"h\":[[307],[]],\"parent\":0,\"children\":307,\"pos\":\"[1][307]\"},{\"t\":\"ἀπ᾽\",\"h\":[[308],[]],\"parent\":0,\"children\":308,\"pos\":\"[1][308]\"},{\"t\":\"Ἀντιπάτρου\",\"h\":[[309],[]],\"parent\":0,\"children\":309,\"pos\":\"[1][309]\"},{\"p\":\":\",\"parent\":0,\"children\":310,\"pos\":\"[1][310]\"}],[{\"t\":\"ναὶ\",\"h\":[[311],[]],\"parent\":0,\"children\":311,\"pos\":\"[1][311]\"},{\"t\":\"μὴν\",\"h\":[[312],[]],\"parent\":0,\"children\":312,\"pos\":\"[1][312]\"},{\"t\":\"καὶ\",\"h\":[[313],[]],\"parent\":0,\"children\":313,\"pos\":\"[1][313]\"},{\"t\":\"Συρίαν\",\"h\":[[314],[]],\"parent\":0,\"children\":314,\"pos\":\"[1][314]\"},{\"t\":\"σταχυότριχα\",\"h\":[[315],[]],\"parent\":0,\"children\":315,\"pos\":\"[1][315]\"},{\"t\":\"θήκατο\",\"h\":[[316],[]],\"parent\":0,\"children\":316,\"pos\":\"[1][316]\"},{\"t\":\"νάρδον\",\"h\":[[317],[]],\"parent\":0,\"children\":317,\"pos\":\"[1][317]\"}],[{\"t\":\"ὑμνοθέταν\",\"h\":[[318],[]],\"parent\":0,\"children\":318,\"pos\":\"[1][318]\"},{\"t\":\"Ἑρμοῦ\",\"h\":[[319],[]],\"parent\":0,\"children\":319,\"pos\":\"[1][319]\"},{\"t\":\"δῶρον\",\"h\":[[320],[]],\"parent\":0,\"children\":320,\"pos\":\"[1][320]\"},{\"t\":\"ἀειδόμενον\",\"h\":[[321],[]],\"parent\":0,\"children\":321,\"pos\":\"[1][321]\"},{\"p\":\".\",\"parent\":0,\"children\":322,\"pos\":\"[1][322]\"}],[{\"t\":\"Eν\",\"h\":[[323],[]],\"parent\":0,\"children\":323,\"pos\":\"[1][323]\"},{\"t\":\"δὲ\",\"h\":[[324],[]],\"parent\":0,\"children\":324,\"pos\":\"[1][324]\"},{\"t\":\"Ποσείδιππόν\",\"h\":[[325],[]],\"parent\":0,\"children\":325,\"pos\":\"[1][325]\"},{\"t\":\"τε\",\"h\":[[326],[]],\"parent\":0,\"children\":326,\"pos\":\"[1][326]\"},{\"t\":\"καὶ\",\"h\":[[327],[]],\"parent\":0,\"children\":327,\"pos\":\"[1][327]\"},{\"t\":\"Ἡδύλον\",\"h\":[[328],[]],\"parent\":0,\"children\":328,\"pos\":\"[1][328]\"},{\"t\":\"ἄγρι᾽\",\"h\":[[329],[]],\"parent\":0,\"children\":329,\"pos\":\"[1][329]\"},{\"t\":\"ἀρούρης\",\"h\":[[330],[]],\"parent\":0,\"children\":330,\"pos\":\"[1][330]\"},{\"p\":\",\",\"parent\":0,\"children\":331,\"pos\":\"[1][331]\"}],[{\"t\":\"Σικελίδεὼ\",\"h\":[[332],[]],\"parent\":0,\"children\":332,\"pos\":\"[1][332]\"},{\"t\":\"τ᾽\",\"h\":[[333],[]],\"parent\":0,\"children\":333,\"pos\":\"[1][333]\"},{\"t\":\"ἀνέμοις\",\"h\":[[334],[]],\"parent\":0,\"children\":334,\"pos\":\"[1][334]\"},{\"t\":\"ἄνθεα\",\"h\":[[335],[]],\"parent\":0,\"children\":335,\"pos\":\"[1][335]\"},{\"t\":\"φυόμενα\",\"h\":[[336],[]],\"parent\":0,\"children\":336,\"pos\":\"[1][336]\"},{\"p\":\":\",\"parent\":0,\"children\":337,\"pos\":\"[1][337]\"}],[{\"t\":\"ναὶ\",\"h\":[[338],[]],\"parent\":0,\"children\":338,\"pos\":\"[1][338]\"},{\"t\":\"μὴν\",\"h\":[[339],[]],\"parent\":0,\"children\":339,\"pos\":\"[1][339]\"},{\"t\":\"καὶ\",\"h\":[[340],[]],\"parent\":0,\"children\":340,\"pos\":\"[1][340]\"},{\"t\":\"χρύσειον\",\"h\":[[341],[]],\"parent\":0,\"children\":341,\"pos\":\"[1][341]\"},{\"t\":\"ἀεὶ\",\"h\":[[342],[]],\"parent\":0,\"children\":342,\"pos\":\"[1][342]\"},{\"t\":\"θείοιο\",\"h\":[[343],[]],\"parent\":0,\"children\":343,\"pos\":\"[1][343]\"},{\"t\":\"Πλάτωνος\",\"h\":[[344],[]],\"parent\":0,\"children\":344,\"pos\":\"[1][344]\"}],[{\"t\":\"κλῶνα\",\"h\":[[345],[]],\"parent\":0,\"children\":345,\"pos\":\"[1][345]\"},{\"p\":\",\",\"parent\":0,\"children\":346,\"pos\":\"[1][346]\"},{\"t\":\"τὸν\",\"h\":[[347],[]],\"parent\":0,\"children\":347,\"pos\":\"[1][347]\"},{\"t\":\"ἐξ\",\"h\":[[348],[]],\"parent\":0,\"children\":348,\"pos\":\"[1][348]\"},{\"t\":\"ἀρετῆς\",\"h\":[[349],[]],\"parent\":0,\"children\":349,\"pos\":\"[1][349]\"},{\"t\":\"πάντοθι\",\"h\":[[350],[]],\"parent\":0,\"children\":350,\"pos\":\"[1][350]\"},{\"t\":\"λαμπόμενον\",\"h\":[[351],[]],\"parent\":0,\"children\":351,\"pos\":\"[1][351]\"},{\"p\":\".\",\"parent\":0,\"children\":352,\"pos\":\"[1][352]\"}],[{\"t\":\"Ἄστρων\",\"h\":[[353],[]],\"parent\":0,\"children\":353,\"pos\":\"[1][353]\"},{\"t\":\"τ᾽\",\"h\":[[354],[]],\"parent\":0,\"children\":354,\"pos\":\"[1][354]\"},{\"t\":\"ἴδριν\",\"h\":[[355],[]],\"parent\":0,\"children\":355,\"pos\":\"[1][355]\"},{\"t\":\"Ἄρατον\",\"h\":[[356],[]],\"parent\":0,\"children\":356,\"pos\":\"[1][356]\"},{\"t\":\"ὁμοῦ\",\"h\":[[357],[]],\"parent\":0,\"children\":357,\"pos\":\"[1][357]\"},{\"t\":\"βάλεν\",\"h\":[[358],[]],\"parent\":0,\"children\":358,\"pos\":\"[1][358]\"},{\"p\":\",\",\"parent\":0,\"children\":359,\"pos\":\"[1][359]\"},{\"t\":\"οὐρανομάκευς\",\"h\":[[360],[]],\"parent\":0,\"children\":360,\"pos\":\"[1][360]\"}],[{\"t\":\"φοίνικος\",\"h\":[[361],[]],\"parent\":0,\"children\":361,\"pos\":\"[1][361]\"},{\"t\":\"κείρας\",\"h\":[[362],[]],\"parent\":0,\"children\":362,\"pos\":\"[1][362]\"},{\"t\":\"πρωτογόνους\",\"h\":[[363],[]],\"parent\":0,\"children\":363,\"pos\":\"[1][363]\"},{\"t\":\"ἕλικας\",\"h\":[[364],[]],\"parent\":0,\"children\":364,\"pos\":\"[1][364]\"},{\"p\":\",\",\"parent\":0,\"children\":365,\"pos\":\"[1][365]\"}],[{\"t\":\"λωτὸν\",\"h\":[[366],[]],\"parent\":0,\"children\":366,\"pos\":\"[1][366]\"},{\"t\":\"τ᾽\",\"h\":[[367],[]],\"parent\":0,\"children\":367,\"pos\":\"[1][367]\"},{\"t\":\"εὐχαίτην\",\"h\":[[368],[]],\"parent\":0,\"children\":368,\"pos\":\"[1][368]\"},{\"t\":\"Χαιρήμονος\",\"h\":[[369],[]],\"parent\":0,\"children\":369,\"pos\":\"[1][369]\"},{\"p\":\",\",\"parent\":0,\"children\":370,\"pos\":\"[1][370]\"},{\"t\":\"ἐν\",\"h\":[[371],[]],\"parent\":0,\"children\":371,\"pos\":\"[1][371]\"},{\"t\":\"φλογὶ\",\"h\":[[372],[]],\"parent\":0,\"children\":372,\"pos\":\"[1][372]\"},{\"t\":\"μίξας\",\"h\":[[373],[]],\"parent\":0,\"children\":373,\"pos\":\"[1][373]\"}],[{\"t\":\"Φαιδίμου\",\"h\":[[374],[]],\"parent\":0,\"children\":374,\"pos\":\"[1][374]\"},{\"p\":\",\",\"parent\":0,\"children\":375,\"pos\":\"[1][375]\"},{\"t\":\"Ἀνταγόρου\",\"h\":[[376],[]],\"parent\":0,\"children\":376,\"pos\":\"[1][376]\"},{\"t\":\"τ᾽\",\"h\":[[377],[]],\"parent\":0,\"children\":377,\"pos\":\"[1][377]\"},{\"t\":\"εὔστροφον\",\"h\":[[378],[]],\"parent\":0,\"children\":378,\"pos\":\"[1][378]\"},{\"t\":\"ὄμμα\",\"h\":[[379],[]],\"parent\":0,\"children\":379,\"pos\":\"[1][379]\"},{\"t\":\"βοός\",\"h\":[[380],[]],\"parent\":0,\"children\":380,\"pos\":\"[1][380]\"},{\"p\":\",\",\"parent\":0,\"children\":381,\"pos\":\"[1][381]\"}],[{\"t\":\"τάν\",\"h\":[[382],[]],\"parent\":0,\"children\":382,\"pos\":\"[1][382]\"},{\"t\":\"τε\",\"h\":[[383],[]],\"parent\":0,\"children\":383,\"pos\":\"[1][383]\"},{\"t\":\"φιλάκρητον\",\"h\":[[384],[]],\"parent\":0,\"children\":384,\"pos\":\"[1][384]\"},{\"t\":\"Θεοδωρίδεω\",\"h\":[[385],[]],\"parent\":0,\"children\":385,\"pos\":\"[1][385]\"},{\"t\":\"νεοθαλῆ\",\"h\":[[386],[]],\"parent\":0,\"children\":386,\"pos\":\"[1][386]\"}],[{\"t\":\"ἕρπυλλον\",\"h\":[[387],[]],\"parent\":0,\"children\":387,\"pos\":\"[1][387]\"},{\"p\":\",\",\"parent\":0,\"children\":388,\"pos\":\"[1][388]\"},{\"t\":\"κυάνων\",\"h\":[[389],[]],\"parent\":0,\"children\":389,\"pos\":\"[1][389]\"},{\"t\":\"τ᾽\",\"h\":[[390],[]],\"parent\":0,\"children\":390,\"pos\":\"[1][390]\"},{\"t\":\"ἄνθεα\",\"h\":[[391],[]],\"parent\":0,\"children\":391,\"pos\":\"[1][391]\"},{\"t\":\"Φανίεω\",\"h\":[[392],[]],\"parent\":0,\"children\":392,\"pos\":\"[1][392]\"},{\"p\":\",\",\"parent\":0,\"children\":393,\"pos\":\"[1][393]\"}],[{\"t\":\"ἄλλων\",\"h\":[[394],[]],\"parent\":0,\"children\":394,\"pos\":\"[1][394]\"},{\"t\":\"τ᾽\",\"h\":[[395],[]],\"parent\":0,\"children\":395,\"pos\":\"[1][395]\"},{\"t\":\"ἔρνεα\",\"h\":[[396],[]],\"parent\":0,\"children\":396,\"pos\":\"[1][396]\"},{\"t\":\"πολλὰ\",\"h\":[[397],[]],\"parent\":0,\"children\":397,\"pos\":\"[1][397]\"},{\"t\":\"νεόγραφα\",\"h\":[[398],[]],\"parent\":0,\"children\":398,\"pos\":\"[1][398]\"},{\"p\":\":\",\"parent\":0,\"children\":399,\"pos\":\"[1][399]\"},{\"t\":\"τοῖς\",\"h\":[[400],[]],\"parent\":0,\"children\":400,\"pos\":\"[1][400]\"},{\"t\":\"δ᾽\",\"h\":[[401],[]],\"parent\":0,\"children\":401,\"pos\":\"[1][401]\"},{\"t\":\"ἅμα\",\"h\":[[402],[]],\"parent\":0,\"children\":402,\"pos\":\"[1][402]\"},{\"t\":\"Μούσης\",\"h\":[[403],[]],\"parent\":0,\"children\":403,\"pos\":\"[1][403]\"}],[{\"t\":\"καὶ\",\"h\":[[404],[]],\"parent\":0,\"children\":404,\"pos\":\"[1][404]\"},{\"t\":\"σφετέρης\",\"h\":[[405],[]],\"parent\":0,\"children\":405,\"pos\":\"[1][405]\"},{\"t\":\"ἔτι\",\"h\":[[406],[]],\"parent\":0,\"children\":406,\"pos\":\"[1][406]\"},{\"t\":\"που\",\"h\":[[407],[]],\"parent\":0,\"children\":407,\"pos\":\"[1][407]\"},{\"t\":\"πρώιμα\",\"h\":[[408],[]],\"parent\":0,\"children\":408,\"pos\":\"[1][408]\"},{\"t\":\"λευκόια\",\"h\":[[409],[]],\"parent\":0,\"children\":409,\"pos\":\"[1][409]\"},{\"p\":\".\",\"parent\":0,\"children\":410,\"pos\":\"[1][410]\"}],[{\"t\":\"Ἀλλὰ\",\"h\":[[411],[]],\"parent\":0,\"children\":411,\"pos\":\"[1][411]\"},{\"t\":\"φίλοις\",\"h\":[[412],[]],\"parent\":0,\"children\":412,\"pos\":\"[1][412]\"},{\"t\":\"μὲν\",\"h\":[[413],[]],\"parent\":0,\"children\":413,\"pos\":\"[1][413]\"},{\"t\":\"ἐμοῖσι\",\"h\":[[414],[]],\"parent\":0,\"children\":414,\"pos\":\"[1][414]\"},{\"t\":\"φέρω\",\"h\":[[415],[]],\"parent\":0,\"children\":415,\"pos\":\"[1][415]\"},{\"t\":\"χάριν\",\"h\":[[416],[]],\"parent\":0,\"children\":416,\"pos\":\"[1][416]\"},{\"p\":\":\",\"parent\":0,\"children\":417,\"pos\":\"[1][417]\"},{\"t\":\"ἔστι\",\"h\":[[418],[]],\"parent\":0,\"children\":418,\"pos\":\"[1][418]\"},{\"t\":\"δὲ\",\"h\":[[419],[]],\"parent\":0,\"children\":419,\"pos\":\"[1][419]\"},{\"t\":\"μύσταις\",\"h\":[[420],[]],\"parent\":0,\"children\":420,\"pos\":\"[1][420]\"}],[{\"t\":\"κοινὸς\",\"h\":[[421],[]],\"parent\":0,\"children\":421,\"pos\":\"[1][421]\"},{\"t\":\"ὁ\",\"h\":[[422],[]],\"parent\":0,\"children\":422,\"pos\":\"[1][422]\"},{\"t\":\"τῶν\",\"h\":[[423],[]],\"parent\":0,\"children\":423,\"pos\":\"[1][423]\"},{\"t\":\"Μουσέων\",\"h\":[[424],[]],\"parent\":0,\"children\":424,\"pos\":\"[1][424]\"},{\"t\":\"ἡδυεπὴς\",\"h\":[[425],[]],\"parent\":0,\"children\":425,\"pos\":\"[1][425]\"},{\"t\":\"στέφανος\",\"h\":[[426],[]],\"parent\":0,\"children\":426,\"pos\":\"[1][426]\"},{\"p\":\".\",\"parent\":0,\"children\":427,\"pos\":\"[1][427]\"}],[]],[[{\"t\":\"Musa\",\"h\":[[1],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"amata\",\"h\":[[2],[2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"p\":\",\",\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"a\",\"h\":[[],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"chi\",\"h\":[[],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"porti\",\"h\":[[],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"questo\",\"h\":[[],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"canto\",\"h\":[[],[8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"di\",\"h\":[[],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"frutti\",\"h\":[[],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"p\":\"?\",\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"}],[{\"t\":\"Chi\",\"h\":[[],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"intrecciò\",\"h\":[[],[13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"questa\",\"h\":[[],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"corona\",\"h\":[[],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"di\",\"h\":[[],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"poeti\",\"h\":[[],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\"?\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"}]]]', 40, NULL, '2017-09-05 08:26:47', '2017-09-05 08:26:47');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(9, 2, 6, 7, 8, 1, '[[[],[{\"t\":\"Μοῦσα\",\"h\":[[1],[1]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"φίλα\",\"h\":[[2],[2]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"p\":\",\",\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"τίνι\",\"h\":[[4],[4,5]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"τάνδε\",\"h\":[[5],[7]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"φέρεις\",\"h\":[[6],[6]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"t\":\"πάγκαρπον\",\"h\":[[7],[9,10]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"ἀοιδάν\",\"h\":[[8],[8]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"p\":\";\",\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"}],[{\"t\":\"ἢ\",\"h\":[[10],[16,17]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"τίς\",\"h\":[[11],[12]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"ὁ\",\"h\":[[12,14],[12]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"καὶ\",\"h\":[[13],[]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"t\":\"τεύξας\",\"h\":[[12,14],[12]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"t\":\"ὑμνοθετᾶν\",\"h\":[[15],[14,15]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"στέφανον\",\"h\":[[16],[14]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"p\":\";\",\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"}],[{\"t\":\"Ἄνυσε\",\"h\":[[18],[140]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"μὲν\",\"h\":[[19],[]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"Μελέαγρος\",\"h\":[[20],[20]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"p\":\",\",\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"ἀριζάλῳ\",\"h\":[[22],[28,31]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"δὲ\",\"h\":[[23],[]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"Διοκλεῖ\",\"h\":[[24],[21]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"}],[{\"t\":\"μναμόσυνον\",\"h\":[[25],[25]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"ταύταν\",\"h\":[[26],[23]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"ἐξεπόνησε\",\"h\":[[27],[29,30]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"χάριν\",\"h\":[[28],[24]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"p\":\":\",\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"}],[{\"t\":\"πολλὰ\",\"h\":[[30],[26,27]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"μὲν\",\"h\":[[31],[]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"ἐμπλέξας\",\"h\":[[32],[34]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"Ἀνύτης\",\"h\":[[33],[33]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"κρίνα\",\"h\":[[34],[36,37]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"p\":\",\",\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"πολλὰ\",\"h\":[[36],[35]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"δὲ\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"}],[{\"t\":\"Μοιροῦς\",\"h\":[[38],[39]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"}],[{\"t\":\"λείρια\",\"h\":[[39],[41,42]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"p\":\",\",\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"καὶ\",\"h\":[[41],[40]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"t\":\"Σαπφοῦς\",\"h\":[[42],[44]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"t\":\"βαιὰ\",\"h\":[[43],[46,47]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"μὲν\",\"h\":[[44],[]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"p\":\",\",\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"t\":\"ἀλλὰ\",\"h\":[[46],[44,45]],\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"ῥόδα\",\"h\":[[47],[49]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"p\":\":\",\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"}],[{\"t\":\"νάρκισσόν\",\"h\":[[49],[65]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"τε\",\"h\":[[50],[]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"t\":\"τορῶν\",\"h\":[[51],[59,60]],\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"t\":\"Μελανιππίδου\",\"h\":[[52],[53,54]],\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"},{\"t\":\"ἔγκυον\",\"h\":[[53],[55,56]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"t\":\"ὕμνων\",\"h\":[[54],[65]],\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"},{\"p\":\",\",\"parent\":0,\"children\":55,\"pos\":\"[1][55]\"}],[{\"t\":\"καὶ\",\"h\":[[56],[61]],\"parent\":0,\"children\":56,\"pos\":\"[1][56]\"},{\"t\":\"νέον\",\"h\":[[57],[64,65]],\"parent\":0,\"children\":57,\"pos\":\"[1][57]\"},{\"t\":\"οἰνάνθης\",\"h\":[[58],[66]],\"parent\":0,\"children\":58,\"pos\":\"[1][58]\"},{\"t\":\"κλῆμα\",\"h\":[[59],[63]],\"parent\":0,\"children\":59,\"pos\":\"[1][59]\"},{\"t\":\"Σιμωνίδεω\",\"h\":[[60],[67,68,69,70]],\"parent\":0,\"children\":60,\"pos\":\"[1][60]\"},{\"p\":\":\",\"parent\":0,\"children\":61,\"pos\":\"[1][61]\"}],[{\"t\":\"σὺν\",\"h\":[[62,63],[74]],\"parent\":0,\"children\":62,\"pos\":\"[1][62]\"},{\"t\":\"δ᾽\",\"h\":[[62,63],[74]],\"parent\":0,\"children\":63,\"pos\":\"[1][63]\"},{\"t\":\"ἀναμὶξ\",\"h\":[[64],[79,81]],\"parent\":0,\"children\":64,\"pos\":\"[1][64]\"},{\"t\":\"πλέξας\",\"h\":[[65],[71,72]],\"parent\":0,\"children\":65,\"pos\":\"[1][65]\"},{\"t\":\"μυρόπνουν\",\"h\":[[66],[75]],\"parent\":0,\"children\":66,\"pos\":\"[1][66]\"},{\"t\":\"εὐάνθεμον\",\"h\":[[67],[91]],\"parent\":0,\"children\":67,\"pos\":\"[1][67]\"},{\"t\":\"ἶριν\",\"h\":[[68],[85,86]],\"parent\":0,\"children\":68,\"pos\":\"[1][68]\"}],[{\"t\":\"Νοσσίδος\",\"h\":[[69],[84]],\"parent\":0,\"children\":69,\"pos\":\"[1][69]\"},{\"p\":\",\",\"parent\":0,\"children\":70,\"pos\":\"[1][70]\"},{\"t\":\"ἧς\",\"h\":[[71],[90]],\"parent\":0,\"children\":71,\"pos\":\"[1][71]\"},{\"t\":\"δέλτοις\",\"h\":[[72],[91]],\"parent\":0,\"children\":72,\"pos\":\"[1][72]\"},{\"t\":\"κηρὸν\",\"h\":[[73],[92]],\"parent\":0,\"children\":73,\"pos\":\"[1][73]\"},{\"t\":\"ἔτηξεν\",\"h\":[[74],[88,89]],\"parent\":0,\"children\":74,\"pos\":\"[1][74]\"},{\"t\":\"Ἔρως\",\"h\":[[75],[82,83]],\"parent\":0,\"children\":75,\"pos\":\"[1][75]\"},{\"p\":\":\",\"parent\":0,\"children\":76,\"pos\":\"[1][76]\"}],[{\"t\":\"τῇ\",\"h\":[[77],[96]],\"parent\":0,\"children\":77,\"pos\":\"[1][77]\"},{\"t\":\"δ᾽\",\"h\":[[78,79],[93,94]],\"parent\":0,\"children\":78,\"pos\":\"[1][78]\"},{\"t\":\"ἅμα\",\"h\":[[78,79],[93,94]],\"parent\":0,\"children\":79,\"pos\":\"[1][79]\"},{\"t\":\"καὶ\",\"h\":[[80],[]],\"parent\":0,\"children\":80,\"pos\":\"[1][80]\"},{\"t\":\"σάμψυχον\",\"h\":[[81],[102,104]],\"parent\":0,\"children\":81,\"pos\":\"[1][81]\"},{\"t\":\"ἀφ᾽\",\"h\":[[82],[99,100]],\"parent\":0,\"children\":82,\"pos\":\"[1][82]\"},{\"t\":\"ἡδυπνόοιο\",\"h\":[[83],[104]],\"parent\":0,\"children\":83,\"pos\":\"[1][83]\"},{\"t\":\"Ῥιανοῦ\",\"h\":[[84],[101,102]],\"parent\":0,\"children\":84,\"pos\":\"[1][84]\"},{\"p\":\",\",\"parent\":0,\"children\":85,\"pos\":\"[1][85]\"}],[{\"t\":\"καὶ\",\"h\":[[86],[103]],\"parent\":0,\"children\":86,\"pos\":\"[1][86]\"},{\"t\":\"γλυκὺν\",\"h\":[[87],[106]],\"parent\":0,\"children\":87,\"pos\":\"[1][87]\"},{\"t\":\"Ἠρίννης\",\"h\":[[88],[108]],\"parent\":0,\"children\":88,\"pos\":\"[1][88]\"},{\"t\":\"παρθενόχρωτα\",\"h\":[[89],[107,109]],\"parent\":0,\"children\":89,\"pos\":\"[1][89]\"},{\"t\":\"κρόκον\",\"h\":[[90],[113,115]],\"parent\":0,\"children\":90,\"pos\":\"[1][90]\"},{\"p\":\",\",\"parent\":0,\"children\":91,\"pos\":\"[1][91]\"}],[{\"t\":\"Ἀλκαίου\",\"h\":[[92],[118,119]],\"parent\":0,\"children\":92,\"pos\":\"[1][92]\"},{\"t\":\"τε\",\"h\":[[93],[110,111,112]],\"parent\":0,\"children\":93,\"pos\":\"[1][93]\"},{\"t\":\"λάληθρον\",\"h\":[[94],[120,122]],\"parent\":0,\"children\":94,\"pos\":\"[1][94]\"},{\"t\":\"ἐν\",\"h\":[[95],[123]],\"parent\":0,\"children\":95,\"pos\":\"[1][95]\"},{\"t\":\"ὑμνοπόλοις\",\"h\":[[96],[124]],\"parent\":0,\"children\":96,\"pos\":\"[1][96]\"},{\"t\":\"ὑάκινθον\",\"h\":[[97],[117]],\"parent\":0,\"children\":97,\"pos\":\"[1][97]\"},{\"p\":\",\",\"parent\":0,\"children\":98,\"pos\":\"[1][98]\"}],[{\"t\":\"καὶ\",\"h\":[[99],[125,126]],\"parent\":0,\"children\":99,\"pos\":\"[1][99]\"},{\"t\":\"Σαμίου\",\"h\":[[100],[128]],\"parent\":0,\"children\":100,\"pos\":\"[1][100]\"},{\"t\":\"δάφνης\",\"h\":[[101],[136,137,138]],\"parent\":0,\"children\":101,\"pos\":\"[1][101]\"},{\"t\":\"κλῶνα\",\"h\":[[102],[136,137,138]],\"parent\":0,\"children\":102,\"pos\":\"[1][102]\"},{\"t\":\"μελαμπέταλον\",\"h\":[[103],[129,130]],\"parent\":0,\"children\":103,\"pos\":\"[1][103]\"},{\"p\":\":\",\"parent\":0,\"children\":104,\"pos\":\"[1][104]\"}],[{\"t\":\"ἐν\",\"h\":[[105,106],[141,142]],\"parent\":0,\"children\":105,\"pos\":\"[1][105]\"},{\"t\":\"δὲ\",\"h\":[[105,106],[141,142]],\"parent\":0,\"children\":106,\"pos\":\"[1][106]\"},{\"t\":\"Λεωνίδεω\",\"h\":[[107],[136,137,138]],\"parent\":0,\"children\":107,\"pos\":\"[1][107]\"},{\"t\":\"θαλεροὺς\",\"h\":[[108],[143,144]],\"parent\":0,\"children\":108,\"pos\":\"[1][108]\"},{\"t\":\"κισσοῖο\",\"h\":[[109],[19,20]],\"parent\":0,\"children\":109,\"pos\":\"[1][109]\"},{\"t\":\"κορύμβους\",\"h\":[[110],[145]],\"parent\":0,\"children\":110,\"pos\":\"[1][110]\"},{\"p\":\",\",\"parent\":0,\"children\":111,\"pos\":\"[1][111]\"}],[{\"t\":\"Μνασάλκου\",\"h\":[[112],[146,148,157]],\"parent\":0,\"children\":112,\"pos\":\"[1][112]\"},{\"t\":\"τεκόμας\",\"h\":[[113],[157]],\"parent\":0,\"children\":113,\"pos\":\"[1][113]\"},{\"t\":\"ὀξυτόρου\",\"h\":[[114],[155,156]],\"parent\":0,\"children\":114,\"pos\":\"[1][114]\"},{\"t\":\"πίτυος\",\"h\":[[115],[143,144]],\"parent\":0,\"children\":115,\"pos\":\"[1][115]\"},{\"p\":\":\",\"parent\":0,\"children\":116,\"pos\":\"[1][116]\"}],[{\"t\":\"βλαισήν\",\"h\":[[117],[160,161,162,164]],\"parent\":0,\"children\":117,\"pos\":\"[1][117]\"},{\"t\":\"τε\",\"h\":[[118],[]],\"parent\":0,\"children\":118,\"pos\":\"[1][118]\"},{\"t\":\"πλατάνιστον\",\"h\":[[119],[159]],\"parent\":0,\"children\":119,\"pos\":\"[1][119]\"},{\"t\":\"ἀπέθρισε\",\"h\":[[120],[163]],\"parent\":0,\"children\":120,\"pos\":\"[1][120]\"},{\"t\":\"Παμφίλου\",\"h\":[[121],[159]],\"parent\":0,\"children\":121,\"pos\":\"[1][121]\"},{\"t\":\"οἴνης\",\"h\":[[122],[167,168]],\"parent\":0,\"children\":122,\"pos\":\"[1][122]\"},{\"p\":\",\",\"parent\":0,\"children\":123,\"pos\":\"[1][123]\"}],[{\"t\":\"σύμπλεκτον\",\"h\":[[124],[165,166]],\"parent\":0,\"children\":124,\"pos\":\"[1][124]\"},{\"t\":\"καρύης\",\"h\":[[125],[172,173]],\"parent\":0,\"children\":125,\"pos\":\"[1][125]\"},{\"t\":\"ἔρνεσι\",\"h\":[[126],[176,177]],\"parent\":0,\"children\":126,\"pos\":\"[1][126]\"},{\"t\":\"Παγκράτεος\",\"h\":[[127],[171]],\"parent\":0,\"children\":127,\"pos\":\"[1][127]\"},{\"p\":\",\",\"parent\":0,\"children\":128,\"pos\":\"[1][128]\"}],[{\"t\":\"Τύμνεὼ\",\"h\":[[129],[174,175]],\"parent\":0,\"children\":129,\"pos\":\"[1][129]\"},{\"t\":\"τ᾽\",\"h\":[[130],[]],\"parent\":0,\"children\":130,\"pos\":\"[1][130]\"},{\"t\":\"εὐπέταλον\",\"h\":[[131],[181]],\"parent\":0,\"children\":131,\"pos\":\"[1][131]\"},{\"t\":\"λεύκην\",\"h\":[[132],[179,180]],\"parent\":0,\"children\":132,\"pos\":\"[1][132]\"},{\"p\":\",\",\"parent\":0,\"children\":133,\"pos\":\"[1][133]\"},{\"t\":\"χλοερόν\",\"h\":[[134],[186]],\"parent\":0,\"children\":134,\"pos\":\"[1][134]\"},{\"t\":\"τε\",\"h\":[[135],[]],\"parent\":0,\"children\":135,\"pos\":\"[1][135]\"},{\"t\":\"σίσυμβρον\",\"h\":[[136],[185,187]],\"parent\":0,\"children\":136,\"pos\":\"[1][136]\"}],[{\"t\":\"Νικίου\",\"h\":[[137],[188,189]],\"parent\":0,\"children\":137,\"pos\":\"[1][137]\"},{\"p\":\",\",\"parent\":0,\"children\":138,\"pos\":\"[1][138]\"},{\"t\":\"Εὐφήμου\",\"h\":[[139],[191,192]],\"parent\":0,\"children\":139,\"pos\":\"[1][139]\"},{\"t\":\"τ᾽\",\"h\":[[140],[]],\"parent\":0,\"children\":140,\"pos\":\"[1][140]\"},{\"t\":\"ἀμμότροφον\",\"h\":[[141],[195,196,197,198]],\"parent\":0,\"children\":141,\"pos\":\"[1][141]\"},{\"t\":\"πάραλον\",\"h\":[[142],[199,200,201]],\"parent\":0,\"children\":142,\"pos\":\"[1][142]\"},{\"p\":\":\",\"parent\":0,\"children\":143,\"pos\":\"[1][143]\"}],[{\"t\":\"ἐν\",\"h\":[[144,145,146],[203,204]],\"parent\":0,\"children\":144,\"pos\":\"[1][144]\"},{\"t\":\"δ᾽\",\"h\":[[144,145,146],[203,204]],\"parent\":0,\"children\":145,\"pos\":\"[1][145]\"},{\"t\":\"ἄρα\",\"h\":[[144,145,146],[203,204]],\"parent\":0,\"children\":146,\"pos\":\"[1][146]\"},{\"t\":\"Δαμαγήτου\",\"h\":[[147],[205,206]],\"parent\":0,\"children\":147,\"pos\":\"[1][147]\"},{\"p\":\",\",\"parent\":0,\"children\":148,\"pos\":\"[1][148]\"},{\"t\":\"ἴον\",\"h\":[[149],[208,210]],\"parent\":0,\"children\":149,\"pos\":\"[1][149]\"},{\"t\":\"μέλαν\",\"h\":[[150],[209]],\"parent\":0,\"children\":150,\"pos\":\"[1][150]\"},{\"p\":\",\",\"parent\":0,\"children\":151,\"pos\":\"[1][151]\"},{\"t\":\"ἡδύ\",\"h\":[[152],[214]],\"parent\":0,\"children\":152,\"pos\":\"[1][152]\"},{\"t\":\"τε\",\"h\":[[153],[212]],\"parent\":0,\"children\":153,\"pos\":\"[1][153]\"},{\"t\":\"μύρτον\",\"h\":[[154],[213,215]],\"parent\":0,\"children\":154,\"pos\":\"[1][154]\"}],[{\"t\":\"Καλλιμάχου\",\"h\":[[155],[216,217]],\"parent\":0,\"children\":155,\"pos\":\"[1][155]\"},{\"p\":\",\",\"parent\":0,\"children\":156,\"pos\":\"[1][156]\"},{\"t\":\"στυφελοῦ\",\"h\":[[157],[222]],\"parent\":0,\"children\":157,\"pos\":\"[1][157]\"},{\"t\":\"μεστὸν\",\"h\":[[158],[220]],\"parent\":0,\"children\":158,\"pos\":\"[1][158]\"},{\"t\":\"ἀεὶ\",\"h\":[[159],[219]],\"parent\":0,\"children\":159,\"pos\":\"[1][159]\"},{\"t\":\"μέλιτος\",\"h\":[[160],[221,223]],\"parent\":0,\"children\":160,\"pos\":\"[1][160]\"},{\"p\":\",\",\"parent\":0,\"children\":161,\"pos\":\"[1][161]\"}],[{\"t\":\"λυχνίδα\",\"h\":[[162],[229,230]],\"parent\":0,\"children\":162,\"pos\":\"[1][162]\"},{\"t\":\"τ᾽\",\"h\":[[163],[225]],\"parent\":0,\"children\":163,\"pos\":\"[1][163]\"},{\"t\":\"Εὐφορίωνος\",\"h\":[[164],[226,228]],\"parent\":0,\"children\":164,\"pos\":\"[1][164]\"},{\"p\":\",\",\"parent\":0,\"children\":165,\"pos\":\"[1][165]\"},{\"t\":\"ἰδ᾽\",\"h\":[[166],[]],\"parent\":0,\"children\":166,\"pos\":\"[1][166]\"},{\"t\":\"ἐν\",\"h\":[[167,168],[234,235,236]],\"parent\":0,\"children\":167,\"pos\":\"[1][167]\"},{\"t\":\"Μούσησιν\",\"h\":[[167,168],[234,235,236]],\"parent\":0,\"children\":168,\"pos\":\"[1][168]\"},{\"t\":\"ἄμωμον\",\"h\":[[169],[232,233]],\"parent\":0,\"children\":169,\"pos\":\"[1][169]\"},{\"p\":\",\",\"parent\":0,\"children\":170,\"pos\":\"[1][170]\"}],[{\"t\":\"ὃς\",\"h\":[[171],[238]],\"parent\":0,\"children\":171,\"pos\":\"[1][171]\"},{\"t\":\"Διὸς\",\"h\":[[172],[245,246]],\"parent\":0,\"children\":172,\"pos\":\"[1][172]\"},{\"t\":\"ἐκ\",\"h\":[[173,174],[242,243,244]],\"parent\":0,\"children\":173,\"pos\":\"[1][173]\"},{\"t\":\"κούρων\",\"h\":[[173,174],[242,243,244]],\"parent\":0,\"children\":174,\"pos\":\"[1][174]\"},{\"t\":\"ἔσχεν\",\"h\":[[175],[239]],\"parent\":0,\"children\":175,\"pos\":\"[1][175]\"},{\"t\":\"ἐπωνυμίην\",\"h\":[[176],[240,241]],\"parent\":0,\"children\":176,\"pos\":\"[1][176]\"},{\"p\":\".\",\"parent\":0,\"children\":177,\"pos\":\"[1][177]\"}],[{\"t\":\"Τῇσι\",\"h\":[[178],[250,251]],\"parent\":0,\"children\":178,\"pos\":\"[1][178]\"},{\"t\":\"δ᾽\",\"h\":[[179,180],[248]],\"parent\":0,\"children\":179,\"pos\":\"[1][179]\"},{\"t\":\"ἅμ᾽\",\"h\":[[179,180],[248]],\"parent\":0,\"children\":180,\"pos\":\"[1][180]\"},{\"t\":\"Ἡγησίππου\",\"h\":[[181],[252,253]],\"parent\":0,\"children\":181,\"pos\":\"[1][181]\"},{\"t\":\"νέπλεκε\",\"h\":[[182],[249]],\"parent\":0,\"children\":182,\"pos\":\"[1][182]\"},{\"t\":\"μαινάδα\",\"h\":[[183],[259]],\"parent\":0,\"children\":183,\"pos\":\"[1][183]\"},{\"t\":\"βότρυν\",\"h\":[[184],[254,255,256,258]],\"parent\":0,\"children\":184,\"pos\":\"[1][184]\"},{\"p\":\",\",\"parent\":0,\"children\":185,\"pos\":\"[1][185]\"}],[{\"t\":\"Πέρσου\",\"h\":[[186],[268,269]],\"parent\":0,\"children\":186,\"pos\":\"[1][186]\"},{\"t\":\"τ᾽\",\"h\":[[187],[264]],\"parent\":0,\"children\":187,\"pos\":\"[1][187]\"},{\"t\":\"εὐώδη\",\"h\":[[188],[267]],\"parent\":0,\"children\":188,\"pos\":\"[1][188]\"},{\"t\":\"σχοῖνον\",\"h\":[[189],[265,266]],\"parent\":0,\"children\":189,\"pos\":\"[1][189]\"},{\"t\":\"ἀμησάμενος\",\"h\":[[190],[261,262,263]],\"parent\":0,\"children\":190,\"pos\":\"[1][190]\"},{\"p\":\",\",\"parent\":0,\"children\":191,\"pos\":\"[1][191]\"}],[{\"t\":\"σὺν\",\"h\":[[192,193,194],[271]],\"parent\":0,\"children\":192,\"pos\":\"[1][192]\"},{\"t\":\"δ᾽\",\"h\":[[192,193,194],[271]],\"parent\":0,\"children\":193,\"pos\":\"[1][193]\"},{\"t\":\"ἅμα\",\"h\":[[192,193,194],[271]],\"parent\":0,\"children\":194,\"pos\":\"[1][194]\"},{\"t\":\"καὶ\",\"h\":[[195],[]],\"parent\":0,\"children\":195,\"pos\":\"[1][195]\"},{\"t\":\"γλυκὺμηλον\",\"h\":[[196],[272,273,274]],\"parent\":0,\"children\":196,\"pos\":\"[1][196]\"},{\"t\":\"ἀπ᾽\",\"h\":[[197,198],[277,278]],\"parent\":0,\"children\":197,\"pos\":\"[1][197]\"},{\"t\":\"ἀκρεμόνων\",\"h\":[[197,198],[277,278]],\"parent\":0,\"children\":198,\"pos\":\"[1][198]\"},{\"t\":\"Διοτίμου\",\"h\":[[199],[275,276]],\"parent\":0,\"children\":199,\"pos\":\"[1][199]\"},{\"p\":\",\",\"parent\":0,\"children\":200,\"pos\":\"[1][200]\"}],[{\"t\":\"καὶ\",\"h\":[[201],[279]],\"parent\":0,\"children\":201,\"pos\":\"[1][201]\"},{\"t\":\"ῥοιῆς\",\"h\":[[202],[283,284]],\"parent\":0,\"children\":202,\"pos\":\"[1][202]\"},{\"t\":\"ἄνθη\",\"h\":[[203],[282]],\"parent\":0,\"children\":203,\"pos\":\"[1][203]\"},{\"t\":\"πρῶτα\",\"h\":[[204],[280,281]],\"parent\":0,\"children\":204,\"pos\":\"[1][204]\"},{\"t\":\"Μενεκράτεος\",\"h\":[[205],[285,286]],\"parent\":0,\"children\":205,\"pos\":\"[1][205]\"},{\"p\":\",\",\"parent\":0,\"children\":206,\"pos\":\"[1][206]\"}],[{\"t\":\"μυρραίους\",\"h\":[[207],[289,290]],\"parent\":0,\"children\":207,\"pos\":\"[1][207]\"},{\"t\":\"τε\",\"h\":[[208],[]],\"parent\":0,\"children\":208,\"pos\":\"[1][208]\"},{\"t\":\"κλάδους\",\"h\":[[209],[288]],\"parent\":0,\"children\":209,\"pos\":\"[1][209]\"},{\"t\":\"Νικαινέτου\",\"h\":[[210],[291,292]],\"parent\":0,\"children\":210,\"pos\":\"[1][210]\"},{\"p\":\",\",\"parent\":0,\"children\":211,\"pos\":\"[1][211]\"},{\"t\":\"ἠδὲ\",\"h\":[[212],[]],\"parent\":0,\"children\":212,\"pos\":\"[1][212]\"},{\"t\":\"Φαέννου\",\"h\":[[213],[296,297]],\"parent\":0,\"children\":213,\"pos\":\"[1][213]\"}],[{\"t\":\"τέρμινθον\",\"h\":[[214],[294,295]],\"parent\":0,\"children\":214,\"pos\":\"[1][214]\"},{\"p\":\",\",\"parent\":0,\"children\":215,\"pos\":\"[1][215]\"},{\"t\":\"βλωθρὴν\",\"h\":[[216],[299,300]],\"parent\":0,\"children\":216,\"pos\":\"[1][216]\"},{\"t\":\"τ᾽\",\"h\":[[217],[298]],\"parent\":0,\"children\":217,\"pos\":\"[1][217]\"},{\"t\":\"ἀχράδα\",\"h\":[[218],[301]],\"parent\":0,\"children\":218,\"pos\":\"[1][218]\"},{\"t\":\"Σιμίεω\",\"h\":[[219],[302,303]],\"parent\":0,\"children\":219,\"pos\":\"[1][219]\"},{\"p\":\":\",\"parent\":0,\"children\":220,\"pos\":\"[1][220]\"}],[{\"t\":\"ἐν\",\"h\":[[221,222,223],[306]],\"parent\":0,\"children\":221,\"pos\":\"[1][221]\"},{\"t\":\"δὲ\",\"h\":[[221,222,223],[306]],\"parent\":0,\"children\":222,\"pos\":\"[1][222]\"},{\"t\":\"καὶ\",\"h\":[[221,222,223],[306]],\"parent\":0,\"children\":223,\"pos\":\"[1][223]\"},{\"t\":\"ἐκ\",\"h\":[[224],[307]],\"parent\":0,\"children\":224,\"pos\":\"[1][224]\"},{\"t\":\"λειμῶνος\",\"h\":[[225],[308]],\"parent\":0,\"children\":225,\"pos\":\"[1][225]\"},{\"t\":\"ἀμωμήτοιο\",\"h\":[[226],[309]],\"parent\":0,\"children\":226,\"pos\":\"[1][226]\"},{\"t\":\"σέλινα\",\"h\":[[227],[310,311,313,314]],\"parent\":0,\"children\":227,\"pos\":\"[1][227]\"},{\"p\":\",\",\"parent\":0,\"children\":228,\"pos\":\"[1][228]\"}],[{\"t\":\"βαιὰ\",\"h\":[[229],[310,311]],\"parent\":0,\"children\":229,\"pos\":\"[1][229]\"},{\"t\":\"διακνίζων\",\"h\":[[230],[305]],\"parent\":0,\"children\":230,\"pos\":\"[1][230]\"},{\"t\":\"ἄνθεα\",\"h\":[[231],[315,316]],\"parent\":0,\"children\":231,\"pos\":\"[1][231]\"},{\"p\":\",\",\"parent\":0,\"children\":232,\"pos\":\"[1][232]\"},{\"t\":\"Παρθενίδος\",\"h\":[[233],[317,318]],\"parent\":0,\"children\":233,\"pos\":\"[1][233]\"},{\"p\":\",\",\"parent\":0,\"children\":234,\"pos\":\"[1][234]\"}],[{\"t\":\"λείψανὰ\",\"h\":[[235],[328]],\"parent\":0,\"children\":235,\"pos\":\"[1][235]\"},{\"t\":\"τ᾽\",\"h\":[[236],[320]],\"parent\":0,\"children\":236,\"pos\":\"[1][236]\"},{\"t\":\"εὐκαρπεῦντα\",\"h\":[[237],[329]],\"parent\":0,\"children\":237,\"pos\":\"[1][237]\"},{\"t\":\"μελιστάκτων\",\"h\":[[238],[331]],\"parent\":0,\"children\":238,\"pos\":\"[1][238]\"},{\"t\":\"ἀπὸ\",\"h\":[[239,240],[330,332]],\"parent\":0,\"children\":239,\"pos\":\"[1][239]\"},{\"t\":\"Μουσέων\",\"h\":[[239,240],[330,332]],\"parent\":0,\"children\":240,\"pos\":\"[1][240]\"},{\"p\":\",\",\"parent\":0,\"children\":241,\"pos\":\"[1][241]\"}],[{\"t\":\"ξανθοὺς\",\"h\":[[242],[322]],\"parent\":0,\"children\":242,\"pos\":\"[1][242]\"},{\"t\":\"ἐκ\",\"h\":[[243,244],[323,324]],\"parent\":0,\"children\":243,\"pos\":\"[1][243]\"},{\"t\":\"καλάμης\",\"h\":[[243,244],[323,324]],\"parent\":0,\"children\":244,\"pos\":\"[1][244]\"},{\"t\":\"Βακχυλίδεω\",\"h\":[[245],[325,326]],\"parent\":0,\"children\":245,\"pos\":\"[1][245]\"},{\"t\":\"στάχυας\",\"h\":[[246],[321]],\"parent\":0,\"children\":246,\"pos\":\"[1][246]\"},{\"p\":\":\",\"parent\":0,\"children\":247,\"pos\":\"[1][247]\"}],[{\"t\":\"ἐν\",\"h\":[[248,249,250],[334,335]],\"parent\":0,\"children\":248,\"pos\":\"[1][248]\"},{\"t\":\"δ᾽\",\"h\":[[248,249,250],[334,335]],\"parent\":0,\"children\":249,\"pos\":\"[1][249]\"},{\"t\":\"ἄρ᾽\",\"h\":[[248,249,250],[334,335]],\"parent\":0,\"children\":250,\"pos\":\"[1][250]\"},{\"t\":\"Ἀνακρείοντα\",\"h\":[[251],[336,337]],\"parent\":0,\"children\":251,\"pos\":\"[1][251]\"},{\"p\":\",\",\"parent\":0,\"children\":252,\"pos\":\"[1][252]\"},{\"t\":\"τὸ\",\"h\":[[253,256],[339,340]],\"parent\":0,\"children\":253,\"pos\":\"[1][253]\"},{\"t\":\"μὲν\",\"h\":[[254],[]],\"parent\":0,\"children\":254,\"pos\":\"[1][254]\"},{\"t\":\"γλυκὺ\",\"h\":[[255],[341]],\"parent\":0,\"children\":255,\"pos\":\"[1][255]\"},{\"t\":\"κεῖνο\",\"h\":[[253,256],[339,340]],\"parent\":0,\"children\":256,\"pos\":\"[1][256]\"},{\"t\":\"μέλισμα\",\"h\":[[257],[342]],\"parent\":0,\"children\":257,\"pos\":\"[1][257]\"}],[{\"t\":\"νέκταρος\",\"h\":[[258],[344,345]],\"parent\":0,\"children\":258,\"pos\":\"[1][258]\"},{\"p\":\",\",\"parent\":0,\"children\":259,\"pos\":\"[1][259]\"},{\"t\":\"ἐν\",\"h\":[[260],[]],\"parent\":0,\"children\":260,\"pos\":\"[1][260]\"},{\"t\":\"δ᾽\",\"h\":[[261],[]],\"parent\":0,\"children\":261,\"pos\":\"[1][261]\"},{\"t\":\"ἐλέγους\",\"h\":[[262],[349,350]],\"parent\":0,\"children\":262,\"pos\":\"[1][262]\"},{\"t\":\"ἄσπορον\",\"h\":[[263],[348]],\"parent\":0,\"children\":263,\"pos\":\"[1][263]\"},{\"t\":\"ἀνθέμιον\",\"h\":[[264],[347]],\"parent\":0,\"children\":264,\"pos\":\"[1][264]\"},{\"p\":\":\",\"parent\":0,\"children\":265,\"pos\":\"[1][265]\"}],[{\"t\":\"ἐν\",\"h\":[[266,267,268],[351]],\"parent\":0,\"children\":266,\"pos\":\"[1][266]\"},{\"t\":\"δὲ\",\"h\":[[266,267,268],[351]],\"parent\":0,\"children\":267,\"pos\":\"[1][267]\"},{\"t\":\"καὶ\",\"h\":[[266,267,268],[351]],\"parent\":0,\"children\":268,\"pos\":\"[1][268]\"},{\"t\":\"ἐκ\",\"h\":[[269],[356,364,365]],\"parent\":0,\"children\":269,\"pos\":\"[1][269]\"},{\"t\":\"φορβῆς\",\"h\":[[270],[358]],\"parent\":0,\"children\":270,\"pos\":\"[1][270]\"},{\"t\":\"σκολιότριχος\",\"h\":[[269,271],[356,357]],\"parent\":0,\"children\":271,\"pos\":\"[1][271]\"},{\"t\":\"ἄνθος\",\"h\":[[272],[352]],\"parent\":0,\"children\":272,\"pos\":\"[1][272]\"},{\"t\":\"ἀκάνθης\",\"h\":[[273],[353,355]],\"parent\":0,\"children\":273,\"pos\":\"[1][273]\"}],[{\"t\":\"Ἀρχιλόχου\",\"h\":[[274],[360,361,363,364,365]],\"parent\":0,\"children\":274,\"pos\":\"[1][274]\"},{\"t\":\"μικρὰς\",\"h\":[[275],[368]],\"parent\":0,\"children\":275,\"pos\":\"[1][275]\"},{\"t\":\"στράγγας\",\"h\":[[276],[369]],\"parent\":0,\"children\":276,\"pos\":\"[1][276]\"},{\"t\":\"ἀπ᾽\",\"h\":[[277,278],[370,372]],\"parent\":0,\"children\":277,\"pos\":\"[1][277]\"},{\"t\":\"ὠκεανοῦ\",\"h\":[[277,278],[370,372]],\"parent\":0,\"children\":278,\"pos\":\"[1][278]\"}],[{\"t\":\"τοῖς\",\"h\":[[279,280,281],[374]],\"parent\":0,\"children\":279,\"pos\":\"[1][279]\"},{\"t\":\"δ᾽\",\"h\":[[279,280,281],[374]],\"parent\":0,\"children\":280,\"pos\":\"[1][280]\"},{\"t\":\"ἅμ᾽\",\"h\":[[279,280,281],[374]],\"parent\":0,\"children\":281,\"pos\":\"[1][281]\"},{\"t\":\"Ἀλεξάνδροιο\",\"h\":[[282],[374,375,376]],\"parent\":0,\"children\":282,\"pos\":\"[1][282]\"},{\"t\":\"νέους\",\"h\":[[283],[377]],\"parent\":0,\"children\":283,\"pos\":\"[1][283]\"},{\"t\":\"ὄρπηκας\",\"h\":[[284],[378]],\"parent\":0,\"children\":284,\"pos\":\"[1][284]\"},{\"t\":\"ἐλαίης\",\"h\":[[285],[379,381]],\"parent\":0,\"children\":285,\"pos\":\"[1][285]\"}],[{\"t\":\"ἠδὲ\",\"h\":[[286],[]],\"parent\":0,\"children\":286,\"pos\":\"[1][286]\"},{\"t\":\"Πολυκλείτου\",\"h\":[[287],[384,385]],\"parent\":0,\"children\":287,\"pos\":\"[1][287]\"},{\"t\":\"πορφυρέ\",\"h\":[[288,289],[388,389]],\"parent\":0,\"children\":288,\"pos\":\"[1][288]\"},{\"t\":\"oν\",\"h\":[[288,289],[388,389]],\"parent\":0,\"children\":289,\"pos\":\"[1][289]\"},{\"t\":\"κύα\",\"h\":[[290,291],[386,387]],\"parent\":0,\"children\":290,\"pos\":\"[1][290]\"},{\"t\":\"mον\",\"h\":[[290,291],[386,387]],\"parent\":0,\"children\":291,\"pos\":\"[1][291]\"},{\"p\":\".\",\"parent\":0,\"children\":292,\"pos\":\"[1][292]\"}],[{\"t\":\"ἐν\",\"h\":[[293,294,295],[394]],\"parent\":0,\"children\":293,\"pos\":\"[1][293]\"},{\"t\":\"δ᾽\",\"h\":[[293,294,295],[394]],\"parent\":0,\"children\":294,\"pos\":\"[1][294]\"},{\"t\":\"ἄρ᾽\",\"h\":[[293,294,295],[394]],\"parent\":0,\"children\":295,\"pos\":\"[1][295]\"},{\"t\":\"ἀμάρακον\",\"h\":[[296],[397,398]],\"parent\":0,\"children\":296,\"pos\":\"[1][296]\"},{\"t\":\"ἧκε\",\"h\":[[297],[396]],\"parent\":0,\"children\":297,\"pos\":\"[1][297]\"},{\"t\":\"Πολ\",\"h\":[[298,299],[391,392]],\"parent\":0,\"children\":298,\"pos\":\"[1][298]\"},{\"t\":\"uστραvτοu\",\"h\":[[298,299],[391,392]],\"parent\":0,\"children\":299,\"pos\":\"[1][299]\"},{\"p\":\",\",\"parent\":0,\"children\":300,\"pos\":\"[1][300]\"},{\"t\":\"ἄνθος\",\"h\":[[301],[400]],\"parent\":0,\"children\":301,\"pos\":\"[1][301]\"},{\"t\":\"ἀοιδῶν\",\"h\":[[302],[401]],\"parent\":0,\"children\":302,\"pos\":\"[1][302]\"},{\"p\":\",\",\"parent\":0,\"children\":303,\"pos\":\"[1][303]\"}],[{\"t\":\"φοίνισσάν\",\"h\":[[304],[409]],\"parent\":0,\"children\":304,\"pos\":\"[1][304]\"},{\"t\":\"τε\",\"h\":[[305],[403]],\"parent\":0,\"children\":305,\"pos\":\"[1][305]\"},{\"t\":\"νέην\",\"h\":[[306],[407]],\"parent\":0,\"children\":306,\"pos\":\"[1][306]\"},{\"t\":\"κύπρον\",\"h\":[[307],[406,408]],\"parent\":0,\"children\":307,\"pos\":\"[1][307]\"},{\"t\":\"ἀπ᾽\",\"h\":[[308,309],[404,405]],\"parent\":0,\"children\":308,\"pos\":\"[1][308]\"},{\"t\":\"Ἀντιπάτρου\",\"h\":[[308,309],[404,405]],\"parent\":0,\"children\":309,\"pos\":\"[1][309]\"},{\"p\":\":\",\"parent\":0,\"children\":310,\"pos\":\"[1][310]\"}],[{\"t\":\"ναὶ\",\"h\":[[311,312,313],[411,413]],\"parent\":0,\"children\":311,\"pos\":\"[1][311]\"},{\"t\":\"μὴν\",\"h\":[[311,312,313],[411,413]],\"parent\":0,\"children\":312,\"pos\":\"[1][312]\"},{\"t\":\"καὶ\",\"h\":[[311,312,313],[411,413]],\"parent\":0,\"children\":313,\"pos\":\"[1][313]\"},{\"t\":\"Συρίαν\",\"h\":[[314],[416,417]],\"parent\":0,\"children\":314,\"pos\":\"[1][314]\"},{\"t\":\"σταχυότριχα\",\"h\":[[315],[418,419,420]],\"parent\":0,\"children\":315,\"pos\":\"[1][315]\"},{\"t\":\"θήκατο\",\"h\":[[316],[412]],\"parent\":0,\"children\":316,\"pos\":\"[1][316]\"},{\"t\":\"νάρδον\",\"h\":[[317],[414,415]],\"parent\":0,\"children\":317,\"pos\":\"[1][317]\"}],[{\"t\":\"ὑμνοθέταν\",\"h\":[[318],[422,423]],\"parent\":0,\"children\":318,\"pos\":\"[1][318]\"},{\"t\":\"Ἑρμοῦ\",\"h\":[[319],[427,428]],\"parent\":0,\"children\":319,\"pos\":\"[1][319]\"},{\"t\":\"δῶρον\",\"h\":[[320],[426]],\"parent\":0,\"children\":320,\"pos\":\"[1][320]\"},{\"t\":\"ἀειδόμενον\",\"h\":[[321],[425]],\"parent\":0,\"children\":321,\"pos\":\"[1][321]\"},{\"p\":\".\",\"parent\":0,\"children\":322,\"pos\":\"[1][322]\"}],[{\"t\":\"Eν\",\"h\":[[323],[]],\"parent\":0,\"children\":323,\"pos\":\"[1][323]\"},{\"t\":\"δὲ\",\"h\":[[324],[]],\"parent\":0,\"children\":324,\"pos\":\"[1][324]\"},{\"t\":\"Ποσείδιππόν\",\"h\":[[325],[433]],\"parent\":0,\"children\":325,\"pos\":\"[1][325]\"},{\"t\":\"τε\",\"h\":[[326],[432]],\"parent\":0,\"children\":326,\"pos\":\"[1][326]\"},{\"t\":\"καὶ\",\"h\":[[327],[432]],\"parent\":0,\"children\":327,\"pos\":\"[1][327]\"},{\"t\":\"Ἡδύλον\",\"h\":[[328],[430,431]],\"parent\":0,\"children\":328,\"pos\":\"[1][328]\"},{\"t\":\"ἄγρι᾽\",\"h\":[[329],[435,437]],\"parent\":0,\"children\":329,\"pos\":\"[1][329]\"},{\"t\":\"ἀρούρης\",\"h\":[[330],[438,439]],\"parent\":0,\"children\":330,\"pos\":\"[1][330]\"},{\"p\":\",\",\"parent\":0,\"children\":331,\"pos\":\"[1][331]\"}],[{\"t\":\"Σικελίδεὼ\",\"h\":[[332],[445,446]],\"parent\":0,\"children\":332,\"pos\":\"[1][332]\"},{\"t\":\"τ᾽\",\"h\":[[333],[]],\"parent\":0,\"children\":333,\"pos\":\"[1][333]\"},{\"t\":\"ἀνέμοις\",\"h\":[[334],[443,444]],\"parent\":0,\"children\":334,\"pos\":\"[1][334]\"},{\"t\":\"ἄνθεα\",\"h\":[[335],[441]],\"parent\":0,\"children\":335,\"pos\":\"[1][335]\"},{\"t\":\"φυόμενα\",\"h\":[[336],[442]],\"parent\":0,\"children\":336,\"pos\":\"[1][336]\"},{\"p\":\":\",\"parent\":0,\"children\":337,\"pos\":\"[1][337]\"}],[{\"t\":\"ναὶ\",\"h\":[[338,339,340],[448,449]],\"parent\":0,\"children\":338,\"pos\":\"[1][338]\"},{\"t\":\"μὴν\",\"h\":[[338,339,340],[448,449]],\"parent\":0,\"children\":339,\"pos\":\"[1][339]\"},{\"t\":\"καὶ\",\"h\":[[338,339,340],[448,449]],\"parent\":0,\"children\":340,\"pos\":\"[1][340]\"},{\"t\":\"χρύσειον\",\"h\":[[341],[457]],\"parent\":0,\"children\":341,\"pos\":\"[1][341]\"},{\"t\":\"ἀεὶ\",\"h\":[[342],[451]],\"parent\":0,\"children\":342,\"pos\":\"[1][342]\"},{\"t\":\"θείοιο\",\"h\":[[343],[452]],\"parent\":0,\"children\":343,\"pos\":\"[1][343]\"},{\"t\":\"Πλάτωνος\",\"h\":[[344],[450,453]],\"parent\":0,\"children\":344,\"pos\":\"[1][344]\"}],[{\"t\":\"κλῶνα\",\"h\":[[345,347],[455,456]],\"parent\":0,\"children\":345,\"pos\":\"[1][345]\"},{\"p\":\",\",\"parent\":0,\"children\":346,\"pos\":\"[1][346]\"},{\"t\":\"τὸν\",\"h\":[[345,347],[455,456]],\"parent\":0,\"children\":347,\"pos\":\"[1][347]\"},{\"t\":\"ἐξ\",\"h\":[[348,349,350],[460,461]],\"parent\":0,\"children\":348,\"pos\":\"[1][348]\"},{\"t\":\"ἀρετῆς\",\"h\":[[348,349,350],[460,461]],\"parent\":0,\"children\":349,\"pos\":\"[1][349]\"},{\"t\":\"πάντοθι\",\"h\":[[348,349,350],[460,461]],\"parent\":0,\"children\":350,\"pos\":\"[1][350]\"},{\"t\":\"λαμπόμενον\",\"h\":[[351],[458,459]],\"parent\":0,\"children\":351,\"pos\":\"[1][351]\"},{\"p\":\".\",\"parent\":0,\"children\":352,\"pos\":\"[1][352]\"}],[{\"t\":\"Ἄστρων\",\"h\":[[353],[470,471]],\"parent\":0,\"children\":353,\"pos\":\"[1][353]\"},{\"t\":\"τ᾽\",\"h\":[[354],[466]],\"parent\":0,\"children\":354,\"pos\":\"[1][354]\"},{\"t\":\"ἴδριν\",\"h\":[[355],[469]],\"parent\":0,\"children\":355,\"pos\":\"[1][355]\"},{\"t\":\"Ἄρατον\",\"h\":[[356],[467]],\"parent\":0,\"children\":356,\"pos\":\"[1][356]\"},{\"t\":\"ὁμοῦ\",\"h\":[[357],[463]],\"parent\":0,\"children\":357,\"pos\":\"[1][357]\"},{\"t\":\"βάλεν\",\"h\":[[358],[465]],\"parent\":0,\"children\":358,\"pos\":\"[1][358]\"},{\"p\":\",\",\"parent\":0,\"children\":359,\"pos\":\"[1][359]\"},{\"t\":\"οὐρανομάκευς\",\"h\":[[360],[481]],\"parent\":0,\"children\":360,\"pos\":\"[1][360]\"}],[{\"t\":\"φοίνικος\",\"h\":[[361],[478,479,480]],\"parent\":0,\"children\":361,\"pos\":\"[1][361]\"},{\"t\":\"κείρας\",\"h\":[[362],[473]],\"parent\":0,\"children\":362,\"pos\":\"[1][362]\"},{\"t\":\"πρωτογόνους\",\"h\":[[363],[476,477]],\"parent\":0,\"children\":363,\"pos\":\"[1][363]\"},{\"t\":\"ἕλικας\",\"h\":[[364],[474,475]],\"parent\":0,\"children\":364,\"pos\":\"[1][364]\"},{\"p\":\",\",\"parent\":0,\"children\":365,\"pos\":\"[1][365]\"}],[{\"t\":\"λωτὸν\",\"h\":[[366],[488]],\"parent\":0,\"children\":366,\"pos\":\"[1][366]\"},{\"t\":\"τ᾽\",\"h\":[[367],[483,485]],\"parent\":0,\"children\":367,\"pos\":\"[1][367]\"},{\"t\":\"εὐχαίτην\",\"h\":[[368],[486,487]],\"parent\":0,\"children\":368,\"pos\":\"[1][368]\"},{\"t\":\"Χαιρήμονος\",\"h\":[[369],[489,490]],\"parent\":0,\"children\":369,\"pos\":\"[1][369]\"},{\"p\":\",\",\"parent\":0,\"children\":370,\"pos\":\"[1][370]\"},{\"t\":\"ἐν\",\"h\":[[371,372],[497,498]],\"parent\":0,\"children\":371,\"pos\":\"[1][371]\"},{\"t\":\"φλογὶ\",\"h\":[[371,372],[497,498]],\"parent\":0,\"children\":372,\"pos\":\"[1][372]\"},{\"t\":\"μίξας\",\"h\":[[373],[492,493,494,496]],\"parent\":0,\"children\":373,\"pos\":\"[1][373]\"}],[{\"t\":\"Φαιδίμου\",\"h\":[[374],[499,500]],\"parent\":0,\"children\":374,\"pos\":\"[1][374]\"},{\"p\":\",\",\"parent\":0,\"children\":375,\"pos\":\"[1][375]\"},{\"t\":\"Ἀνταγόρου\",\"h\":[[376],[507,508]],\"parent\":0,\"children\":376,\"pos\":\"[1][376]\"},{\"t\":\"τ᾽\",\"h\":[[377],[]],\"parent\":0,\"children\":377,\"pos\":\"[1][377]\"},{\"t\":\"εὔστροφον\",\"h\":[[378],[504]],\"parent\":0,\"children\":378,\"pos\":\"[1][378]\"},{\"t\":\"ὄμμα\",\"h\":[[379],[501,503]],\"parent\":0,\"children\":379,\"pos\":\"[1][379]\"},{\"t\":\"βοός\",\"h\":[[380],[505,506]],\"parent\":0,\"children\":380,\"pos\":\"[1][380]\"},{\"p\":\",\",\"parent\":0,\"children\":381,\"pos\":\"[1][381]\"}],[{\"t\":\"τάν\",\"h\":[[382],[510]],\"parent\":0,\"children\":382,\"pos\":\"[1][382]\"},{\"t\":\"τε\",\"h\":[[383],[]],\"parent\":0,\"children\":383,\"pos\":\"[1][383]\"},{\"t\":\"φιλάκρητον\",\"h\":[[384],[513,514,515]],\"parent\":0,\"children\":384,\"pos\":\"[1][384]\"},{\"t\":\"Θεοδωρίδεω\",\"h\":[[385],[516,517]],\"parent\":0,\"children\":385,\"pos\":\"[1][385]\"},{\"t\":\"νεοθαλῆ\",\"h\":[[386],[511]],\"parent\":0,\"children\":386,\"pos\":\"[1][386]\"}],[{\"t\":\"ἕρπυλλον\",\"h\":[[387],[512]],\"parent\":0,\"children\":387,\"pos\":\"[1][387]\"},{\"p\":\",\",\"parent\":0,\"children\":388,\"pos\":\"[1][388]\"},{\"t\":\"κυάνων\",\"h\":[[389],[521,522]],\"parent\":0,\"children\":389,\"pos\":\"[1][389]\"},{\"t\":\"τ᾽\",\"h\":[[390],[]],\"parent\":0,\"children\":390,\"pos\":\"[1][390]\"},{\"t\":\"ἄνθεα\",\"h\":[[391],[519,520]],\"parent\":0,\"children\":391,\"pos\":\"[1][391]\"},{\"t\":\"Φανίεω\",\"h\":[[392],[523,524]],\"parent\":0,\"children\":392,\"pos\":\"[1][392]\"},{\"p\":\",\",\"parent\":0,\"children\":393,\"pos\":\"[1][393]\"}],[{\"t\":\"ἄλλων\",\"h\":[[394],[531,532,533]],\"parent\":0,\"children\":394,\"pos\":\"[1][394]\"},{\"t\":\"τ᾽\",\"h\":[[395],[526]],\"parent\":0,\"children\":395,\"pos\":\"[1][395]\"},{\"t\":\"ἔρνεα\",\"h\":[[396],[528]],\"parent\":0,\"children\":396,\"pos\":\"[1][396]\"},{\"t\":\"πολλὰ\",\"h\":[[397],[527]],\"parent\":0,\"children\":397,\"pos\":\"[1][397]\"},{\"t\":\"νεόγραφα\",\"h\":[[398],[529,530]],\"parent\":0,\"children\":398,\"pos\":\"[1][398]\"},{\"p\":\":\",\"parent\":0,\"children\":399,\"pos\":\"[1][399]\"},{\"t\":\"τοῖς\",\"h\":[[400],[535,536]],\"parent\":0,\"children\":400,\"pos\":\"[1][400]\"},{\"t\":\"δ᾽\",\"h\":[[401,402],[538]],\"parent\":0,\"children\":401,\"pos\":\"[1][401]\"},{\"t\":\"ἅμα\",\"h\":[[401,402],[538]],\"parent\":0,\"children\":402,\"pos\":\"[1][402]\"},{\"t\":\"Μούσης\",\"h\":[[403],[549,551]],\"parent\":0,\"children\":403,\"pos\":\"[1][403]\"}],[{\"t\":\"καὶ\",\"h\":[[404],[]],\"parent\":0,\"children\":404,\"pos\":\"[1][404]\"},{\"t\":\"σφετέρης\",\"h\":[[405],[550]],\"parent\":0,\"children\":405,\"pos\":\"[1][405]\"},{\"t\":\"ἔτι\",\"h\":[[406,407],[542,543,544]],\"parent\":0,\"children\":406,\"pos\":\"[1][406]\"},{\"t\":\"που\",\"h\":[[406,407],[542,543,544]],\"parent\":0,\"children\":407,\"pos\":\"[1][407]\"},{\"t\":\"πρώιμα\",\"h\":[[408],[547,548]],\"parent\":0,\"children\":408,\"pos\":\"[1][408]\"},{\"t\":\"λευκόια\",\"h\":[[409],[546]],\"parent\":0,\"children\":409,\"pos\":\"[1][409]\"},{\"p\":\".\",\"parent\":0,\"children\":410,\"pos\":\"[1][410]\"}],[{\"t\":\"Ἀλλὰ\",\"h\":[[411],[558]],\"parent\":0,\"children\":411,\"pos\":\"[1][411]\"},{\"t\":\"φίλοις\",\"h\":[[412],[556]],\"parent\":0,\"children\":412,\"pos\":\"[1][412]\"},{\"t\":\"μὲν\",\"h\":[[413],[]],\"parent\":0,\"children\":413,\"pos\":\"[1][413]\"},{\"t\":\"ἐμοῖσι\",\"h\":[[414],[554,555]],\"parent\":0,\"children\":414,\"pos\":\"[1][414]\"},{\"t\":\"φέρω\",\"h\":[[415,416],[553]],\"parent\":0,\"children\":415,\"pos\":\"[1][415]\"},{\"t\":\"χάριν\",\"h\":[[415,416],[553]],\"parent\":0,\"children\":416,\"pos\":\"[1][416]\"},{\"p\":\":\",\"parent\":0,\"children\":417,\"pos\":\"[1][417]\"},{\"t\":\"ἔστι\",\"h\":[[418,421],[565,566,567]],\"parent\":0,\"children\":418,\"pos\":\"[1][418]\"},{\"t\":\"δὲ\",\"h\":[[419],[]],\"parent\":0,\"children\":419,\"pos\":\"[1][419]\"},{\"t\":\"μύσταις\",\"h\":[[420],[568,569]],\"parent\":0,\"children\":420,\"pos\":\"[1][420]\"}],[{\"t\":\"κοινὸς\",\"h\":[[418,421],[565,566,567]],\"parent\":0,\"children\":421,\"pos\":\"[1][421]\"},{\"t\":\"ὁ\",\"h\":[[422,426],[559,561]],\"parent\":0,\"children\":422,\"pos\":\"[1][422]\"},{\"t\":\"τῶν\",\"h\":[[423,424],[562,563]],\"parent\":0,\"children\":423,\"pos\":\"[1][423]\"},{\"t\":\"Μουσέων\",\"h\":[[423,424],[562,563]],\"parent\":0,\"children\":424,\"pos\":\"[1][424]\"},{\"t\":\"ἡδυεπὴς\",\"h\":[[425],[560]],\"parent\":0,\"children\":425,\"pos\":\"[1][425]\"},{\"t\":\"στέφανος\",\"h\":[[422,426],[559,561]],\"parent\":0,\"children\":426,\"pos\":\"[1][426]\"},{\"p\":\".\",\"parent\":0,\"children\":427,\"pos\":\"[1][427]\"}],[]],[[{\"t\":\"Musa\",\"h\":[[1],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"amata\",\"h\":[[2],[2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"p\":\",\",\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"a\",\"h\":[[4],[4,5]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"chi\",\"h\":[[4],[4,5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"porti\",\"h\":[[6],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"questo\",\"h\":[[5],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"canto\",\"h\":[[8],[8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"di\",\"h\":[[7],[9,10]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"frutti\",\"h\":[[7],[9,10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"p\":\"?\",\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"}],[{\"t\":\"Chi\",\"h\":[[12,14],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"intrecciò\",\"h\":[[16],[13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"questa\",\"h\":[[16],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"corona\",\"h\":[[18],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"di\",\"h\":[[10],[16,17]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"poeti\",\"h\":[[10],[16,17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\"?\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"}],[{\"t\":\"La\",\"h\":[[109],[19,20]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"realizzò\",\"h\":[[109],[19,20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"Meleagro\",\"h\":[[24],[21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"p\":\":\",\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"compose\",\"h\":[[26],[23]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"questo\",\"h\":[[28],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"dono\",\"h\":[[25],[25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"come\",\"h\":[[30],[26,27]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"}],[{\"t\":\"ricordo\",\"h\":[[30],[26,27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"per\",\"h\":[[22],[28,31]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"il\",\"h\":[[27],[29,30]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"celebre\",\"h\":[[27],[29,30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"Diocle\",\"h\":[[22],[28,31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"p\":\";\",\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"}],[{\"t\":\"unì\",\"h\":[[33],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"tanti\",\"h\":[[32],[34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"gigli\",\"h\":[[36],[35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"di\",\"h\":[[34],[36,37]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"Anite\",\"h\":[[34],[36,37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"p\":\",\",\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"tanti\",\"h\":[[38],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"narcisi\",\"h\":[[41],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"di\",\"h\":[[39],[41,42]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"Mero\",\"h\":[[39],[41,42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"}],[{\"t\":\"e\",\"h\":[[43],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"pochi\",\"h\":[[46],[44,45]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"fiori\",\"h\":[[46],[44,45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"di\",\"h\":[[43],[46,47]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"Saffo\",\"h\":[[43],[46,47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"p\":\",\",\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"ma\",\"h\":[[47],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"erano\",\"h\":[[],[50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"rose\",\"h\":[[49],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"p\":\";\",\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"}],[{\"t\":\"un\",\"h\":[[52],[53,54]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"narciso\",\"h\":[[52],[53,54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"di\",\"h\":[[53],[55,56]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"Melanippide\",\"h\":[[53],[55,56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"p\":\",\",\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"pieno\",\"h\":[[59],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"di\",\"h\":[[51],[59,60]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"canti\",\"h\":[[51],[59,60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"acuti\",\"h\":[[56],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"p\":\",\",\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"}],[{\"t\":\"e\",\"h\":[[59],[63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"un\",\"h\":[[57],[64,65]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"ramo\",\"h\":[[57],[64,65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"giovane\",\"h\":[[58],[66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"della\",\"h\":[[60],[67,68,69,70]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"t\":\"infiorescenza\",\"h\":[[60],[67,68,69,70]],\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"},{\"t\":\"della\",\"h\":[[60],[67,68,69,70]],\"parent\":1,\"children\":69,\"pos\":\"[2][69]\"},{\"t\":\"vite\",\"h\":[[60],[67,68,69,70]],\"parent\":1,\"children\":70,\"pos\":\"[2][70]\"},{\"t\":\"di\",\"h\":[[65],[71,72]],\"parent\":1,\"children\":71,\"pos\":\"[2][71]\"},{\"t\":\"Simonide\",\"h\":[[65],[71,72]],\"parent\":1,\"children\":72,\"pos\":\"[2][72]\"},{\"p\":\";\",\"parent\":1,\"children\":73,\"pos\":\"[2][73]\"}],[{\"t\":\"intrecciò\",\"h\":[[62,63],[74]],\"parent\":1,\"children\":74,\"pos\":\"[2][74]\"},{\"t\":\"contemporaneamente\",\"h\":[[66],[75]],\"parent\":1,\"children\":75,\"pos\":\"[2][75]\"},{\"t\":\"in\",\"h\":[[67],[76,77,78]],\"parent\":1,\"children\":76,\"pos\":\"[2][76]\"},{\"t\":\"modo\",\"h\":[[67],[76,77,78]],\"parent\":1,\"children\":77,\"pos\":\"[2][77]\"},{\"t\":\"confuso\",\"h\":[[67],[76,77,78]],\"parent\":1,\"children\":78,\"pos\":\"[2][78]\"},{\"t\":\"l\",\"h\":[[64],[79,81]],\"parent\":1,\"children\":79,\"pos\":\"[2][79]\"},{\"p\":\"’\",\"parent\":1,\"children\":80,\"pos\":\"[2][80]\"},{\"t\":\"iris\",\"h\":[[64],[79,81]],\"parent\":1,\"children\":81,\"pos\":\"[2][81]\"},{\"t\":\"dal\",\"h\":[[75],[82,83]],\"parent\":1,\"children\":82,\"pos\":\"[2][82]\"},{\"t\":\"fiore\",\"h\":[[75],[82,83]],\"parent\":1,\"children\":83,\"pos\":\"[2][83]\"},{\"t\":\"profumato\",\"h\":[[69],[84]],\"parent\":1,\"children\":84,\"pos\":\"[2][84]\"}],[{\"t\":\"di\",\"h\":[[68],[85,86]],\"parent\":1,\"children\":85,\"pos\":\"[2][85]\"},{\"t\":\"Nosside\",\"h\":[[68],[85,86]],\"parent\":1,\"children\":86,\"pos\":\"[2][86]\"},{\"p\":\",\",\"parent\":1,\"children\":87,\"pos\":\"[2][87]\"},{\"t\":\"sulle\",\"h\":[[74],[88,89]],\"parent\":1,\"children\":88,\"pos\":\"[2][88]\"},{\"t\":\"cui\",\"h\":[[74],[88,89]],\"parent\":1,\"children\":89,\"pos\":\"[2][89]\"},{\"t\":\"tavolette\",\"h\":[[71],[90]],\"parent\":1,\"children\":90,\"pos\":\"[2][90]\"},{\"t\":\"Amore\",\"h\":[[72],[91]],\"parent\":1,\"children\":91,\"pos\":\"[2][91]\"},{\"t\":\"sciolse\",\"h\":[[73],[92]],\"parent\":1,\"children\":92,\"pos\":\"[2][92]\"},{\"t\":\"la\",\"h\":[[78,79],[93,94]],\"parent\":1,\"children\":93,\"pos\":\"[2][93]\"},{\"t\":\"cera\",\"h\":[[78,79],[93,94]],\"parent\":1,\"children\":94,\"pos\":\"[2][94]\"},{\"p\":\";\",\"parent\":1,\"children\":95,\"pos\":\"[2][95]\"}],[{\"t\":\"insieme\",\"h\":[[77],[96]],\"parent\":1,\"children\":96,\"pos\":\"[2][96]\"},{\"t\":\"a\",\"h\":[[84],[97,98]],\"parent\":1,\"children\":97,\"pos\":\"[2][97]\"},{\"t\":\"lei\",\"h\":[[84],[97,98]],\"parent\":1,\"children\":98,\"pos\":\"[2][98]\"},{\"t\":\"la\",\"h\":[[82],[99,100]],\"parent\":1,\"children\":99,\"pos\":\"[2][99]\"},{\"t\":\"maggiorana\",\"h\":[[82],[99,100]],\"parent\":1,\"children\":100,\"pos\":\"[2][100]\"},{\"t\":\"lontana\",\"h\":[[84],[101,102]],\"parent\":1,\"children\":101,\"pos\":\"[2][101]\"},{\"t\":\"dal\",\"h\":[[84],[101,102]],\"parent\":1,\"children\":102,\"pos\":\"[2][102]\"},{\"t\":\"dolce\",\"h\":[[86],[103]],\"parent\":1,\"children\":103,\"pos\":\"[2][103]\"},{\"t\":\"Riano\",\"h\":[[83],[104]],\"parent\":1,\"children\":104,\"pos\":\"[2][104]\"},{\"p\":\",\",\"parent\":1,\"children\":105,\"pos\":\"[2][105]\"}],[{\"t\":\"e\",\"h\":[[87],[106]],\"parent\":1,\"children\":106,\"pos\":\"[2][106]\"},{\"t\":\"il\",\"h\":[[89],[107,109]],\"parent\":1,\"children\":107,\"pos\":\"[2][107]\"},{\"t\":\"dolce\",\"h\":[[88],[108]],\"parent\":1,\"children\":108,\"pos\":\"[2][108]\"},{\"t\":\"zafferano\",\"h\":[[89],[107,109]],\"parent\":1,\"children\":109,\"pos\":\"[2][109]\"},{\"t\":\"dal\",\"h\":[[93],[110,111,112]],\"parent\":1,\"children\":110,\"pos\":\"[2][110]\"},{\"t\":\"colore\",\"h\":[[93],[110,111,112]],\"parent\":1,\"children\":111,\"pos\":\"[2][111]\"},{\"t\":\"verginale\",\"h\":[[93],[110,111,112]],\"parent\":1,\"children\":112,\"pos\":\"[2][112]\"},{\"t\":\"d\",\"h\":[[90],[113,115]],\"parent\":1,\"children\":113,\"pos\":\"[2][113]\"},{\"p\":\"’\",\"parent\":1,\"children\":114,\"pos\":\"[2][114]\"},{\"t\":\"Erinna\",\"h\":[[90],[113,115]],\"parent\":1,\"children\":115,\"pos\":\"[2][115]\"},{\"p\":\",\",\"parent\":1,\"children\":116,\"pos\":\"[2][116]\"}],[{\"t\":\"e\",\"h\":[[97],[117]],\"parent\":1,\"children\":117,\"pos\":\"[2][117]\"},{\"t\":\"il\",\"h\":[[92],[118,119]],\"parent\":1,\"children\":118,\"pos\":\"[2][118]\"},{\"t\":\"giacinto\",\"h\":[[92],[118,119]],\"parent\":1,\"children\":119,\"pos\":\"[2][119]\"},{\"t\":\"d\",\"h\":[[94],[120,122]],\"parent\":1,\"children\":120,\"pos\":\"[2][120]\"},{\"p\":\"’\",\"parent\":1,\"children\":121,\"pos\":\"[2][121]\"},{\"t\":\"Alceo\",\"h\":[[94],[120,122]],\"parent\":1,\"children\":122,\"pos\":\"[2][122]\"},{\"t\":\"rinomato\",\"h\":[[95],[123]],\"parent\":1,\"children\":123,\"pos\":\"[2][123]\"},{\"t\":\"tra\",\"h\":[[96],[124]],\"parent\":1,\"children\":124,\"pos\":\"[2][124]\"},{\"t\":\"i\",\"h\":[[99],[125,126]],\"parent\":1,\"children\":125,\"pos\":\"[2][125]\"},{\"t\":\"poeti\",\"h\":[[99],[125,126]],\"parent\":1,\"children\":126,\"pos\":\"[2][126]\"},{\"p\":\",\",\"parent\":1,\"children\":127,\"pos\":\"[2][127]\"},{\"t\":\"e\",\"h\":[[100],[128]],\"parent\":1,\"children\":128,\"pos\":\"[2][128]\"},{\"t\":\"il\",\"h\":[[103],[129,130]],\"parent\":1,\"children\":129,\"pos\":\"[2][129]\"},{\"t\":\"fascio\",\"h\":[[103],[129,130]],\"parent\":1,\"children\":130,\"pos\":\"[2][130]\"},{\"t\":\"d\",\"h\":[[102],[131,133]],\"parent\":1,\"children\":131,\"pos\":\"[2][131]\"},{\"p\":\"’\",\"parent\":1,\"children\":132,\"pos\":\"[2][132]\"},{\"t\":\"alloro\",\"h\":[[102],[131,133]],\"parent\":1,\"children\":133,\"pos\":\"[2][133]\"},{\"t\":\"di\",\"h\":[[103],[134,135]],\"parent\":1,\"children\":134,\"pos\":\"[2][134]\"},{\"t\":\"Samio\",\"h\":[[103],[134,135]],\"parent\":1,\"children\":135,\"pos\":\"[2][135]\"},{\"t\":\"dalle\",\"h\":[[107],[136,137,138]],\"parent\":1,\"children\":136,\"pos\":\"[2][136]\"},{\"t\":\"foglie\",\"h\":[[107],[136,137,138]],\"parent\":1,\"children\":137,\"pos\":\"[2][137]\"},{\"t\":\"scure\",\"h\":[[107],[136,137,138]],\"parent\":1,\"children\":138,\"pos\":\"[2][138]\"},{\"p\":\";\",\"parent\":1,\"children\":139,\"pos\":\"[2][139]\"}],[{\"t\":\"e\",\"h\":[[18],[140]],\"parent\":1,\"children\":140,\"pos\":\"[2][140]\"},{\"t\":\"di\",\"h\":[[105,106],[141,142]],\"parent\":1,\"children\":141,\"pos\":\"[2][141]\"},{\"t\":\"Leonida\",\"h\":[[105,106],[141,142]],\"parent\":1,\"children\":142,\"pos\":\"[2][142]\"},{\"t\":\"le\",\"h\":[[115],[143,144]],\"parent\":1,\"children\":143,\"pos\":\"[2][143]\"},{\"t\":\"sommità\",\"h\":[[115],[143,144]],\"parent\":1,\"children\":144,\"pos\":\"[2][144]\"},{\"t\":\"fiorenti\",\"h\":[[110],[145]],\"parent\":1,\"children\":145,\"pos\":\"[2][145]\"},{\"t\":\"dell\",\"h\":[[112],[146,148,157]],\"parent\":1,\"children\":146,\"pos\":\"[2][146]\"},{\"p\":\"’\",\"parent\":1,\"children\":147,\"pos\":\"[2][147]\"},{\"t\":\"edera\",\"h\":[[112],[146,148,157]],\"parent\":1,\"children\":148,\"pos\":\"[2][148]\"},{\"p\":\",\",\"parent\":1,\"children\":149,\"pos\":\"[2][149]\"}],[{\"t\":\"e\",\"h\":[[],[150]],\"parent\":1,\"children\":150,\"pos\":\"[2][150]\"},{\"t\":\"di\",\"h\":[[108],[151,152]],\"parent\":1,\"children\":151,\"pos\":\"[2][151]\"},{\"t\":\"Mnasalce\",\"h\":[[108],[151,152]],\"parent\":1,\"children\":152,\"pos\":\"[2][152]\"},{\"t\":\"la\",\"h\":[[117],[153,154]],\"parent\":1,\"children\":153,\"pos\":\"[2][153]\"},{\"t\":\"chioma\",\"h\":[[117],[153,154]],\"parent\":1,\"children\":154,\"pos\":\"[2][154]\"},{\"t\":\"di\",\"h\":[[114],[155,156]],\"parent\":1,\"children\":155,\"pos\":\"[2][155]\"},{\"t\":\"pino\",\"h\":[[114],[155,156]],\"parent\":1,\"children\":156,\"pos\":\"[2][156]\"},{\"t\":\"pungente\",\"h\":[[113],[157]],\"parent\":1,\"children\":157,\"pos\":\"[2][157]\"},{\"p\":\";\",\"parent\":1,\"children\":158,\"pos\":\"[2][158]\"}],[{\"t\":\"tagliò\",\"h\":[[121],[159]],\"parent\":1,\"children\":159,\"pos\":\"[2][159]\"},{\"t\":\"i\",\"h\":[[117],[160,161,162,164]],\"parent\":1,\"children\":160,\"pos\":\"[2][160]\"},{\"t\":\"rami\",\"h\":[[117],[160,161,162,164]],\"parent\":1,\"children\":161,\"pos\":\"[2][161]\"},{\"t\":\"del\",\"h\":[[117],[160,161,162,164]],\"parent\":1,\"children\":162,\"pos\":\"[2][162]\"},{\"t\":\"contorto\",\"h\":[[120],[163]],\"parent\":1,\"children\":163,\"pos\":\"[2][163]\"},{\"t\":\"platano\",\"h\":[[117],[160,161,162,164]],\"parent\":1,\"children\":164,\"pos\":\"[2][164]\"},{\"t\":\"del\",\"h\":[[124],[165,166]],\"parent\":1,\"children\":165,\"pos\":\"[2][165]\"},{\"t\":\"canto\",\"h\":[[124],[165,166]],\"parent\":1,\"children\":166,\"pos\":\"[2][166]\"},{\"t\":\"di\",\"h\":[[122],[167,168]],\"parent\":1,\"children\":167,\"pos\":\"[2][167]\"},{\"t\":\"Panfilo\",\"h\":[[122],[167,168]],\"parent\":1,\"children\":168,\"pos\":\"[2][168]\"},{\"p\":\",\",\"parent\":1,\"children\":169,\"pos\":\"[2][169]\"}],[{\"t\":\"e\",\"h\":[[],[170]],\"parent\":1,\"children\":170,\"pos\":\"[2][170]\"},{\"t\":\"intrecciò\",\"h\":[[127],[171]],\"parent\":1,\"children\":171,\"pos\":\"[2][171]\"},{\"t\":\"in\",\"h\":[[125],[172,173]],\"parent\":1,\"children\":172,\"pos\":\"[2][172]\"},{\"t\":\"ghirlande\",\"h\":[[125],[172,173]],\"parent\":1,\"children\":173,\"pos\":\"[2][173]\"},{\"t\":\"il\",\"h\":[[129],[174,175]],\"parent\":1,\"children\":174,\"pos\":\"[2][174]\"},{\"t\":\"noce\",\"h\":[[129],[174,175]],\"parent\":1,\"children\":175,\"pos\":\"[2][175]\"},{\"t\":\"di\",\"h\":[[126],[176,177]],\"parent\":1,\"children\":176,\"pos\":\"[2][176]\"},{\"t\":\"Pancrate\",\"h\":[[126],[176,177]],\"parent\":1,\"children\":177,\"pos\":\"[2][177]\"},{\"p\":\",\",\"parent\":1,\"children\":178,\"pos\":\"[2][178]\"}],[{\"t\":\"il\",\"h\":[[132],[179,180]],\"parent\":1,\"children\":179,\"pos\":\"[2][179]\"},{\"t\":\"pioppo\",\"h\":[[132],[179,180]],\"parent\":1,\"children\":180,\"pos\":\"[2][180]\"},{\"t\":\"frondoso\",\"h\":[[131],[181]],\"parent\":1,\"children\":181,\"pos\":\"[2][181]\"},{\"t\":\"di\",\"h\":[[132],[182,183]],\"parent\":1,\"children\":182,\"pos\":\"[2][182]\"},{\"t\":\"Timne\",\"h\":[[132],[182,183]],\"parent\":1,\"children\":183,\"pos\":\"[2][183]\"},{\"p\":\",\",\"parent\":1,\"children\":184,\"pos\":\"[2][184]\"},{\"t\":\"la\",\"h\":[[136],[185,187]],\"parent\":1,\"children\":185,\"pos\":\"[2][185]\"},{\"t\":\"verdeggiante\",\"h\":[[134],[186]],\"parent\":1,\"children\":186,\"pos\":\"[2][186]\"},{\"t\":\"menta\",\"h\":[[136],[185,187]],\"parent\":1,\"children\":187,\"pos\":\"[2][187]\"}],[{\"t\":\"di\",\"h\":[[137],[188,189]],\"parent\":1,\"children\":188,\"pos\":\"[2][188]\"},{\"t\":\"Nicia\",\"h\":[[137],[188,189]],\"parent\":1,\"children\":189,\"pos\":\"[2][189]\"},{\"p\":\",\",\"parent\":1,\"children\":190,\"pos\":\"[2][190]\"},{\"t\":\"di\",\"h\":[[139],[191,192]],\"parent\":1,\"children\":191,\"pos\":\"[2][191]\"},{\"t\":\"Eufemo\",\"h\":[[139],[191,192]],\"parent\":1,\"children\":192,\"pos\":\"[2][192]\"},{\"t\":\"la\",\"h\":[[],[193]],\"parent\":1,\"children\":193,\"pos\":\"[2][193]\"},{\"t\":\"pianta\",\"h\":[[],[194]],\"parent\":1,\"children\":194,\"pos\":\"[2][194]\"},{\"t\":\"che\",\"h\":[[141],[195,196,197,198]],\"parent\":1,\"children\":195,\"pos\":\"[2][195]\"},{\"t\":\"cresce\",\"h\":[[141],[195,196,197,198]],\"parent\":1,\"children\":196,\"pos\":\"[2][196]\"},{\"t\":\"nella\",\"h\":[[141],[195,196,197,198]],\"parent\":1,\"children\":197,\"pos\":\"[2][197]\"},{\"t\":\"sabbia\",\"h\":[[141],[195,196,197,198]],\"parent\":1,\"children\":198,\"pos\":\"[2][198]\"},{\"t\":\"vicino\",\"h\":[[142],[199,200,201]],\"parent\":1,\"children\":199,\"pos\":\"[2][199]\"},{\"t\":\"la\",\"h\":[[142],[199,200,201]],\"parent\":1,\"children\":200,\"pos\":\"[2][200]\"},{\"t\":\"costa\",\"h\":[[142],[199,200,201]],\"parent\":1,\"children\":201,\"pos\":\"[2][201]\"},{\"p\":\";\",\"parent\":1,\"children\":202,\"pos\":\"[2][202]\"}],[{\"t\":\"poi\",\"h\":[[144,145,146],[203,204]],\"parent\":1,\"children\":203,\"pos\":\"[2][203]\"},{\"t\":\"ancora\",\"h\":[[144,145,146],[203,204]],\"parent\":1,\"children\":204,\"pos\":\"[2][204]\"},{\"t\":\"di\",\"h\":[[147],[205,206]],\"parent\":1,\"children\":205,\"pos\":\"[2][205]\"},{\"t\":\"Damageto\",\"h\":[[147],[205,206]],\"parent\":1,\"children\":206,\"pos\":\"[2][206]\"},{\"p\":\",\",\"parent\":1,\"children\":207,\"pos\":\"[2][207]\"},{\"t\":\"la\",\"h\":[[149],[208,210]],\"parent\":1,\"children\":208,\"pos\":\"[2][208]\"},{\"t\":\"scura\",\"h\":[[150],[209]],\"parent\":1,\"children\":209,\"pos\":\"[2][209]\"},{\"t\":\"violetta\",\"h\":[[149],[208,210]],\"parent\":1,\"children\":210,\"pos\":\"[2][210]\"},{\"p\":\",\",\"parent\":1,\"children\":211,\"pos\":\"[2][211]\"},{\"t\":\"e\",\"h\":[[153],[212]],\"parent\":1,\"children\":212,\"pos\":\"[2][212]\"},{\"t\":\"il\",\"h\":[[154],[213,215]],\"parent\":1,\"children\":213,\"pos\":\"[2][213]\"},{\"t\":\"dolce\",\"h\":[[152],[214]],\"parent\":1,\"children\":214,\"pos\":\"[2][214]\"},{\"t\":\"mirto\",\"h\":[[154],[213,215]],\"parent\":1,\"children\":215,\"pos\":\"[2][215]\"}],[{\"t\":\"di\",\"h\":[[155],[216,217]],\"parent\":1,\"children\":216,\"pos\":\"[2][216]\"},{\"t\":\"Callimaco\",\"h\":[[155],[216,217]],\"parent\":1,\"children\":217,\"pos\":\"[2][217]\"},{\"p\":\",\",\"parent\":1,\"children\":218,\"pos\":\"[2][218]\"},{\"t\":\"sempre\",\"h\":[[159],[219]],\"parent\":1,\"children\":219,\"pos\":\"[2][219]\"},{\"t\":\"pieno\",\"h\":[[158],[220]],\"parent\":1,\"children\":220,\"pos\":\"[2][220]\"},{\"t\":\"di\",\"h\":[[160],[221,223]],\"parent\":1,\"children\":221,\"pos\":\"[2][221]\"},{\"t\":\"aspro\",\"h\":[[157],[222]],\"parent\":1,\"children\":222,\"pos\":\"[2][222]\"},{\"t\":\"miele\",\"h\":[[160],[221,223]],\"parent\":1,\"children\":223,\"pos\":\"[2][223]\"},{\"p\":\",\",\"parent\":1,\"children\":224,\"pos\":\"[2][224]\"}],[{\"t\":\"e\",\"h\":[[163],[225]],\"parent\":1,\"children\":225,\"pos\":\"[2][225]\"},{\"t\":\"d\",\"h\":[[164],[226,228]],\"parent\":1,\"children\":226,\"pos\":\"[2][226]\"},{\"p\":\"’\",\"parent\":1,\"children\":227,\"pos\":\"[2][227]\"},{\"t\":\"Euforione\",\"h\":[[164],[226,228]],\"parent\":1,\"children\":228,\"pos\":\"[2][228]\"},{\"t\":\"la\",\"h\":[[162],[229,230]],\"parent\":1,\"children\":229,\"pos\":\"[2][229]\"},{\"t\":\"licnide\",\"h\":[[162],[229,230]],\"parent\":1,\"children\":230,\"pos\":\"[2][230]\"},{\"p\":\",\",\"parent\":1,\"children\":231,\"pos\":\"[2][231]\"},{\"t\":\"il\",\"h\":[[169],[232,233]],\"parent\":1,\"children\":232,\"pos\":\"[2][232]\"},{\"t\":\"cardamomo\",\"h\":[[169],[232,233]],\"parent\":1,\"children\":233,\"pos\":\"[2][233]\"},{\"t\":\"per\",\"h\":[[167,168],[234,235,236]],\"parent\":1,\"children\":234,\"pos\":\"[2][234]\"},{\"t\":\"le\",\"h\":[[167,168],[234,235,236]],\"parent\":1,\"children\":235,\"pos\":\"[2][235]\"},{\"t\":\"Muse\",\"h\":[[167,168],[234,235,236]],\"parent\":1,\"children\":236,\"pos\":\"[2][236]\"},{\"p\":\",\",\"parent\":1,\"children\":237,\"pos\":\"[2][237]\"}],[{\"t\":\"che\",\"h\":[[171],[238]],\"parent\":1,\"children\":238,\"pos\":\"[2][238]\"},{\"t\":\"prese\",\"h\":[[175],[239]],\"parent\":1,\"children\":239,\"pos\":\"[2][239]\"},{\"t\":\"il\",\"h\":[[176],[240,241]],\"parent\":1,\"children\":240,\"pos\":\"[2][240]\"},{\"t\":\"nome\",\"h\":[[176],[240,241]],\"parent\":1,\"children\":241,\"pos\":\"[2][241]\"},{\"t\":\"dai\",\"h\":[[173,174],[242,243,244]],\"parent\":1,\"children\":242,\"pos\":\"[2][242]\"},{\"t\":\"giovani\",\"h\":[[173,174],[242,243,244]],\"parent\":1,\"children\":243,\"pos\":\"[2][243]\"},{\"t\":\"fanciulli\",\"h\":[[173,174],[242,243,244]],\"parent\":1,\"children\":244,\"pos\":\"[2][244]\"},{\"t\":\"di\",\"h\":[[172],[245,246]],\"parent\":1,\"children\":245,\"pos\":\"[2][245]\"},{\"t\":\"Zeus\",\"h\":[[172],[245,246]],\"parent\":1,\"children\":246,\"pos\":\"[2][246]\"},{\"p\":\".\",\"parent\":1,\"children\":247,\"pos\":\"[2][247]\"}],[{\"t\":\"Dunque\",\"h\":[[179,180],[248]],\"parent\":1,\"children\":248,\"pos\":\"[2][248]\"},{\"t\":\"aggiungeva\",\"h\":[[182],[249]],\"parent\":1,\"children\":249,\"pos\":\"[2][249]\"},{\"t\":\"a\",\"h\":[[178],[250,251]],\"parent\":1,\"children\":250,\"pos\":\"[2][250]\"},{\"t\":\"questi\",\"h\":[[178],[250,251]],\"parent\":1,\"children\":251,\"pos\":\"[2][251]\"},{\"t\":\"di\",\"h\":[[181],[252,253]],\"parent\":1,\"children\":252,\"pos\":\"[2][252]\"},{\"t\":\"Egesippo\",\"h\":[[181],[252,253]],\"parent\":1,\"children\":253,\"pos\":\"[2][253]\"},{\"t\":\"il\",\"h\":[[184],[254,255,256,258]],\"parent\":1,\"children\":254,\"pos\":\"[2][254]\"},{\"t\":\"grappolo\",\"h\":[[184],[254,255,256,258]],\"parent\":1,\"children\":255,\"pos\":\"[2][255]\"},{\"t\":\"d\",\"h\":[[184],[254,255,256,258]],\"parent\":1,\"children\":256,\"pos\":\"[2][256]\"},{\"p\":\"’\",\"parent\":1,\"children\":257,\"pos\":\"[2][257]\"},{\"t\":\"uva\",\"h\":[[184],[254,255,256,258]],\"parent\":1,\"children\":258,\"pos\":\"[2][258]\"},{\"t\":\"furente\",\"h\":[[183],[259]],\"parent\":1,\"children\":259,\"pos\":\"[2][259]\"},{\"p\":\",\",\"parent\":1,\"children\":260,\"pos\":\"[2][260]\"}],[{\"t\":\"dopo\",\"h\":[[190],[261,262,263]],\"parent\":1,\"children\":261,\"pos\":\"[2][261]\"},{\"t\":\"aver\",\"h\":[[190],[261,262,263]],\"parent\":1,\"children\":262,\"pos\":\"[2][262]\"},{\"t\":\"raccolto\",\"h\":[[190],[261,262,263]],\"parent\":1,\"children\":263,\"pos\":\"[2][263]\"},{\"t\":\"anche\",\"h\":[[187],[264]],\"parent\":1,\"children\":264,\"pos\":\"[2][264]\"},{\"t\":\"un\",\"h\":[[189],[265,266]],\"parent\":1,\"children\":265,\"pos\":\"[2][265]\"},{\"t\":\"giunco\",\"h\":[[189],[265,266]],\"parent\":1,\"children\":266,\"pos\":\"[2][266]\"},{\"t\":\"profumato\",\"h\":[[188],[267]],\"parent\":1,\"children\":267,\"pos\":\"[2][267]\"},{\"t\":\"di\",\"h\":[[186],[268,269]],\"parent\":1,\"children\":268,\"pos\":\"[2][268]\"},{\"t\":\"Perse\",\"h\":[[186],[268,269]],\"parent\":1,\"children\":269,\"pos\":\"[2][269]\"},{\"p\":\",\",\"parent\":1,\"children\":270,\"pos\":\"[2][270]\"}],[{\"t\":\"con\",\"h\":[[192,193,194],[271]],\"parent\":1,\"children\":271,\"pos\":\"[2][271]\"},{\"t\":\"una\",\"h\":[[196],[272,273,274]],\"parent\":1,\"children\":272,\"pos\":\"[2][272]\"},{\"t\":\"dolce\",\"h\":[[196],[272,273,274]],\"parent\":1,\"children\":273,\"pos\":\"[2][273]\"},{\"t\":\"mela\",\"h\":[[196],[272,273,274]],\"parent\":1,\"children\":274,\"pos\":\"[2][274]\"},{\"t\":\"di\",\"h\":[[199],[275,276]],\"parent\":1,\"children\":275,\"pos\":\"[2][275]\"},{\"t\":\"Diotimo\",\"h\":[[199],[275,276]],\"parent\":1,\"children\":276,\"pos\":\"[2][276]\"}],[{\"t\":\"dai\",\"h\":[[197,198],[277,278]],\"parent\":1,\"children\":277,\"pos\":\"[2][277]\"},{\"t\":\"rami\",\"h\":[[197,198],[277,278]],\"parent\":1,\"children\":278,\"pos\":\"[2][278]\"},{\"t\":\"e\",\"h\":[[201],[279]],\"parent\":1,\"children\":279,\"pos\":\"[2][279]\"},{\"t\":\"prima\",\"h\":[[204],[280,281]],\"parent\":1,\"children\":280,\"pos\":\"[2][280]\"},{\"t\":\"ancora\",\"h\":[[204],[280,281]],\"parent\":1,\"children\":281,\"pos\":\"[2][281]\"},{\"t\":\"fiori\",\"h\":[[203],[282]],\"parent\":1,\"children\":282,\"pos\":\"[2][282]\"},{\"t\":\"di\",\"h\":[[202],[283,284]],\"parent\":1,\"children\":283,\"pos\":\"[2][283]\"},{\"t\":\"melograno\",\"h\":[[202],[283,284]],\"parent\":1,\"children\":284,\"pos\":\"[2][284]\"},{\"t\":\"di\",\"h\":[[205],[285,286]],\"parent\":1,\"children\":285,\"pos\":\"[2][285]\"},{\"t\":\"Menecrate\",\"h\":[[205],[285,286]],\"parent\":1,\"children\":286,\"pos\":\"[2][286]\"},{\"p\":\",\",\"parent\":1,\"children\":287,\"pos\":\"[2][287]\"}],[{\"t\":\"rami\",\"h\":[[209],[288]],\"parent\":1,\"children\":288,\"pos\":\"[2][288]\"},{\"t\":\"di\",\"h\":[[207],[289,290]],\"parent\":1,\"children\":289,\"pos\":\"[2][289]\"},{\"t\":\"mirra\",\"h\":[[207],[289,290]],\"parent\":1,\"children\":290,\"pos\":\"[2][290]\"},{\"t\":\"di\",\"h\":[[210],[291,292]],\"parent\":1,\"children\":291,\"pos\":\"[2][291]\"},{\"t\":\"Niceneto\",\"h\":[[210],[291,292]],\"parent\":1,\"children\":292,\"pos\":\"[2][292]\"},{\"p\":\",\",\"parent\":1,\"children\":293,\"pos\":\"[2][293]\"},{\"t\":\"un\",\"h\":[[214],[294,295]],\"parent\":1,\"children\":294,\"pos\":\"[2][294]\"},{\"t\":\"pistacchio\",\"h\":[[214],[294,295]],\"parent\":1,\"children\":295,\"pos\":\"[2][295]\"}],[{\"t\":\"di\",\"h\":[[213],[296,297]],\"parent\":1,\"children\":296,\"pos\":\"[2][296]\"},{\"t\":\"Foenno\",\"h\":[[213],[296,297]],\"parent\":1,\"children\":297,\"pos\":\"[2][297]\"},{\"t\":\"e\",\"h\":[[217],[298]],\"parent\":1,\"children\":298,\"pos\":\"[2][298]\"},{\"t\":\"un\",\"h\":[[216],[299,300]],\"parent\":1,\"children\":299,\"pos\":\"[2][299]\"},{\"t\":\"alto\",\"h\":[[216],[299,300]],\"parent\":1,\"children\":300,\"pos\":\"[2][300]\"},{\"t\":\"pero\",\"h\":[[218],[301]],\"parent\":1,\"children\":301,\"pos\":\"[2][301]\"},{\"t\":\"di\",\"h\":[[219],[302,303]],\"parent\":1,\"children\":302,\"pos\":\"[2][302]\"},{\"t\":\"Simia\",\"h\":[[219],[302,303]],\"parent\":1,\"children\":303,\"pos\":\"[2][303]\"},{\"p\":\";\",\"parent\":1,\"children\":304,\"pos\":\"[2][304]\"}],[{\"t\":\"raccogliendo\",\"h\":[[230],[305]],\"parent\":1,\"children\":305,\"pos\":\"[2][305]\"},{\"t\":\"inoltre\",\"h\":[[221,222,223],[306]],\"parent\":1,\"children\":306,\"pos\":\"[2][306]\"},{\"t\":\"dal\",\"h\":[[224],[307]],\"parent\":1,\"children\":307,\"pos\":\"[2][307]\"},{\"t\":\"prato\",\"h\":[[225],[308]],\"parent\":1,\"children\":308,\"pos\":\"[2][308]\"},{\"t\":\"perfetto\",\"h\":[[226],[309]],\"parent\":1,\"children\":309,\"pos\":\"[2][309]\"}],[{\"t\":\"un\",\"h\":[[229],[310,311]],\"parent\":1,\"children\":310,\"pos\":\"[2][310]\"},{\"t\":\"po\",\"h\":[[229],[310,311]],\"parent\":1,\"children\":311,\"pos\":\"[2][311]\"},{\"p\":\"’\",\"parent\":1,\"children\":312,\"pos\":\"[2][312]\"},{\"t\":\"di\",\"h\":[[227],[310,311,313,314]],\"parent\":1,\"children\":313,\"pos\":\"[2][313]\"},{\"t\":\"sedano\",\"h\":[[227],[310,311,313,314]],\"parent\":1,\"children\":314,\"pos\":\"[2][314]\"},{\"t\":\"e\",\"h\":[[231],[315,316]],\"parent\":1,\"children\":315,\"pos\":\"[2][315]\"},{\"t\":\"fiori\",\"h\":[[231],[315,316]],\"parent\":1,\"children\":316,\"pos\":\"[2][316]\"},{\"t\":\"di\",\"h\":[[233],[317,318]],\"parent\":1,\"children\":317,\"pos\":\"[2][317]\"},{\"t\":\"Partenide\",\"h\":[[233],[317,318]],\"parent\":1,\"children\":318,\"pos\":\"[2][318]\"},{\"p\":\",\",\"parent\":1,\"children\":319,\"pos\":\"[2][319]\"}],[{\"t\":\"e\",\"h\":[[236],[320]],\"parent\":1,\"children\":320,\"pos\":\"[2][320]\"},{\"t\":\"spighe\",\"h\":[[246],[321]],\"parent\":1,\"children\":321,\"pos\":\"[2][321]\"},{\"t\":\"dorate\",\"h\":[[242],[322]],\"parent\":1,\"children\":322,\"pos\":\"[2][322]\"},{\"t\":\"dalla\",\"h\":[[243,244],[323,324]],\"parent\":1,\"children\":323,\"pos\":\"[2][323]\"},{\"t\":\"paglia\",\"h\":[[243,244],[323,324]],\"parent\":1,\"children\":324,\"pos\":\"[2][324]\"},{\"t\":\"di\",\"h\":[[245],[325,326]],\"parent\":1,\"children\":325,\"pos\":\"[2][325]\"},{\"t\":\"Bacchilide\",\"h\":[[245],[325,326]],\"parent\":1,\"children\":326,\"pos\":\"[2][326]\"},{\"p\":\",\",\"parent\":1,\"children\":327,\"pos\":\"[2][327]\"}],[{\"t\":\"reliquie\",\"h\":[[235],[328]],\"parent\":1,\"children\":328,\"pos\":\"[2][328]\"},{\"t\":\"fiorenti\",\"h\":[[237],[329]],\"parent\":1,\"children\":329,\"pos\":\"[2][329]\"},{\"t\":\"di\",\"h\":[[239,240],[330,332]],\"parent\":1,\"children\":330,\"pos\":\"[2][330]\"},{\"t\":\"dolcissime\",\"h\":[[238],[331]],\"parent\":1,\"children\":331,\"pos\":\"[2][331]\"},{\"t\":\"Muse\",\"h\":[[239,240],[330,332]],\"parent\":1,\"children\":332,\"pos\":\"[2][332]\"},{\"p\":\":\",\"parent\":1,\"children\":333,\"pos\":\"[2][333]\"}],[{\"t\":\"E\",\"h\":[[248,249,250],[334,335]],\"parent\":1,\"children\":334,\"pos\":\"[2][334]\"},{\"t\":\"dunque\",\"h\":[[248,249,250],[334,335]],\"parent\":1,\"children\":335,\"pos\":\"[2][335]\"},{\"t\":\"per\",\"h\":[[251],[336,337]],\"parent\":1,\"children\":336,\"pos\":\"[2][336]\"},{\"t\":\"Anacreonte\",\"h\":[[251],[336,337]],\"parent\":1,\"children\":337,\"pos\":\"[2][337]\"},{\"p\":\",\",\"parent\":1,\"children\":338,\"pos\":\"[2][338]\"},{\"t\":\"quel\",\"h\":[[253,256],[339,340]],\"parent\":1,\"children\":339,\"pos\":\"[2][339]\"},{\"t\":\"famoso\",\"h\":[[253,256],[339,340]],\"parent\":1,\"children\":340,\"pos\":\"[2][340]\"},{\"t\":\"dolce\",\"h\":[[255],[341]],\"parent\":1,\"children\":341,\"pos\":\"[2][341]\"},{\"t\":\"canto\",\"h\":[[257],[342]],\"parent\":1,\"children\":342,\"pos\":\"[2][342]\"},{\"p\":\",\",\"parent\":1,\"children\":343,\"pos\":\"[2][343]\"}],[{\"t\":\"di\",\"h\":[[258],[344,345]],\"parent\":1,\"children\":344,\"pos\":\"[2][344]\"},{\"t\":\"miele\",\"h\":[[258],[344,345]],\"parent\":1,\"children\":345,\"pos\":\"[2][345]\"},{\"p\":\",\",\"parent\":1,\"children\":346,\"pos\":\"[2][346]\"},{\"t\":\"fiore\",\"h\":[[264],[347]],\"parent\":1,\"children\":347,\"pos\":\"[2][347]\"},{\"t\":\"sterile\",\"h\":[[263],[348]],\"parent\":1,\"children\":348,\"pos\":\"[2][348]\"},{\"t\":\"di\",\"h\":[[262],[349,350]],\"parent\":1,\"children\":349,\"pos\":\"[2][349]\"},{\"t\":\"elegie\",\"h\":[[262],[349,350]],\"parent\":1,\"children\":350,\"pos\":\"[2][350]\"}],[{\"t\":\"nonché\",\"h\":[[266,267,268],[351]],\"parent\":1,\"children\":351,\"pos\":\"[2][351]\"},{\"t\":\"fiore\",\"h\":[[272],[352]],\"parent\":1,\"children\":352,\"pos\":\"[2][352]\"},{\"t\":\"d\",\"h\":[[273],[353,355]],\"parent\":1,\"children\":353,\"pos\":\"[2][353]\"},{\"p\":\"’\",\"parent\":1,\"children\":354,\"pos\":\"[2][354]\"},{\"t\":\"acanto\",\"h\":[[273],[353,355]],\"parent\":1,\"children\":355,\"pos\":\"[2][355]\"},{\"t\":\"dalla\",\"h\":[[269],[356,364,365]],\"parent\":1,\"children\":356,\"pos\":\"[2][356]\"},{\"t\":\"chioma\",\"h\":[[269,271],[356,357]],\"parent\":1,\"children\":357,\"pos\":\"[2][357]\"},{\"t\":\"ricciuta\",\"h\":[[270],[358]],\"parent\":1,\"children\":358,\"pos\":\"[2][358]\"},{\"p\":\",\",\"parent\":1,\"children\":359,\"pos\":\"[2][359]\"},{\"t\":\"formato\",\"h\":[[274],[360,361,363,364,365]],\"parent\":1,\"children\":360,\"pos\":\"[2][360]\"},{\"t\":\"dall\",\"h\":[[274],[360,361,363,364,365]],\"parent\":1,\"children\":361,\"pos\":\"[2][361]\"},{\"p\":\"’\",\"parent\":1,\"children\":362,\"pos\":\"[2][362]\"},{\"t\":\"insegnamento\",\"h\":[[274],[360,361,363,364,365]],\"parent\":1,\"children\":363,\"pos\":\"[2][363]\"}],[{\"t\":\"di\",\"h\":[[274],[360,361,363,364,365]],\"parent\":1,\"children\":364,\"pos\":\"[2][364]\"},{\"t\":\"Archiloco\",\"h\":[[274],[360,361,363,364,365]],\"parent\":1,\"children\":365,\"pos\":\"[2][365]\"},{\"p\":\",\",\"parent\":1,\"children\":366,\"pos\":\"[2][366]\"},{\"t\":\"scelse\",\"h\":[[],[367]],\"parent\":1,\"children\":367,\"pos\":\"[2][367]\"},{\"t\":\"piccole\",\"h\":[[275],[368]],\"parent\":1,\"children\":368,\"pos\":\"[2][368]\"},{\"t\":\"gocce\",\"h\":[[276],[369]],\"parent\":1,\"children\":369,\"pos\":\"[2][369]\"},{\"t\":\"dal\",\"h\":[[277,278],[370,372]],\"parent\":1,\"children\":370,\"pos\":\"[2][370]\"},{\"t\":\"grande\",\"h\":[[276],[371]],\"parent\":1,\"children\":371,\"pos\":\"[2][371]\"},{\"t\":\"Oceano\",\"h\":[[277,278],[370,372]],\"parent\":1,\"children\":372,\"pos\":\"[2][372]\"},{\"p\":\":\",\"parent\":1,\"children\":373,\"pos\":\"[2][373]\"}],[{\"t\":\"invece\",\"h\":[[279,280,281],[374]],\"parent\":1,\"children\":374,\"pos\":\"[2][374]\"},{\"t\":\"per\",\"h\":[[282],[374,375,376]],\"parent\":1,\"children\":375,\"pos\":\"[2][375]\"},{\"t\":\"Alessandro\",\"h\":[[282],[374,375,376]],\"parent\":1,\"children\":376,\"pos\":\"[2][376]\"},{\"t\":\"acerbi\",\"h\":[[283],[377]],\"parent\":1,\"children\":377,\"pos\":\"[2][377]\"},{\"t\":\"ramoscelli\",\"h\":[[284],[378]],\"parent\":1,\"children\":378,\"pos\":\"[2][378]\"},{\"t\":\"d\",\"h\":[[285],[379,381]],\"parent\":1,\"children\":379,\"pos\":\"[2][379]\"},{\"p\":\"’\",\"parent\":1,\"children\":380,\"pos\":\"[2][380]\"},{\"t\":\"ulivo\",\"h\":[[285],[379,381]],\"parent\":1,\"children\":381,\"pos\":\"[2][381]\"},{\"p\":\",\",\"parent\":1,\"children\":382,\"pos\":\"[2][382]\"}],[{\"t\":\"e\",\"h\":[[293,294,295],[383]],\"parent\":1,\"children\":383,\"pos\":\"[2][383]\"},{\"t\":\"per\",\"h\":[[287],[384,385]],\"parent\":1,\"children\":384,\"pos\":\"[2][384]\"},{\"t\":\"Policlito\",\"h\":[[287],[384,385]],\"parent\":1,\"children\":385,\"pos\":\"[2][385]\"},{\"t\":\"un\",\"h\":[[290,291],[386,387]],\"parent\":1,\"children\":386,\"pos\":\"[2][386]\"},{\"t\":\"lapislazzulo\",\"h\":[[290,291],[386,387]],\"parent\":1,\"children\":387,\"pos\":\"[2][387]\"},{\"t\":\"di\",\"h\":[[288,289],[388,389]],\"parent\":1,\"children\":388,\"pos\":\"[2][388]\"},{\"t\":\"porpora\",\"h\":[[288,289],[388,389]],\"parent\":1,\"children\":389,\"pos\":\"[2][389]\"},{\"p\":\".\",\"parent\":1,\"children\":390,\"pos\":\"[2][390]\"}],[{\"t\":\"Per\",\"h\":[[298,299],[391,392]],\"parent\":1,\"children\":391,\"pos\":\"[2][391]\"},{\"t\":\"Polistrato\",\"h\":[[298,299],[391,392]],\"parent\":1,\"children\":392,\"pos\":\"[2][392]\"},{\"p\":\",\",\"parent\":1,\"children\":393,\"pos\":\"[2][393]\"},{\"t\":\"invece\",\"h\":[[293,294,295],[394]],\"parent\":1,\"children\":394,\"pos\":\"[2][394]\"},{\"p\":\",\",\"parent\":1,\"children\":395,\"pos\":\"[2][395]\"},{\"t\":\"trovò\",\"h\":[[297],[396]],\"parent\":1,\"children\":396,\"pos\":\"[2][396]\"},{\"t\":\"una\",\"h\":[[296],[397,398]],\"parent\":1,\"children\":397,\"pos\":\"[2][397]\"},{\"t\":\"maggiorana\",\"h\":[[296],[397,398]],\"parent\":1,\"children\":398,\"pos\":\"[2][398]\"},{\"p\":\",\",\"parent\":1,\"children\":399,\"pos\":\"[2][399]\"},{\"t\":\"fiore\",\"h\":[[301],[400]],\"parent\":1,\"children\":400,\"pos\":\"[2][400]\"},{\"t\":\"aedo\",\"h\":[[302],[401]],\"parent\":1,\"children\":401,\"pos\":\"[2][401]\"},{\"p\":\",\",\"parent\":1,\"children\":402,\"pos\":\"[2][402]\"}],[{\"t\":\"e\",\"h\":[[305],[403]],\"parent\":1,\"children\":403,\"pos\":\"[2][403]\"},{\"t\":\"per\",\"h\":[[308,309],[404,405]],\"parent\":1,\"children\":404,\"pos\":\"[2][404]\"},{\"t\":\"Antipatro\",\"h\":[[308,309],[404,405]],\"parent\":1,\"children\":405,\"pos\":\"[2][405]\"},{\"t\":\"una\",\"h\":[[307],[406,408]],\"parent\":1,\"children\":406,\"pos\":\"[2][406]\"},{\"t\":\"giovane\",\"h\":[[306],[407]],\"parent\":1,\"children\":407,\"pos\":\"[2][407]\"},{\"t\":\"alcanna\",\"h\":[[307],[406,408]],\"parent\":1,\"children\":408,\"pos\":\"[2][408]\"},{\"t\":\"fenicia\",\"h\":[[304],[409]],\"parent\":1,\"children\":409,\"pos\":\"[2][409]\"},{\"p\":\":\",\"parent\":1,\"children\":410,\"pos\":\"[2][410]\"}],[{\"t\":\"e\",\"h\":[[311,312,313],[411,413]],\"parent\":1,\"children\":411,\"pos\":\"[2][411]\"},{\"t\":\"pose\",\"h\":[[316],[412]],\"parent\":1,\"children\":412,\"pos\":\"[2][412]\"},{\"t\":\"anche\",\"h\":[[311,312,313],[411,413]],\"parent\":1,\"children\":413,\"pos\":\"[2][413]\"},{\"t\":\"un\",\"h\":[[317],[414,415]],\"parent\":1,\"children\":414,\"pos\":\"[2][414]\"},{\"t\":\"nardo\",\"h\":[[317],[414,415]],\"parent\":1,\"children\":415,\"pos\":\"[2][415]\"},{\"t\":\"di\",\"h\":[[314],[416,417]],\"parent\":1,\"children\":416,\"pos\":\"[2][416]\"},{\"t\":\"Siria\",\"h\":[[314],[416,417]],\"parent\":1,\"children\":417,\"pos\":\"[2][417]\"},{\"t\":\"coronato\",\"h\":[[315],[418,419,420]],\"parent\":1,\"children\":418,\"pos\":\"[2][418]\"},{\"t\":\"di\",\"h\":[[315],[418,419,420]],\"parent\":1,\"children\":419,\"pos\":\"[2][419]\"},{\"t\":\"spighe\",\"h\":[[315],[418,419,420]],\"parent\":1,\"children\":420,\"pos\":\"[2][420]\"},{\"p\":\",\",\"parent\":1,\"children\":421,\"pos\":\"[2][421]\"}],[{\"t\":\"poeta\",\"h\":[[318],[422,423]],\"parent\":1,\"children\":422,\"pos\":\"[2][422]\"},{\"t\":\"lirico\",\"h\":[[318],[422,423]],\"parent\":1,\"children\":423,\"pos\":\"[2][423]\"},{\"p\":\",\",\"parent\":1,\"children\":424,\"pos\":\"[2][424]\"},{\"t\":\"celebrato\",\"h\":[[321],[425]],\"parent\":1,\"children\":425,\"pos\":\"[2][425]\"},{\"t\":\"dono\",\"h\":[[320],[426]],\"parent\":1,\"children\":426,\"pos\":\"[2][426]\"},{\"t\":\"di\",\"h\":[[319],[427,428]],\"parent\":1,\"children\":427,\"pos\":\"[2][427]\"},{\"t\":\"Ermes\",\"h\":[[319],[427,428]],\"parent\":1,\"children\":428,\"pos\":\"[2][428]\"},{\"p\":\",\",\"parent\":1,\"children\":429,\"pos\":\"[2][429]\"}],[{\"t\":\"per\",\"h\":[[328],[430,431]],\"parent\":1,\"children\":430,\"pos\":\"[2][430]\"},{\"t\":\"Edilo\",\"h\":[[328],[430,431]],\"parent\":1,\"children\":431,\"pos\":\"[2][431]\"},{\"t\":\"e\",\"h\":[[326],[432]],\"parent\":1,\"children\":432,\"pos\":\"[2][432]\"},{\"t\":\"Posidippo\",\"h\":[[325],[433]],\"parent\":1,\"children\":433,\"pos\":\"[2][433]\"},{\"t\":\"scelse\",\"h\":[[],[434]],\"parent\":1,\"children\":434,\"pos\":\"[2][434]\"},{\"t\":\"l\",\"h\":[[329],[435,437]],\"parent\":1,\"children\":435,\"pos\":\"[2][435]\"},{\"p\":\"’\",\"parent\":1,\"children\":436,\"pos\":\"[2][436]\"},{\"t\":\"erbetta\",\"h\":[[329],[435,437]],\"parent\":1,\"children\":437,\"pos\":\"[2][437]\"},{\"t\":\"del\",\"h\":[[330],[438,439]],\"parent\":1,\"children\":438,\"pos\":\"[2][438]\"},{\"t\":\"campo\",\"h\":[[330],[438,439]],\"parent\":1,\"children\":439,\"pos\":\"[2][439]\"},{\"p\":\",\",\"parent\":1,\"children\":440,\"pos\":\"[2][440]\"}],[{\"t\":\"fiori\",\"h\":[[335],[441]],\"parent\":1,\"children\":441,\"pos\":\"[2][441]\"},{\"t\":\"generati\",\"h\":[[336],[442]],\"parent\":1,\"children\":442,\"pos\":\"[2][442]\"},{\"t\":\"dalle\",\"h\":[[334],[443,444]],\"parent\":1,\"children\":443,\"pos\":\"[2][443]\"},{\"t\":\"correnti\",\"h\":[[334],[443,444]],\"parent\":1,\"children\":444,\"pos\":\"[2][444]\"},{\"t\":\"del\",\"h\":[[332],[445,446]],\"parent\":1,\"children\":445,\"pos\":\"[2][445]\"},{\"t\":\"Sicelide\",\"h\":[[332],[445,446]],\"parent\":1,\"children\":446,\"pos\":\"[2][446]\"},{\"p\":\".\",\"parent\":1,\"children\":447,\"pos\":\"[2][447]\"}],[{\"t\":\"Sicuramente\",\"h\":[[338,339,340],[448,449]],\"parent\":1,\"children\":448,\"pos\":\"[2][448]\"},{\"t\":\"anche\",\"h\":[[338,339,340],[448,449]],\"parent\":1,\"children\":449,\"pos\":\"[2][449]\"},{\"t\":\"del\",\"h\":[[344],[450,453]],\"parent\":1,\"children\":450,\"pos\":\"[2][450]\"},{\"t\":\"sempre\",\"h\":[[342],[451]],\"parent\":1,\"children\":451,\"pos\":\"[2][451]\"},{\"t\":\"divino\",\"h\":[[343],[452]],\"parent\":1,\"children\":452,\"pos\":\"[2][452]\"},{\"t\":\"Platone\",\"h\":[[344],[450,453]],\"parent\":1,\"children\":453,\"pos\":\"[2][453]\"}],[{\"t\":\"mise\",\"h\":[[],[454]],\"parent\":1,\"children\":454,\"pos\":\"[2][454]\"},{\"t\":\"un\",\"h\":[[345,347],[455,456]],\"parent\":1,\"children\":455,\"pos\":\"[2][455]\"},{\"t\":\"ramo\",\"h\":[[345,347],[455,456]],\"parent\":1,\"children\":456,\"pos\":\"[2][456]\"},{\"t\":\"dorato\",\"h\":[[341],[457]],\"parent\":1,\"children\":457,\"pos\":\"[2][457]\"},{\"t\":\"che\",\"h\":[[351],[458,459]],\"parent\":1,\"children\":458,\"pos\":\"[2][458]\"},{\"t\":\"risplendeva\",\"h\":[[351],[458,459]],\"parent\":1,\"children\":459,\"pos\":\"[2][459]\"},{\"t\":\"di\",\"h\":[[348,349,350],[460,461]],\"parent\":1,\"children\":460,\"pos\":\"[2][460]\"},{\"t\":\"virtù\",\"h\":[[348,349,350],[460,461]],\"parent\":1,\"children\":461,\"pos\":\"[2][461]\"},{\"p\":\".\",\"parent\":1,\"children\":462,\"pos\":\"[2][462]\"}],[{\"t\":\"Insieme\",\"h\":[[357],[463]],\"parent\":1,\"children\":463,\"pos\":\"[2][463]\"},{\"p\":\",\",\"parent\":1,\"children\":464,\"pos\":\"[2][464]\"},{\"t\":\"sistemò\",\"h\":[[358],[465]],\"parent\":1,\"children\":465,\"pos\":\"[2][465]\"},{\"t\":\"anche\",\"h\":[[354],[466]],\"parent\":1,\"children\":466,\"pos\":\"[2][466]\"},{\"t\":\"Arato\",\"h\":[[356],[467]],\"parent\":1,\"children\":467,\"pos\":\"[2][467]\"},{\"p\":\",\",\"parent\":1,\"children\":468,\"pos\":\"[2][468]\"},{\"t\":\"esperto\",\"h\":[[355],[469]],\"parent\":1,\"children\":469,\"pos\":\"[2][469]\"},{\"t\":\"di\",\"h\":[[353],[470,471]],\"parent\":1,\"children\":470,\"pos\":\"[2][470]\"},{\"t\":\"stelle\",\"h\":[[353],[470,471]],\"parent\":1,\"children\":471,\"pos\":\"[2][471]\"},{\"p\":\",\",\"parent\":1,\"children\":472,\"pos\":\"[2][472]\"}],[{\"t\":\"tagliando\",\"h\":[[362],[473]],\"parent\":1,\"children\":473,\"pos\":\"[2][473]\"},{\"t\":\"i\",\"h\":[[364],[474,475]],\"parent\":1,\"children\":474,\"pos\":\"[2][474]\"},{\"t\":\"viticci\",\"h\":[[364],[474,475]],\"parent\":1,\"children\":475,\"pos\":\"[2][475]\"},{\"t\":\"appena\",\"h\":[[363],[476,477]],\"parent\":1,\"children\":476,\"pos\":\"[2][476]\"},{\"t\":\"nati\",\"h\":[[363],[476,477]],\"parent\":1,\"children\":477,\"pos\":\"[2][477]\"},{\"t\":\"di\",\"h\":[[361],[478,479,480]],\"parent\":1,\"children\":478,\"pos\":\"[2][478]\"},{\"t\":\"una\",\"h\":[[361],[478,479,480]],\"parent\":1,\"children\":479,\"pos\":\"[2][479]\"},{\"t\":\"palma\",\"h\":[[361],[478,479,480]],\"parent\":1,\"children\":480,\"pos\":\"[2][480]\"},{\"t\":\"altissima\",\"h\":[[360],[481]],\"parent\":1,\"children\":481,\"pos\":\"[2][481]\"},{\"p\":\",\",\"parent\":1,\"children\":482,\"pos\":\"[2][482]\"}],[{\"t\":\"e\",\"h\":[[367],[483,485]],\"parent\":1,\"children\":483,\"pos\":\"[2][483]\"},{\"t\":\"mise\",\"h\":[[],[484]],\"parent\":1,\"children\":484,\"pos\":\"[2][484]\"},{\"t\":\"anche\",\"h\":[[367],[483,485]],\"parent\":1,\"children\":485,\"pos\":\"[2][485]\"},{\"t\":\"il\",\"h\":[[368],[486,487]],\"parent\":1,\"children\":486,\"pos\":\"[2][486]\"},{\"t\":\"frondoso\",\"h\":[[368],[486,487]],\"parent\":1,\"children\":487,\"pos\":\"[2][487]\"},{\"t\":\"loto\",\"h\":[[366],[488]],\"parent\":1,\"children\":488,\"pos\":\"[2][488]\"},{\"t\":\"di\",\"h\":[[369],[489,490]],\"parent\":1,\"children\":489,\"pos\":\"[2][489]\"},{\"t\":\"Cherèmone\",\"h\":[[369],[489,490]],\"parent\":1,\"children\":490,\"pos\":\"[2][490]\"},{\"p\":\",\",\"parent\":1,\"children\":491,\"pos\":\"[2][491]\"},{\"t\":\"dopo\",\"h\":[[373],[492,493,494,496]],\"parent\":1,\"children\":492,\"pos\":\"[2][492]\"},{\"t\":\"aver\",\"h\":[[373],[492,493,494,496]],\"parent\":1,\"children\":493,\"pos\":\"[2][493]\"},{\"t\":\"finito\",\"h\":[[373],[492,493,494,496]],\"parent\":1,\"children\":494,\"pos\":\"[2][494]\"}],[{\"t\":\"di\",\"h\":[[],[495]],\"parent\":1,\"children\":495,\"pos\":\"[2][495]\"},{\"t\":\"mescolare\",\"h\":[[373],[492,493,494,496]],\"parent\":1,\"children\":496,\"pos\":\"[2][496]\"},{\"t\":\"nella\",\"h\":[[371,372],[497,498]],\"parent\":1,\"children\":497,\"pos\":\"[2][497]\"},{\"t\":\"fiamma\",\"h\":[[371,372],[497,498]],\"parent\":1,\"children\":498,\"pos\":\"[2][498]\"},{\"t\":\"di\",\"h\":[[374],[499,500]],\"parent\":1,\"children\":499,\"pos\":\"[2][499]\"},{\"t\":\"Fedimo\",\"h\":[[374],[499,500]],\"parent\":1,\"children\":500,\"pos\":\"[2][500]\"},{\"t\":\"l\",\"h\":[[379],[501,503]],\"parent\":1,\"children\":501,\"pos\":\"[2][501]\"},{\"p\":\"’\",\"parent\":1,\"children\":502,\"pos\":\"[2][502]\"},{\"t\":\"occhio\",\"h\":[[379],[501,503]],\"parent\":1,\"children\":503,\"pos\":\"[2][503]\"},{\"t\":\"girevole\",\"h\":[[378],[504]],\"parent\":1,\"children\":504,\"pos\":\"[2][504]\"},{\"t\":\"di\",\"h\":[[380],[505,506]],\"parent\":1,\"children\":505,\"pos\":\"[2][505]\"},{\"t\":\"bue\",\"h\":[[380],[505,506]],\"parent\":1,\"children\":506,\"pos\":\"[2][506]\"},{\"t\":\"di\",\"h\":[[376],[507,508]],\"parent\":1,\"children\":507,\"pos\":\"[2][507]\"},{\"t\":\"Antagora\",\"h\":[[376],[507,508]],\"parent\":1,\"children\":508,\"pos\":\"[2][508]\"},{\"p\":\",\",\"parent\":1,\"children\":509,\"pos\":\"[2][509]\"}],[{\"t\":\"il\",\"h\":[[382],[510]],\"parent\":1,\"children\":510,\"pos\":\"[2][510]\"},{\"t\":\"fresco\",\"h\":[[386],[511]],\"parent\":1,\"children\":511,\"pos\":\"[2][511]\"},{\"t\":\"serpillo\",\"h\":[[387],[512]],\"parent\":1,\"children\":512,\"pos\":\"[2][512]\"},{\"t\":\"amante\",\"h\":[[384],[513,514,515]],\"parent\":1,\"children\":513,\"pos\":\"[2][513]\"},{\"t\":\"del\",\"h\":[[384],[513,514,515]],\"parent\":1,\"children\":514,\"pos\":\"[2][514]\"},{\"t\":\"vino\",\"h\":[[384],[513,514,515]],\"parent\":1,\"children\":515,\"pos\":\"[2][515]\"},{\"t\":\"di\",\"h\":[[385],[516,517]],\"parent\":1,\"children\":516,\"pos\":\"[2][516]\"},{\"t\":\"Teodorida\",\"h\":[[385],[516,517]],\"parent\":1,\"children\":517,\"pos\":\"[2][517]\"},{\"p\":\",\",\"parent\":1,\"children\":518,\"pos\":\"[2][518]\"}],[{\"t\":\"un\",\"h\":[[391],[519,520]],\"parent\":1,\"children\":519,\"pos\":\"[2][519]\"},{\"t\":\"fiore\",\"h\":[[391],[519,520]],\"parent\":1,\"children\":520,\"pos\":\"[2][520]\"},{\"t\":\"di\",\"h\":[[389],[521,522]],\"parent\":1,\"children\":521,\"pos\":\"[2][521]\"},{\"t\":\"fiordalisi\",\"h\":[[389],[521,522]],\"parent\":1,\"children\":522,\"pos\":\"[2][522]\"},{\"t\":\"di\",\"h\":[[392],[523,524]],\"parent\":1,\"children\":523,\"pos\":\"[2][523]\"},{\"t\":\"Fania\",\"h\":[[392],[523,524]],\"parent\":1,\"children\":524,\"pos\":\"[2][524]\"},{\"p\":\",\",\"parent\":1,\"children\":525,\"pos\":\"[2][525]\"},{\"t\":\"e\",\"h\":[[395],[526]],\"parent\":1,\"children\":526,\"pos\":\"[2][526]\"},{\"t\":\"molti\",\"h\":[[397],[527]],\"parent\":1,\"children\":527,\"pos\":\"[2][527]\"},{\"t\":\"frutti\",\"h\":[[396],[528]],\"parent\":1,\"children\":528,\"pos\":\"[2][528]\"},{\"t\":\"già\",\"h\":[[398],[529,530]],\"parent\":1,\"children\":529,\"pos\":\"[2][529]\"},{\"t\":\"scritti\",\"h\":[[398],[529,530]],\"parent\":1,\"children\":530,\"pos\":\"[2][530]\"},{\"t\":\"di\",\"h\":[[394],[531,532,533]],\"parent\":1,\"children\":531,\"pos\":\"[2][531]\"},{\"t\":\"altri\",\"h\":[[394],[531,532,533]],\"parent\":1,\"children\":532,\"pos\":\"[2][532]\"},{\"t\":\"personaggi\",\"h\":[[394],[531,532,533]],\"parent\":1,\"children\":533,\"pos\":\"[2][533]\"},{\"p\":\":\",\"parent\":1,\"children\":534,\"pos\":\"[2][534]\"}],[{\"t\":\"a\",\"h\":[[400],[535,536]],\"parent\":1,\"children\":535,\"pos\":\"[2][535]\"},{\"t\":\"questi\",\"h\":[[400],[535,536]],\"parent\":1,\"children\":536,\"pos\":\"[2][536]\"},{\"p\":\",\",\"parent\":1,\"children\":537,\"pos\":\"[2][537]\"},{\"t\":\"inoltre\",\"h\":[[401,402],[538]],\"parent\":1,\"children\":538,\"pos\":\"[2][538]\"},{\"p\":\",\",\"parent\":1,\"children\":539,\"pos\":\"[2][539]\"},{\"t\":\"aggiunse\",\"h\":[[],[540]],\"parent\":1,\"children\":540,\"pos\":\"[2][540]\"},{\"p\":\",\",\"parent\":1,\"children\":541,\"pos\":\"[2][541]\"},{\"t\":\"se\",\"h\":[[406,407],[542,543,544]],\"parent\":1,\"children\":542,\"pos\":\"[2][542]\"},{\"t\":\"non\",\"h\":[[406,407],[542,543,544]],\"parent\":1,\"children\":543,\"pos\":\"[2][543]\"},{\"t\":\"erro\",\"h\":[[406,407],[542,543,544]],\"parent\":1,\"children\":544,\"pos\":\"[2][544]\"},{\"p\":\",\",\"parent\":1,\"children\":545,\"pos\":\"[2][545]\"}],[{\"t\":\"garofani\",\"h\":[[409],[546]],\"parent\":1,\"children\":546,\"pos\":\"[2][546]\"},{\"t\":\"di\",\"h\":[[408],[547,548]],\"parent\":1,\"children\":547,\"pos\":\"[2][547]\"},{\"t\":\"stagione\",\"h\":[[408],[547,548]],\"parent\":1,\"children\":548,\"pos\":\"[2][548]\"},{\"t\":\"della\",\"h\":[[403],[549,551]],\"parent\":1,\"children\":549,\"pos\":\"[2][549]\"},{\"t\":\"loro\",\"h\":[[405],[550]],\"parent\":1,\"children\":550,\"pos\":\"[2][550]\"},{\"t\":\"Musa\",\"h\":[[403],[549,551]],\"parent\":1,\"children\":551,\"pos\":\"[2][551]\"},{\"p\":\".\",\"parent\":1,\"children\":552,\"pos\":\"[2][552]\"}],[{\"t\":\"Ringrazio\",\"h\":[[415,416],[553]],\"parent\":1,\"children\":553,\"pos\":\"[2][553]\"},{\"t\":\"i\",\"h\":[[414],[554,555]],\"parent\":1,\"children\":554,\"pos\":\"[2][554]\"},{\"t\":\"miei\",\"h\":[[414],[554,555]],\"parent\":1,\"children\":555,\"pos\":\"[2][555]\"},{\"t\":\"amici\",\"h\":[[412],[556]],\"parent\":1,\"children\":556,\"pos\":\"[2][556]\"},{\"p\":\",\",\"parent\":1,\"children\":557,\"pos\":\"[2][557]\"},{\"t\":\"ma\",\"h\":[[411],[558]],\"parent\":1,\"children\":558,\"pos\":\"[2][558]\"},{\"t\":\"la\",\"h\":[[422,426],[559,561]],\"parent\":1,\"children\":559,\"pos\":\"[2][559]\"},{\"t\":\"soave\",\"h\":[[425],[560]],\"parent\":1,\"children\":560,\"pos\":\"[2][560]\"},{\"t\":\"corona\",\"h\":[[422,426],[559,561]],\"parent\":1,\"children\":561,\"pos\":\"[2][561]\"}],[{\"t\":\"delle\",\"h\":[[423,424],[562,563]],\"parent\":1,\"children\":562,\"pos\":\"[2][562]\"},{\"t\":\"Muse\",\"h\":[[423,424],[562,563]],\"parent\":1,\"children\":563,\"pos\":\"[2][563]\"},{\"p\":\"è\",\"parent\":1,\"children\":564,\"pos\":\"[2][564]\"},{\"t\":\"di\",\"h\":[[418,421],[565,566,567]],\"parent\":1,\"children\":565,\"pos\":\"[2][565]\"},{\"t\":\"comune\",\"h\":[[418,421],[565,566,567]],\"parent\":1,\"children\":566,\"pos\":\"[2][566]\"},{\"t\":\"possesso\",\"h\":[[418,421],[565,566,567]],\"parent\":1,\"children\":567,\"pos\":\"[2][567]\"},{\"t\":\"degli\",\"h\":[[420],[568,569]],\"parent\":1,\"children\":568,\"pos\":\"[2][568]\"},{\"t\":\"iniziati\",\"h\":[[420],[568,569]],\"parent\":1,\"children\":569,\"pos\":\"[2][569]\"},{\"p\":\".\",\"parent\":1,\"children\":570,\"pos\":\"[2][570]\"}],[]]]', 17, NULL, '2017-09-05 08:28:18', '2017-09-05 08:28:18');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(10, 5, 12, 8, 13, 1, '[[[],[{\"t\":\"ὄρθρος\",\"h\":[[1],[1,3]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"ἔβη\",\"h\":[[2],[5]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"p\":\",\",\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"Χρύσιλλα\",\"h\":[[4],[7]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"p\":\",\",\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"πάλαι\",\"h\":[[6],[14,15,16]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"t\":\"δ᾽\",\"h\":[[7],[9]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"ἠῷος\",\"h\":[[8],[12,13]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"ἀλέκτωρ\",\"h\":[[9],[10,11]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"}],[{\"t\":\"κηρύσσων\",\"h\":[[10],[18]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"φθονερὴν\",\"h\":[[11],[20]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"Ἠριγένειαν\",\"h\":[[12],[19]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"ἄγει\",\"h\":[[13],[17]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"p\":\".\",\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"}],[{\"t\":\"ὀρνίθων\",\"h\":[[15],[35,36]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"ἔρροις\",\"h\":[[16],[22,24,25]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"φθονερώτατος\",\"h\":[[17],[32,33,34]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"p\":\",\",\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"ὅς\",\"h\":[[19],[38]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"με\",\"h\":[[20],[39]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"διώκεις\",\"h\":[[21],[40]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"}],[{\"t\":\"οἴκοθεν\",\"h\":[[22],[41,42,43]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"εἰς\",\"h\":[[23],[44]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"πολλοὺς\",\"h\":[[24],[45]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"ἠιθέων\",\"h\":[[25],[47,48]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"ὀάρους\",\"h\":[[26],[46]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"p\":\".\",\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"}],[],[{\"t\":\"γηράσκεις\",\"h\":[[28],[50,51]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"p\":\",\",\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"t\":\"Τιθωνέ\",\"h\":[[30],[53]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"p\":\":\",\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"τί\",\"h\":[[32],[55]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"γὰρ\",\"h\":[[33],[56]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"σὴν\",\"h\":[[34],[65]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"εὐνέτιν\",\"h\":[[35],[64,66]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"Ἠῶ\",\"h\":[[36],[67]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"}],[{\"t\":\"οὕτως\",\"h\":[[37],[57]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"t\":\"ὀρθριδίην\",\"h\":[[38],[58,59,60]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"ἤλασας\",\"h\":[[39],[61]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"ἐκ\",\"h\":[[40],[62]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"λεχέων\",\"h\":[[41],[63]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"p\":\";\",\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"}],[],[]],[[{\"t\":\"L\",\"h\":[[1],[1,3]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"p\":\"’\",\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"alba\",\"h\":[[1],[1,3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"p\":\"è\",\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"andata\",\"h\":[[2],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"p\":\",\",\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"Crisilla\",\"h\":[[4],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"p\":\",\",\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"e\",\"h\":[[7],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"il\",\"h\":[[9],[10,11]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"gallo\",\"h\":[[9],[10,11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"del\",\"h\":[[8],[12,13]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"mattino\",\"h\":[[8],[12,13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"da\",\"h\":[[6],[14,15,16]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"molto\",\"h\":[[6],[14,15,16]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"tempo\",\"h\":[[6],[14,15,16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"}],[{\"t\":\"porta\",\"h\":[[13],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"cantando\",\"h\":[[10],[18]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"Erigenia\",\"h\":[[12],[19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"maligna\",\"h\":[[11],[20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"p\":\".\",\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"}],[{\"t\":\"Va\",\"h\":[[16],[22,24,25]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"p\":\"’\",\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"in\",\"h\":[[16],[22,24,25]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"malora\",\"h\":[[16],[22,24,25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"p\":\",\",\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"p\":\"(\",\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"tu\",\"h\":[[],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"che\",\"h\":[[],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"sei\",\"h\":[[],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"p\":\")\",\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"il\",\"h\":[[17],[32,33,34]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"più\",\"h\":[[17],[32,33,34]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"invidioso\",\"h\":[[17],[32,33,34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"degli\",\"h\":[[15],[35,36]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"uccelli\",\"h\":[[15],[35,36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"p\":\",\",\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"che\",\"h\":[[19],[38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"mi\",\"h\":[[20],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"spingi\",\"h\":[[21],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"}],[{\"t\":\"fuori\",\"h\":[[22],[41,42,43]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"dalla\",\"h\":[[22],[41,42,43]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"casa\",\"h\":[[22],[41,42,43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"verso\",\"h\":[[23],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"molte\",\"h\":[[24],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"chiacchiere\",\"h\":[[26],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"di\",\"h\":[[25],[47,48]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"giovani\",\"h\":[[25],[47,48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"p\":\".\",\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"}],[{\"t\":\"Stai\",\"h\":[[28],[50,51]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"invecchiando\",\"h\":[[28],[50,51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"p\":\",\",\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"Titone\",\"h\":[[30],[53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"p\":\":\",\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"perché\",\"h\":[[32],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"infatti\",\"h\":[[33],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"così\",\"h\":[[37],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"di\",\"h\":[[38],[58,59,60]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"primo\",\"h\":[[38],[58,59,60]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"mattino\",\"h\":[[38],[58,59,60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"}],[{\"t\":\"scacciasti\",\"h\":[[39],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"dal\",\"h\":[[40],[62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"letto\",\"h\":[[41],[63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"la\",\"h\":[[35],[64,66]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"tua\",\"h\":[[34],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"amante\",\"h\":[[35],[64,66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"Aurora\",\"h\":[[36],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"p\":\"?\",\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"}]]]', 41, NULL, '2017-09-05 08:45:02', '2017-09-05 08:45:02'),
(11, 9, 22, 8, 23, 1, '[[[],[{\"t\":\"λύχνε\",\"h\":[[1],[1,2]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"p\":\",\",\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"σὲ\",\"h\":[[3],[14,15,16]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"γὰρ\",\"h\":[[4],[11]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"παρεοῦσα\",\"h\":[[5],[6,7,8]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"τρὶς\",\"h\":[[6],[12,13]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"t\":\"ὤμοσεν\",\"h\":[[7],[10]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"Ἡράκλεια\",\"h\":[[8],[4]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"}],[{\"t\":\"ἥξειν\",\"h\":[[9],[17,18,19]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"p\":\",\",\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"κοὐχ\",\"h\":[[11],[21,22]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"ἥκει\",\"h\":[[12],[24]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\":\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"t\":\"λύχνε\",\"h\":[[14],[29]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"p\":\",\",\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"σὺ\",\"h\":[[16],[26]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"δ᾽\",\"h\":[[17],[27]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"p\":\",\",\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"εἰ\",\"h\":[[19],[31]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"θεὸς\",\"h\":[[20],[33,34]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"εἶ\",\"h\":[[21],[32]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"p\":\",\",\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"}],[],[{\"t\":\"τὴν\",\"h\":[[23],[37]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"δολίην\",\"h\":[[24],[39]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"ἀπάμυνον\",\"h\":[[25],[36]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"ὅταν\",\"h\":[[26],[41]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"φίλον\",\"h\":[[27],[44,45]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"ἔνδον\",\"h\":[[28],[46,47]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"ἔχουσα\",\"h\":[[29],[43]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"}],[{\"t\":\"παίζῃ\",\"h\":[[30],[49,50]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"p\":\",\",\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"ἀποσβεσθεὶς\",\"h\":[[32],[52,53]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"μηκέτι\",\"h\":[[33],[55,57]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"φῶς\",\"h\":[[34],[58]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"πάρεχε\",\"h\":[[35],[56]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"p\":\".\",\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"}],[]],[[{\"t\":\"O\",\"h\":[[1],[1,2]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"lume\",\"h\":[[1],[1,2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"p\":\",\",\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"Eraclea\",\"h\":[[8],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"p\":\",\",\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"mentre\",\"h\":[[5],[6,7,8]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"era\",\"h\":[[5],[6,7,8]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"qui\",\"h\":[[5],[6,7,8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"p\":\",\",\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"giurò\",\"h\":[[7],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"infatti\",\"h\":[[4],[11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"tre\",\"h\":[[6],[12,13]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"volte\",\"h\":[[6],[12,13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"su\",\"h\":[[3],[14,15,16]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"di\",\"h\":[[3],[14,15,16]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"te\",\"h\":[[3],[14,15,16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"}],[{\"t\":\"che\",\"h\":[[9],[17,18,19]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"sarebbe\",\"h\":[[9],[17,18,19]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"venuta\",\"h\":[[9],[17,18,19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"p\":\",\",\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"e\",\"h\":[[11],[21,22]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"non\",\"h\":[[11],[21,22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"p\":\"è\",\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"venuta\",\"h\":[[12],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"p\":\";\",\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"tu\",\"h\":[[16],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"dunque\",\"h\":[[17],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"p\":\",\",\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"lume\",\"h\":[[14],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"p\":\",\",\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"se\",\"h\":[[19],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"sei\",\"h\":[[21],[32]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"un\",\"h\":[[20],[33,34]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"dio\",\"h\":[[20],[33,34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"p\":\",\",\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"}],[{\"t\":\"punisci\",\"h\":[[25],[36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"quell\",\"h\":[[23],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"p\":\"’\",\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"infida\",\"h\":[[24],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"p\":\":\",\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"qualora\",\"h\":[[26],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"p\":\",\",\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"avendo\",\"h\":[[29],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"un\",\"h\":[[27],[44,45]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"amante\",\"h\":[[27],[44,45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"in\",\"h\":[[28],[46,47]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"casa\",\"h\":[[28],[46,47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"p\":\",\",\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"}],[{\"t\":\"si\",\"h\":[[30],[49,50]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"diverta\",\"h\":[[30],[49,50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"p\":\",\",\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"essendoti\",\"h\":[[32],[52,53]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"spento\",\"h\":[[32],[52,53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"p\":\",\",\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"non\",\"h\":[[33],[55,57]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"fornire\",\"h\":[[35],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"più\",\"h\":[[33],[55,57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"luce\",\"h\":[[34],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"p\":\".\",\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"}]]]', 41, NULL, '2017-09-05 08:55:18', '2017-09-05 08:55:18'),
(12, 7, 18, 8, 19, 1, '[[[],[{\"t\":\"ἀργύρεον\",\"h\":[[1],[11,13]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"νυχίων\",\"h\":[[2],[20]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"με\",\"h\":[[3],[3]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"συνίστορα\",\"h\":[[4],[16]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"πιστὸν\",\"h\":[[5],[15]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"ἐρώτων\",\"h\":[[6],[17,19]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"οὐ\",\"h\":[[7,8],[22,24]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"πιστῇ\",\"h\":[[7,8],[22,24]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"λύχνον\",\"h\":[[9],[9,10]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"Φλάκκος\",\"h\":[[10],[1]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"ἔδωκε\",\"h\":[[11],[2]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"Νάπῃ\",\"h\":[[12],[25]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\",\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"}],[{\"t\":\"ἧς\",\"h\":[[14],[30,31]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"t\":\"παρὰ\",\"h\":[[15],[27]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"νῦν\",\"h\":[[16],[32]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"λεχέεσσι\",\"h\":[[17],[28,29]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"μαραίνομαι\",\"h\":[[18],[33,34]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"p\":\",\",\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"εἰς\",\"h\":[[20],[]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"ἐπιόρκου\",\"h\":[[21],[43]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"}],[{\"t\":\"παντοπαθῆ\",\"h\":[[22],[37,40]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"κούρης\",\"h\":[[23],[41,42]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"αἴσχεα\",\"h\":[[24],[38,39]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"δερκόμενος\",\"h\":[[25],[36]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"p\":\".\",\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"}],[],[{\"t\":\"Φλάκκε\",\"h\":[[27],[45]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"p\":\",\",\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"σὲ\",\"h\":[[29],[50]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"t\":\"δ᾽\",\"h\":[[30],[]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"ἄγρυπνον\",\"h\":[[31],[52]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"χαλεπαὶ\",\"h\":[[32],[47]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"τείρουσι\",\"h\":[[33],[49]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"μέριμναι\",\"h\":[[34],[48]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"p\":\":\",\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"}],[{\"t\":\"ἄμφω\",\"h\":[[36],[55]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"δ᾽\",\"h\":[[37],[54]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"t\":\"ἀλλήλων\",\"h\":[[38],[57,59,61,63]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"ἄνδιχα\",\"h\":[[39],[60]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"καιόμεθα\",\"h\":[[40],[56]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"p\":\".\",\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"}],[]],[[{\"t\":\"Flacco\",\"h\":[[10],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"donò\",\"h\":[[11],[2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"me\",\"h\":[[3],[3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"p\":\",\",\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"p\":\"(\",\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"che\",\"h\":[[],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"sono\",\"h\":[[],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"p\":\")\",\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"un\",\"h\":[[9],[9,10]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"lume\",\"h\":[[9],[9,10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"d\",\"h\":[[1],[11,13]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"p\":\"’\",\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"argento\",\"h\":[[1],[11,13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"p\":\",\",\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"}],[{\"t\":\"affidabile\",\"h\":[[5],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"testimone\",\"h\":[[4],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"d\",\"h\":[[6],[17,19]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\"’\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"amori\",\"h\":[[6],[17,19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"notturni\",\"h\":[[2],[20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"p\":\",\",\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"}],[{\"t\":\"all\",\"h\":[[7,8],[22,24]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"p\":\"’\",\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"inaffidabile\",\"h\":[[7,8],[22,24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"Nape\",\"h\":[[12],[25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"p\":\",\",\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"presso\",\"h\":[[15],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"il\",\"h\":[[17],[28,29]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"letto\",\"h\":[[17],[28,29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"della\",\"h\":[[14],[30,31]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"quale\",\"h\":[[14],[30,31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"ora\",\"h\":[[16],[32]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"mi\",\"h\":[[18],[33,34]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"consumo\",\"h\":[[18],[33,34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"p\":\",\",\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"}],[{\"t\":\"vedendo\",\"h\":[[25],[36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"tutte\",\"h\":[[22],[37,40]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"le\",\"h\":[[24],[38,39]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"esperienze\",\"h\":[[24],[38,39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"vergognose\",\"h\":[[22],[37,40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"della\",\"h\":[[23],[41,42]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"fanciulla\",\"h\":[[23],[41,42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"traditrice\",\"h\":[[21],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"p\":\".\",\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"}],[{\"t\":\"Flacco\",\"h\":[[27],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"p\":\",\",\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"penosi\",\"h\":[[32],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"affanni\",\"h\":[[34],[48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"logorano\",\"h\":[[33],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"te\",\"h\":[[29],[50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"p\":\",\",\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"insonne\",\"h\":[[31],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"p\":\":\",\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"}],[{\"t\":\"ed\",\"h\":[[37],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"entrambi\",\"h\":[[36],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"bruciamo\",\"h\":[[40],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"l\",\"h\":[[38],[57,59,61,63]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"p\":\"’\",\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"uno\",\"h\":[[38],[57,59,61,63]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"senza\",\"h\":[[39],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"l\",\"h\":[[38],[57,59,61,63]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"p\":\"’\",\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"altro\",\"h\":[[38],[57,59,61,63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"p\":\".\",\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"}],[]]]', 41, NULL, '2017-09-05 09:04:10', '2017-09-05 09:04:10'),
(13, 6, 15, 8, 16, 1, '[[[],[{\"t\":\"τὸν\",\"h\":[[1],[15]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"σιγῶντα\",\"h\":[[2],[17,18]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"p\":\",\",\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"Φιλαινί\",\"h\":[[4],[1,2]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"p\":\",\",\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"συνίστορα\",\"h\":[[6],[20]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"t\":\"τῶν\",\"h\":[[7,8],[21,22,23]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"ἀλαλήτων\",\"h\":[[7,8],[21,22,23]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"}],[{\"t\":\"λύχνον\",\"h\":[[9],[16]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"ἐλαιηρῆς\",\"h\":[[10],[12,14]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"ἐκμεθύσασα\",\"h\":[[11],[6,7,8]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"δρόσου\",\"h\":[[12],[9,11]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\",\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"}],[{\"t\":\"ἔξιθι\",\"h\":[[14],[4]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"p\":\":\",\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"μαρτυρίην\",\"h\":[[16],[30,31]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"γὰρ\",\"h\":[[17],[25]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"Ἔρως\",\"h\":[[18],[26]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"μόνος\",\"h\":[[19],[27]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"οὐκ\",\"h\":[[20],[28]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"ἐφίλησεν\",\"h\":[[21],[29]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"}],[{\"t\":\"ἔμπνουν\",\"h\":[[22],[32]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"καὶ\",\"h\":[[23,25],[37]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"πηκτὴν\",\"h\":[[24],[39]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"κλεῖε\",\"h\":[[23,25],[37]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"p\":\",\",\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"Φιλαινί\",\"h\":[[27],[34,35]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"p\":\",\",\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"θύρην\",\"h\":[[29],[40]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"p\":\".\",\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"}],[],[{\"t\":\"καὶ\",\"h\":[[31],[42]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"σύ\",\"h\":[[32],[43]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"p\":\",\",\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"φίλη\",\"h\":[[34,37],[47]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"Ξανθώ\",\"h\":[[35],[45]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"p\":\",\",\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"με\",\"h\":[[34,37],[47]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"p\":\":\",\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"σὺ\",\"h\":[[39],[50]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"δ᾽\",\"h\":[[40],[49]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"p\":\",\",\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"t\":\"ὦ\",\"h\":[[42],[52]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"t\":\"φιλεράστρια\",\"h\":[[43],[54,56]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"κοίτη\",\"h\":[[44],[53]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"p\":\",\",\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"}],[{\"t\":\"ἤδη\",\"h\":[[46],[58]],\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"τῆς\",\"h\":[[47],[64]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"Παφίης\",\"h\":[[48],[65]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"ἴσθι\",\"h\":[[49],[59]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"τὰ\",\"h\":[[50,51],[60,61,62,63]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"t\":\"λειπόμενα\",\"h\":[[50,51],[60,61,62,63]],\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"p\":\".\",\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[]],[[{\"t\":\"O\",\"h\":[[4],[1,2]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"Filènide\",\"h\":[[4],[1,2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"p\":\",\",\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"esci\",\"h\":[[14],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"p\":\",\",\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"dopo\",\"h\":[[11],[6,7,8]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"aver\",\"h\":[[11],[6,7,8]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"inzuppato\",\"h\":[[11],[6,7,8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"d\",\"h\":[[12],[9,11]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"p\":\"’\",\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"olio\",\"h\":[[12],[9,11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"d\",\"h\":[[10],[12,14]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"p\":\"’\",\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"oliva\",\"h\":[[10],[12,14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"}],[{\"t\":\"la\",\"h\":[[1],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"lucerna\",\"h\":[[9],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"che\",\"h\":[[2],[17,18]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"tace\",\"h\":[[2],[17,18]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"p\":\",\",\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"testimone\",\"h\":[[6],[20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"delle\",\"h\":[[7,8],[21,22,23]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"cose\",\"h\":[[7,8],[21,22,23]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"indicibili\",\"h\":[[7,8],[21,22,23]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"p\":\";\",\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"}],[{\"t\":\"infatti\",\"h\":[[17],[25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"Eros\",\"h\":[[18],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"solo\",\"h\":[[19],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"non\",\"h\":[[20],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"apprezzò\",\"h\":[[21],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"la\",\"h\":[[16],[30,31]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"testimonianza\",\"h\":[[16],[30,31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"viva\",\"h\":[[22],[32]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"p\":\";\",\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"}],[{\"t\":\"o\",\"h\":[[27],[34,35]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"Filènide\",\"h\":[[27],[34,35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"p\":\",\",\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"chiudi\",\"h\":[[23,25],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"la\",\"h\":[[],[38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"solida\",\"h\":[[24],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"porta\",\"h\":[[29],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"p\":\".\",\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"}],[{\"t\":\"E\",\"h\":[[31],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"tu\",\"h\":[[32],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"p\":\",\",\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"Xantò\",\"h\":[[35],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"p\":\",\",\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"baciami\",\"h\":[[34,37],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"p\":\";\",\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"e\",\"h\":[[40],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"tu\",\"h\":[[39],[50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"p\":\",\",\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"o\",\"h\":[[42],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"letto\",\"h\":[[44],[53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"d\",\"h\":[[43],[54,56]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"p\":\"’\",\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"amore\",\"h\":[[43],[54,56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"p\":\",\",\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"}],[{\"t\":\"oramai\",\"h\":[[46],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"sappi\",\"h\":[[49],[59]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"le\",\"h\":[[50,51],[60,61,62,63]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"cose\",\"h\":[[50,51],[60,61,62,63]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"che\",\"h\":[[50,51],[60,61,62,63]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"rimangono\",\"h\":[[50,51],[60,61,62,63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"di\",\"h\":[[47],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"Afrodite\",\"h\":[[48],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"p\":\".\",\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"}],[],[]]]', 41, NULL, '2017-09-05 09:09:58', '2017-09-05 09:09:58'),
(14, 1, 1, 8, 3, 1, '[[[],[{\"t\":\"ὤμοσε\",\"h\":[[1],[2]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"Καλλίγνωτος\",\"h\":[[2],[1]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"Ἰωνίδι\",\"h\":[[3],[3,4]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"p\":\",\",\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"μήποτε\",\"h\":[[5],[6,8]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"κείνης\",\"h\":[[6],[18,19]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"ἕξειν\",\"h\":[[7],[5,7,9]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"μήτε\",\"h\":[[8],[10]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"φίλον\",\"h\":[[9],[11,12]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"κρέσσονα\",\"h\":[[10],[17]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"μήτε\",\"h\":[[11],[13]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"φίλην\",\"h\":[[12],[14,16]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\".\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"}],[{\"t\":\"ὤμοσεν\",\"h\":[[14],[21]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"p\":\":\",\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"ἀλλὰ\",\"h\":[[16],[23]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"λέγουσιν\",\"h\":[[17],[24]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"ἀληθέα\",\"h\":[[18],[25,26]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"p\":\",\",\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"τοὺς\",\"h\":[[20,23],[32,33]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"ἐν\",\"h\":[[21,22],[34,35]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"ἔρωτι\",\"h\":[[21,22],[34,35]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"}],[{\"t\":\"ὅρκους\",\"h\":[[20,23],[32,33]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"p\":\".\",\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"μὴ\",\"h\":[[25,26],[36,37]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"δύνειν\",\"h\":[[25,26],[36,37]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"οὔατ᾽\",\"h\":[[27,28],[38,39]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"ἐς\",\"h\":[[27,28],[38,39]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"ἀθανάτων\",\"h\":[[29],[40,41]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"p\":\".\",\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"}],[],[{\"t\":\"νῦν\",\"h\":[[31],[44]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"δ᾽\",\"h\":[[32],[43]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"ὁ\",\"h\":[[33,34],[45]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"μὲν\",\"h\":[[33,34],[45]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"ἀρσενικῷ\",\"h\":[[35],[51]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"θέρεται\",\"h\":[[36],[47]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"πυρί\",\"h\":[[37],[48,49,50]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"p\":\":\",\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"τῆς\",\"h\":[[39,42],[54,56]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"δὲ\",\"h\":[[40],[53]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"ταλαίνης\",\"h\":[[41],[55]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"}],[{\"t\":\"νύμφης\",\"h\":[[39,42],[54,56]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"p\":\",\",\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"ὡς\",\"h\":[[44],[68]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"t\":\"Μεγαρέων\",\"h\":[[45],[69,70]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"p\":\",\",\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"οὐ\",\"h\":[[47],[63]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"λόγος\",\"h\":[[48],[64]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"οὐδ᾽\",\"h\":[[49],[65]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"ἀριθμός\",\"h\":[[50],[66]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"p\":\".\",\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"p\":\".\",\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[]],[[{\"t\":\"Callignoto\",\"h\":[[2],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"giurò\",\"h\":[[1],[2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"a\",\"h\":[[3],[3,4]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"Ionide\",\"h\":[[3],[3,4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"che\",\"h\":[[7],[5,7,9]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"non\",\"h\":[[5],[6,8]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"avrebbe\",\"h\":[[7],[5,7,9]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"mai\",\"h\":[[5],[6,8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"avuto\",\"h\":[[7],[5,7,9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"}],[{\"t\":\"né\",\"h\":[[8],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"un\",\"h\":[[9],[11,12]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"amico\",\"h\":[[9],[11,12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"né\",\"h\":[[11],[13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"un\",\"h\":[[12],[14,16]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"p\":\"’\",\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"amica\",\"h\":[[12],[14,16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"migliore\",\"h\":[[10],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"di\",\"h\":[[6],[18,19]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"quella\",\"h\":[[6],[18,19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"p\":\".\",\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"}],[{\"t\":\"Giurò\",\"h\":[[14],[21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"p\":\":\",\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"ma\",\"h\":[[16],[23]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"dicono\",\"h\":[[17],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"cose\",\"h\":[[18],[25,26]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"vere\",\"h\":[[18],[25,26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"p\":\",\",\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"p\":\"(\",\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"dicendo\",\"h\":[[],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"p\":\")\",\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"che\",\"h\":[[],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"i\",\"h\":[[20,23],[32,33]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"giuramenti\",\"h\":[[20,23],[32,33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"in\",\"h\":[[21,22],[34,35]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"amore\",\"h\":[[21,22],[34,35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"}],[{\"t\":\"non\",\"h\":[[25,26],[36,37]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"entrano\",\"h\":[[25,26],[36,37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"nelle\",\"h\":[[27,28],[38,39]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"orecchie\",\"h\":[[27,28],[38,39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"degli\",\"h\":[[29],[40,41]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"immortali\",\"h\":[[29],[40,41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"p\":\".\",\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"}],[{\"t\":\"Ma\",\"h\":[[32],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"ora\",\"h\":[[31],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"egli\",\"h\":[[33,34],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"p\":\"è\",\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"bruciato\",\"h\":[[36],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"da\",\"h\":[[37],[48,49,50]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"un\",\"h\":[[37],[48,49,50]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"fuoco\",\"h\":[[37],[48,49,50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"virile\",\"h\":[[35],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"p\":\",\",\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"e\",\"h\":[[40],[53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"della\",\"h\":[[39,42],[54,56]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"misera\",\"h\":[[41],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"fidanzata\",\"h\":[[39,42],[54,56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"}],[{\"t\":\"non\",\"h\":[[],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"p\":\"(\",\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"c\",\"h\":[[],[59]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"p\":\"’\",\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"p\":\"è\",\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"p\":\")\",\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"né\",\"h\":[[47],[63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"stima\",\"h\":[[48],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"né\",\"h\":[[49],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"considerazione\",\"h\":[[50],[66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"p\":\",\",\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"t\":\"come\",\"h\":[[44],[68]],\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"},{\"t\":\"dei\",\"h\":[[45],[69,70]],\"parent\":1,\"children\":69,\"pos\":\"[2][69]\"},{\"t\":\"Megaresi\",\"h\":[[45],[69,70]],\"parent\":1,\"children\":70,\"pos\":\"[2][70]\"},{\"p\":\".\",\"parent\":1,\"children\":71,\"pos\":\"[2][71]\"}],[]]]', 41, NULL, '2017-09-05 09:19:01', '2017-09-05 09:19:01');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(15, 1, 1, 8, 4, 1, '[[[],[{\"t\":\"ὤμοσε\",\"h\":[[1],[2]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"Καλλίγνωτος\",\"h\":[[2],[1]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"Ἰωνίδι\",\"h\":[[3],[3,4]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"p\":\",\",\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"μήποτε\",\"h\":[[5],[6,8]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"κείνης\",\"h\":[[6],[16,17]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"ἕξειν\",\"h\":[[7],[5,7,9]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"μήτε\",\"h\":[[8,11],[12]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"φίλον\",\"h\":[[9],[10,11]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"κρέσσονα\",\"h\":[[10],[15]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"μήτε\",\"h\":[[8,11],[12]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"φίλην\",\"h\":[[12],[13,14]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\".\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"}],[{\"t\":\"ὤμοσεν\",\"h\":[[14],[]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"p\":\":\",\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"ἀλλὰ\",\"h\":[[16],[22]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"λέγουσιν\",\"h\":[[17],[19,20]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"ἀληθέα\",\"h\":[[18],[38,40]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"p\":\",\",\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"τοὺς\",\"h\":[[20,23],[25,26]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"ἐν\",\"h\":[[21,22],[27,29]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"ἔρωτι\",\"h\":[[21,22],[27,29]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"}],[{\"t\":\"ὅρκους\",\"h\":[[20,23],[25,26]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"p\":\".\",\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"μὴ\",\"h\":[[25],[30]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"δύνειν\",\"h\":[[26],[24,31]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"οὔατ᾽\",\"h\":[[27,28],[32,33]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"ἐς\",\"h\":[[27,28],[32,33]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"ἀθανάτων\",\"h\":[[29],[34,35,36]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"p\":\".\",\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"}],[],[{\"t\":\"νῦν\",\"h\":[[31],[43]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"δ᾽\",\"h\":[[32],[42]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"ὁ\",\"h\":[[33,34],[44]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"μὲν\",\"h\":[[33,34],[44]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"ἀρσενικῷ\",\"h\":[[35],[48,49,50]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"θέρεται\",\"h\":[[36],[45]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"πυρί\",\"h\":[[37],[46,47]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"p\":\":\",\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"τῆς\",\"h\":[[39,42],[59,61]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"δὲ\",\"h\":[[40],[51]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"ταλαίνης\",\"h\":[[41],[60]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"}],[{\"t\":\"νύμφης\",\"h\":[[39,42],[59,61]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"p\":\",\",\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"ὡς\",\"h\":[[44],[63]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"t\":\"Μεγαρέων\",\"h\":[[45],[64,65]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"p\":\",\",\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"οὐ\",\"h\":[[47],[55]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"λόγος\",\"h\":[[48],[56]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"οὐδ᾽\",\"h\":[[49],[57]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"ἀριθμός\",\"h\":[[50],[58]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"p\":\".\",\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"p\":\".\",\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[]],[[{\"t\":\"Callignoto\",\"h\":[[2],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"giurò\",\"h\":[[1],[2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"a\",\"h\":[[3],[3,4]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"Ionide\",\"h\":[[3],[3,4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"che\",\"h\":[[7],[5,7,9]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"non\",\"h\":[[5],[6,8]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"avrebbe\",\"h\":[[7],[5,7,9]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"mai\",\"h\":[[5],[6,8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"avuto\",\"h\":[[7],[5,7,9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"}],[{\"t\":\"un\",\"h\":[[9],[10,11]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"compagno\",\"h\":[[9],[10,11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"o\",\"h\":[[8,11],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"una\",\"h\":[[12],[13,14]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"compagna\",\"h\":[[12],[13,14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"migliore\",\"h\":[[10],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"di\",\"h\":[[6],[16,17]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"lei\",\"h\":[[6],[16,17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\".\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"}],[{\"t\":\"Si\",\"h\":[[17],[19,20]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"dice\",\"h\":[[17],[19,20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"p\":\",\",\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"però\",\"h\":[[16],[22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"p\":\",\",\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"che\",\"h\":[[26],[24,31]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"i\",\"h\":[[20,23],[25,26]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"giuramenti\",\"h\":[[20,23],[25,26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"d\",\"h\":[[21,22],[27,29]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"p\":\"’\",\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"amore\",\"h\":[[21,22],[27,29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"}],[{\"t\":\"non\",\"h\":[[25],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"arrivino\",\"h\":[[26],[24,31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"alle\",\"h\":[[27,28],[32,33]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"orecchie\",\"h\":[[27,28],[32,33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"degli\",\"h\":[[29],[34,35,36]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"dei\",\"h\":[[29],[34,35,36]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"immortali\",\"h\":[[29],[34,35,36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"p\":\",\",\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"ed\",\"h\":[[18],[38,40]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"p\":\"è\",\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"vero\",\"h\":[[18],[38,40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"p\":\".\",\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"}],[{\"t\":\"Infatti\",\"h\":[[32],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"ora\",\"h\":[[31],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"egli\",\"h\":[[33,34],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"arde\",\"h\":[[36],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"di\",\"h\":[[37],[46,47]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"passione\",\"h\":[[37],[46,47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"per\",\"h\":[[35],[48,49,50]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"un\",\"h\":[[35],[48,49,50]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"uomo\",\"h\":[[35],[48,49,50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"e\",\"h\":[[40],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"non\",\"h\":[[],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"ha\",\"h\":[[],[53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"più\",\"h\":[[],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"}],[{\"t\":\"né\",\"h\":[[47],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"stima\",\"h\":[[48],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"né\",\"h\":[[49],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"considerazione\",\"h\":[[50],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"della\",\"h\":[[39,42],[59,61]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"povera\",\"h\":[[41],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"fidanzata\",\"h\":[[39,42],[59,61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"p\":\",\",\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"come\",\"h\":[[44],[63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"dei\",\"h\":[[45],[64,65]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"Megaresi\",\"h\":[[45],[64,65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"p\":\".\",\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"}],[]]]', 41, NULL, '2017-09-05 09:20:12', '2017-09-05 09:20:12'),
(16, 11, 28, 8, 29, 1, '[[[],[{\"t\":\"νὺξ\",\"h\":[[1],[1]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"ἱερὴ\",\"h\":[[2],[2]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"καὶ\",\"h\":[[3],[3]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"λύχνε\",\"h\":[[4],[4]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"p\":\",\",\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"συνίστορας\",\"h\":[[6],[9,10]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"t\":\"οὔτινας\",\"h\":[[7],[14]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"ἄλλους\",\"h\":[[8],[15]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"}],[{\"t\":\"ὅρκοις\",\"h\":[[9],[11,12]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"p\":\",\",\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"ἀλλ᾽\",\"h\":[[11],[16,17]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"ὑμέας\",\"h\":[[12],[18]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\",\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"t\":\"εἱλόμεθ᾽\",\"h\":[[14],[7]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"t\":\"ἀμφότεροι\",\"h\":[[15],[6]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"}],[{\"t\":\"χὠ\",\"h\":[[16],[22]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"μὲν\",\"h\":[[17],[]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"ἐμὲ\",\"h\":[[18,19],[23,24]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"στέρξειν\",\"h\":[[18,19],[23,24]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"p\":\",\",\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"κεῖνον\",\"h\":[[21],[32]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"δ᾽\",\"h\":[[22],[25]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"ἐγὼ\",\"h\":[[23],[26]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"οὔ\",\"h\":[[24],[28]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"ποτε\",\"h\":[[25],[30]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"λείψειν\",\"h\":[[26],[27,29,31]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"}],[{\"t\":\"ὠμόσαμεν\",\"h\":[[27],[20,21]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"κοινὴν\",\"h\":[[28],[39]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"δ᾽\",\"h\":[[29],[34]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"t\":\"εἴχετε\",\"h\":[[30],[35,36]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"μαρτυρίην\",\"h\":[[31],[37,38]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"p\":\".\",\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"}],[],[{\"t\":\"νῦν\",\"h\":[[33],[41]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"δ᾽\",\"h\":[[34],[]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"ὁ\",\"h\":[[35],[42]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"μὲν\",\"h\":[[36],[]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"μὲν\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"t\":\"ὅρκια\",\"h\":[[38],[46]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"φησιν\",\"h\":[[39],[43]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"ἐν\",\"h\":[[40,41],[48,50]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"ὕδατι\",\"h\":[[40,41],[48,50]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"t\":\"κεῖνα\",\"h\":[[42],[45]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"t\":\"φέρεσθαι\",\"h\":[[43],[44,47]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"p\":\",\",\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"}],[{\"t\":\"λύχνε\",\"h\":[[45],[52]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"p\":\",\",\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"σὺ\",\"h\":[[47],[55]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"δ᾽\",\"h\":[[48],[54]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"ἐν\",\"h\":[[49,50],[58,59,60]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"κόλποις\",\"h\":[[49,50],[58,59,60]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"t\":\"αὐτὸν\",\"h\":[[51],[56]],\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"t\":\"ὁρᾷς\",\"h\":[[52],[57]],\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"},{\"t\":\"ἑτέρων\",\"h\":[[53],[61,62]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"p\":\".\",\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"}],[]],[[{\"t\":\"Notte\",\"h\":[[1],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"divina\",\"h\":[[2],[2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"e\",\"h\":[[3],[3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"lucerna\",\"h\":[[4],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"p\":\",\",\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"entrambi\",\"h\":[[15],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"scegliemmo\",\"h\":[[14],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"p\":\",\",\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"come\",\"h\":[[6],[9,10]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"testimoni\",\"h\":[[6],[9,10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"di\",\"h\":[[9],[11,12]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"giuramento\",\"h\":[[9],[11,12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"p\":\",\",\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"nessun\",\"h\":[[7],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"altro\",\"h\":[[8],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"se\",\"h\":[[11],[16,17]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"non\",\"h\":[[11],[16,17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"voi\",\"h\":[[12],[18]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"p\":\",\",\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"noi\",\"h\":[[27],[20,21]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"giurammo\",\"h\":[[27],[20,21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"egli\",\"h\":[[16],[22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"di\",\"h\":[[18,19],[23,24]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"amarmi\",\"h\":[[18,19],[23,24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"e\",\"h\":[[22],[25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"io\",\"h\":[[23],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"che\",\"h\":[[26],[27,29,31]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"non\",\"h\":[[24],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"avrei\",\"h\":[[26],[27,29,31]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"mai\",\"h\":[[25],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"lasciato\",\"h\":[[26],[27,29,31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"quello\",\"h\":[[21],[32]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"p\":\";\",\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"e\",\"h\":[[29],[34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"voi\",\"h\":[[30],[35,36]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"avevate\",\"h\":[[30],[35,36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"una\",\"h\":[[31],[37,38]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"prova\",\"h\":[[31],[37,38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"comune\",\"h\":[[28],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"p\":\".\",\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"Ora\",\"h\":[[33],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"egli\",\"h\":[[35],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"dice\",\"h\":[[39],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"che\",\"h\":[[43],[44,47]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"questi\",\"h\":[[42],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"giuramenti\",\"h\":[[38],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"sono\",\"h\":[[43],[44,47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"nell\",\"h\":[[40,41],[48,50]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"p\":\"’\",\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"acqua\",\"h\":[[40,41],[48,50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"p\":\",\",\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"lucerna\",\"h\":[[45],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"p\":\",\",\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"e\",\"h\":[[48],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"tu\",\"h\":[[47],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"lo\",\"h\":[[51],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"vedi\",\"h\":[[52],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"tra\",\"h\":[[49,50],[58,59,60]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"le\",\"h\":[[49,50],[58,59,60]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"braccia\",\"h\":[[49,50],[58,59,60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"di\",\"h\":[[53],[61,62]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"altre\",\"h\":[[53],[61,62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"p\":\".\",\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"}]]]', 41, NULL, '2017-09-05 09:22:08', '2017-09-05 09:22:08'),
(17, 9, 22, 8, 24, 1, '[[[],[{\"t\":\"λύχνε\",\"h\":[[1],[13]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"p\":\",\",\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"σὲ\",\"h\":[[3],[9,10,11]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"γὰρ\",\"h\":[[4],[]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"παρεοῦσα\",\"h\":[[5],[1,2,3]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"τρὶς\",\"h\":[[6],[7,8]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"t\":\"ὤμοσεν\",\"h\":[[7],[6]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"Ἡράκλεια\",\"h\":[[8],[5]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"}],[{\"t\":\"ἥξειν\",\"h\":[[9],[15,16,17]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"p\":\",\",\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"κοὐχ\",\"h\":[[11],[19,20]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"ἥκει\",\"h\":[[12],[21,23,24]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"p\":\":\",\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"t\":\"λύχνε\",\"h\":[[14],[26]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"p\":\",\",\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"σὺ\",\"h\":[[16],[]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"δ᾽\",\"h\":[[17],[28]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"p\":\",\",\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"εἰ\",\"h\":[[19],[30]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"θεὸς\",\"h\":[[20],[33,34]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"εἶ\",\"h\":[[21],[32]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"p\":\",\",\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"}],[],[{\"t\":\"τὴν\",\"h\":[[23],[37,38]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"δολίην\",\"h\":[[24],[40]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"ἀπάμυνον\",\"h\":[[25],[36]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"ὅταν\",\"h\":[[26],[]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"φίλον\",\"h\":[[27],[48,49,50]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"ἔνδον\",\"h\":[[28,29],[45,46,47]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"ἔχουσα\",\"h\":[[28,29],[45,46,47]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"}],[{\"t\":\"παίζῃ\",\"h\":[[30],[42,43,44]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"p\":\",\",\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"ἀποσβεσθεὶς\",\"h\":[[32],[52]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"μηκέτι\",\"h\":[[33],[53,54,56]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"φῶς\",\"h\":[[34],[57]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"πάρεχε\",\"h\":[[35],[55]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"p\":\".\",\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"}],[]],[[{\"t\":\"Mentre\",\"h\":[[5],[1,2,3]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"era\",\"h\":[[5],[1,2,3]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"qui\",\"h\":[[5],[1,2,3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"p\":\",\",\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"Eraclea\",\"h\":[[8],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"giurò\",\"h\":[[7],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"tre\",\"h\":[[6],[7,8]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"volte\",\"h\":[[6],[7,8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"su\",\"h\":[[3],[9,10,11]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"di\",\"h\":[[3],[9,10,11]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"te\",\"h\":[[3],[9,10,11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"p\":\",\",\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"lume\",\"h\":[[1],[13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"p\":\",\",\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"}],[{\"t\":\"che\",\"h\":[[9],[15,16,17]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"sarebbe\",\"h\":[[9],[15,16,17]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"tornata\",\"h\":[[9],[15,16,17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"p\":\",\",\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"ma\",\"h\":[[11],[19,20]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"non\",\"h\":[[11],[19,20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"si\",\"h\":[[12],[21,23,24]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"p\":\"è\",\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"fatta\",\"h\":[[12],[21,23,24]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"viva\",\"h\":[[12],[21,23,24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"p\":\";\",\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"lume\",\"h\":[[14],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"p\":\",\",\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"dunque\",\"h\":[[17],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"p\":\",\",\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"se\",\"h\":[[19],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"davvero\",\"h\":[[],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"sei\",\"h\":[[21],[32]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"un\",\"h\":[[20],[33,34]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"dio\",\"h\":[[20],[33,34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"p\":\",\",\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"}],[{\"t\":\"vendicati\",\"h\":[[25],[36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"di\",\"h\":[[23],[37,38]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"quell\",\"h\":[[23],[37,38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"p\":\"’\",\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"infida\",\"h\":[[24],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"p\":\":\",\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"si\",\"h\":[[30],[42,43,44]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"sta\",\"h\":[[30],[42,43,44]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"divertendo\",\"h\":[[30],[42,43,44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"tra\",\"h\":[[28,29],[45,46,47]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"le\",\"h\":[[28,29],[45,46,47]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"braccia\",\"h\":[[28,29],[45,46,47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"di\",\"h\":[[27],[48,49,50]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"un\",\"h\":[[27],[48,49,50]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"amante\",\"h\":[[27],[48,49,50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"p\":\"?\",\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"}],[{\"t\":\"Spegniti\",\"h\":[[32],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"e\",\"h\":[[33],[53,54,56]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"non\",\"h\":[[33],[53,54,56]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"far\",\"h\":[[35],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"più\",\"h\":[[33],[53,54,56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"luce\",\"h\":[[34],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"p\":\".\",\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"}]]]', 41, NULL, '2017-09-05 09:23:50', '2017-09-05 09:23:50'),
(18, 10, 25, 8, 40, 1, '[[[],[{\"t\":\"ἐχθαίρω\",\"h\":[[1],[1,2]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"τὸν\",\"h\":[[2,3],[3]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"Ἔρωτα\",\"h\":[[2,3],[3]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"p\":\":\",\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"τί\",\"h\":[[5],[5]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"γὰρ\",\"h\":[[6],[6]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"t\":\"βαρὺς\",\"h\":[[7],[10]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"οὐκ\",\"h\":[[8],[7]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"ἐπὶ\",\"h\":[[9],[11]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"θῆρας\",\"h\":[[10],[12]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"}],[{\"t\":\"ὄρνυται\",\"h\":[[11],[8,9]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"p\":\",\",\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"ἀλλ᾽\",\"h\":[[13],[14]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"t\":\"ἐπ᾽\",\"h\":[[14],[17]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"t\":\"ἐμὴν\",\"h\":[[15],[18,19]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"ἰοβολεῖ\",\"h\":[[16],[15,16]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"κραδίην\",\"h\":[[17],[20]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"p\":\";\",\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"}],[{\"t\":\"τί\",\"h\":[[19,20],[22,23,24]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"πλέον\",\"h\":[[19,20],[22,23,24]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"p\":\",\",\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"εἰ\",\"h\":[[22],[28]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"θεὸς\",\"h\":[[23],[29,30]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"ἄνδρα\",\"h\":[[24],[32,33]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"καταφλέγεί\",\"h\":[[25],[31]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"p\":\";\",\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"ἢ\",\"h\":[[27],[35]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"τί\",\"h\":[[28],[37]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"τὸ\",\"h\":[[29,30],[38]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"t\":\"σεμνὸν\",\"h\":[[29,30],[38]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"}],[{\"t\":\"δῃώσας\",\"h\":[[31],[39,40,41]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"ἀπ᾽\",\"h\":[[32,33],[45,46]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"ἐμῆς\",\"h\":[[32,33],[45,46]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"ἆθλον\",\"h\":[[34],[43,44]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"ἔχει\",\"h\":[[35],[42]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"κεφαλῆς\",\"h\":[[36],[47]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"p\":\";\",\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"}],[]],[[{\"t\":\"Io\",\"h\":[[1],[1,2]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"odio\",\"h\":[[1],[1,2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"Eros\",\"h\":[[2,3],[3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"p\":\":\",\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"perché\",\"h\":[[5],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"infatti\",\"h\":[[6],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"non\",\"h\":[[8],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"si\",\"h\":[[11],[8,9]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"avventa\",\"h\":[[11],[8,9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"violento\",\"h\":[[7],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"sulle\",\"h\":[[9],[11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"fiere\",\"h\":[[10],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"p\":\",\",\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"}],[{\"t\":\"ma\",\"h\":[[13],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"lancia\",\"h\":[[16],[15,16]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"dardi\",\"h\":[[16],[15,16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"contro\",\"h\":[[14],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"il\",\"h\":[[15],[18,19]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"mio\",\"h\":[[15],[18,19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"cuore\",\"h\":[[17],[20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"p\":\"?\",\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"}],[{\"t\":\"Che\",\"h\":[[19,20],[22,23,24]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"vantaggio\",\"h\":[[19,20],[22,23,24]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"c\",\"h\":[[19,20],[22,23,24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"p\":\"’\",\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"p\":\"è\",\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"p\":\",\",\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"se\",\"h\":[[22],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"un\",\"h\":[[23],[29,30]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"dio\",\"h\":[[23],[29,30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"brucia\",\"h\":[[25],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"un\",\"h\":[[24],[32,33]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"uomo\",\"h\":[[24],[32,33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"p\":\"?\",\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"Oppure\",\"h\":[[27],[35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"p\":\",\",\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"quale\",\"h\":[[28],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"gloria\",\"h\":[[29,30],[38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"}],[{\"t\":\"dopo\",\"h\":[[31],[39,40,41]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"avermi\",\"h\":[[31],[39,40,41]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"ucciso\",\"h\":[[31],[39,40,41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"ottiene\",\"h\":[[35],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"in\",\"h\":[[34],[43,44]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"premio\",\"h\":[[34],[43,44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"dalla\",\"h\":[[32,33],[45,46]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"mia\",\"h\":[[32,33],[45,46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"testa\",\"h\":[[36],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"p\":\"?\",\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"}],[]]]', 41, NULL, '2017-09-05 10:19:20', '2017-09-05 10:19:20'),
(19, 12, 45, 1, 64, 8, '[[[],[{\"t\":\"Ῥουφῖνος\",\"h\":[[1],[3]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"τῇ\",\"h\":[[2],[5]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"μῇ\",\"h\":[[3],[6]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"γλυκερωτάτῃ\",\"h\":[[4],[7]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"Ἐλπίδι\",\"h\":[[5],[8]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"πολλὰ\",\"h\":[[6],[14]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"χαίρειν\",\"h\":[[7],[10,11]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"p\":\",\",\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"εἰ\",\"h\":[[9],[16]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"χαίρειν\",\"h\":[[10],[18]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"χωρὶς\",\"h\":[[11],[19]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"ἐμοῦ\",\"h\":[[12],[20,21]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"δύναται\",\"h\":[[13],[17]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"p\":\".\",\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"}],[{\"t\":\"οὐκέτι\",\"h\":[[15],[23,25]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"βαστάζω\",\"h\":[[16],[24]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"p\":\",\",\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"μὰ\",\"h\":[[18],[27]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"τὰ\",\"h\":[[19],[28]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"ς\",\"h\":[[20,22],[29]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"1\",\"h\":[[21],[]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"᾽\",\"h\":[[20,22],[29]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"ὄμματα\",\"h\":[[23],[30]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"p\":\",\",\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"τὴν\",\"h\":[[25],[32]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"φιλέρημον\",\"h\":[[26],[37,38,39]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"}],[{\"t\":\"καὶ\",\"h\":[[27],[40]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"τὴν\",\"h\":[[28,29],[41,42]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"μουνολεχῆ\",\"h\":[[28,29],[41,42]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"t\":\"σεῖο\",\"h\":[[30],[34,35]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"διαζυγίην\",\"h\":[[31],[33]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"}],[],[{\"t\":\"ἀλλ᾽\",\"h\":[[32],[44]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"αἰεὶ\",\"h\":[[33],[45]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"δακρύοισι\",\"h\":[[34],[47,48]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"πεφυρμένος\",\"h\":[[35],[46]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"ἢ\",\"h\":[[36],[50]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"πὶ\",\"h\":[[37,38],[51,52]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"t\":\"Κορησσὸν\",\"h\":[[37,38],[51,52]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"}],[{\"t\":\"ἔρχομαι\",\"h\":[[39],[49]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"ἢ\",\"h\":[[40],[53]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"μεγάλης\",\"h\":[[41],[56,57]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"t\":\"νηὸν\",\"h\":[[42],[55]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"t\":\"ἐς\",\"h\":[[43],[54]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"Ἀρτέμιδος\",\"h\":[[44],[58]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"p\":\".\",\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"}],[{\"t\":\"αὔριον\",\"h\":[[46],[61]],\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"ἀλλὰ\",\"h\":[[47],[60]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"πάτρη\",\"h\":[[48],[62,63]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"με\",\"h\":[[49],[64]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"δεδέξεται\",\"h\":[[50],[65]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"p\":\":\",\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"t\":\"ἐς\",\"h\":[[52],[69]],\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"},{\"t\":\"δὲ\",\"h\":[[53],[67]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"t\":\"σὸν\",\"h\":[[54],[71]],\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"},{\"t\":\"ὄμμα\",\"h\":[[55],[72]],\"parent\":0,\"children\":55,\"pos\":\"[1][55]\"}],[{\"t\":\"πτήσομαι\",\"h\":[[56],[68]],\"parent\":0,\"children\":56,\"pos\":\"[1][56]\"},{\"p\":\",\",\"parent\":0,\"children\":57,\"pos\":\"[1][57]\"},{\"t\":\"ἐρρῶσθαι\",\"h\":[[58],[78,79]],\"parent\":0,\"children\":58,\"pos\":\"[1][58]\"},{\"t\":\"μυρία\",\"h\":[[59],[75,76]],\"parent\":0,\"children\":59,\"pos\":\"[1][59]\"},{\"t\":\"ς\",\"h\":[[60,63],[74]],\"parent\":0,\"children\":60,\"pos\":\"[1][60]\"},{\"t\":\"1\",\"h\":[[61],[]],\"parent\":0,\"children\":61,\"pos\":\"[1][61]\"},{\"t\":\"᾽\",\"h\":[[62],[]],\"parent\":0,\"children\":62,\"pos\":\"[1][62]\"},{\"t\":\"εὐχόμενος\",\"h\":[[60,63],[74]],\"parent\":0,\"children\":63,\"pos\":\"[1][63]\"},{\"p\":\".\",\"parent\":0,\"children\":64,\"pos\":\"[1][64]\"}],[]],[[{\"t\":\"Io\",\"h\":[[],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"p\":\",\",\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"Rufino\",\"h\":[[1],[3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"p\":\",\",\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"alla\",\"h\":[[2],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"mia\",\"h\":[[3],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"dolcissima\",\"h\":[[4],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"Speranza\",\"h\":[[5],[8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"p\":\"(\",\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"auguro\",\"h\":[[7],[10,11]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"di\",\"h\":[[7],[10,11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"p\":\")\",\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"gioire\",\"h\":[[7],[13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"}],[{\"t\":\"molto\",\"h\":[[6],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"p\":\",\",\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"se\",\"h\":[[9],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"può\",\"h\":[[13],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"gioire\",\"h\":[[10],[18]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"senza\",\"h\":[[11],[19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"di\",\"h\":[[12],[20,21]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"me\",\"h\":[[12],[20,21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"p\":\".\",\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"}],[{\"t\":\"Non\",\"h\":[[15],[23,25]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"reggo\",\"h\":[[16],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"più\",\"h\":[[15],[23,25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"p\":\",\",\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"per\",\"h\":[[18],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"i\",\"h\":[[19],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"tuoi\",\"h\":[[20,22],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"occhi\",\"h\":[[23],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"p\":\",\",\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"la\",\"h\":[[25],[32]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"separazione\",\"h\":[[31],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"}],[{\"t\":\"da\",\"h\":[[30],[34,35]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"te\",\"h\":[[30],[34,35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"p\":\",\",\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"che\",\"h\":[[26],[37,38,39]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"porta\",\"h\":[[26],[37,38,39]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"solitudine\",\"h\":[[26],[37,38,39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"e\",\"h\":[[27],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"dorme\",\"h\":[[28,29],[41,42]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"sola\",\"h\":[[28,29],[41,42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"p\":\".\",\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"}],[{\"t\":\"Ma\",\"h\":[[32],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"sempre\",\"h\":[[33],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"inondato\",\"h\":[[35],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"di\",\"h\":[[34],[47,48]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"lacrime\",\"h\":[[34],[47,48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"vado\",\"h\":[[39],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"}],[{\"t\":\"o\",\"h\":[[36],[50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"a\",\"h\":[[37,38],[51,52]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"Coresso\",\"h\":[[37,38],[51,52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"o\",\"h\":[[40],[53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"al\",\"h\":[[43],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"tempio\",\"h\":[[42],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"della\",\"h\":[[41],[56,57]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"grande\",\"h\":[[41],[56,57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"Artemide\",\"h\":[[44],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"p\":\".\",\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"}],[{\"t\":\"Ma\",\"h\":[[47],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"domani\",\"h\":[[46],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"la\",\"h\":[[48],[62,63]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"patria\",\"h\":[[48],[62,63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"mi\",\"h\":[[49],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"accoglierà\",\"h\":[[50],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"p\":\";\",\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"e\",\"h\":[[53],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"t\":\"volerò\",\"h\":[[56],[68]],\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"},{\"t\":\"verso\",\"h\":[[52],[69]],\"parent\":1,\"children\":69,\"pos\":\"[2][69]\"}],[{\"t\":\"il\",\"h\":[[],[70]],\"parent\":1,\"children\":70,\"pos\":\"[2][70]\"},{\"t\":\"tuo\",\"h\":[[54],[71]],\"parent\":1,\"children\":71,\"pos\":\"[2][71]\"},{\"t\":\"volto\",\"h\":[[55],[72]],\"parent\":1,\"children\":72,\"pos\":\"[2][72]\"},{\"p\":\",\",\"parent\":1,\"children\":73,\"pos\":\"[2][73]\"},{\"t\":\"augurandoti\",\"h\":[[60,63],[74]],\"parent\":1,\"children\":74,\"pos\":\"[2][74]\"},{\"t\":\"mille\",\"h\":[[59],[75,76]],\"parent\":1,\"children\":75,\"pos\":\"[2][75]\"},{\"t\":\"volte\",\"h\":[[59],[75,76]],\"parent\":1,\"children\":76,\"pos\":\"[2][76]\"},{\"t\":\"di\",\"h\":[[],[77]],\"parent\":1,\"children\":77,\"pos\":\"[2][77]\"},{\"t\":\"star\",\"h\":[[58],[78,79]],\"parent\":1,\"children\":78,\"pos\":\"[2][78]\"},{\"t\":\"bene\",\"h\":[[58],[78,79]],\"parent\":1,\"children\":79,\"pos\":\"[2][79]\"},{\"p\":\".\",\"parent\":1,\"children\":80,\"pos\":\"[2][80]\"}],[]]]', 41, NULL, '2017-09-05 10:24:17', '2017-09-05 10:24:17');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(20, 12, 48, 1, 64, 8, '[[[],[{\"t\":\"Ῥουφῖνος\",\"h\":[[1],[1,2,3]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"τῇ\",\"h\":[[2],[]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"μῇ\",\"h\":[[3,4,5],[5,6,7]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"γλυκερωτάτῃ\",\"h\":[[3,4,5],[5,6,7]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"Ἐλπίδι\",\"h\":[[3,4,5],[5,6,7]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"πολλὰ\",\"h\":[[6],[9]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"χαίρειν\",\"h\":[[7],[10,11,12]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"p\":\",\",\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"εἰ\",\"h\":[[9],[14]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"χαίρειν\",\"h\":[[10],[16,17]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"χωρὶς\",\"h\":[[11],[18]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"ἐμοῦ\",\"h\":[[12],[19,20]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"δύναται\",\"h\":[[13],[15]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"p\":\".\",\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"}],[{\"t\":\"οὐκέτι\",\"h\":[[15],[28,30]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"βαστάζω\",\"h\":[[16],[29]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"p\":\",\",\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"μὰ\",\"h\":[[18],[23,24]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"τὰ\",\"h\":[[19],[]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"ς\",\"h\":[[20,23],[25,26]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"1\",\"h\":[[21],[]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"᾽\",\"h\":[[22],[]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"ὄμματα\",\"h\":[[20,23],[25,26]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"p\":\",\",\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"τὴν\",\"h\":[[25],[]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"φιλέρημον\",\"h\":[[26],[31,32]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"}],[{\"t\":\"καὶ\",\"h\":[[27],[33]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"τὴν\",\"h\":[[28,29],[34]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"μουνολεχῆ\",\"h\":[[28,29],[34]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"t\":\"σεῖο\",\"h\":[[30],[38,39]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"διαζυγίην\",\"h\":[[31],[35,36]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"}],[],[{\"t\":\"ἀλλ᾽\",\"h\":[[32],[41]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"αἰεὶ\",\"h\":[[33],[42]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"δακρύοισι\",\"h\":[[34],[44,45]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"πεφυρμένος\",\"h\":[[35],[43]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"ἢ\",\"h\":[[36],[47]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"πὶ\",\"h\":[[37,38],[49,50]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"t\":\"Κορησσὸν\",\"h\":[[37,38],[49,50]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"}],[{\"t\":\"ἔρχομαι\",\"h\":[[39],[48]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"ἢ\",\"h\":[[40],[51]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"μεγάλης\",\"h\":[[41],[54,55]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"t\":\"νηὸν\",\"h\":[[42],[53]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"t\":\"ἐς\",\"h\":[[43],[52]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"Ἀρτέμιδος\",\"h\":[[44],[56]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"p\":\".\",\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"}],[{\"t\":\"αὔριον\",\"h\":[[46],[59]],\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"ἀλλὰ\",\"h\":[[47],[58]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"πάτρη\",\"h\":[[48],[60,61]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"με\",\"h\":[[49],[62]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"δεδέξεται\",\"h\":[[50],[63]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"p\":\":\",\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"t\":\"ἐς\",\"h\":[[52,54,55],[66,67]],\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"},{\"t\":\"δὲ\",\"h\":[[53],[]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"t\":\"σὸν\",\"h\":[[52,54,55],[66,67]],\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"},{\"t\":\"ὄμμα\",\"h\":[[52,54,55],[66,67]],\"parent\":0,\"children\":55,\"pos\":\"[1][55]\"}],[{\"t\":\"πτήσομαι\",\"h\":[[56],[65]],\"parent\":0,\"children\":56,\"pos\":\"[1][56]\"},{\"p\":\",\",\"parent\":0,\"children\":57,\"pos\":\"[1][57]\"},{\"t\":\"ἐρρῶσθαι\",\"h\":[[58],[70]],\"parent\":0,\"children\":58,\"pos\":\"[1][58]\"},{\"t\":\"μυρία\",\"h\":[[59],[71,72,73,74]],\"parent\":0,\"children\":59,\"pos\":\"[1][59]\"},{\"t\":\"ς\",\"h\":[[60],[]],\"parent\":0,\"children\":60,\"pos\":\"[1][60]\"},{\"t\":\"1\",\"h\":[[61],[]],\"parent\":0,\"children\":61,\"pos\":\"[1][61]\"},{\"t\":\"᾽\",\"h\":[[62],[]],\"parent\":0,\"children\":62,\"pos\":\"[1][62]\"},{\"t\":\"εὐχόμενος\",\"h\":[[63],[69]],\"parent\":0,\"children\":63,\"pos\":\"[1][63]\"},{\"p\":\".\",\"parent\":0,\"children\":64,\"pos\":\"[1][64]\"}],[]],[[{\"t\":\"Dal\",\"h\":[[1],[1,2,3]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"tuo\",\"h\":[[1],[1,2,3]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"Rufino\",\"h\":[[1],[1,2,3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"p\":\",\",\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"mia\",\"h\":[[3,4,5],[5,6,7]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"dolcissima\",\"h\":[[3,4,5],[5,6,7]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"Speranza\",\"h\":[[3,4,5],[5,6,7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"p\":\",\",\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"tanti\",\"h\":[[6],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"auguri\",\"h\":[[7],[10,11,12]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"}],[{\"t\":\"di\",\"h\":[[7],[10,11,12]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"felicità\",\"h\":[[7],[10,11,12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"p\":\",\",\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"se\",\"h\":[[9],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"puoi\",\"h\":[[13],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"essere\",\"h\":[[10],[16,17]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"felice\",\"h\":[[10],[16,17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"senza\",\"h\":[[11],[18]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"di\",\"h\":[[12],[19,20]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"me\",\"h\":[[12],[19,20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"p\":\".\",\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"}],[{\"t\":\"Lo\",\"h\":[[],[22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"giuro\",\"h\":[[18],[23,24]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"sui\",\"h\":[[18],[23,24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"tuoi\",\"h\":[[20,23],[25,26]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"occhi\",\"h\":[[20,23],[25,26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"p\":\",\",\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"non\",\"h\":[[15],[28,30]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"sopporto\",\"h\":[[16],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"più\",\"h\":[[15],[28,30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"}],[{\"t\":\"di\",\"h\":[[26],[31,32]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"stare\",\"h\":[[26],[31,32]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"e\",\"h\":[[27],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"dormire\",\"h\":[[28,29],[34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"da\",\"h\":[[31],[35,36]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"solo\",\"h\":[[31],[35,36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"lontano\",\"h\":[[30],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"da\",\"h\":[[30],[38,39]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"te\",\"h\":[[30],[38,39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"p\":\".\",\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"}],[{\"t\":\"Ma\",\"h\":[[32],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"sempre\",\"h\":[[33],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"bagnato\",\"h\":[[35],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"di\",\"h\":[[34],[44,45]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"lacrime\",\"h\":[[34],[44,45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"p\":\",\",\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"o\",\"h\":[[36],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"vado\",\"h\":[[39],[48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"}],[{\"t\":\"a\",\"h\":[[37,38],[49,50]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"Coresso\",\"h\":[[37,38],[49,50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"o\",\"h\":[[40],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"al\",\"h\":[[43],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"tempio\",\"h\":[[42],[53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"della\",\"h\":[[41],[54,55]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"grande\",\"h\":[[41],[54,55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"Artemide\",\"h\":[[44],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"p\":\".\",\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"}],[{\"t\":\"Ma\",\"h\":[[47],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"domani\",\"h\":[[46],[59]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"la\",\"h\":[[48],[60,61]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"patria\",\"h\":[[48],[60,61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"mi\",\"h\":[[49],[62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"accoglierà\",\"h\":[[50],[63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"p\":\";\",\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"volerò\",\"h\":[[56],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"}],[{\"t\":\"da\",\"h\":[[52,54,55],[66,67]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"te\",\"h\":[[52,54,55],[66,67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"p\":\",\",\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"},{\"t\":\"per\",\"h\":[[63],[69]],\"parent\":1,\"children\":69,\"pos\":\"[2][69]\"},{\"t\":\"farti\",\"h\":[[58],[70]],\"parent\":1,\"children\":70,\"pos\":\"[2][70]\"},{\"t\":\"mille\",\"h\":[[59],[71,72,73,74]],\"parent\":1,\"children\":71,\"pos\":\"[2][71]\"},{\"t\":\"e\",\"h\":[[59],[71,72,73,74]],\"parent\":1,\"children\":72,\"pos\":\"[2][72]\"},{\"t\":\"mille\",\"h\":[[59],[71,72,73,74]],\"parent\":1,\"children\":73,\"pos\":\"[2][73]\"},{\"t\":\"auguri\",\"h\":[[59],[71,72,73,74]],\"parent\":1,\"children\":74,\"pos\":\"[2][74]\"},{\"p\":\".\",\"parent\":1,\"children\":75,\"pos\":\"[2][75]\"}],[]]]', 41, NULL, '2017-09-05 10:25:38', '2017-09-05 10:25:38'),
(21, 12, 47, 9, 51, 1, '[[[{\"t\":\"Ῥουφῖνος\",\"h\":[[1],[3]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"τῇ\",\"h\":[[2],[5]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"μῇ\",\"h\":[[3],[6]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"γλυκερωτάτῃ\",\"h\":[[4],[7]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"Ἐλπίδι\",\"h\":[[5],[8]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"πολλὰ\",\"h\":[[6],[14]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"χαίρειν\",\"h\":[[7],[10,11,13]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"p\":\",\",\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"εἰ\",\"h\":[[9],[16]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"χαίρειν\",\"h\":[[10],[18]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"χωρὶς\",\"h\":[[11],[19]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"ἐμοῦ\",\"h\":[[12],[20,21]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"δύναται\",\"h\":[[13],[17]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"p\":\".\",\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"}],[{\"t\":\"οὐκέτι\",\"h\":[[15],[23,25]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"βαστάζω\",\"h\":[[16],[24]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"p\":\",\",\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"μὰ\",\"h\":[[18],[27]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"τὰ\",\"h\":[[19],[28]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"ς᾽\",\"h\":[[20],[29]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"ὄμματα\",\"h\":[[21],[30]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"p\":\",\",\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"τὴν\",\"h\":[[23],[32]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"φιλέρημον\",\"h\":[[24],[37,38,39]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"}],[{\"t\":\"καὶ\",\"h\":[[25],[40]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"τὴν\",\"h\":[[26,27],[41,42]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"μουνολεχῆ\",\"h\":[[26,27],[41,42]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"σεῖο\",\"h\":[[28],[34,35]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"διαζυγίην\",\"h\":[[29],[33]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"}],[{\"t\":\"ἀλλ᾽\",\"h\":[[30],[44]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"αἰεὶ\",\"h\":[[31],[45]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"δακρύοισι\",\"h\":[[32],[47,48]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"πεφυρμένος\",\"h\":[[33],[46]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"ἢ\",\"h\":[[34],[50]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"ἐπιορκήσων\",\"h\":[[35],[51,52]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"}],[{\"t\":\"ἔρχομαι\",\"h\":[[36],[49]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"ἢ\",\"h\":[[37],[53]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"t\":\"μεγάλης\",\"h\":[[38],[56,57]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"νηὸν\",\"h\":[[39],[55]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"ἐς\",\"h\":[[40],[54]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"Ἀρτέμιδος\",\"h\":[[41],[58]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"p\":\".\",\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"}],[{\"t\":\"αὔριον\",\"h\":[[43],[61]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"ἀλλὰ\",\"h\":[[44],[60]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"t\":\"πάτρη\",\"h\":[[45],[63]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"t\":\"με\",\"h\":[[46],[62,64]],\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"δεδέξεται\",\"h\":[[47],[65]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"p\":\":\",\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"ἐς\",\"h\":[[49],[69]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"δὲ\",\"h\":[[50],[67]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"t\":\"σὸν\",\"h\":[[51],[70,71]],\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"t\":\"ὄμμα\",\"h\":[[52],[72]],\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[{\"t\":\"πτήσομαι\",\"h\":[[53],[68]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"p\":\",\",\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"},{\"t\":\"ἐρρῶσθαι\",\"h\":[[55],[77,78,79]],\"parent\":0,\"children\":55,\"pos\":\"[1][55]\"},{\"t\":\"μυρίας\",\"h\":[[56],[75,76]],\"parent\":0,\"children\":56,\"pos\":\"[1][56]\"},{\"t\":\"εὐχόμενος\",\"h\":[[57],[74]],\"parent\":0,\"children\":57,\"pos\":\"[1][57]\"},{\"p\":\".\",\"parent\":0,\"children\":58,\"pos\":\"[1][58]\"}],[]],[[{\"t\":\"Io\",\"h\":[[],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"p\":\",\",\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"Rufino\",\"h\":[[1],[3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"p\":\",\",\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"alla\",\"h\":[[2],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"mia\",\"h\":[[3],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"dolcissima\",\"h\":[[4],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"Speranza\",\"h\":[[5],[8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"p\":\"(\",\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"auguro\",\"h\":[[7],[10,11,13]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"di\",\"h\":[[7],[10,11,13]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"p\":\")\",\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"gioire\",\"h\":[[7],[10,11,13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"}],[{\"t\":\"molto\",\"h\":[[6],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"p\":\",\",\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"se\",\"h\":[[9],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"può\",\"h\":[[13],[17]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"gioire\",\"h\":[[10],[18]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"senza\",\"h\":[[11],[19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"di\",\"h\":[[12],[20,21]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"me\",\"h\":[[12],[20,21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"p\":\".\",\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"}],[{\"t\":\"Non\",\"h\":[[15],[23,25]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"reggo\",\"h\":[[16],[24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"più\",\"h\":[[15],[23,25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"p\":\",\",\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"per\",\"h\":[[18],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"i\",\"h\":[[19],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"tuoi\",\"h\":[[20],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"occhi\",\"h\":[[21],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"p\":\",\",\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"la\",\"h\":[[23],[32]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"separazione\",\"h\":[[29],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"}],[{\"t\":\"da\",\"h\":[[28],[34,35]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"te\",\"h\":[[28],[34,35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"p\":\",\",\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"che\",\"h\":[[24],[37,38,39]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"porta\",\"h\":[[24],[37,38,39]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"solitudine\",\"h\":[[24],[37,38,39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"e\",\"h\":[[25],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"dorme\",\"h\":[[26,27],[41,42]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"sola\",\"h\":[[26,27],[41,42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"p\":\".\",\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"}],[{\"t\":\"Ma\",\"h\":[[30],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"sempre\",\"h\":[[31],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"inondato\",\"h\":[[33],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"di\",\"h\":[[32],[47,48]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"lacrime\",\"h\":[[32],[47,48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"vado\",\"h\":[[36],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"}],[{\"t\":\"o\",\"h\":[[34],[50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"a\",\"h\":[[35],[51,52]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"spergiurare\",\"h\":[[35],[51,52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"o\",\"h\":[[37],[53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"al\",\"h\":[[40],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"tempio\",\"h\":[[39],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"della\",\"h\":[[38],[56,57]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"grande\",\"h\":[[38],[56,57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"Artemide\",\"h\":[[41],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"p\":\".\",\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"}],[{\"t\":\"Ma\",\"h\":[[44],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"domani\",\"h\":[[43],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"la\",\"h\":[[46],[62,64]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"patria\",\"h\":[[45],[63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"mi\",\"h\":[[46],[62,64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"accoglierà\",\"h\":[[47],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"p\":\";\",\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"e\",\"h\":[[50],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"t\":\"volerò\",\"h\":[[53],[68]],\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"},{\"t\":\"verso\",\"h\":[[49],[69]],\"parent\":1,\"children\":69,\"pos\":\"[2][69]\"}],[{\"t\":\"il\",\"h\":[[51],[70,71]],\"parent\":1,\"children\":70,\"pos\":\"[2][70]\"},{\"t\":\"tuo\",\"h\":[[51],[70,71]],\"parent\":1,\"children\":71,\"pos\":\"[2][71]\"},{\"t\":\"volto\",\"h\":[[52],[72]],\"parent\":1,\"children\":72,\"pos\":\"[2][72]\"},{\"p\":\",\",\"parent\":1,\"children\":73,\"pos\":\"[2][73]\"},{\"t\":\"augurandoti\",\"h\":[[57],[74]],\"parent\":1,\"children\":74,\"pos\":\"[2][74]\"},{\"t\":\"mille\",\"h\":[[56],[75,76]],\"parent\":1,\"children\":75,\"pos\":\"[2][75]\"},{\"t\":\"volte\",\"h\":[[56],[75,76]],\"parent\":1,\"children\":76,\"pos\":\"[2][76]\"},{\"t\":\"di\",\"h\":[[55],[77,78,79]],\"parent\":1,\"children\":77,\"pos\":\"[2][77]\"},{\"t\":\"star\",\"h\":[[55],[77,78,79]],\"parent\":1,\"children\":78,\"pos\":\"[2][78]\"},{\"t\":\"bene\",\"h\":[[55],[77,78,79]],\"parent\":1,\"children\":79,\"pos\":\"[2][79]\"},{\"p\":\".\",\"parent\":1,\"children\":80,\"pos\":\"[2][80]\"}],[]]]', 41, NULL, '2017-09-05 10:27:18', '2017-09-05 10:27:18'),
(22, 22, 56, 7, 57, 1, '[[[{\"t\":\"Φιλίππου\",\"h\":[[1],[3,4]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"στέφανος\",\"h\":[[2],[1,2]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"}],[],[{\"t\":\"ἄνθεά\",\"h\":[[3],[6,8]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"σοι\",\"h\":[[4],[7]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"δρέψας\",\"h\":[[5],[5]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"Ἑλικώνια\",\"h\":[[6],[9,10,11]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"p\":\",\",\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"καὶ\",\"h\":[[8],[13]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"κλυτοδένρου\",\"h\":[[9],[22,23,24,25,26,27]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"}],[{\"t\":\"Πιερίης\",\"h\":[[10],[19,20]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"κείρας\",\"h\":[[11],[14]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"πρωτοφύτους\",\"h\":[[12],[17,18]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"κάλυκας\",\"h\":[[13],[15,16]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"p\":\",\",\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"}],[{\"t\":\"καὶ\",\"h\":[[15],[29]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"σελίδος\",\"h\":[[16],[31,32]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"νεαρῆς\",\"h\":[[17],[33,34]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"θερίσας\",\"h\":[[18],[30]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"στάχυν\",\"h\":[[19],[35,36,37]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"p\":\",\",\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"}],[{\"t\":\"ἀντανέπλεξα\",\"h\":[[21],[39]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"τοῖς\",\"h\":[[22,26],[40]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"Μελεαγρείοις\",\"h\":[[23],[42]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"ὡς\",\"h\":[[24,25],[41]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"ἴκελον\",\"h\":[[24,25],[41]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"στεφάνοις\",\"h\":[[22,26],[40]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"p\":\".\",\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"}],[{\"t\":\"ἀλλὰ\",\"h\":[[28],[44]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"παλαιοτέρων\",\"h\":[[29],[51,52,53,54]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"t\":\"εἰδὼς\",\"h\":[[30],[47,48]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"κλέος\",\"h\":[[31],[49,50]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"p\":\",\",\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"ἐσθλὲ\",\"h\":[[33],[56]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"Κάμιλλε\",\"h\":[[34],[57]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"p\":\",\",\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"}],[{\"t\":\"γνῶθι\",\"h\":[[36],[45,59]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"καὶ\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"t\":\"ὁπλοτέρων\",\"h\":[[38],[63,64,65,66]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"τὴν\",\"h\":[[39,40],[60,61,62]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"ὀλιγοστιχίην\",\"h\":[[39,40],[60,61,62]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"p\":\".\",\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"}],[{\"t\":\"Ἀντίπατρος\",\"h\":[[42],[74,76]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"t\":\"πρέψει\",\"h\":[[43],[70,71]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"στεφάνῳ\",\"h\":[[44],[68,69]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"t\":\"στάχυς\",\"h\":[[45],[72,73]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"p\":\":\",\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"ὡς\",\"h\":[[47],[78]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"δὲ\",\"h\":[[48],[]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"κόρυμβος\",\"h\":[[49],[79,80]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"}],[{\"t\":\"Κριναγόρας\",\"h\":[[50],[82]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"t\":\"λάμψει\",\"h\":[[51],[81,93]],\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"t\":\"δ᾽\",\"h\":[[52],[]],\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"},{\"t\":\"ὡς\",\"h\":[[53],[85]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"t\":\"βότρυς\",\"h\":[[54],[86,87,88,90]],\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"},{\"t\":\"Ἀντίφιλος\",\"h\":[[55],[84]],\"parent\":0,\"children\":55,\"pos\":\"[1][55]\"},{\"p\":\",\",\"parent\":0,\"children\":56,\"pos\":\"[1][56]\"}],[{\"t\":\"Τύλλιος\",\"h\":[[57],[92]],\"parent\":0,\"children\":57,\"pos\":\"[1][57]\"},{\"t\":\"ὡς\",\"h\":[[58],[94]],\"parent\":0,\"children\":58,\"pos\":\"[1][58]\"},{\"t\":\"μελίλωτον\",\"h\":[[59],[95,96]],\"parent\":0,\"children\":59,\"pos\":\"[1][59]\"},{\"p\":\",\",\"parent\":0,\"children\":60,\"pos\":\"[1][60]\"},{\"t\":\"ἀμάρακον\",\"h\":[[61],[100,101]],\"parent\":0,\"children\":61,\"pos\":\"[1][61]\"},{\"t\":\"ὣς\",\"h\":[[62],[99,105,115]],\"parent\":0,\"children\":62,\"pos\":\"[1][62]\"},{\"t\":\"Φιλόδημος\",\"h\":[[63],[98]],\"parent\":0,\"children\":63,\"pos\":\"[1][63]\"},{\"p\":\":\",\"parent\":0,\"children\":64,\"pos\":\"[1][64]\"}],[{\"t\":\"μύρτα\",\"h\":[[65],[106,107]],\"parent\":0,\"children\":65,\"pos\":\"[1][65]\"},{\"t\":\"δ᾽\",\"h\":[[66],[]],\"parent\":0,\"children\":66,\"pos\":\"[1][66]\"},{\"t\":\"ὁ\",\"h\":[[67,68],[103]],\"parent\":0,\"children\":67,\"pos\":\"[1][67]\"},{\"t\":\"Παρμενίων\",\"h\":[[67,68],[103]],\"parent\":0,\"children\":68,\"pos\":\"[1][68]\"},{\"p\":\":\",\"parent\":0,\"children\":69,\"pos\":\"[1][69]\"},{\"t\":\"ὡς\",\"h\":[[70],[109,129,135,160]],\"parent\":0,\"children\":70,\"pos\":\"[1][70]\"},{\"t\":\"ῥόδον\",\"h\":[[71],[110,111]],\"parent\":0,\"children\":71,\"pos\":\"[1][71]\"},{\"t\":\"Ἀντιφάνης\",\"h\":[[72],[112]],\"parent\":0,\"children\":72,\"pos\":\"[1][72]\"},{\"p\":\":\",\"parent\":0,\"children\":73,\"pos\":\"[1][73]\"}],[{\"t\":\"κισσὸς\",\"h\":[[74],[116,118]],\"parent\":0,\"children\":74,\"pos\":\"[1][74]\"},{\"t\":\"δ᾽\",\"h\":[[75],[]],\"parent\":0,\"children\":75,\"pos\":\"[1][75]\"},{\"t\":\"Αὐτομέδων\",\"h\":[[76],[114]],\"parent\":0,\"children\":76,\"pos\":\"[1][76]\"},{\"t\":\"Ζωνᾶς\",\"h\":[[77],[120]],\"parent\":0,\"children\":77,\"pos\":\"[1][77]\"},{\"t\":\"κρίνα\",\"h\":[[78],[121,122]],\"parent\":0,\"children\":78,\"pos\":\"[1][78]\"},{\"t\":\"δρῦς\",\"h\":[[79],[125,126]],\"parent\":0,\"children\":79,\"pos\":\"[1][79]\"},{\"t\":\"δὲ\",\"h\":[[80],[]],\"parent\":0,\"children\":80,\"pos\":\"[1][80]\"},{\"t\":\"Βιάνωρ\",\"h\":[[81],[124]],\"parent\":0,\"children\":81,\"pos\":\"[1][81]\"},{\"p\":\":\",\"parent\":0,\"children\":82,\"pos\":\"[1][82]\"}],[{\"t\":\"Ἀντίγονος\",\"h\":[[83],[128]],\"parent\":0,\"children\":83,\"pos\":\"[1][83]\"},{\"t\":\"δ᾽\",\"h\":[[84],[]],\"parent\":0,\"children\":84,\"pos\":\"[1][84]\"},{\"t\":\"ἐλάη\",\"h\":[[85],[130,132]],\"parent\":0,\"children\":85,\"pos\":\"[1][85]\"},{\"t\":\"καὶ\",\"h\":[[86],[133]],\"parent\":0,\"children\":86,\"pos\":\"[1][86]\"},{\"t\":\"Διόδωρος\",\"h\":[[87],[134]],\"parent\":0,\"children\":87,\"pos\":\"[1][87]\"},{\"t\":\"ἴον\",\"h\":[[88],[136,137]],\"parent\":0,\"children\":88,\"pos\":\"[1][88]\"}],[{\"t\":\"Εὔηνον\",\"h\":[[89],[145,147]],\"parent\":0,\"children\":89,\"pos\":\"[1][89]\"},{\"t\":\"δάφνῃ\",\"h\":[[90],[142,144]],\"parent\":0,\"children\":90,\"pos\":\"[1][90]\"},{\"p\":\",\",\"parent\":0,\"children\":91,\"pos\":\"[1][91]\"},{\"t\":\"συνεπιπλεκτοὺς\",\"h\":[[92],[153]],\"parent\":0,\"children\":92,\"pos\":\"[1][92]\"},{\"p\":\";\",\"parent\":0,\"children\":93,\"pos\":\"[1][93]\"},{\"t\":\"δὲ\",\"h\":[[94],[139]],\"parent\":0,\"children\":94,\"pos\":\"[1][94]\"},{\"t\":\"περισσοὺς\",\"h\":[[95],[150,151]],\"parent\":0,\"children\":95,\"pos\":\"[1][95]\"}],[{\"t\":\"εἴκασον\",\"h\":[[96],[149]],\"parent\":0,\"children\":96,\"pos\":\"[1][96]\"},{\"t\":\"οἷς\",\"h\":[[97],[154,155]],\"parent\":0,\"children\":97,\"pos\":\"[1][97]\"},{\"t\":\"ἐθέλεις\",\"h\":[[98],[161,162]],\"parent\":0,\"children\":98,\"pos\":\"[1][98]\"},{\"t\":\"ἄνθεσιν\",\"h\":[[99],[156]],\"parent\":0,\"children\":99,\"pos\":\"[1][99]\"},{\"t\":\"ἀρτιφύτοις\",\"h\":[[100],[157,158]],\"parent\":0,\"children\":100,\"pos\":\"[1][100]\"},{\"p\":\".\",\"parent\":0,\"children\":101,\"pos\":\"[1][101]\"}]],[[{\"t\":\"La\",\"h\":[[2],[1,2]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"corona\",\"h\":[[2],[1,2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"di\",\"h\":[[1],[3,4]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"Filippo\",\"h\":[[1],[3,4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"}],[],[{\"t\":\"Raccolsi\",\"h\":[[5],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"i\",\"h\":[[3],[6,8]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"tuoi\",\"h\":[[4],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"fiori\",\"h\":[[3],[6,8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"sul\",\"h\":[[6],[9,10,11]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"monte\",\"h\":[[6],[9,10,11]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"Elicona\",\"h\":[[6],[9,10,11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"p\":\",\",\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"}],[{\"t\":\"e\",\"h\":[[8],[13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"tagliando\",\"h\":[[11],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"i\",\"h\":[[13],[15,16]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"boccioli\",\"h\":[[13],[15,16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"appena\",\"h\":[[12],[17,18]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"schiusi\",\"h\":[[12],[17,18]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"nella\",\"h\":[[10],[19,20]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"Pieria\",\"h\":[[10],[19,20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"p\":\",\",\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"}],[{\"t\":\"regione\",\"h\":[[9],[22,23,24,25,26,27]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"famosa\",\"h\":[[9],[22,23,24,25,26,27]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"per\",\"h\":[[9],[22,23,24,25,26,27]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"i\",\"h\":[[9],[22,23,24,25,26,27]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"suoi\",\"h\":[[9],[22,23,24,25,26,27]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"alberi\",\"h\":[[9],[22,23,24,25,26,27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"p\":\",\",\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"}],[{\"t\":\"e\",\"h\":[[15],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"mietendo\",\"h\":[[18],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"le\",\"h\":[[16],[31,32]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"spighe\",\"h\":[[16],[31,32]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"dei\",\"h\":[[17],[33,34]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"novelli\",\"h\":[[17],[33,34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"fogli\",\"h\":[[19],[35,36,37]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"di\",\"h\":[[19],[35,36,37]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"papiro\",\"h\":[[19],[35,36,37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"p\":\",\",\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"}],[{\"t\":\"intrecciai\",\"h\":[[21],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"t\":\"corone\",\"h\":[[22,26],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"emulando\",\"h\":[[24,25],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"Meleagro\",\"h\":[[23],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"p\":\".\",\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"}],[{\"t\":\"Ma\",\"h\":[[28],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"tu\",\"h\":[[36],[45,59]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"p\":\",\",\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"poiché\",\"h\":[[30],[47,48]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"conosci\",\"h\":[[30],[47,48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"la\",\"h\":[[31],[49,50]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"gloria\",\"h\":[[31],[49,50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"dei\",\"h\":[[29],[51,52,53,54]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"poeti\",\"h\":[[29],[51,52,53,54]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"più\",\"h\":[[29],[51,52,53,54]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"antichi\",\"h\":[[29],[51,52,53,54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"p\":\",\",\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"nobile\",\"h\":[[33],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"Camillo\",\"h\":[[34],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"p\":\",\",\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"}],[{\"t\":\"impara\",\"h\":[[36],[45,59]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"le\",\"h\":[[39,40],[60,61,62]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"brevi\",\"h\":[[39,40],[60,61,62]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"poesie\",\"h\":[[39,40],[60,61,62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"dei\",\"h\":[[38],[63,64,65,66]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"poeti\",\"h\":[[38],[63,64,65,66]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"più\",\"h\":[[38],[63,64,65,66]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"recenti\",\"h\":[[38],[63,64,65,66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"p\":\".\",\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"}],[{\"t\":\"Nella\",\"h\":[[44],[68,69]],\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"},{\"t\":\"corona\",\"h\":[[44],[68,69]],\"parent\":1,\"children\":69,\"pos\":\"[2][69]\"},{\"t\":\"si\",\"h\":[[43],[70,71]],\"parent\":1,\"children\":70,\"pos\":\"[2][70]\"},{\"t\":\"distingue\",\"h\":[[43],[70,71]],\"parent\":1,\"children\":71,\"pos\":\"[2][71]\"},{\"t\":\"la\",\"h\":[[45],[72,73]],\"parent\":1,\"children\":72,\"pos\":\"[2][72]\"},{\"t\":\"spiga\",\"h\":[[45],[72,73]],\"parent\":1,\"children\":73,\"pos\":\"[2][73]\"},{\"t\":\"d\",\"h\":[[42],[74,76]],\"parent\":1,\"children\":74,\"pos\":\"[2][74]\"},{\"p\":\"’\",\"parent\":1,\"children\":75,\"pos\":\"[2][75]\"},{\"t\":\"Antipatro\",\"h\":[[42],[74,76]],\"parent\":1,\"children\":76,\"pos\":\"[2][76]\"},{\"p\":\";\",\"parent\":1,\"children\":77,\"pos\":\"[2][77]\"}],[{\"t\":\"come\",\"h\":[[47],[78]],\"parent\":1,\"children\":78,\"pos\":\"[2][78]\"},{\"t\":\"il\",\"h\":[[49],[79,80]],\"parent\":1,\"children\":79,\"pos\":\"[2][79]\"},{\"t\":\"corimbo\",\"h\":[[49],[79,80]],\"parent\":1,\"children\":80,\"pos\":\"[2][80]\"},{\"t\":\"brilla\",\"h\":[[51],[81,93]],\"parent\":1,\"children\":81,\"pos\":\"[2][81]\"},{\"t\":\"Crinagora\",\"h\":[[50],[82]],\"parent\":1,\"children\":82,\"pos\":\"[2][82]\"},{\"p\":\",\",\"parent\":1,\"children\":83,\"pos\":\"[2][83]\"},{\"t\":\"Antifilo\",\"h\":[[55],[84]],\"parent\":1,\"children\":84,\"pos\":\"[2][84]\"},{\"t\":\"come\",\"h\":[[53],[85]],\"parent\":1,\"children\":85,\"pos\":\"[2][85]\"},{\"t\":\"il\",\"h\":[[54],[86,87,88,90]],\"parent\":1,\"children\":86,\"pos\":\"[2][86]\"},{\"t\":\"grappolo\",\"h\":[[54],[86,87,88,90]],\"parent\":1,\"children\":87,\"pos\":\"[2][87]\"},{\"t\":\"d\",\"h\":[[54],[86,87,88,90]],\"parent\":1,\"children\":88,\"pos\":\"[2][88]\"},{\"p\":\"’\",\"parent\":1,\"children\":89,\"pos\":\"[2][89]\"},{\"t\":\"uva\",\"h\":[[54],[86,87,88,90]],\"parent\":1,\"children\":90,\"pos\":\"[2][90]\"},{\"p\":\";\",\"parent\":1,\"children\":91,\"pos\":\"[2][91]\"}],[{\"t\":\"Tullio\",\"h\":[[57],[92]],\"parent\":1,\"children\":92,\"pos\":\"[2][92]\"},{\"t\":\"risplende\",\"h\":[[51],[81,93]],\"parent\":1,\"children\":93,\"pos\":\"[2][93]\"},{\"t\":\"come\",\"h\":[[58],[94]],\"parent\":1,\"children\":94,\"pos\":\"[2][94]\"},{\"t\":\"il\",\"h\":[[59],[95,96]],\"parent\":1,\"children\":95,\"pos\":\"[2][95]\"},{\"t\":\"meliloto\",\"h\":[[59],[95,96]],\"parent\":1,\"children\":96,\"pos\":\"[2][96]\"},{\"p\":\",\",\"parent\":1,\"children\":97,\"pos\":\"[2][97]\"},{\"t\":\"Filodemo\",\"h\":[[63],[98]],\"parent\":1,\"children\":98,\"pos\":\"[2][98]\"},{\"t\":\"come\",\"h\":[[62],[99,105,115]],\"parent\":1,\"children\":99,\"pos\":\"[2][99]\"},{\"t\":\"la\",\"h\":[[61],[100,101]],\"parent\":1,\"children\":100,\"pos\":\"[2][100]\"},{\"t\":\"maggiorana\",\"h\":[[61],[100,101]],\"parent\":1,\"children\":101,\"pos\":\"[2][101]\"},{\"p\":\";\",\"parent\":1,\"children\":102,\"pos\":\"[2][102]\"}],[{\"t\":\"Parmenione\",\"h\":[[67,68],[103]],\"parent\":1,\"children\":103,\"pos\":\"[2][103]\"},{\"p\":\"è\",\"parent\":1,\"children\":104,\"pos\":\"[2][104]\"},{\"t\":\"come\",\"h\":[[62],[99,105,115]],\"parent\":1,\"children\":105,\"pos\":\"[2][105]\"},{\"t\":\"il\",\"h\":[[65],[106,107]],\"parent\":1,\"children\":106,\"pos\":\"[2][106]\"},{\"t\":\"mirto\",\"h\":[[65],[106,107]],\"parent\":1,\"children\":107,\"pos\":\"[2][107]\"},{\"p\":\",\",\"parent\":1,\"children\":108,\"pos\":\"[2][108]\"},{\"t\":\"come\",\"h\":[[70],[109,129,135,160]],\"parent\":1,\"children\":109,\"pos\":\"[2][109]\"},{\"t\":\"la\",\"h\":[[71],[110,111]],\"parent\":1,\"children\":110,\"pos\":\"[2][110]\"},{\"t\":\"rosa\",\"h\":[[71],[110,111]],\"parent\":1,\"children\":111,\"pos\":\"[2][111]\"},{\"t\":\"Antifane\",\"h\":[[72],[112]],\"parent\":1,\"children\":112,\"pos\":\"[2][112]\"},{\"p\":\";\",\"parent\":1,\"children\":113,\"pos\":\"[2][113]\"}],[{\"t\":\"Automedonte\",\"h\":[[76],[114]],\"parent\":1,\"children\":114,\"pos\":\"[2][114]\"},{\"t\":\"somiglia\",\"h\":[[62],[99,105,115]],\"parent\":1,\"children\":115,\"pos\":\"[2][115]\"},{\"t\":\"all\",\"h\":[[74],[116,118]],\"parent\":1,\"children\":116,\"pos\":\"[2][116]\"},{\"p\":\"’\",\"parent\":1,\"children\":117,\"pos\":\"[2][117]\"},{\"t\":\"edera\",\"h\":[[74],[116,118]],\"parent\":1,\"children\":118,\"pos\":\"[2][118]\"},{\"p\":\",\",\"parent\":1,\"children\":119,\"pos\":\"[2][119]\"},{\"t\":\"Zona\",\"h\":[[77],[120]],\"parent\":1,\"children\":120,\"pos\":\"[2][120]\"},{\"t\":\"ai\",\"h\":[[78],[121,122]],\"parent\":1,\"children\":121,\"pos\":\"[2][121]\"},{\"t\":\"gigli\",\"h\":[[78],[121,122]],\"parent\":1,\"children\":122,\"pos\":\"[2][122]\"},{\"p\":\",\",\"parent\":1,\"children\":123,\"pos\":\"[2][123]\"},{\"t\":\"Bianore\",\"h\":[[81],[124]],\"parent\":1,\"children\":124,\"pos\":\"[2][124]\"},{\"t\":\"alla\",\"h\":[[79],[125,126]],\"parent\":1,\"children\":125,\"pos\":\"[2][125]\"},{\"t\":\"quercia\",\"h\":[[79],[125,126]],\"parent\":1,\"children\":126,\"pos\":\"[2][126]\"},{\"p\":\";\",\"parent\":1,\"children\":127,\"pos\":\"[2][127]\"}],[{\"t\":\"Antigone\",\"h\":[[83],[128]],\"parent\":1,\"children\":128,\"pos\":\"[2][128]\"},{\"t\":\"come\",\"h\":[[70],[109,129,135,160]],\"parent\":1,\"children\":129,\"pos\":\"[2][129]\"},{\"t\":\"l\",\"h\":[[85],[130,132]],\"parent\":1,\"children\":130,\"pos\":\"[2][130]\"},{\"p\":\"’\",\"parent\":1,\"children\":131,\"pos\":\"[2][131]\"},{\"t\":\"ulivo\",\"h\":[[85],[130,132]],\"parent\":1,\"children\":132,\"pos\":\"[2][132]\"},{\"t\":\"e\",\"h\":[[86],[133]],\"parent\":1,\"children\":133,\"pos\":\"[2][133]\"},{\"t\":\"Diodoro\",\"h\":[[87],[134]],\"parent\":1,\"children\":134,\"pos\":\"[2][134]\"},{\"t\":\"come\",\"h\":[[70],[109,129,135,160]],\"parent\":1,\"children\":135,\"pos\":\"[2][135]\"},{\"t\":\"la\",\"h\":[[88],[136,137]],\"parent\":1,\"children\":136,\"pos\":\"[2][136]\"},{\"t\":\"viola\",\"h\":[[88],[136,137]],\"parent\":1,\"children\":137,\"pos\":\"[2][137]\"},{\"p\":\",\",\"parent\":1,\"children\":138,\"pos\":\"[2][138]\"}],[{\"t\":\"infine\",\"h\":[[94],[139]],\"parent\":1,\"children\":139,\"pos\":\"[2][139]\"},{\"t\":\"si\",\"h\":[[],[140]],\"parent\":1,\"children\":140,\"pos\":\"[2][140]\"},{\"t\":\"nota\",\"h\":[[],[141]],\"parent\":1,\"children\":141,\"pos\":\"[2][141]\"},{\"t\":\"l\",\"h\":[[90],[142,144]],\"parent\":1,\"children\":142,\"pos\":\"[2][142]\"},{\"p\":\"’\",\"parent\":1,\"children\":143,\"pos\":\"[2][143]\"},{\"t\":\"alloro\",\"h\":[[90],[142,144]],\"parent\":1,\"children\":144,\"pos\":\"[2][144]\"},{\"t\":\"d\",\"h\":[[89],[145,147]],\"parent\":1,\"children\":145,\"pos\":\"[2][145]\"},{\"p\":\"’\",\"parent\":1,\"children\":146,\"pos\":\"[2][146]\"},{\"t\":\"Eveno\",\"h\":[[89],[145,147]],\"parent\":1,\"children\":147,\"pos\":\"[2][147]\"},{\"p\":\";\",\"parent\":1,\"children\":148,\"pos\":\"[2][148]\"},{\"t\":\"intreccia\",\"h\":[[96],[149]],\"parent\":1,\"children\":149,\"pos\":\"[2][149]\"},{\"t\":\"i\",\"h\":[[95],[150,151]],\"parent\":1,\"children\":150,\"pos\":\"[2][150]\"},{\"t\":\"restanti\",\"h\":[[95],[150,151]],\"parent\":1,\"children\":151,\"pos\":\"[2][151]\"},{\"p\":\",\",\"parent\":1,\"children\":152,\"pos\":\"[2][152]\"}],[{\"t\":\"associando\",\"h\":[[92],[153]],\"parent\":1,\"children\":153,\"pos\":\"[2][153]\"},{\"t\":\"a\",\"h\":[[97],[154,155]],\"parent\":1,\"children\":154,\"pos\":\"[2][154]\"},{\"t\":\"loro\",\"h\":[[97],[154,155]],\"parent\":1,\"children\":155,\"pos\":\"[2][155]\"},{\"t\":\"fiori\",\"h\":[[99],[156]],\"parent\":1,\"children\":156,\"pos\":\"[2][156]\"},{\"t\":\"appena\",\"h\":[[100],[157,158]],\"parent\":1,\"children\":157,\"pos\":\"[2][157]\"},{\"t\":\"nati\",\"h\":[[100],[157,158]],\"parent\":1,\"children\":158,\"pos\":\"[2][158]\"},{\"p\":\",\",\"parent\":1,\"children\":159,\"pos\":\"[2][159]\"},{\"t\":\"come\",\"h\":[[70],[109,129,135,160]],\"parent\":1,\"children\":160,\"pos\":\"[2][160]\"},{\"t\":\"tu\",\"h\":[[98],[161,162]],\"parent\":1,\"children\":161,\"pos\":\"[2][161]\"},{\"t\":\"vuoi\",\"h\":[[98],[161,162]],\"parent\":1,\"children\":162,\"pos\":\"[2][162]\"},{\"p\":\".\",\"parent\":1,\"children\":163,\"pos\":\"[2][163]\"}]]]', 40, NULL, '2017-09-05 10:29:45', '2017-09-05 10:29:45');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(23, 22, 54, 7, 55, 1, '[[[{\"t\":\"Φιλὶππου\",\"h\":[[1],[]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"στέφανος\",\"h\":[[2],[]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"}],[],[{\"t\":\"ἄνθεά\",\"h\":[[3],[]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"σοι\",\"h\":[[4],[]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"δρέψας\",\"h\":[[5],[]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"Ἑλικώνια\",\"h\":[[6],[]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"p\":\",\",\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"καὶ\",\"h\":[[8],[]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"},{\"t\":\"κλυτοδένρου\",\"h\":[[9],[]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"}],[{\"t\":\"Πιερίης\",\"h\":[[10],[]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"κείρας\",\"h\":[[11],[]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"πρωτοφύτους\",\"h\":[[12],[]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"κάλυκας\",\"h\":[[13],[]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"p\":\",\",\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"}],[{\"t\":\"καὶ\",\"h\":[[15],[]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"σελίδος\",\"h\":[[16],[]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"νεαρῆς\",\"h\":[[17],[]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"θερίσας\",\"h\":[[18],[]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"στάχυν\",\"h\":[[19],[]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"p\":\",\",\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"}],[{\"t\":\"ἀντανέπλεξα\",\"h\":[[21],[]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"τοῖς\",\"h\":[[22],[]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"Μελεαγρείοις\",\"h\":[[23],[]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"t\":\"ὡς\",\"h\":[[24],[]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"ἴκελον\",\"h\":[[25],[]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"στεφάνοις\",\"h\":[[26],[]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"p\":\".\",\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"}],[{\"t\":\"ἀλλὰ\",\"h\":[[28],[]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"παλαιοτέρων\",\"h\":[[29],[]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"t\":\"εἰδὼς\",\"h\":[[30],[]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"κλέος\",\"h\":[[31],[]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"p\":\",\",\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"ἐσθλὲ\",\"h\":[[33],[]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"Κάμιλλε\",\"h\":[[34],[]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"p\":\",\",\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"}],[{\"t\":\"γνῶθι\",\"h\":[[36],[]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"καὶ\",\"h\":[[37],[]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"t\":\"ὁπλοτέρων\",\"h\":[[38],[]],\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"},{\"t\":\"τὴν\",\"h\":[[39],[]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"ὀλιγοστιχίην\",\"h\":[[40],[]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"p\":\".\",\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"}],[{\"t\":\"Ἀντίπατρος\",\"h\":[[42],[]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"t\":\"πρέψει\",\"h\":[[43],[]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"στεφάνῳστάχυς\",\"h\":[[44],[]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"p\":\":\",\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"t\":\"ὡς\",\"h\":[[46],[]],\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"δὲ\",\"h\":[[47],[]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"κόρυμβος\",\"h\":[[48],[]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"}],[{\"t\":\"Κριναγόρας\",\"h\":[[49],[]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"λάμψει\",\"h\":[[50],[]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"t\":\"δ᾽\",\"h\":[[51],[]],\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"t\":\"ὡς\",\"h\":[[52],[]],\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"},{\"t\":\"βότρυς\",\"h\":[[53],[]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"t\":\"Ἀντίφιλος\",\"h\":[[54],[]],\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"},{\"p\":\",\",\"parent\":0,\"children\":55,\"pos\":\"[1][55]\"}],[{\"t\":\"Τύλλιος\",\"h\":[[56],[]],\"parent\":0,\"children\":56,\"pos\":\"[1][56]\"},{\"t\":\"ὡς\",\"h\":[[57],[]],\"parent\":0,\"children\":57,\"pos\":\"[1][57]\"},{\"t\":\"μελίλωτον\",\"h\":[[58],[]],\"parent\":0,\"children\":58,\"pos\":\"[1][58]\"},{\"p\":\",\",\"parent\":0,\"children\":59,\"pos\":\"[1][59]\"},{\"t\":\"ἀμάρακον\",\"h\":[[60],[]],\"parent\":0,\"children\":60,\"pos\":\"[1][60]\"},{\"t\":\"ὣς\",\"h\":[[61],[]],\"parent\":0,\"children\":61,\"pos\":\"[1][61]\"},{\"t\":\"Φιλόδημος\",\"h\":[[62],[]],\"parent\":0,\"children\":62,\"pos\":\"[1][62]\"},{\"p\":\":\",\"parent\":0,\"children\":63,\"pos\":\"[1][63]\"}],[{\"t\":\"μύρτα\",\"h\":[[64],[]],\"parent\":0,\"children\":64,\"pos\":\"[1][64]\"},{\"t\":\"δ᾽\",\"h\":[[65],[]],\"parent\":0,\"children\":65,\"pos\":\"[1][65]\"},{\"t\":\"ὁ\",\"h\":[[66],[]],\"parent\":0,\"children\":66,\"pos\":\"[1][66]\"},{\"t\":\"Παρμενίων\",\"h\":[[67],[]],\"parent\":0,\"children\":67,\"pos\":\"[1][67]\"},{\"p\":\":\",\"parent\":0,\"children\":68,\"pos\":\"[1][68]\"},{\"t\":\"ὡς\",\"h\":[[69],[]],\"parent\":0,\"children\":69,\"pos\":\"[1][69]\"},{\"t\":\"ῥόδον\",\"h\":[[70],[]],\"parent\":0,\"children\":70,\"pos\":\"[1][70]\"},{\"t\":\"Ἀντιφάνης\",\"h\":[[71],[]],\"parent\":0,\"children\":71,\"pos\":\"[1][71]\"},{\"p\":\":\",\"parent\":0,\"children\":72,\"pos\":\"[1][72]\"}],[{\"t\":\"κισσὸς\",\"h\":[[73],[]],\"parent\":0,\"children\":73,\"pos\":\"[1][73]\"},{\"t\":\"δ᾽\",\"h\":[[74],[]],\"parent\":0,\"children\":74,\"pos\":\"[1][74]\"},{\"t\":\"Αὐτομέδων\",\"h\":[[75],[]],\"parent\":0,\"children\":75,\"pos\":\"[1][75]\"},{\"t\":\"Ζωνᾶς\",\"h\":[[76],[]],\"parent\":0,\"children\":76,\"pos\":\"[1][76]\"},{\"t\":\"κρίνα\",\"h\":[[77],[]],\"parent\":0,\"children\":77,\"pos\":\"[1][77]\"},{\"t\":\"δρῦς\",\"h\":[[78],[]],\"parent\":0,\"children\":78,\"pos\":\"[1][78]\"},{\"t\":\"δὲ\",\"h\":[[79],[]],\"parent\":0,\"children\":79,\"pos\":\"[1][79]\"},{\"t\":\"Βιάνωρ\",\"h\":[[80],[]],\"parent\":0,\"children\":80,\"pos\":\"[1][80]\"},{\"p\":\":\",\"parent\":0,\"children\":81,\"pos\":\"[1][81]\"}],[{\"t\":\"Ἀντίγονος\",\"h\":[[82],[]],\"parent\":0,\"children\":82,\"pos\":\"[1][82]\"},{\"t\":\"δ᾽\",\"h\":[[83],[]],\"parent\":0,\"children\":83,\"pos\":\"[1][83]\"},{\"t\":\"ἐλάη\",\"h\":[[84],[]],\"parent\":0,\"children\":84,\"pos\":\"[1][84]\"},{\"t\":\"καὶ\",\"h\":[[85],[]],\"parent\":0,\"children\":85,\"pos\":\"[1][85]\"},{\"t\":\"Διόδωρος\",\"h\":[[86],[]],\"parent\":0,\"children\":86,\"pos\":\"[1][86]\"},{\"t\":\"ἴον\",\"h\":[[87],[]],\"parent\":0,\"children\":87,\"pos\":\"[1][87]\"}],[{\"t\":\"Εὔηνον\",\"h\":[[88],[]],\"parent\":0,\"children\":88,\"pos\":\"[1][88]\"},{\"t\":\"δάφνῃ\",\"h\":[[89],[]],\"parent\":0,\"children\":89,\"pos\":\"[1][89]\"},{\"p\":\",\",\"parent\":0,\"children\":90,\"pos\":\"[1][90]\"},{\"t\":\"συνεπιπλεκτοὺς\",\"h\":[[91],[]],\"parent\":0,\"children\":91,\"pos\":\"[1][91]\"},{\"t\":\"δὲ\",\"h\":[[92],[]],\"parent\":0,\"children\":92,\"pos\":\"[1][92]\"},{\"t\":\"περισσοὺς\",\"h\":[[93],[]],\"parent\":0,\"children\":93,\"pos\":\"[1][93]\"}],[{\"t\":\"εἴκασον\",\"h\":[[94],[]],\"parent\":0,\"children\":94,\"pos\":\"[1][94]\"},{\"t\":\"οἷς\",\"h\":[[95],[]],\"parent\":0,\"children\":95,\"pos\":\"[1][95]\"},{\"t\":\"ἐθέλεις\",\"h\":[[96],[]],\"parent\":0,\"children\":96,\"pos\":\"[1][96]\"},{\"t\":\"ἄνθεσιν\",\"h\":[[97],[]],\"parent\":0,\"children\":97,\"pos\":\"[1][97]\"},{\"t\":\"ἀρτιφύτοις\",\"h\":[[98],[]],\"parent\":0,\"children\":98,\"pos\":\"[1][98]\"},{\"p\":\".\",\"parent\":0,\"children\":99,\"pos\":\"[1][99]\"}],[]],[[{\"t\":\"Raccolsi\",\"h\":[[],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"i\",\"h\":[[],[2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"tuoi\",\"h\":[[],[3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"fiori\",\"h\":[[],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"sul\",\"h\":[[],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"monte\",\"h\":[[],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"Elicona\",\"h\":[[],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"p\":\",\",\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"}],[{\"t\":\"e\",\"h\":[[],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"tagliando\",\"h\":[[],[10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"i\",\"h\":[[],[11]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"boccioli\",\"h\":[[],[12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"appena\",\"h\":[[],[13]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"schiusi\",\"h\":[[],[14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"nella\",\"h\":[[],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"Pieria\",\"h\":[[],[16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"p\":\",\",\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"}],[{\"t\":\"regione\",\"h\":[[],[18]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"famosa\",\"h\":[[],[19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"per\",\"h\":[[],[20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"i\",\"h\":[[],[21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"suoi\",\"h\":[[],[22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"alberi\",\"h\":[[],[23]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"p\":\",\",\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"}],[{\"t\":\"e\",\"h\":[[],[25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"mietendo\",\"h\":[[],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"le\",\"h\":[[],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"spighe\",\"h\":[[],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"dei\",\"h\":[[],[29]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"novelli\",\"h\":[[],[30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"fogli\",\"h\":[[],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"t\":\"di\",\"h\":[[],[32]],\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"papiro\",\"h\":[[],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"p\":\",\",\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"}],[{\"t\":\"intrecciai\",\"h\":[[],[35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"corone\",\"h\":[[],[36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"emulando\",\"h\":[[],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"Meleagro\",\"h\":[[],[38]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"p\":\".\",\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"}],[{\"t\":\"Ma\",\"h\":[[],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"tu\",\"h\":[[],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"più\",\"h\":[[],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"tra\",\"h\":[[],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"gli\",\"h\":[[],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"antichi\",\"h\":[[],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"conosci\",\"h\":[[],[46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"p\":\",\",\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"t\":\"nobile\",\"h\":[[],[48]],\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"Camillo\",\"h\":[[],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"p\":\",\",\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"}],[{\"t\":\"la\",\"h\":[[],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"gloria\",\"h\":[[],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"e\",\"h\":[[],[53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"leggi\",\"h\":[[],[54]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"poesie\",\"h\":[[],[55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"brevi\",\"h\":[[],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"dei\",\"h\":[[],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"poeti\",\"h\":[[],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"più\",\"h\":[[],[59]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"recenti\",\"h\":[[],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"p\":\".\",\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"}],[{\"t\":\"Nella\",\"h\":[[],[62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"corona\",\"h\":[[],[63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"si\",\"h\":[[],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"distingue\",\"h\":[[],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"la\",\"h\":[[],[66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"spiga\",\"h\":[[],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"t\":\"d\",\"h\":[[],[68]],\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"},{\"p\":\"’\",\"parent\":1,\"children\":69,\"pos\":\"[2][69]\"},{\"t\":\"Antipatro\",\"h\":[[],[70]],\"parent\":1,\"children\":70,\"pos\":\"[2][70]\"},{\"p\":\";\",\"parent\":1,\"children\":71,\"pos\":\"[2][71]\"}],[{\"t\":\"come\",\"h\":[[],[72]],\"parent\":1,\"children\":72,\"pos\":\"[2][72]\"},{\"t\":\"il\",\"h\":[[],[73]],\"parent\":1,\"children\":73,\"pos\":\"[2][73]\"},{\"t\":\"corimbo\",\"h\":[[],[74]],\"parent\":1,\"children\":74,\"pos\":\"[2][74]\"},{\"t\":\"brilla\",\"h\":[[],[75]],\"parent\":1,\"children\":75,\"pos\":\"[2][75]\"},{\"t\":\"Crinagora\",\"h\":[[],[76]],\"parent\":1,\"children\":76,\"pos\":\"[2][76]\"},{\"p\":\",\",\"parent\":1,\"children\":77,\"pos\":\"[2][77]\"},{\"t\":\"Antifilo\",\"h\":[[],[78]],\"parent\":1,\"children\":78,\"pos\":\"[2][78]\"},{\"t\":\"come\",\"h\":[[],[79]],\"parent\":1,\"children\":79,\"pos\":\"[2][79]\"},{\"t\":\"il\",\"h\":[[],[80]],\"parent\":1,\"children\":80,\"pos\":\"[2][80]\"},{\"t\":\"grappolo\",\"h\":[[],[81]],\"parent\":1,\"children\":81,\"pos\":\"[2][81]\"},{\"t\":\"d\",\"h\":[[],[82]],\"parent\":1,\"children\":82,\"pos\":\"[2][82]\"},{\"p\":\"’\",\"parent\":1,\"children\":83,\"pos\":\"[2][83]\"},{\"t\":\"uva\",\"h\":[[],[84]],\"parent\":1,\"children\":84,\"pos\":\"[2][84]\"},{\"p\":\";\",\"parent\":1,\"children\":85,\"pos\":\"[2][85]\"}],[{\"t\":\"Tullio\",\"h\":[[],[86]],\"parent\":1,\"children\":86,\"pos\":\"[2][86]\"},{\"t\":\"risplende\",\"h\":[[],[87]],\"parent\":1,\"children\":87,\"pos\":\"[2][87]\"},{\"t\":\"come\",\"h\":[[],[88]],\"parent\":1,\"children\":88,\"pos\":\"[2][88]\"},{\"t\":\"il\",\"h\":[[],[89]],\"parent\":1,\"children\":89,\"pos\":\"[2][89]\"},{\"t\":\"meliloto\",\"h\":[[],[90]],\"parent\":1,\"children\":90,\"pos\":\"[2][90]\"},{\"p\":\",\",\"parent\":1,\"children\":91,\"pos\":\"[2][91]\"},{\"t\":\"Filodemo\",\"h\":[[],[92]],\"parent\":1,\"children\":92,\"pos\":\"[2][92]\"},{\"t\":\"come\",\"h\":[[],[93]],\"parent\":1,\"children\":93,\"pos\":\"[2][93]\"},{\"t\":\"la\",\"h\":[[],[94]],\"parent\":1,\"children\":94,\"pos\":\"[2][94]\"},{\"t\":\"maggiorana\",\"h\":[[],[95]],\"parent\":1,\"children\":95,\"pos\":\"[2][95]\"},{\"p\":\";\",\"parent\":1,\"children\":96,\"pos\":\"[2][96]\"}],[{\"t\":\"Parmenione\",\"h\":[[],[97]],\"parent\":1,\"children\":97,\"pos\":\"[2][97]\"},{\"p\":\"è\",\"parent\":1,\"children\":98,\"pos\":\"[2][98]\"},{\"t\":\"come\",\"h\":[[],[99]],\"parent\":1,\"children\":99,\"pos\":\"[2][99]\"},{\"t\":\"il\",\"h\":[[],[100]],\"parent\":1,\"children\":100,\"pos\":\"[2][100]\"},{\"t\":\"mirto\",\"h\":[[],[101]],\"parent\":1,\"children\":101,\"pos\":\"[2][101]\"},{\"p\":\",\",\"parent\":1,\"children\":102,\"pos\":\"[2][102]\"},{\"t\":\"come\",\"h\":[[],[103]],\"parent\":1,\"children\":103,\"pos\":\"[2][103]\"},{\"t\":\"la\",\"h\":[[],[104]],\"parent\":1,\"children\":104,\"pos\":\"[2][104]\"},{\"t\":\"rosa\",\"h\":[[],[105]],\"parent\":1,\"children\":105,\"pos\":\"[2][105]\"},{\"t\":\"Antifane\",\"h\":[[],[106]],\"parent\":1,\"children\":106,\"pos\":\"[2][106]\"},{\"p\":\";\",\"parent\":1,\"children\":107,\"pos\":\"[2][107]\"}],[{\"t\":\"Automedonte\",\"h\":[[],[108]],\"parent\":1,\"children\":108,\"pos\":\"[2][108]\"},{\"t\":\"somiglia\",\"h\":[[],[109]],\"parent\":1,\"children\":109,\"pos\":\"[2][109]\"},{\"t\":\"all\",\"h\":[[],[110]],\"parent\":1,\"children\":110,\"pos\":\"[2][110]\"},{\"p\":\"’\",\"parent\":1,\"children\":111,\"pos\":\"[2][111]\"},{\"t\":\"edera\",\"h\":[[],[112]],\"parent\":1,\"children\":112,\"pos\":\"[2][112]\"},{\"p\":\",\",\"parent\":1,\"children\":113,\"pos\":\"[2][113]\"},{\"t\":\"Zona\",\"h\":[[],[114]],\"parent\":1,\"children\":114,\"pos\":\"[2][114]\"},{\"t\":\"ai\",\"h\":[[],[115]],\"parent\":1,\"children\":115,\"pos\":\"[2][115]\"},{\"t\":\"gigli\",\"h\":[[],[116]],\"parent\":1,\"children\":116,\"pos\":\"[2][116]\"},{\"p\":\",\",\"parent\":1,\"children\":117,\"pos\":\"[2][117]\"},{\"t\":\"Bianore\",\"h\":[[],[118]],\"parent\":1,\"children\":118,\"pos\":\"[2][118]\"},{\"t\":\"alla\",\"h\":[[],[119]],\"parent\":1,\"children\":119,\"pos\":\"[2][119]\"},{\"t\":\"quercia\",\"h\":[[],[120]],\"parent\":1,\"children\":120,\"pos\":\"[2][120]\"},{\"p\":\";\",\"parent\":1,\"children\":121,\"pos\":\"[2][121]\"}],[{\"t\":\"Antigone\",\"h\":[[],[122]],\"parent\":1,\"children\":122,\"pos\":\"[2][122]\"},{\"t\":\"come\",\"h\":[[],[123]],\"parent\":1,\"children\":123,\"pos\":\"[2][123]\"},{\"t\":\"l\",\"h\":[[],[124]],\"parent\":1,\"children\":124,\"pos\":\"[2][124]\"},{\"p\":\"’\",\"parent\":1,\"children\":125,\"pos\":\"[2][125]\"},{\"t\":\"ulivo\",\"h\":[[],[126]],\"parent\":1,\"children\":126,\"pos\":\"[2][126]\"},{\"t\":\"e\",\"h\":[[],[127]],\"parent\":1,\"children\":127,\"pos\":\"[2][127]\"},{\"t\":\"Diodoro\",\"h\":[[],[128]],\"parent\":1,\"children\":128,\"pos\":\"[2][128]\"},{\"t\":\"come\",\"h\":[[],[129]],\"parent\":1,\"children\":129,\"pos\":\"[2][129]\"},{\"t\":\"la\",\"h\":[[],[130]],\"parent\":1,\"children\":130,\"pos\":\"[2][130]\"},{\"t\":\"viola\",\"h\":[[],[131]],\"parent\":1,\"children\":131,\"pos\":\"[2][131]\"},{\"p\":\",\",\"parent\":1,\"children\":132,\"pos\":\"[2][132]\"}],[{\"t\":\"infine\",\"h\":[[],[133]],\"parent\":1,\"children\":133,\"pos\":\"[2][133]\"},{\"t\":\"si\",\"h\":[[],[134]],\"parent\":1,\"children\":134,\"pos\":\"[2][134]\"},{\"t\":\"nota\",\"h\":[[],[135]],\"parent\":1,\"children\":135,\"pos\":\"[2][135]\"},{\"t\":\"l\",\"h\":[[],[136]],\"parent\":1,\"children\":136,\"pos\":\"[2][136]\"},{\"p\":\"’\",\"parent\":1,\"children\":137,\"pos\":\"[2][137]\"},{\"t\":\"alloro\",\"h\":[[],[138]],\"parent\":1,\"children\":138,\"pos\":\"[2][138]\"},{\"t\":\"d\",\"h\":[[],[139]],\"parent\":1,\"children\":139,\"pos\":\"[2][139]\"},{\"p\":\"’\",\"parent\":1,\"children\":140,\"pos\":\"[2][140]\"},{\"t\":\"Eveno\",\"h\":[[],[141]],\"parent\":1,\"children\":141,\"pos\":\"[2][141]\"},{\"p\":\";\",\"parent\":1,\"children\":142,\"pos\":\"[2][142]\"},{\"t\":\"intreccia\",\"h\":[[],[143]],\"parent\":1,\"children\":143,\"pos\":\"[2][143]\"},{\"t\":\"i\",\"h\":[[],[144]],\"parent\":1,\"children\":144,\"pos\":\"[2][144]\"},{\"t\":\"restanti\",\"h\":[[],[145]],\"parent\":1,\"children\":145,\"pos\":\"[2][145]\"},{\"p\":\",\",\"parent\":1,\"children\":146,\"pos\":\"[2][146]\"}],[{\"t\":\"associando\",\"h\":[[],[147]],\"parent\":1,\"children\":147,\"pos\":\"[2][147]\"},{\"t\":\"a\",\"h\":[[],[148]],\"parent\":1,\"children\":148,\"pos\":\"[2][148]\"},{\"t\":\"loro\",\"h\":[[],[149]],\"parent\":1,\"children\":149,\"pos\":\"[2][149]\"},{\"t\":\"fiori\",\"h\":[[],[150]],\"parent\":1,\"children\":150,\"pos\":\"[2][150]\"},{\"t\":\"appena\",\"h\":[[],[151]],\"parent\":1,\"children\":151,\"pos\":\"[2][151]\"},{\"t\":\"nati\",\"h\":[[],[152]],\"parent\":1,\"children\":152,\"pos\":\"[2][152]\"},{\"p\":\",\",\"parent\":1,\"children\":153,\"pos\":\"[2][153]\"},{\"t\":\"come\",\"h\":[[],[154]],\"parent\":1,\"children\":154,\"pos\":\"[2][154]\"},{\"t\":\"tu\",\"h\":[[],[155]],\"parent\":1,\"children\":155,\"pos\":\"[2][155]\"},{\"t\":\"vuoi\",\"h\":[[],[156]],\"parent\":1,\"children\":156,\"pos\":\"[2][156]\"},{\"p\":\".\",\"parent\":1,\"children\":157,\"pos\":\"[2][157]\"}]]]', 40, NULL, '2017-09-05 10:31:18', '2017-09-05 10:31:18'),
(24, 23, 62, 7, 63, 1, '[[[{\"t\":\"στῆλαι\",\"h\":[[1],[1]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"καὶ\",\"h\":[[2],[2]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"γραφίδες\",\"h\":[[3],[3]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"καὶ\",\"h\":[[4],[4]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"},{\"t\":\"κύρβιες\",\"h\":[[5],[5]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"p\":\",\",\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"}],[{\"t\":\"εὐφροσύνης\",\"h\":[[7],[8,10]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"μὲν\",\"h\":[[8],[]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"}],[{\"t\":\"αἴτια\",\"h\":[[9],[7]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"},{\"t\":\"τοῖς\",\"h\":[[10,12],[11,12,13,14,16]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"ταῦτα\",\"h\":[[11],[15]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"t\":\"κτησαμένοις\",\"h\":[[10,12],[11,12,13,14,16]],\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"μεγάλης\",\"h\":[[13],[9]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"p\":\",\",\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"}],[{\"t\":\"ἀλλ᾽\",\"h\":[[15,16,17],[18,19]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"ἐς\",\"h\":[[15,16,17],[18,19]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"ὅσον\",\"h\":[[15,16,17],[18,19]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"ζώουσι\",\"h\":[[18],[20]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"τὰ\",\"h\":[[19],[]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"γὰρ\",\"h\":[[20],[22]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"},{\"t\":\"κενὰ\",\"h\":[[21],[24,25]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"}],[{\"t\":\"κύδεα\",\"h\":[[22],[26]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"φωτῶν\",\"h\":[[23],[38,39]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"}],[{\"t\":\"ψυχαῖς\",\"h\":[[24],[36,37]],\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"},{\"t\":\"οἰχομένων\",\"h\":[[25],[28,29,30,31]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"οὐ\",\"h\":[[26],[34]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"μάλα\",\"h\":[[27],[33]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"t\":\"συμφέρεται\",\"h\":[[28],[35]],\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"}],[{\"t\":\"ἡ\",\"h\":[[29,31],[42,43]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"t\":\"δ᾽\",\"h\":[[30],[41]],\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"ἀρετὴ\",\"h\":[[29,31],[42,43]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"},{\"t\":\"σοφίης\",\"h\":[[32],[47,49]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"τε\",\"h\":[[33],[]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"χάρις\",\"h\":[[34],[45,46]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"καὶ\",\"h\":[[35],[51]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"κεῖθι\",\"h\":[[36],[52]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"}],[{\"t\":\"συνέρπει\",\"h\":[[37],[50]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"p\":\",\",\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"}],[{\"t\":\"κἀνθάδε\",\"h\":[[39],[54,55]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"μιμνάζει\",\"h\":[[40],[56]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"μνῆστιν\",\"h\":[[41,42],[57,58]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"t\":\"ἐφελκομένη\",\"h\":[[41,42],[57,58]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"p\":\".\",\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"}],[{\"t\":\"οὕτως\",\"h\":[[44],[60]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"t\":\"οὔτε\",\"h\":[[45],[61]],\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"},{\"t\":\"Πλάτων\",\"h\":[[46],[62]],\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"βρενθύεται\",\"h\":[[47],[66,67]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"οὔτ᾽\",\"h\":[[48],[63]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"}],[{\"p\":\"[\",\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"ἄρ᾽\",\"h\":[[50],[64]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"p\":\"]\",\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"t\":\"Ὅμηρος\",\"h\":[[52],[65]],\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[{\"t\":\"χρώμασιν\",\"h\":[[53],[68,69]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"t\":\"ἢ\",\"h\":[[54],[70]],\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"},{\"t\":\"στήλαις\",\"h\":[[55],[71]],\"parent\":0,\"children\":55,\"pos\":\"[1][55]\"},{\"p\":\",\",\"parent\":0,\"children\":56,\"pos\":\"[1][56]\"},{\"t\":\"ἀλλὰ\",\"h\":[[57],[73]],\"parent\":0,\"children\":57,\"pos\":\"[1][57]\"},{\"t\":\"μόνῃ\",\"h\":[[58],[74,75,76]],\"parent\":0,\"children\":58,\"pos\":\"[1][58]\"},{\"t\":\"σοφίῃ\",\"h\":[[59],[77]],\"parent\":0,\"children\":59,\"pos\":\"[1][59]\"},{\"p\":\".\",\"parent\":0,\"children\":60,\"pos\":\"[1][60]\"}],[{\"t\":\"ὄλβιοι\",\"h\":[[61],[79,80]],\"parent\":0,\"children\":61,\"pos\":\"[1][61]\"},{\"t\":\"ὧν\",\"h\":[[62],[82]],\"parent\":0,\"children\":62,\"pos\":\"[1][62]\"},{\"t\":\"μνήμη\",\"h\":[[63],[85,86]],\"parent\":0,\"children\":63,\"pos\":\"[1][63]\"},{\"t\":\"πινυτῶν\",\"h\":[[64],[83]],\"parent\":0,\"children\":64,\"pos\":\"[1][64]\"},{\"t\":\"ἐνὶ\",\"h\":[[65],[89]],\"parent\":0,\"children\":65,\"pos\":\"[1][65]\"},{\"t\":\"τεύχεσι\",\"h\":[[66],[87,88]],\"parent\":0,\"children\":66,\"pos\":\"[1][66]\"}],[{\"t\":\"βίβλων\",\"h\":[[67],[90]],\"parent\":0,\"children\":67,\"pos\":\"[1][67]\"},{\"p\":\",\",\"parent\":0,\"children\":68,\"pos\":\"[1][68]\"}],[{\"t\":\"ἀλλ᾽\",\"h\":[[69],[91]],\"parent\":0,\"children\":69,\"pos\":\"[1][69]\"},{\"t\":\"οὐκ\",\"h\":[[70],[92]],\"parent\":0,\"children\":70,\"pos\":\"[1][70]\"},{\"t\":\"ἐς\",\"h\":[[71,72],[94,95]],\"parent\":0,\"children\":71,\"pos\":\"[1][71]\"},{\"t\":\"κενεὰς\",\"h\":[[71,72],[94,95]],\"parent\":0,\"children\":72,\"pos\":\"[1][72]\"},{\"t\":\"εἰκόνας\",\"h\":[[73],[96]],\"parent\":0,\"children\":73,\"pos\":\"[1][73]\"},{\"t\":\"ἐνδιάει\",\"h\":[[74],[93]],\"parent\":0,\"children\":74,\"pos\":\"[1][74]\"},{\"p\":\".\",\"parent\":0,\"children\":75,\"pos\":\"[1][75]\"}],[]],[[],[{\"t\":\"Colonne\",\"h\":[[1],[1]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"e\",\"h\":[[2],[2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"stilo\",\"h\":[[3],[3]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"e\",\"h\":[[4],[4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"tavole\",\"h\":[[5],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"t\":\"sono\",\"h\":[[],[6]],\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"motivo\",\"h\":[[9],[7]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"di\",\"h\":[[7],[8,10]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"grande\",\"h\":[[13],[9]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"gioia\",\"h\":[[7],[8,10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"per\",\"h\":[[10,12],[11,12,13,14,16]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"quelli\",\"h\":[[10,12],[11,12,13,14,16]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"che\",\"h\":[[10,12],[11,12,13,14,16]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"se\",\"h\":[[10,12],[11,12,13,14,16]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"le\",\"h\":[[11],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"procurano\",\"h\":[[10,12],[11,12,13,14,16]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"p\":\",\",\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"}],[{\"t\":\"finchè\",\"h\":[[15,16,17],[18,19]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"t\":\"sono\",\"h\":[[15,16,17],[18,19]],\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"vivi\",\"h\":[[18],[20]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"p\":\":\",\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"infatti\",\"h\":[[20],[22]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"p\":\",\",\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"le\",\"h\":[[21],[24,25]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"vane\",\"h\":[[21],[24,25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"glorie\",\"h\":[[22],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"p\":\",\",\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"poiché\",\"h\":[[25],[28,29,30,31]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"se\",\"h\":[[25],[28,29,30,31]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"ne\",\"h\":[[25],[28,29,30,31]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"vanno\",\"h\":[[25],[28,29,30,31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"p\":\",\",\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"},{\"t\":\"sicuramente\",\"h\":[[27],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"t\":\"non\",\"h\":[[26],[34]],\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"giovano\",\"h\":[[28],[35]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"alle\",\"h\":[[24],[36,37]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"anime\",\"h\":[[24],[36,37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"t\":\"dei\",\"h\":[[23],[38,39]],\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"mortali\",\"h\":[[23],[38,39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"},{\"p\":\".\",\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"}],[{\"t\":\"Ma\",\"h\":[[30],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"il\",\"h\":[[29,31],[42,43]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"valore\",\"h\":[[29,31],[42,43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"p\":\",\",\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"la\",\"h\":[[34],[45,46]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"t\":\"bellezza\",\"h\":[[34],[45,46]],\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"},{\"t\":\"dell\",\"h\":[[32],[47,49]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"p\":\"’\",\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"arte\",\"h\":[[32],[47,49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"t\":\"restano\",\"h\":[[37],[50]],\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"anche\",\"h\":[[35],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"là\",\"h\":[[36],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"p\":\",\",\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"e\",\"h\":[[39],[54,55]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"qui\",\"h\":[[39],[54,55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"t\":\"rimane\",\"h\":[[40],[56]],\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"},{\"t\":\"il\",\"h\":[[41,42],[57,58]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"ricordo\",\"h\":[[41,42],[57,58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"p\":\".\",\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"}],[{\"t\":\"Così\",\"h\":[[44],[60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"né\",\"h\":[[45],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"Platone\",\"h\":[[46],[62]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"né\",\"h\":[[48],[63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"t\":\"dunque\",\"h\":[[50],[64]],\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"},{\"t\":\"Omero\",\"h\":[[52],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"si\",\"h\":[[47],[66,67]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"inorgogliscono\",\"h\":[[47],[66,67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"t\":\"per\",\"h\":[[53],[68,69]],\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"},{\"t\":\"quadri\",\"h\":[[53],[68,69]],\"parent\":1,\"children\":69,\"pos\":\"[2][69]\"},{\"t\":\"o\",\"h\":[[54],[70]],\"parent\":1,\"children\":70,\"pos\":\"[2][70]\"},{\"t\":\"stele\",\"h\":[[55],[71]],\"parent\":1,\"children\":71,\"pos\":\"[2][71]\"},{\"p\":\",\",\"parent\":1,\"children\":72,\"pos\":\"[2][72]\"},{\"t\":\"ma\",\"h\":[[57],[73]],\"parent\":1,\"children\":73,\"pos\":\"[2][73]\"},{\"t\":\"per\",\"h\":[[58],[74,75,76]],\"parent\":1,\"children\":74,\"pos\":\"[2][74]\"},{\"t\":\"la\",\"h\":[[58],[74,75,76]],\"parent\":1,\"children\":75,\"pos\":\"[2][75]\"},{\"t\":\"sola\",\"h\":[[58],[74,75,76]],\"parent\":1,\"children\":76,\"pos\":\"[2][76]\"},{\"t\":\"sapienza\",\"h\":[[59],[77]],\"parent\":1,\"children\":77,\"pos\":\"[2][77]\"},{\"p\":\".\",\"parent\":1,\"children\":78,\"pos\":\"[2][78]\"}],[{\"t\":\"O\",\"h\":[[61],[79,80]],\"parent\":1,\"children\":79,\"pos\":\"[2][79]\"},{\"t\":\"beati\",\"h\":[[61],[79,80]],\"parent\":1,\"children\":80,\"pos\":\"[2][80]\"},{\"p\":\",\",\"parent\":1,\"children\":81,\"pos\":\"[2][81]\"},{\"t\":\"giacché\",\"h\":[[62],[82]],\"parent\":1,\"children\":82,\"pos\":\"[2][82]\"},{\"t\":\"sapienti\",\"h\":[[64],[83]],\"parent\":1,\"children\":83,\"pos\":\"[2][83]\"},{\"p\":\",\",\"parent\":1,\"children\":84,\"pos\":\"[2][84]\"},{\"t\":\"la\",\"h\":[[63],[85,86]],\"parent\":1,\"children\":85,\"pos\":\"[2][85]\"},{\"t\":\"memoria\",\"h\":[[63],[85,86]],\"parent\":1,\"children\":86,\"pos\":\"[2][86]\"},{\"t\":\"si\",\"h\":[[66],[87,88]],\"parent\":1,\"children\":87,\"pos\":\"[2][87]\"},{\"t\":\"conserva\",\"h\":[[66],[87,88]],\"parent\":1,\"children\":88,\"pos\":\"[2][88]\"},{\"t\":\"nei\",\"h\":[[65],[89]],\"parent\":1,\"children\":89,\"pos\":\"[2][89]\"},{\"t\":\"libri\",\"h\":[[67],[90]],\"parent\":1,\"children\":90,\"pos\":\"[2][90]\"},{\"t\":\"e\",\"h\":[[69],[91]],\"parent\":1,\"children\":91,\"pos\":\"[2][91]\"},{\"t\":\"non\",\"h\":[[70],[92]],\"parent\":1,\"children\":92,\"pos\":\"[2][92]\"},{\"t\":\"resta\",\"h\":[[74],[93]],\"parent\":1,\"children\":93,\"pos\":\"[2][93]\"},{\"t\":\"in\",\"h\":[[71,72],[94,95]],\"parent\":1,\"children\":94,\"pos\":\"[2][94]\"},{\"t\":\"vane\",\"h\":[[71,72],[94,95]],\"parent\":1,\"children\":95,\"pos\":\"[2][95]\"},{\"t\":\"immagini\",\"h\":[[73],[96]],\"parent\":1,\"children\":96,\"pos\":\"[2][96]\"},{\"p\":\".\",\"parent\":1,\"children\":97,\"pos\":\"[2][97]\"}],[]]]', 40, NULL, '2017-09-05 10:32:29', '2017-09-05 10:32:29');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(25, 24, 60, 7, 61, 1, '[[[{\"t\":\"συλλογὴ\",\"h\":[[1],[1,2]],\"parent\":0,\"children\":1,\"pos\":\"[1][1]\"},{\"t\":\"νέων\",\"h\":[[2],[3,4]],\"parent\":0,\"children\":2,\"pos\":\"[1][2]\"},{\"t\":\"ἐπιγραμμάτων\",\"h\":[[3],[5]],\"parent\":0,\"children\":3,\"pos\":\"[1][3]\"},{\"t\":\"ἐκτεθεῖσαἐν\",\"h\":[[4],[7,8]],\"parent\":0,\"children\":4,\"pos\":\"[1][4]\"}],[{\"t\":\"Κωνσταντίνου\",\"h\":[[5],[11,12]],\"parent\":0,\"children\":5,\"pos\":\"[1][5]\"},{\"t\":\"πόλει\",\"h\":[[6],[9,10]],\"parent\":0,\"children\":6,\"pos\":\"[1][6]\"},{\"t\":\"πρὸς\",\"h\":[[7,8],[13,14]],\"parent\":0,\"children\":7,\"pos\":\"[1][7]\"},{\"t\":\"Θεόδωρον\",\"h\":[[7,8],[13,14]],\"parent\":0,\"children\":8,\"pos\":\"[1][8]\"}],[{\"t\":\"Δεκουρίωνα\",\"h\":[[9],[15]],\"parent\":0,\"children\":9,\"pos\":\"[1][9]\"}],[{\"t\":\"τὸν\",\"h\":[[10,11],[16,17,18]],\"parent\":0,\"children\":10,\"pos\":\"[1][10]\"},{\"t\":\"Κοσμᾶ\",\"h\":[[10,11],[16,17,18]],\"parent\":0,\"children\":11,\"pos\":\"[1][11]\"},{\"p\":\":\",\"parent\":0,\"children\":12,\"pos\":\"[1][12]\"},{\"t\":\"εἴρηται\",\"h\":[[13],[22,23,24]],\"parent\":0,\"children\":13,\"pos\":\"[1][13]\"},{\"t\":\"δὲ\",\"h\":[[14],[]],\"parent\":0,\"children\":14,\"pos\":\"[1][14]\"},{\"t\":\"τὰπροοίμια\",\"h\":[[15],[20,21]],\"parent\":0,\"children\":15,\"pos\":\"[1][15]\"},{\"t\":\"μετὰ\",\"h\":[[16],[25]],\"parent\":0,\"children\":16,\"pos\":\"[1][16]\"},{\"t\":\"τὰς\",\"h\":[[17,18,19],[26]],\"parent\":0,\"children\":17,\"pos\":\"[1][17]\"},{\"t\":\"συν\",\"h\":[[17,18,19],[26]],\"parent\":0,\"children\":18,\"pos\":\"[1][18]\"},{\"t\":\"εχεῖς\",\"h\":[[17,18,19],[26]],\"parent\":0,\"children\":19,\"pos\":\"[1][19]\"},{\"t\":\"ἀκροάσεις\",\"h\":[[20],[27]],\"parent\":0,\"children\":20,\"pos\":\"[1][20]\"}],[{\"t\":\"τὰςκατ᾽ἐκεῖνο\",\"h\":[[21],[29,30]],\"parent\":0,\"children\":21,\"pos\":\"[1][21]\"},{\"t\":\"καιροῦ\",\"h\":[[22],[31]],\"parent\":0,\"children\":22,\"pos\":\"[1][22]\"},{\"t\":\"γενομένας\",\"h\":[[23],[28]],\"parent\":0,\"children\":23,\"pos\":\"[1][23]\"},{\"p\":\".\",\"parent\":0,\"children\":24,\"pos\":\"[1][24]\"}],[],[{\"t\":\"οἶμαι\",\"h\":[[25],[35,36]],\"parent\":0,\"children\":25,\"pos\":\"[1][25]\"},{\"t\":\"μὲν\",\"h\":[[26],[]],\"parent\":0,\"children\":26,\"pos\":\"[1][26]\"},{\"t\":\"ὑμᾶς\",\"h\":[[27],[37]],\"parent\":0,\"children\":27,\"pos\":\"[1][27]\"},{\"p\":\",\",\"parent\":0,\"children\":28,\"pos\":\"[1][28]\"},{\"t\":\"ἄνδρες\",\"h\":[[29],[33]],\"parent\":0,\"children\":29,\"pos\":\"[1][29]\"},{\"p\":\",\",\"parent\":0,\"children\":30,\"pos\":\"[1][30]\"},{\"t\":\"ἐμπεπλησμένους\",\"h\":[[31],[39]],\"parent\":0,\"children\":31,\"pos\":\"[1][31]\"}],[{\"t\":\"ἐκ\",\"h\":[[32],[40]],\"parent\":0,\"children\":32,\"pos\":\"[1][32]\"},{\"t\":\"τῆς\",\"h\":[[33],[41]],\"parent\":0,\"children\":33,\"pos\":\"[1][33]\"},{\"t\":\"τοσαύτης\",\"h\":[[34],[42]],\"parent\":0,\"children\":34,\"pos\":\"[1][34]\"},{\"t\":\"τῶν\",\"h\":[[35],[44]],\"parent\":0,\"children\":35,\"pos\":\"[1][35]\"},{\"t\":\"λόγων\",\"h\":[[36],[45]],\"parent\":0,\"children\":36,\"pos\":\"[1][36]\"},{\"t\":\"πανδαισίας\",\"h\":[[37],[43]],\"parent\":0,\"children\":37,\"pos\":\"[1][37]\"},{\"p\":\",\",\"parent\":0,\"children\":38,\"pos\":\"[1][38]\"}],[{\"t\":\"ἔτι\",\"h\":[[39],[49]],\"parent\":0,\"children\":39,\"pos\":\"[1][39]\"},{\"t\":\"που\",\"h\":[[40],[47]],\"parent\":0,\"children\":40,\"pos\":\"[1][40]\"},{\"t\":\"τὰ\",\"h\":[[41],[52]],\"parent\":0,\"children\":41,\"pos\":\"[1][41]\"},{\"t\":\"σιτία\",\"h\":[[42],[53]],\"parent\":0,\"children\":42,\"pos\":\"[1][42]\"},{\"t\":\"προσκόρως\",\"h\":[[43],[54,55]],\"parent\":0,\"children\":43,\"pos\":\"[1][43]\"},{\"t\":\"ἐρυγγάνειν\",\"h\":[[44],[51]],\"parent\":0,\"children\":44,\"pos\":\"[1][44]\"},{\"p\":\":\",\"parent\":0,\"children\":45,\"pos\":\"[1][45]\"}],[{\"t\":\"καὶ\",\"h\":[[46],[57]],\"parent\":0,\"children\":46,\"pos\":\"[1][46]\"},{\"t\":\"δὴ\",\"h\":[[47],[58]],\"parent\":0,\"children\":47,\"pos\":\"[1][47]\"},{\"t\":\"κάθησθε\",\"h\":[[48],[59,60]],\"parent\":0,\"children\":48,\"pos\":\"[1][48]\"},{\"t\":\"τῇ\",\"h\":[[49,50],[62,63]],\"parent\":0,\"children\":49,\"pos\":\"[1][49]\"},{\"t\":\"τρυφῇ\",\"h\":[[49,50],[62,63]],\"parent\":0,\"children\":50,\"pos\":\"[1][50]\"},{\"t\":\"σεσαγμένοι\",\"h\":[[51],[61]],\"parent\":0,\"children\":51,\"pos\":\"[1][51]\"},{\"p\":\":\",\"parent\":0,\"children\":52,\"pos\":\"[1][52]\"}],[{\"t\":\"λόγων\",\"h\":[[53],[71,72]],\"parent\":0,\"children\":53,\"pos\":\"[1][53]\"},{\"t\":\"γὰρ\",\"h\":[[54],[65]],\"parent\":0,\"children\":54,\"pos\":\"[1][54]\"},{\"t\":\"ἡμῖν\",\"h\":[[55,60],[67]],\"parent\":0,\"children\":55,\"pos\":\"[1][55]\"},{\"t\":\"πολυτελῶν\",\"h\":[[56],[73]],\"parent\":0,\"children\":56,\"pos\":\"[1][56]\"},{\"t\":\"καὶ\",\"h\":[[57],[74]],\"parent\":0,\"children\":57,\"pos\":\"[1][57]\"},{\"t\":\"ποικίλων\",\"h\":[[58],[75]],\"parent\":0,\"children\":58,\"pos\":\"[1][58]\"}],[{\"t\":\"πολλοὶ\",\"h\":[[59],[66]],\"parent\":0,\"children\":59,\"pos\":\"[1][59]\"},{\"t\":\"προθέντες\",\"h\":[[55,60],[67]],\"parent\":0,\"children\":60,\"pos\":\"[1][60]\"},{\"t\":\"παμμιγεῖς\",\"h\":[[61],[68,69]],\"parent\":0,\"children\":61,\"pos\":\"[1][61]\"},{\"t\":\"εὐωχίας\",\"h\":[[62],[70]],\"parent\":0,\"children\":62,\"pos\":\"[1][62]\"},{\"p\":\",\",\"parent\":0,\"children\":63,\"pos\":\"[1][63]\"}],[{\"t\":\"περιφρονεῖν\",\"h\":[[64],[79,80,81,82]],\"parent\":0,\"children\":64,\"pos\":\"[1][64]\"},{\"t\":\"πείθουσι\",\"h\":[[65],[77,78]],\"parent\":0,\"children\":65,\"pos\":\"[1][65]\"},{\"t\":\"τῶν\",\"h\":[[66,67],[83,84,85,86,87]],\"parent\":0,\"children\":66,\"pos\":\"[1][66]\"},{\"t\":\"εἰθισμένων\",\"h\":[[66,67],[83,84,85,86,87]],\"parent\":0,\"children\":67,\"pos\":\"[1][67]\"},{\"p\":\".\",\"parent\":0,\"children\":68,\"pos\":\"[1][68]\"}],[{\"t\":\"τί\",\"h\":[[69],[90,91]],\"parent\":0,\"children\":69,\"pos\":\"[1][69]\"},{\"t\":\"δὲ\",\"h\":[[70],[]],\"parent\":0,\"children\":70,\"pos\":\"[1][70]\"},{\"t\":\"νῦν\",\"h\":[[71],[89]],\"parent\":0,\"children\":71,\"pos\":\"[1][71]\"},{\"t\":\"ποιήσω\",\"h\":[[72],[92]],\"parent\":0,\"children\":72,\"pos\":\"[1][72]\"},{\"p\":\";\",\"parent\":0,\"children\":73,\"pos\":\"[1][73]\"}],[{\"t\":\"μὴ\",\"h\":[[74],[]],\"parent\":0,\"children\":74,\"pos\":\"[1][74]\"},{\"t\":\"τὰ\",\"h\":[[75,76],[95,96,97,98]],\"parent\":0,\"children\":75,\"pos\":\"[1][75]\"},{\"t\":\"προὐξειργασμένα\",\"h\":[[75,76],[95,96,97,98]],\"parent\":0,\"children\":76,\"pos\":\"[1][76]\"}],[{\"t\":\"οὕτως\",\"h\":[[77],[101,102,103]],\"parent\":0,\"children\":77,\"pos\":\"[1][77]\"},{\"t\":\"ἐάσω\",\"h\":[[78],[94]],\"parent\":0,\"children\":78,\"pos\":\"[1][78]\"},{\"t\":\"συντετῆχθαι\",\"h\":[[79],[99]],\"parent\":0,\"children\":79,\"pos\":\"[1][79]\"},{\"t\":\"κείμενα\",\"h\":[[80],[100]],\"parent\":0,\"children\":80,\"pos\":\"[1][80]\"},{\"p\":\";\",\"parent\":0,\"children\":81,\"pos\":\"[1][81]\"}],[{\"t\":\"ἢ\",\"h\":[[82],[105]],\"parent\":0,\"children\":82,\"pos\":\"[1][82]\"},{\"t\":\"καὶ\",\"h\":[[83],[]],\"parent\":0,\"children\":83,\"pos\":\"[1][83]\"},{\"t\":\"προθῶμαι\",\"h\":[[84],[106,107]],\"parent\":0,\"children\":84,\"pos\":\"[1][84]\"},{\"t\":\"τῆς\",\"h\":[[85,86],[110,111]],\"parent\":0,\"children\":85,\"pos\":\"[1][85]\"},{\"t\":\"ἀγορᾶς\",\"h\":[[85,86],[110,111]],\"parent\":0,\"children\":86,\"pos\":\"[1][86]\"},{\"t\":\"ἐν\",\"h\":[[87,88,89],[108,109]],\"parent\":0,\"children\":87,\"pos\":\"[1][87]\"},{\"t\":\"τῷ\",\"h\":[[87,88,89],[108,109]],\"parent\":0,\"children\":88,\"pos\":\"[1][88]\"},{\"t\":\"μέσῳ\",\"h\":[[87,88,89],[108,109]],\"parent\":0,\"children\":89,\"pos\":\"[1][89]\"},{\"p\":\",\",\"parent\":0,\"children\":90,\"pos\":\"[1][90]\"}],[{\"t\":\"παλιγκαπήλοις\",\"h\":[[91],[117,118]],\"parent\":0,\"children\":91,\"pos\":\"[1][91]\"},{\"t\":\"εὐτελῶς\",\"h\":[[92],[114,115,116]],\"parent\":0,\"children\":92,\"pos\":\"[1][92]\"},{\"t\":\"ἀπεμπολῶν\",\"h\":[[93],[113]],\"parent\":0,\"children\":93,\"pos\":\"[1][93]\"},{\"p\":\";\",\"parent\":0,\"children\":94,\"pos\":\"[1][94]\"}],[{\"t\":\"καὶ\",\"h\":[[95],[120]],\"parent\":0,\"children\":95,\"pos\":\"[1][95]\"},{\"t\":\"τίς\",\"h\":[[96],[121]],\"parent\":0,\"children\":96,\"pos\":\"[1][96]\"},{\"t\":\"μετασχεῖν\",\"h\":[[97],[124,125]],\"parent\":0,\"children\":97,\"pos\":\"[1][97]\"},{\"t\":\"τῶν\",\"h\":[[98,99],[126,127,128]],\"parent\":0,\"children\":98,\"pos\":\"[1][98]\"},{\"t\":\"ἐμῶν\",\"h\":[[98,99],[126,127,128]],\"parent\":0,\"children\":99,\"pos\":\"[1][99]\"},{\"t\":\"ἀνέξεται\",\"h\":[[100],[122,123]],\"parent\":0,\"children\":100,\"pos\":\"[1][100]\"},{\"p\":\";\",\"parent\":0,\"children\":101,\"pos\":\"[1][101]\"}],[{\"t\":\"τίς\",\"h\":[[102],[130]],\"parent\":0,\"children\":102,\"pos\":\"[1][102]\"},{\"t\":\"δ᾽\",\"h\":[[103],[]],\"parent\":0,\"children\":103,\"pos\":\"[1][103]\"},{\"t\":\"ἂν\",\"h\":[[104,105],[131]],\"parent\":0,\"children\":104,\"pos\":\"[1][104]\"},{\"t\":\"πρίαιτο\",\"h\":[[104,105],[131]],\"parent\":0,\"children\":105,\"pos\":\"[1][105]\"},{\"t\":\"τοὺς\",\"h\":[[106,107],[132]],\"parent\":0,\"children\":106,\"pos\":\"[1][106]\"},{\"t\":\"λόγους\",\"h\":[[106,107],[132]],\"parent\":0,\"children\":107,\"pos\":\"[1][107]\"},{\"t\":\"τριωβόλου\",\"h\":[[108],[133,134,135]],\"parent\":0,\"children\":108,\"pos\":\"[1][108]\"},{\"p\":\",\",\"parent\":0,\"children\":109,\"pos\":\"[1][109]\"}],[{\"t\":\"εἰ\",\"h\":[[110],[137]],\"parent\":0,\"children\":110,\"pos\":\"[1][110]\"},{\"t\":\"μὴ\",\"h\":[[111],[138]],\"parent\":0,\"children\":111,\"pos\":\"[1][111]\"},{\"t\":\"φέροι\",\"h\":[[112],[139]],\"parent\":0,\"children\":112,\"pos\":\"[1][112]\"},{\"t\":\"πως\",\"h\":[[113],[143,144,145]],\"parent\":0,\"children\":113,\"pos\":\"[1][113]\"},{\"t\":\"ὦτα\",\"h\":[[114],[140,141]],\"parent\":0,\"children\":114,\"pos\":\"[1][114]\"},{\"t\":\"μὴ\",\"h\":[[115],[]],\"parent\":0,\"children\":115,\"pos\":\"[1][115]\"},{\"t\":\"τετρημένα\",\"h\":[[116],[142]],\"parent\":0,\"children\":116,\"pos\":\"[1][116]\"},{\"p\":\";\",\"parent\":0,\"children\":117,\"pos\":\"[1][117]\"}],[{\"t\":\"ἀλλ᾽\",\"h\":[[118],[147]],\"parent\":0,\"children\":118,\"pos\":\"[1][118]\"},{\"t\":\"ἐστὶν\",\"h\":[[119],[148]],\"parent\":0,\"children\":119,\"pos\":\"[1][119]\"},{\"t\":\"ἐλπὶς\",\"h\":[[120],[153,154,155]],\"parent\":0,\"children\":120,\"pos\":\"[1][120]\"},{\"t\":\"εὐμενῶς\",\"h\":[[121],[158,159]],\"parent\":0,\"children\":121,\"pos\":\"[1][121]\"},{\"t\":\"τῶν\",\"h\":[[122],[]],\"parent\":0,\"children\":122,\"pos\":\"[1][122]\"},{\"t\":\"δρωμένων\",\"h\":[[123],[]],\"parent\":0,\"children\":123,\"pos\":\"[1][123]\"}],[{\"t\":\"ὑμᾶς\",\"h\":[[124],[156]],\"parent\":0,\"children\":124,\"pos\":\"[1][124]\"},{\"t\":\"μεταλαβεῖν\",\"h\":[[125],[157]],\"parent\":0,\"children\":125,\"pos\":\"[1][125]\"},{\"p\":\",\",\"parent\":0,\"children\":126,\"pos\":\"[1][126]\"},{\"t\":\"κοὐ\",\"h\":[[127],[]],\"parent\":0,\"children\":127,\"pos\":\"[1][127]\"},{\"t\":\"κατεβλακευμένως\",\"h\":[[128],[]],\"parent\":0,\"children\":128,\"pos\":\"[1][128]\"},{\"p\":\";\",\"parent\":0,\"children\":129,\"pos\":\"[1][129]\"}],[{\"t\":\"ἔθος\",\"h\":[[130],[177]],\"parent\":0,\"children\":130,\"pos\":\"[1][130]\"},{\"t\":\"γὰρ\",\"h\":[[131],[174]],\"parent\":0,\"children\":131,\"pos\":\"[1][131]\"},{\"t\":\"ὑμῖν\",\"h\":[[132],[171,172]],\"parent\":0,\"children\":132,\"pos\":\"[1][132]\"},{\"t\":\"τῇ\",\"h\":[[133,135],[180,182]],\"parent\":0,\"children\":133,\"pos\":\"[1][133]\"},{\"t\":\"προθυμίᾳ\",\"h\":[[134],[183]],\"parent\":0,\"children\":134,\"pos\":\"[1][134]\"},{\"t\":\"μόνῃ\",\"h\":[[133,135],[180,182]],\"parent\":0,\"children\":135,\"pos\":\"[1][135]\"}],[{\"t\":\"τῇ\",\"h\":[[136],[]],\"parent\":0,\"children\":136,\"pos\":\"[1][136]\"},{\"t\":\"τῶν\",\"h\":[[137,138],[184,185,186]],\"parent\":0,\"children\":137,\"pos\":\"[1][137]\"},{\"t\":\"καλούντων\",\"h\":[[137,138],[184,185,186]],\"parent\":0,\"children\":138,\"pos\":\"[1][138]\"},{\"t\":\"ἐμμετρεῖν\",\"h\":[[139],[178]],\"parent\":0,\"children\":139,\"pos\":\"[1][139]\"},{\"t\":\"τὰσιτία\",\"h\":[[140],[179]],\"parent\":0,\"children\":140,\"pos\":\"[1][140]\"},{\"p\":\".\",\"parent\":0,\"children\":141,\"pos\":\"[1][141]\"}],[{\"t\":\"καὶ\",\"h\":[[142],[]],\"parent\":0,\"children\":142,\"pos\":\"[1][142]\"},{\"t\":\"πρός\",\"h\":[[143],[]],\"parent\":0,\"children\":143,\"pos\":\"[1][143]\"},{\"t\":\"γε\",\"h\":[[144],[]],\"parent\":0,\"children\":144,\"pos\":\"[1][144]\"},{\"t\":\"τούτῳ\",\"h\":[[145],[]],\"parent\":0,\"children\":145,\"pos\":\"[1][145]\"},{\"t\":\"δεῖπνον\",\"h\":[[146],[]],\"parent\":0,\"children\":146,\"pos\":\"[1][146]\"},{\"t\":\"ἠρανισμένον\",\"h\":[[147],[]],\"parent\":0,\"children\":147,\"pos\":\"[1][147]\"}],[{\"t\":\"ἥκω\",\"h\":[[148],[188]],\"parent\":0,\"children\":148,\"pos\":\"[1][148]\"},{\"t\":\"προθήσων\",\"h\":[[149],[193]],\"parent\":0,\"children\":149,\"pos\":\"[1][149]\"},{\"t\":\"ἐκ\",\"h\":[[150,151],[189,190]],\"parent\":0,\"children\":150,\"pos\":\"[1][150]\"},{\"t\":\"νέων\",\"h\":[[150,151],[189,190]],\"parent\":0,\"children\":151,\"pos\":\"[1][151]\"},{\"t\":\"ἡδυσμάτων\",\"h\":[[152],[191,192]],\"parent\":0,\"children\":152,\"pos\":\"[1][152]\"},{\"p\":\".\",\"parent\":0,\"children\":153,\"pos\":\"[1][153]\"}],[{\"t\":\"ἐπεὶ\",\"h\":[[154],[199]],\"parent\":0,\"children\":154,\"pos\":\"[1][154]\"},{\"t\":\"γὰρ\",\"h\":[[155],[]],\"parent\":0,\"children\":155,\"pos\":\"[1][155]\"},{\"t\":\"οὐκ\",\"h\":[[156],[200]],\"parent\":0,\"children\":156,\"pos\":\"[1][156]\"},{\"t\":\"ἔν\",\"h\":[[157],[]],\"parent\":0,\"children\":157,\"pos\":\"[1][157]\"},{\"t\":\"εστιν\",\"h\":[[158],[]],\"parent\":0,\"children\":158,\"pos\":\"[1][158]\"},{\"t\":\"ἐξ\",\"h\":[[159,160],[210,211]],\"parent\":0,\"children\":159,\"pos\":\"[1][159]\"},{\"t\":\"ἐμοῦ\",\"h\":[[159,160],[210,211]],\"parent\":0,\"children\":160,\"pos\":\"[1][160]\"},{\"t\":\"μόνου\",\"h\":[[161],[209]],\"parent\":0,\"children\":161,\"pos\":\"[1][161]\"}],[{\"t\":\"ὑμᾶς\",\"h\":[[162],[204]],\"parent\":0,\"children\":162,\"pos\":\"[1][162]\"},{\"t\":\"μεταλαβεῖν\",\"h\":[[163],[208]],\"parent\":0,\"children\":163,\"pos\":\"[1][163]\"},{\"p\":\",\",\"parent\":0,\"children\":164,\"pos\":\"[1][164]\"},{\"t\":\"ἄνδρες\",\"h\":[[165],[206]],\"parent\":0,\"children\":165,\"pos\":\"[1][165]\"},{\"p\":\",\",\"parent\":0,\"children\":166,\"pos\":\"[1][166]\"},{\"t\":\"ἀξίας\",\"h\":[[167],[212,213]],\"parent\":0,\"children\":167,\"pos\":\"[1][167]\"},{\"t\":\"τροφῆς\",\"h\":[[168],[214,215]],\"parent\":0,\"children\":168,\"pos\":\"[1][168]\"},{\"p\":\",\",\"parent\":0,\"children\":169,\"pos\":\"[1][169]\"}],[{\"t\":\"πολλοὺς\",\"h\":[[170],[218]],\"parent\":0,\"children\":170,\"pos\":\"[1][170]\"},{\"t\":\"ἔπεισα\",\"h\":[[171],[217]],\"parent\":0,\"children\":171,\"pos\":\"[1][171]\"},{\"t\":\"συλλαβεῖν\",\"h\":[[172],[219,220]],\"parent\":0,\"children\":172,\"pos\":\"[1][172]\"},{\"t\":\"μοιτοῦ\",\"h\":[[173],[222]],\"parent\":0,\"children\":173,\"pos\":\"[1][173]\"},{\"t\":\"πόνου\",\"h\":[[174],[221,223]],\"parent\":0,\"children\":174,\"pos\":\"[1][174]\"},{\"p\":\",\",\"parent\":0,\"children\":175,\"pos\":\"[1][175]\"}],[{\"t\":\"καὶ\",\"h\":[[176],[224]],\"parent\":0,\"children\":176,\"pos\":\"[1][176]\"},{\"t\":\"συγκαταβαλεῖν\",\"h\":[[177],[225,226,227]],\"parent\":0,\"children\":177,\"pos\":\"[1][177]\"},{\"t\":\"καὶ\",\"h\":[[178],[228]],\"parent\":0,\"children\":178,\"pos\":\"[1][178]\"},{\"t\":\"συνεστιᾶν\",\"h\":[[179],[229,230,231]],\"parent\":0,\"children\":179,\"pos\":\"[1][179]\"},{\"t\":\"πλέον\",\"h\":[[180],[232,233]],\"parent\":0,\"children\":180,\"pos\":\"[1][180]\"},{\"p\":\".\",\"parent\":0,\"children\":181,\"pos\":\"[1][181]\"}],[{\"t\":\"καὶ\",\"h\":[[182,183],[235]],\"parent\":0,\"children\":182,\"pos\":\"[1][182]\"},{\"t\":\"δὴ\",\"h\":[[182,183],[235]],\"parent\":0,\"children\":183,\"pos\":\"[1][183]\"},{\"t\":\"παρέσχον\",\"h\":[[184],[238]],\"parent\":0,\"children\":184,\"pos\":\"[1][184]\"},{\"t\":\"ἀφθόνως\",\"h\":[[185],[244,245]],\"parent\":0,\"children\":185,\"pos\":\"[1][185]\"},{\"t\":\"οἱ\",\"h\":[[186,187],[236,237]],\"parent\":0,\"children\":186,\"pos\":\"[1][186]\"},{\"t\":\"πλούσιοι\",\"h\":[[186,187],[236,237]],\"parent\":0,\"children\":187,\"pos\":\"[1][187]\"}],[{\"t\":\"ἐξ\",\"h\":[[188,189],[246,247,248]],\"parent\":0,\"children\":188,\"pos\":\"[1][188]\"},{\"t\":\"ὧν\",\"h\":[[188,189],[246,247,248]],\"parent\":0,\"children\":189,\"pos\":\"[1][189]\"},{\"t\":\"τρυφῶσι\",\"h\":[[190],[249,250]],\"parent\":0,\"children\":190,\"pos\":\"[1][190]\"},{\"p\":\":\",\"parent\":0,\"children\":191,\"pos\":\"[1][191]\"},{\"t\":\"καὶ\",\"h\":[[192],[254]],\"parent\":0,\"children\":192,\"pos\":\"[1][192]\"},{\"t\":\"παραλαβὼν\",\"h\":[[193],[258,259]],\"parent\":0,\"children\":193,\"pos\":\"[1][193]\"},{\"t\":\"γνησίως\",\"h\":[[194],[260,261,262]],\"parent\":0,\"children\":194,\"pos\":\"[1][194]\"}],[{\"t\":\"ἐν\",\"h\":[[195,196,198],[263,265]],\"parent\":0,\"children\":195,\"pos\":\"[1][195]\"},{\"t\":\"τοῖς\",\"h\":[[195,196,198],[263,265]],\"parent\":0,\"children\":196,\"pos\":\"[1][196]\"},{\"t\":\"ἐκείνων\",\"h\":[[197],[264]],\"parent\":0,\"children\":197,\"pos\":\"[1][197]\"},{\"t\":\"πέμμασι\",\"h\":[[195,196,198],[263,265]],\"parent\":0,\"children\":198,\"pos\":\"[1][198]\"},{\"t\":\"φρυάττομαι\",\"h\":[[199],[255,256,257]],\"parent\":0,\"children\":199,\"pos\":\"[1][199]\"},{\"p\":\".\",\"parent\":0,\"children\":200,\"pos\":\"[1][200]\"}],[{\"t\":\"τοῦτο\",\"h\":[[201],[]],\"parent\":0,\"children\":201,\"pos\":\"[1][201]\"},{\"t\":\"δέ\",\"h\":[[202],[]],\"parent\":0,\"children\":202,\"pos\":\"[1][202]\"},{\"t\":\"τις\",\"h\":[[203],[271]],\"parent\":0,\"children\":203,\"pos\":\"[1][203]\"},{\"t\":\"αὐτῶν\",\"h\":[[204],[272,273]],\"parent\":0,\"children\":204,\"pos\":\"[1][204]\"},{\"t\":\"προσφόρως\",\"h\":[[205],[274,275,276]],\"parent\":0,\"children\":205,\"pos\":\"[1][205]\"},{\"p\":\",\",\"parent\":0,\"children\":206,\"pos\":\"[1][206]\"},{\"t\":\"δεικνὺς\",\"h\":[[207],[269]],\"parent\":0,\"children\":207,\"pos\":\"[1][207]\"},{\"t\":\"ἐμέ\",\"h\":[[208],[268]],\"parent\":0,\"children\":208,\"pos\":\"[1][208]\"},{\"p\":\",\",\"parent\":0,\"children\":209,\"pos\":\"[1][209]\"}],[{\"t\":\"ἴσωςἐρεῖ\",\"h\":[[210],[277]],\"parent\":0,\"children\":210,\"pos\":\"[1][210]\"},{\"t\":\"πρὸςἄλλον\",\"h\":[[211],[278,279,281]],\"parent\":0,\"children\":211,\"pos\":\"[1][211]\"},{\"p\":\"“\",\"parent\":0,\"children\":212,\"pos\":\"[1][212]\"},{\"t\":\"ἀρτίως\",\"h\":[[213],[]],\"parent\":0,\"children\":213,\"pos\":\"[1][213]\"},{\"t\":\"ἐμοῦ\",\"h\":[[214],[285]],\"parent\":0,\"children\":214,\"pos\":\"[1][214]\"}],[{\"t\":\"μάζαν\",\"h\":[[215],[287,288]],\"parent\":0,\"children\":215,\"pos\":\"[1][215]\"},{\"t\":\"μεμαχότος\",\"h\":[[216],[]],\"parent\":0,\"children\":216,\"pos\":\"[1][216]\"},{\"t\":\"μουσικήν\",\"h\":[[217],[289]],\"parent\":0,\"children\":217,\"pos\":\"[1][217]\"},{\"t\":\"τε\",\"h\":[[218,219],[290]],\"parent\":0,\"children\":218,\"pos\":\"[1][218]\"},{\"t\":\"καὶ\",\"h\":[[218,219],[290]],\"parent\":0,\"children\":219,\"pos\":\"[1][219]\"},{\"t\":\"νέαν\",\"h\":[[220],[291]],\"parent\":0,\"children\":220,\"pos\":\"[1][220]\"},{\"p\":\",\",\"parent\":0,\"children\":221,\"pos\":\"[1][221]\"}],[{\"t\":\"οὗτος\",\"h\":[[222],[295]],\"parent\":0,\"children\":222,\"pos\":\"[1][222]\"},{\"t\":\"παρέθηκεν\",\"h\":[[223],[296,297]],\"parent\":0,\"children\":223,\"pos\":\"[1][223]\"},{\"t\":\"τὴν\",\"h\":[[224,227],[298]],\"parent\":0,\"children\":224,\"pos\":\"[1][224]\"},{\"t\":\"ὑπ᾽\",\"h\":[[225],[299]],\"parent\":0,\"children\":225,\"pos\":\"[1][225]\"},{\"t\":\"ἐμοῦ\",\"h\":[[226],[300]],\"parent\":0,\"children\":226,\"pos\":\"[1][226]\"},{\"t\":\"μεμαγμένην\",\"h\":[[224,227],[298]],\"parent\":0,\"children\":227,\"pos\":\"[1][227]\"},{\"p\":\".”\",\"parent\":0,\"children\":228,\"pos\":\"[1][228]\"}],[{\"t\":\"ταυτὶ\",\"h\":[[229],[302,303]],\"parent\":0,\"children\":229,\"pos\":\"[1][229]\"},{\"t\":\"μὲν\",\"h\":[[230],[]],\"parent\":0,\"children\":230,\"pos\":\"[1][230]\"},{\"t\":\"οὖν\",\"h\":[[231],[304]],\"parent\":0,\"children\":231,\"pos\":\"[1][231]\"},{\"t\":\"ἐρεῖ\",\"h\":[[232],[305]],\"parent\":0,\"children\":232,\"pos\":\"[1][232]\"},{\"t\":\"τις\",\"h\":[[233],[306]],\"parent\":0,\"children\":233,\"pos\":\"[1][233]\"},{\"p\":\"†\",\"parent\":0,\"children\":234,\"pos\":\"[1][234]\"},{\"t\":\"οὐδὲ\",\"h\":[[235],[307]],\"parent\":0,\"children\":235,\"pos\":\"[1][235]\"},{\"t\":\"τῶν\",\"h\":[[236,237],[310,311,312]],\"parent\":0,\"children\":236,\"pos\":\"[1][236]\"},{\"t\":\"σοφωτάτων\",\"h\":[[236,237],[310,311,312]],\"parent\":0,\"children\":237,\"pos\":\"[1][237]\"}],[{\"t\":\"τῶν\",\"h\":[[238,239],[313,314,315]],\"parent\":0,\"children\":238,\"pos\":\"[1][238]\"},{\"t\":\"ὀψοποιῶν\",\"h\":[[238,239],[313,314,315]],\"parent\":0,\"children\":239,\"pos\":\"[1][239]\"},{\"p\":\",\",\"parent\":0,\"children\":240,\"pos\":\"[1][240]\"},{\"t\":\"ὧν\",\"h\":[[241],[317,318]],\"parent\":0,\"children\":241,\"pos\":\"[1][241]\"},{\"t\":\"χάριν\",\"h\":[[242],[319]],\"parent\":0,\"children\":242,\"pos\":\"[1][242]\"},{\"t\":\"δοκῶ\",\"h\":[[243],[320]],\"parent\":0,\"children\":243,\"pos\":\"[1][243]\"},{\"t\":\"μόνος\",\"h\":[[244],[322,323]],\"parent\":0,\"children\":244,\"pos\":\"[1][244]\"}],[{\"t\":\"εἶναι\",\"h\":[[245],[321]],\"parent\":0,\"children\":245,\"pos\":\"[1][245]\"},{\"t\":\"τοσαύτης\",\"h\":[[246],[325,326,327]],\"parent\":0,\"children\":246,\"pos\":\"[1][246]\"},{\"t\":\"ἡγεμὼν\",\"h\":[[247],[324]],\"parent\":0,\"children\":247,\"pos\":\"[1][247]\"},{\"t\":\"πανδαισίας\",\"h\":[[248],[329]],\"parent\":0,\"children\":248,\"pos\":\"[1][248]\"},{\"p\":\".\",\"parent\":0,\"children\":249,\"pos\":\"[1][249]\"}],[{\"t\":\"θαρρῶν\",\"h\":[[250],[331]],\"parent\":0,\"children\":250,\"pos\":\"[1][250]\"},{\"t\":\"γὰρ\",\"h\":[[251],[]],\"parent\":0,\"children\":251,\"pos\":\"[1][251]\"},{\"t\":\"αὐτοῖς\",\"h\":[[252],[341,342]],\"parent\":0,\"children\":252,\"pos\":\"[1][252]\"},{\"t\":\"λιτὸν\",\"h\":[[253],[336]],\"parent\":0,\"children\":253,\"pos\":\"[1][253]\"},{\"t\":\"οἴκοθεν\",\"h\":[[254],[]],\"parent\":0,\"children\":254,\"pos\":\"[1][254]\"},{\"t\":\"μέρος\",\"h\":[[255],[335,337]],\"parent\":0,\"children\":255,\"pos\":\"[1][255]\"}],[{\"t\":\"καὐτὸς\",\"h\":[[256],[]],\"parent\":0,\"children\":256,\"pos\":\"[1][256]\"},{\"t\":\"παρέμιξα\",\"h\":[[257],[333,334]],\"parent\":0,\"children\":257,\"pos\":\"[1][257]\"},{\"p\":\",\",\"parent\":0,\"children\":258,\"pos\":\"[1][258]\"},{\"t\":\"τοῦ\",\"h\":[[259,260],[346]],\"parent\":0,\"children\":259,\"pos\":\"[1][259]\"},{\"t\":\"δοκεῖν\",\"h\":[[259,260],[346]],\"parent\":0,\"children\":260,\"pos\":\"[1][260]\"},{\"t\":\"μὴ\",\"h\":[[261],[344,345]],\"parent\":0,\"children\":261,\"pos\":\"[1][261]\"},{\"t\":\"παντελῶς\",\"h\":[[262],[347]],\"parent\":0,\"children\":262,\"pos\":\"[1][262]\"}],[{\"t\":\"ξένος\",\"h\":[[263],[352]],\"parent\":0,\"children\":263,\"pos\":\"[1][263]\"},{\"t\":\"τις\",\"h\":[[264],[350,351]],\"parent\":0,\"children\":264,\"pos\":\"[1][264]\"},{\"t\":\"εἶναι\",\"h\":[[265],[348,349]],\"parent\":0,\"children\":265,\"pos\":\"[1][265]\"},{\"t\":\"τῶν\",\"h\":[[266,269],[353,354,355]],\"parent\":0,\"children\":266,\"pos\":\"[1][266]\"},{\"t\":\"ὑπ᾽\",\"h\":[[267,268],[356,357,358]],\"parent\":0,\"children\":267,\"pos\":\"[1][267]\"},{\"t\":\"ἐμοῦ\",\"h\":[[267,268],[356,357,358]],\"parent\":0,\"children\":268,\"pos\":\"[1][268]\"},{\"t\":\"συνηγμένων\",\"h\":[[266,269],[353,354,355]],\"parent\":0,\"children\":269,\"pos\":\"[1][269]\"},{\"p\":\".\",\"parent\":0,\"children\":270,\"pos\":\"[1][270]\"}],[{\"t\":\"ἀλλ᾽\",\"h\":[[271],[360]],\"parent\":0,\"children\":271,\"pos\":\"[1][271]\"},{\"t\":\"ἐξ\",\"h\":[[272],[361]],\"parent\":0,\"children\":272,\"pos\":\"[1][272]\"},{\"t\":\"ἑκάστου\",\"h\":[[273],[362]],\"parent\":0,\"children\":273,\"pos\":\"[1][273]\"},{\"t\":\"σμικρὸν\",\"h\":[[274],[366]],\"parent\":0,\"children\":274,\"pos\":\"[1][274]\"},{\"t\":\"εἰσάγω\",\"h\":[[275],[363,364]],\"parent\":0,\"children\":275,\"pos\":\"[1][275]\"},{\"t\":\"μέρος\",\"h\":[[276],[365,367]],\"parent\":0,\"children\":276,\"pos\":\"[1][276]\"},{\"p\":\",\",\"parent\":0,\"children\":277,\"pos\":\"[1][277]\"}],[{\"t\":\"ὅσον\",\"h\":[[278],[369,370,371,375,376,377]],\"parent\":0,\"children\":278,\"pos\":\"[1][278]\"},{\"t\":\"ἀπογεῦσαι\",\"h\":[[279],[372,373,378,379]],\"parent\":0,\"children\":279,\"pos\":\"[1][279]\"},{\"p\":\":\",\"parent\":0,\"children\":280,\"pos\":\"[1][280]\"},{\"t\":\"τῶν\",\"h\":[[281,283],[381,382,383,384]],\"parent\":0,\"children\":281,\"pos\":\"[1][281]\"},{\"t\":\"δὲ\",\"h\":[[282],[]],\"parent\":0,\"children\":282,\"pos\":\"[1][282]\"},{\"t\":\"λοιπῶν\",\"h\":[[281,283],[381,382,383,384]],\"parent\":0,\"children\":283,\"pos\":\"[1][283]\"},{\"t\":\"εἰ\",\"h\":[[284],[385]],\"parent\":0,\"children\":284,\"pos\":\"[1][284]\"},{\"t\":\"θέλοι\",\"h\":[[285],[387]],\"parent\":0,\"children\":285,\"pos\":\"[1][285]\"}],[{\"t\":\"τυχεῖν\",\"h\":[[286],[388]],\"parent\":0,\"children\":286,\"pos\":\"[1][286]\"},{\"t\":\"τις\",\"h\":[[287],[386]],\"parent\":0,\"children\":287,\"pos\":\"[1][287]\"},{\"t\":\"ἁπάντων\",\"h\":[[288],[389]],\"parent\":0,\"children\":288,\"pos\":\"[1][288]\"},{\"t\":\"καὶ\",\"h\":[[289],[390]],\"parent\":0,\"children\":289,\"pos\":\"[1][289]\"},{\"t\":\"μετασχεῖν\",\"h\":[[290],[391]],\"parent\":0,\"children\":290,\"pos\":\"[1][290]\"},{\"t\":\"εἰς\",\"h\":[[291,292],[394]],\"parent\":0,\"children\":291,\"pos\":\"[1][291]\"},{\"t\":\"κόρον\",\"h\":[[291,292],[394]],\"parent\":0,\"children\":292,\"pos\":\"[1][292]\"},{\"p\":\",\",\"parent\":0,\"children\":293,\"pos\":\"[1][293]\"}],[{\"t\":\"ἴστω\",\"h\":[[294],[]],\"parent\":0,\"children\":294,\"pos\":\"[1][294]\"},{\"t\":\"γε\",\"h\":[[295],[]],\"parent\":0,\"children\":295,\"pos\":\"[1][295]\"},{\"t\":\"ταῦτα\",\"h\":[[296],[]],\"parent\":0,\"children\":296,\"pos\":\"[1][296]\"},{\"t\":\"κατ᾽\",\"h\":[[297,298],[401,402]],\"parent\":0,\"children\":297,\"pos\":\"[1][297]\"},{\"t\":\"ἀγορὰν\",\"h\":[[297,298],[401,402]],\"parent\":0,\"children\":298,\"pos\":\"[1][298]\"},{\"t\":\"ζητητέα\",\"h\":[[299],[396,397,398,399,400]],\"parent\":0,\"children\":299,\"pos\":\"[1][299]\"},{\"p\":\".\",\"parent\":0,\"children\":300,\"pos\":\"[1][300]\"}],[{\"t\":\"Κόσμον\",\"h\":[[301],[406]],\"parent\":0,\"children\":301,\"pos\":\"[1][301]\"},{\"t\":\"δὲ\",\"h\":[[302],[]],\"parent\":0,\"children\":302,\"pos\":\"[1][302]\"},{\"t\":\"προσθεὶς\",\"h\":[[303],[]],\"parent\":0,\"children\":303,\"pos\":\"[1][303]\"},{\"t\":\"τοῖς\",\"h\":[[304,305],[407,408]],\"parent\":0,\"children\":304,\"pos\":\"[1][304]\"},{\"t\":\"ἐμοῖς\",\"h\":[[304,305],[407,408]],\"parent\":0,\"children\":305,\"pos\":\"[1][305]\"},{\"t\":\"πονήμασι\",\"h\":[[306],[409]],\"parent\":0,\"children\":306,\"pos\":\"[1][306]\"},{\"p\":\",\",\"parent\":0,\"children\":307,\"pos\":\"[1][307]\"}],[{\"t\":\"ἐκ\",\"h\":[[308],[415]],\"parent\":0,\"children\":308,\"pos\":\"[1][308]\"},{\"t\":\"τοῦ\",\"h\":[[309,310],[416]],\"parent\":0,\"children\":309,\"pos\":\"[1][309]\"},{\"t\":\"Βασιλέως\",\"h\":[[309,310],[416]],\"parent\":0,\"children\":310,\"pos\":\"[1][310]\"},{\"t\":\"τοὺς\",\"h\":[[311,312],[412,414]],\"parent\":0,\"children\":311,\"pos\":\"[1][311]\"},{\"t\":\"προλόγους\",\"h\":[[311,312],[412,414]],\"parent\":0,\"children\":312,\"pos\":\"[1][312]\"},{\"t\":\"ποιήσομαι\",\"h\":[[313],[411]],\"parent\":0,\"children\":313,\"pos\":\"[1][313]\"},{\"p\":\":\",\"parent\":0,\"children\":314,\"pos\":\"[1][314]\"}],[{\"t\":\"ἅπαντα\",\"h\":[[315],[420]],\"parent\":0,\"children\":315,\"pos\":\"[1][315]\"},{\"t\":\"γάρ\",\"h\":[[316],[418]],\"parent\":0,\"children\":316,\"pos\":\"[1][316]\"},{\"t\":\"μοι\",\"h\":[[317],[]],\"parent\":0,\"children\":317,\"pos\":\"[1][317]\"},{\"t\":\"δεξιῶς\",\"h\":[[318],[421,422,423]],\"parent\":0,\"children\":318,\"pos\":\"[1][318]\"},{\"t\":\"προβήσεται\",\"h\":[[319],[419]],\"parent\":0,\"children\":319,\"pos\":\"[1][319]\"},{\"p\":\".\",\"parent\":0,\"children\":320,\"pos\":\"[1][320]\"}],[{\"t\":\"καί\",\"h\":[[321],[406]],\"parent\":0,\"children\":321,\"pos\":\"[1][321]\"},{\"t\":\"μοι\",\"h\":[[322],[]],\"parent\":0,\"children\":322,\"pos\":\"[1][322]\"},{\"t\":\"μεγίστων\",\"h\":[[323],[428]],\"parent\":0,\"children\":323,\"pos\":\"[1][323]\"},{\"t\":\"πραγμάτων\",\"h\":[[324],[430]],\"parent\":0,\"children\":324,\"pos\":\"[1][324]\"},{\"t\":\"ὑμνουμένων\",\"h\":[[325],[426,427]],\"parent\":0,\"children\":325,\"pos\":\"[1][325]\"}],[{\"t\":\"εὑρεῖν\",\"h\":[[326],[434]],\"parent\":0,\"children\":326,\"pos\":\"[1][326]\"},{\"t\":\"γένοιτο\",\"h\":[[327],[432,433]],\"parent\":0,\"children\":327,\"pos\":\"[1][327]\"},{\"t\":\"καὶ\",\"h\":[[328],[435]],\"parent\":0,\"children\":328,\"pos\":\"[1][328]\"},{\"t\":\"λόγους\",\"h\":[[329],[436,437]],\"parent\":0,\"children\":329,\"pos\":\"[1][329]\"},{\"t\":\"ἐπηρμένους\",\"h\":[[330],[438]],\"parent\":0,\"children\":330,\"pos\":\"[1][330]\"},{\"p\":\".\",\"parent\":0,\"children\":331,\"pos\":\"[1][331]\"}],[]],[[{\"t\":\"La\",\"h\":[[1],[1,2]],\"parent\":1,\"children\":1,\"pos\":\"[2][1]\"},{\"t\":\"raccolta\",\"h\":[[1],[1,2]],\"parent\":1,\"children\":2,\"pos\":\"[2][2]\"},{\"t\":\"dei\",\"h\":[[2],[3,4]],\"parent\":1,\"children\":3,\"pos\":\"[2][3]\"},{\"t\":\"nuovi\",\"h\":[[2],[3,4]],\"parent\":1,\"children\":4,\"pos\":\"[2][4]\"},{\"t\":\"epigrammi\",\"h\":[[3],[5]],\"parent\":1,\"children\":5,\"pos\":\"[2][5]\"},{\"p\":\"è\",\"parent\":1,\"children\":6,\"pos\":\"[2][6]\"},{\"t\":\"stata\",\"h\":[[4],[7,8]],\"parent\":1,\"children\":7,\"pos\":\"[2][7]\"},{\"t\":\"pubblicata\",\"h\":[[4],[7,8]],\"parent\":1,\"children\":8,\"pos\":\"[2][8]\"},{\"t\":\"nella\",\"h\":[[6],[9,10]],\"parent\":1,\"children\":9,\"pos\":\"[2][9]\"},{\"t\":\"città\",\"h\":[[6],[9,10]],\"parent\":1,\"children\":10,\"pos\":\"[2][10]\"},{\"t\":\"di\",\"h\":[[5],[11,12]],\"parent\":1,\"children\":11,\"pos\":\"[2][11]\"},{\"t\":\"Costantino\",\"h\":[[5],[11,12]],\"parent\":1,\"children\":12,\"pos\":\"[2][12]\"},{\"t\":\"per\",\"h\":[[7,8],[13,14]],\"parent\":1,\"children\":13,\"pos\":\"[2][13]\"},{\"t\":\"Teodoro\",\"h\":[[7,8],[13,14]],\"parent\":1,\"children\":14,\"pos\":\"[2][14]\"},{\"t\":\"Decurione\",\"h\":[[9],[15]],\"parent\":1,\"children\":15,\"pos\":\"[2][15]\"},{\"t\":\"figlio\",\"h\":[[10,11],[16,17,18]],\"parent\":1,\"children\":16,\"pos\":\"[2][16]\"},{\"t\":\"di\",\"h\":[[10,11],[16,17,18]],\"parent\":1,\"children\":17,\"pos\":\"[2][17]\"},{\"t\":\"Cosma\",\"h\":[[10,11],[16,17,18]],\"parent\":1,\"children\":18,\"pos\":\"[2][18]\"},{\"p\":\":\",\"parent\":1,\"children\":19,\"pos\":\"[2][19]\"},{\"t\":\"i\",\"h\":[[15],[20,21]],\"parent\":1,\"children\":20,\"pos\":\"[2][20]\"},{\"t\":\"proemi\",\"h\":[[15],[20,21]],\"parent\":1,\"children\":21,\"pos\":\"[2][21]\"},{\"t\":\"sono\",\"h\":[[13],[22,23,24]],\"parent\":1,\"children\":22,\"pos\":\"[2][22]\"},{\"t\":\"stati\",\"h\":[[13],[22,23,24]],\"parent\":1,\"children\":23,\"pos\":\"[2][23]\"},{\"t\":\"pubblicati\",\"h\":[[13],[22,23,24]],\"parent\":1,\"children\":24,\"pos\":\"[2][24]\"},{\"t\":\"dopo\",\"h\":[[16],[25]],\"parent\":1,\"children\":25,\"pos\":\"[2][25]\"},{\"t\":\"continue\",\"h\":[[17,18,19],[26]],\"parent\":1,\"children\":26,\"pos\":\"[2][26]\"},{\"t\":\"letture\",\"h\":[[20],[27]],\"parent\":1,\"children\":27,\"pos\":\"[2][27]\"},{\"t\":\"nate\",\"h\":[[23],[28]],\"parent\":1,\"children\":28,\"pos\":\"[2][28]\"},{\"t\":\"in\",\"h\":[[21],[29,30]],\"parent\":1,\"children\":29,\"pos\":\"[2][29]\"},{\"t\":\"quella\",\"h\":[[21],[29,30]],\"parent\":1,\"children\":30,\"pos\":\"[2][30]\"},{\"t\":\"circostanza\",\"h\":[[22],[31]],\"parent\":1,\"children\":31,\"pos\":\"[2][31]\"},{\"p\":\".\",\"parent\":1,\"children\":32,\"pos\":\"[2][32]\"}],[],[{\"t\":\"Signori\",\"h\":[[29],[33]],\"parent\":1,\"children\":33,\"pos\":\"[2][33]\"},{\"p\":\",\",\"parent\":1,\"children\":34,\"pos\":\"[2][34]\"},{\"t\":\"ritengo\",\"h\":[[25],[35,36]],\"parent\":1,\"children\":35,\"pos\":\"[2][35]\"},{\"t\":\"che\",\"h\":[[25],[35,36]],\"parent\":1,\"children\":36,\"pos\":\"[2][36]\"},{\"t\":\"voi\",\"h\":[[27],[37]],\"parent\":1,\"children\":37,\"pos\":\"[2][37]\"},{\"p\":\",\",\"parent\":1,\"children\":38,\"pos\":\"[2][38]\"},{\"t\":\"saturi\",\"h\":[[31],[39]],\"parent\":1,\"children\":39,\"pos\":\"[2][39]\"}],[{\"t\":\"di\",\"h\":[[32],[40]],\"parent\":1,\"children\":40,\"pos\":\"[2][40]\"},{\"t\":\"un\",\"h\":[[33],[41]],\"parent\":1,\"children\":41,\"pos\":\"[2][41]\"},{\"t\":\"tale\",\"h\":[[34],[42]],\"parent\":1,\"children\":42,\"pos\":\"[2][42]\"},{\"t\":\"banchetto\",\"h\":[[37],[43]],\"parent\":1,\"children\":43,\"pos\":\"[2][43]\"},{\"t\":\"di\",\"h\":[[35],[44]],\"parent\":1,\"children\":44,\"pos\":\"[2][44]\"},{\"t\":\"parole\",\"h\":[[36],[45]],\"parent\":1,\"children\":45,\"pos\":\"[2][45]\"},{\"p\":\",\",\"parent\":1,\"children\":46,\"pos\":\"[2][46]\"}],[{\"t\":\"qui\",\"h\":[[40],[47]],\"parent\":1,\"children\":47,\"pos\":\"[2][47]\"},{\"p\":\",\",\"parent\":1,\"children\":48,\"pos\":\"[2][48]\"},{\"t\":\"ormai\",\"h\":[[39],[49]],\"parent\":1,\"children\":49,\"pos\":\"[2][49]\"},{\"p\":\",\",\"parent\":1,\"children\":50,\"pos\":\"[2][50]\"},{\"t\":\"vomitate\",\"h\":[[44],[51]],\"parent\":1,\"children\":51,\"pos\":\"[2][51]\"},{\"t\":\"il\",\"h\":[[41],[52]],\"parent\":1,\"children\":52,\"pos\":\"[2][52]\"},{\"t\":\"cibo\",\"h\":[[42],[53]],\"parent\":1,\"children\":53,\"pos\":\"[2][53]\"},{\"t\":\"per\",\"h\":[[43],[54,55]],\"parent\":1,\"children\":54,\"pos\":\"[2][54]\"},{\"t\":\"sazietà\",\"h\":[[43],[54,55]],\"parent\":1,\"children\":55,\"pos\":\"[2][55]\"},{\"p\":\":\",\"parent\":1,\"children\":56,\"pos\":\"[2][56]\"}],[{\"t\":\"e\",\"h\":[[46],[57]],\"parent\":1,\"children\":57,\"pos\":\"[2][57]\"},{\"t\":\"quindi\",\"h\":[[47],[58]],\"parent\":1,\"children\":58,\"pos\":\"[2][58]\"},{\"t\":\"state\",\"h\":[[48],[59,60]],\"parent\":1,\"children\":59,\"pos\":\"[2][59]\"},{\"t\":\"seduti\",\"h\":[[48],[59,60]],\"parent\":1,\"children\":60,\"pos\":\"[2][60]\"},{\"t\":\"ricolmi\",\"h\":[[51],[61]],\"parent\":1,\"children\":61,\"pos\":\"[2][61]\"},{\"t\":\"di\",\"h\":[[49,50],[62,63]],\"parent\":1,\"children\":62,\"pos\":\"[2][62]\"},{\"t\":\"lussuria\",\"h\":[[49,50],[62,63]],\"parent\":1,\"children\":63,\"pos\":\"[2][63]\"},{\"p\":\";\",\"parent\":1,\"children\":64,\"pos\":\"[2][64]\"}],[{\"t\":\"infatti\",\"h\":[[54],[65]],\"parent\":1,\"children\":65,\"pos\":\"[2][65]\"},{\"t\":\"molti\",\"h\":[[59],[66]],\"parent\":1,\"children\":66,\"pos\":\"[2][66]\"},{\"t\":\"offrendoci\",\"h\":[[55,60],[67]],\"parent\":1,\"children\":67,\"pos\":\"[2][67]\"},{\"t\":\"un\",\"h\":[[61],[68,69]],\"parent\":1,\"children\":68,\"pos\":\"[2][68]\"},{\"t\":\"festino\",\"h\":[[61],[68,69]],\"parent\":1,\"children\":69,\"pos\":\"[2][69]\"}],[{\"t\":\"confuso\",\"h\":[[62],[70]],\"parent\":1,\"children\":70,\"pos\":\"[2][70]\"},{\"t\":\"di\",\"h\":[[53],[71,72]],\"parent\":1,\"children\":71,\"pos\":\"[2][71]\"},{\"t\":\"parole\",\"h\":[[53],[71,72]],\"parent\":1,\"children\":72,\"pos\":\"[2][72]\"},{\"t\":\"sfarzose\",\"h\":[[56],[73]],\"parent\":1,\"children\":73,\"pos\":\"[2][73]\"},{\"t\":\"e\",\"h\":[[57],[74]],\"parent\":1,\"children\":74,\"pos\":\"[2][74]\"},{\"t\":\"oscure\",\"h\":[[58],[75]],\"parent\":1,\"children\":75,\"pos\":\"[2][75]\"},{\"p\":\",\",\"parent\":1,\"children\":76,\"pos\":\"[2][76]\"}],[{\"t\":\"ci\",\"h\":[[65],[77,78]],\"parent\":1,\"children\":77,\"pos\":\"[2][77]\"},{\"t\":\"persuadono\",\"h\":[[65],[77,78]],\"parent\":1,\"children\":78,\"pos\":\"[2][78]\"},{\"t\":\"a\",\"h\":[[64],[79,80,81,82]],\"parent\":1,\"children\":79,\"pos\":\"[2][79]\"},{\"t\":\"guardare\",\"h\":[[64],[79,80,81,82]],\"parent\":1,\"children\":80,\"pos\":\"[2][80]\"},{\"t\":\"con\",\"h\":[[64],[79,80,81,82]],\"parent\":1,\"children\":81,\"pos\":\"[2][81]\"},{\"t\":\"disprezzo\",\"h\":[[64],[79,80,81,82]],\"parent\":1,\"children\":82,\"pos\":\"[2][82]\"}],[{\"t\":\"i\",\"h\":[[66,67],[83,84,85,86,87]],\"parent\":1,\"children\":83,\"pos\":\"[2][83]\"},{\"t\":\"cibi\",\"h\":[[66,67],[83,84,85,86,87]],\"parent\":1,\"children\":84,\"pos\":\"[2][84]\"},{\"t\":\"che\",\"h\":[[66,67],[83,84,85,86,87]],\"parent\":1,\"children\":85,\"pos\":\"[2][85]\"},{\"t\":\"provocano\",\"h\":[[66,67],[83,84,85,86,87]],\"parent\":1,\"children\":86,\"pos\":\"[2][86]\"},{\"t\":\"assuefazione\",\"h\":[[66,67],[83,84,85,86,87]],\"parent\":1,\"children\":87,\"pos\":\"[2][87]\"},{\"p\":\".\",\"parent\":1,\"children\":88,\"pos\":\"[2][88]\"}],[{\"t\":\"Ora\",\"h\":[[71],[89]],\"parent\":1,\"children\":89,\"pos\":\"[2][89]\"},{\"t\":\"che\",\"h\":[[69],[90,91]],\"parent\":1,\"children\":90,\"pos\":\"[2][90]\"},{\"t\":\"cosa\",\"h\":[[69],[90,91]],\"parent\":1,\"children\":91,\"pos\":\"[2][91]\"},{\"t\":\"farò\",\"h\":[[72],[92]],\"parent\":1,\"children\":92,\"pos\":\"[2][92]\"},{\"p\":\"?\",\"parent\":1,\"children\":93,\"pos\":\"[2][93]\"},{\"t\":\"Lascerò\",\"h\":[[78],[94]],\"parent\":1,\"children\":94,\"pos\":\"[2][94]\"},{\"t\":\"che\",\"h\":[[75,76],[95,96,97,98]],\"parent\":1,\"children\":95,\"pos\":\"[2][95]\"},{\"t\":\"le\",\"h\":[[75,76],[95,96,97,98]],\"parent\":1,\"children\":96,\"pos\":\"[2][96]\"},{\"t\":\"cose\",\"h\":[[75,76],[95,96,97,98]],\"parent\":1,\"children\":97,\"pos\":\"[2][97]\"},{\"t\":\"preparate\",\"h\":[[75,76],[95,96,97,98]],\"parent\":1,\"children\":98,\"pos\":\"[2][98]\"},{\"t\":\"deperiscano\",\"h\":[[79],[99]],\"parent\":1,\"children\":99,\"pos\":\"[2][99]\"},{\"t\":\"abbandonate\",\"h\":[[80],[100]],\"parent\":1,\"children\":100,\"pos\":\"[2][100]\"},{\"t\":\"da\",\"h\":[[77],[101,102,103]],\"parent\":1,\"children\":101,\"pos\":\"[2][101]\"},{\"t\":\"una\",\"h\":[[77],[101,102,103]],\"parent\":1,\"children\":102,\"pos\":\"[2][102]\"},{\"t\":\"parte\",\"h\":[[77],[101,102,103]],\"parent\":1,\"children\":103,\"pos\":\"[2][103]\"},{\"p\":\"?\",\"parent\":1,\"children\":104,\"pos\":\"[2][104]\"}],[{\"t\":\"Oppure\",\"h\":[[82],[105]],\"parent\":1,\"children\":105,\"pos\":\"[2][105]\"},{\"t\":\"le\",\"h\":[[84],[106,107]],\"parent\":1,\"children\":106,\"pos\":\"[2][106]\"},{\"t\":\"esporrò\",\"h\":[[84],[106,107]],\"parent\":1,\"children\":107,\"pos\":\"[2][107]\"},{\"t\":\"nel\",\"h\":[[87,88,89],[108,109]],\"parent\":1,\"children\":108,\"pos\":\"[2][108]\"},{\"t\":\"mezzo\",\"h\":[[87,88,89],[108,109]],\"parent\":1,\"children\":109,\"pos\":\"[2][109]\"},{\"t\":\"della\",\"h\":[[85,86],[110,111]],\"parent\":1,\"children\":110,\"pos\":\"[2][110]\"},{\"t\":\"piazza\",\"h\":[[85,86],[110,111]],\"parent\":1,\"children\":111,\"pos\":\"[2][111]\"},{\"p\":\",\",\"parent\":1,\"children\":112,\"pos\":\"[2][112]\"}],[{\"t\":\"vendendole\",\"h\":[[93],[113]],\"parent\":1,\"children\":113,\"pos\":\"[2][113]\"},{\"t\":\"a\",\"h\":[[92],[114,115,116]],\"parent\":1,\"children\":114,\"pos\":\"[2][114]\"},{\"t\":\"buon\",\"h\":[[92],[114,115,116]],\"parent\":1,\"children\":115,\"pos\":\"[2][115]\"},{\"t\":\"mercato\",\"h\":[[92],[114,115,116]],\"parent\":1,\"children\":116,\"pos\":\"[2][116]\"},{\"t\":\"ai\",\"h\":[[91],[117,118]],\"parent\":1,\"children\":117,\"pos\":\"[2][117]\"},{\"t\":\"rivenditori\",\"h\":[[91],[117,118]],\"parent\":1,\"children\":118,\"pos\":\"[2][118]\"},{\"p\":\"?\",\"parent\":1,\"children\":119,\"pos\":\"[2][119]\"}],[{\"t\":\"E\",\"h\":[[95],[120]],\"parent\":1,\"children\":120,\"pos\":\"[2][120]\"},{\"t\":\"chi\",\"h\":[[96],[121]],\"parent\":1,\"children\":121,\"pos\":\"[2][121]\"},{\"t\":\"si\",\"h\":[[100],[122,123]],\"parent\":1,\"children\":122,\"pos\":\"[2][122]\"},{\"t\":\"asterrà\",\"h\":[[100],[122,123]],\"parent\":1,\"children\":123,\"pos\":\"[2][123]\"},{\"t\":\"dal\",\"h\":[[97],[124,125]],\"parent\":1,\"children\":124,\"pos\":\"[2][124]\"},{\"t\":\"comprare\",\"h\":[[97],[124,125]],\"parent\":1,\"children\":125,\"pos\":\"[2][125]\"},{\"t\":\"i\",\"h\":[[98,99],[126,127,128]],\"parent\":1,\"children\":126,\"pos\":\"[2][126]\"},{\"t\":\"miei\",\"h\":[[98,99],[126,127,128]],\"parent\":1,\"children\":127,\"pos\":\"[2][127]\"},{\"t\":\"prodotti\",\"h\":[[98,99],[126,127,128]],\"parent\":1,\"children\":128,\"pos\":\"[2][128]\"},{\"p\":\"?\",\"parent\":1,\"children\":129,\"pos\":\"[2][129]\"}],[{\"t\":\"Chi\",\"h\":[[102],[130]],\"parent\":1,\"children\":130,\"pos\":\"[2][130]\"},{\"t\":\"comprerebbe\",\"h\":[[104,105],[131]],\"parent\":1,\"children\":131,\"pos\":\"[2][131]\"},{\"t\":\"parole\",\"h\":[[106,107],[132]],\"parent\":1,\"children\":132,\"pos\":\"[2][132]\"},{\"t\":\"per\",\"h\":[[108],[133,134,135]],\"parent\":1,\"children\":133,\"pos\":\"[2][133]\"},{\"t\":\"tre\",\"h\":[[108],[133,134,135]],\"parent\":1,\"children\":134,\"pos\":\"[2][134]\"},{\"t\":\"oboli\",\"h\":[[108],[133,134,135]],\"parent\":1,\"children\":135,\"pos\":\"[2][135]\"},{\"p\":\",\",\"parent\":1,\"children\":136,\"pos\":\"[2][136]\"}],[{\"t\":\"se\",\"h\":[[110],[137]],\"parent\":1,\"children\":137,\"pos\":\"[2][137]\"},{\"t\":\"non\",\"h\":[[111],[138]],\"parent\":1,\"children\":138,\"pos\":\"[2][138]\"},{\"t\":\"portasse\",\"h\":[[112],[139]],\"parent\":1,\"children\":139,\"pos\":\"[2][139]\"},{\"t\":\"le\",\"h\":[[114],[140,141]],\"parent\":1,\"children\":140,\"pos\":\"[2][140]\"},{\"t\":\"orecchie\",\"h\":[[114],[140,141]],\"parent\":1,\"children\":141,\"pos\":\"[2][141]\"},{\"t\":\"bucate\",\"h\":[[116],[142]],\"parent\":1,\"children\":142,\"pos\":\"[2][142]\"},{\"t\":\"in\",\"h\":[[113],[143,144,145]],\"parent\":1,\"children\":143,\"pos\":\"[2][143]\"},{\"t\":\"questo\",\"h\":[[113],[143,144,145]],\"parent\":1,\"children\":144,\"pos\":\"[2][144]\"},{\"t\":\"modo\",\"h\":[[113],[143,144,145]],\"parent\":1,\"children\":145,\"pos\":\"[2][145]\"},{\"p\":\"?\",\"parent\":1,\"children\":146,\"pos\":\"[2][146]\"}],[{\"t\":\"Ma\",\"h\":[[118],[147]],\"parent\":1,\"children\":147,\"pos\":\"[2][147]\"},{\"t\":\"c\",\"h\":[[119],[148]],\"parent\":1,\"children\":148,\"pos\":\"[2][148]\"},{\"p\":\"’\",\"parent\":1,\"children\":149,\"pos\":\"[2][149]\"},{\"p\":\"è\",\"parent\":1,\"children\":150,\"pos\":\"[2][150]\"},{\"t\":\"per\",\"h\":[[],[151]],\"parent\":1,\"children\":151,\"pos\":\"[2][151]\"},{\"t\":\"me\",\"h\":[[],[152]],\"parent\":1,\"children\":152,\"pos\":\"[2][152]\"},{\"t\":\"una\",\"h\":[[120],[153,154,155]],\"parent\":1,\"children\":153,\"pos\":\"[2][153]\"},{\"t\":\"speranza\",\"h\":[[120],[153,154,155]],\"parent\":1,\"children\":154,\"pos\":\"[2][154]\"},{\"t\":\"che\",\"h\":[[120],[153,154,155]],\"parent\":1,\"children\":155,\"pos\":\"[2][155]\"},{\"t\":\"voi\",\"h\":[[124],[156]],\"parent\":1,\"children\":156,\"pos\":\"[2][156]\"},{\"t\":\"partecipiate\",\"h\":[[125],[157]],\"parent\":1,\"children\":157,\"pos\":\"[2][157]\"},{\"t\":\"con\",\"h\":[[121],[158,159]],\"parent\":1,\"children\":158,\"pos\":\"[2][158]\"},{\"t\":\"gioia\",\"h\":[[121],[158,159]],\"parent\":1,\"children\":159,\"pos\":\"[2][159]\"},{\"p\":\",\",\"parent\":1,\"children\":160,\"pos\":\"[2][160]\"},{\"t\":\"e\",\"h\":[[],[161]],\"parent\":1,\"children\":161,\"pos\":\"[2][161]\"},{\"t\":\"non\",\"h\":[[],[162]],\"parent\":1,\"children\":162,\"pos\":\"[2][162]\"},{\"t\":\"con\",\"h\":[[],[163]],\"parent\":1,\"children\":163,\"pos\":\"[2][163]\"},{\"t\":\"mollezza\",\"h\":[[],[164]],\"parent\":1,\"children\":164,\"pos\":\"[2][164]\"},{\"p\":\",\",\"parent\":1,\"children\":165,\"pos\":\"[2][165]\"},{\"t\":\"a\",\"h\":[[],[166]],\"parent\":1,\"children\":166,\"pos\":\"[2][166]\"},{\"t\":\"ciò\",\"h\":[[],[167]],\"parent\":1,\"children\":167,\"pos\":\"[2][167]\"},{\"t\":\"che\",\"h\":[[],[168]],\"parent\":1,\"children\":168,\"pos\":\"[2][168]\"},{\"t\":\"faccio\",\"h\":[[],[169]],\"parent\":1,\"children\":169,\"pos\":\"[2][169]\"},{\"p\":\";\",\"parent\":1,\"children\":170,\"pos\":\"[2][170]\"}],[{\"t\":\"Per\",\"h\":[[132],[171,172]],\"parent\":1,\"children\":171,\"pos\":\"[2][171]\"},{\"t\":\"voi\",\"h\":[[132],[171,172]],\"parent\":1,\"children\":172,\"pos\":\"[2][172]\"},{\"p\":\",\",\"parent\":1,\"children\":173,\"pos\":\"[2][173]\"},{\"t\":\"infatti\",\"h\":[[131],[174]],\"parent\":1,\"children\":174,\"pos\":\"[2][174]\"},{\"p\":\",\",\"parent\":1,\"children\":175,\"pos\":\"[2][175]\"},{\"p\":\"è\",\"parent\":1,\"children\":176,\"pos\":\"[2][176]\"},{\"t\":\"usanza\",\"h\":[[130],[177]],\"parent\":1,\"children\":177,\"pos\":\"[2][177]\"},{\"t\":\"adattare\",\"h\":[[139],[178]],\"parent\":1,\"children\":178,\"pos\":\"[2][178]\"},{\"t\":\"cibi\",\"h\":[[140],[179]],\"parent\":1,\"children\":179,\"pos\":\"[2][179]\"},{\"t\":\"all\",\"h\":[[133,135],[180,182]],\"parent\":1,\"children\":180,\"pos\":\"[2][180]\"},{\"p\":\"’\",\"parent\":1,\"children\":181,\"pos\":\"[2][181]\"},{\"t\":\"unico\",\"h\":[[133,135],[180,182]],\"parent\":1,\"children\":182,\"pos\":\"[2][182]\"},{\"t\":\"desiderio\",\"h\":[[134],[183]],\"parent\":1,\"children\":183,\"pos\":\"[2][183]\"},{\"t\":\"dei\",\"h\":[[137,138],[184,185,186]],\"parent\":1,\"children\":184,\"pos\":\"[2][184]\"},{\"t\":\"vostri\",\"h\":[[137,138],[184,185,186]],\"parent\":1,\"children\":185,\"pos\":\"[2][185]\"},{\"t\":\"invitati\",\"h\":[[137,138],[184,185,186]],\"parent\":1,\"children\":186,\"pos\":\"[2][186]\"},{\"p\":\".\",\"parent\":1,\"children\":187,\"pos\":\"[2][187]\"}],[{\"t\":\"Giungo\",\"h\":[[148],[188]],\"parent\":1,\"children\":188,\"pos\":\"[2][188]\"},{\"t\":\"dalle\",\"h\":[[150,151],[189,190]],\"parent\":1,\"children\":189,\"pos\":\"[2][189]\"},{\"t\":\"navi\",\"h\":[[150,151],[189,190]],\"parent\":1,\"children\":190,\"pos\":\"[2][190]\"},{\"t\":\"di\",\"h\":[[152],[191,192]],\"parent\":1,\"children\":191,\"pos\":\"[2][191]\"},{\"t\":\"spezie\",\"h\":[[152],[191,192]],\"parent\":1,\"children\":192,\"pos\":\"[2][192]\"},{\"t\":\"offrendo\",\"h\":[[149],[193]],\"parent\":1,\"children\":193,\"pos\":\"[2][193]\"},{\"t\":\"loro\",\"h\":[[],[194]],\"parent\":1,\"children\":194,\"pos\":\"[2][194]\"},{\"t\":\"un\",\"h\":[[],[195]],\"parent\":1,\"children\":195,\"pos\":\"[2][195]\"},{\"t\":\"pasto\",\"h\":[[],[196]],\"parent\":1,\"children\":196,\"pos\":\"[2][196]\"},{\"t\":\"gradito\",\"h\":[[],[197]],\"parent\":1,\"children\":197,\"pos\":\"[2][197]\"},{\"p\":\".\",\"parent\":1,\"children\":198,\"pos\":\"[2][198]\"}],[{\"t\":\"Poiché\",\"h\":[[154],[199]],\"parent\":1,\"children\":199,\"pos\":\"[2][199]\"},{\"t\":\"non\",\"h\":[[156],[200]],\"parent\":1,\"children\":200,\"pos\":\"[2][200]\"},{\"p\":\"è\",\"parent\":1,\"children\":201,\"pos\":\"[2][201]\"},{\"t\":\"possibile\",\"h\":[[],[202]],\"parent\":1,\"children\":202,\"pos\":\"[2][202]\"},{\"t\":\"che\",\"h\":[[],[203]],\"parent\":1,\"children\":203,\"pos\":\"[2][203]\"},{\"t\":\"voi\",\"h\":[[162],[204]],\"parent\":1,\"children\":204,\"pos\":\"[2][204]\"},{\"p\":\",\",\"parent\":1,\"children\":205,\"pos\":\"[2][205]\"},{\"t\":\"uomini\",\"h\":[[165],[206]],\"parent\":1,\"children\":206,\"pos\":\"[2][206]\"},{\"p\":\",\",\"parent\":1,\"children\":207,\"pos\":\"[2][207]\"},{\"t\":\"riceveste\",\"h\":[[163],[208]],\"parent\":1,\"children\":208,\"pos\":\"[2][208]\"},{\"t\":\"solo\",\"h\":[[161],[209]],\"parent\":1,\"children\":209,\"pos\":\"[2][209]\"},{\"t\":\"da\",\"h\":[[159,160],[210,211]],\"parent\":1,\"children\":210,\"pos\":\"[2][210]\"},{\"t\":\"me\",\"h\":[[159,160],[210,211]],\"parent\":1,\"children\":211,\"pos\":\"[2][211]\"},{\"t\":\"i\",\"h\":[[167],[212,213]],\"parent\":1,\"children\":212,\"pos\":\"[2][212]\"},{\"t\":\"valori\",\"h\":[[167],[212,213]],\"parent\":1,\"children\":213,\"pos\":\"[2][213]\"},{\"t\":\"del\",\"h\":[[168],[214,215]],\"parent\":1,\"children\":214,\"pos\":\"[2][214]\"},{\"t\":\"cibo\",\"h\":[[168],[214,215]],\"parent\":1,\"children\":215,\"pos\":\"[2][215]\"},{\"p\":\",\",\"parent\":1,\"children\":216,\"pos\":\"[2][216]\"},{\"t\":\"persuasi\",\"h\":[[171],[217]],\"parent\":1,\"children\":217,\"pos\":\"[2][217]\"},{\"t\":\"molti\",\"h\":[[170],[218]],\"parent\":1,\"children\":218,\"pos\":\"[2][218]\"},{\"t\":\"a\",\"h\":[[172],[219,220]],\"parent\":1,\"children\":219,\"pos\":\"[2][219]\"},{\"t\":\"soccorrermi\",\"h\":[[172],[219,220]],\"parent\":1,\"children\":220,\"pos\":\"[2][220]\"},{\"t\":\"nel\",\"h\":[[174],[221,223]],\"parent\":1,\"children\":221,\"pos\":\"[2][221]\"},{\"t\":\"mio\",\"h\":[[173],[222]],\"parent\":1,\"children\":222,\"pos\":\"[2][222]\"},{\"t\":\"lavoro\",\"h\":[[174],[221,223]],\"parent\":1,\"children\":223,\"pos\":\"[2][223]\"},{\"t\":\"e\",\"h\":[[176],[224]],\"parent\":1,\"children\":224,\"pos\":\"[2][224]\"},{\"t\":\"a\",\"h\":[[177],[225,226,227]],\"parent\":1,\"children\":225,\"pos\":\"[2][225]\"},{\"t\":\"gettare\",\"h\":[[177],[225,226,227]],\"parent\":1,\"children\":226,\"pos\":\"[2][226]\"},{\"t\":\"insieme\",\"h\":[[177],[225,226,227]],\"parent\":1,\"children\":227,\"pos\":\"[2][227]\"},{\"t\":\"e\",\"h\":[[178],[228]],\"parent\":1,\"children\":228,\"pos\":\"[2][228]\"},{\"t\":\"invitare\",\"h\":[[179],[229,230,231]],\"parent\":1,\"children\":229,\"pos\":\"[2][229]\"},{\"t\":\"a\",\"h\":[[179],[229,230,231]],\"parent\":1,\"children\":230,\"pos\":\"[2][230]\"},{\"t\":\"banchetto\",\"h\":[[179],[229,230,231]],\"parent\":1,\"children\":231,\"pos\":\"[2][231]\"},{\"t\":\"i\",\"h\":[[180],[232,233]],\"parent\":1,\"children\":232,\"pos\":\"[2][232]\"},{\"t\":\"più\",\"h\":[[180],[232,233]],\"parent\":1,\"children\":233,\"pos\":\"[2][233]\"},{\"p\":\".\",\"parent\":1,\"children\":234,\"pos\":\"[2][234]\"}],[{\"t\":\"Allora\",\"h\":[[182,183],[235]],\"parent\":1,\"children\":235,\"pos\":\"[2][235]\"},{\"t\":\"i\",\"h\":[[186,187],[236,237]],\"parent\":1,\"children\":236,\"pos\":\"[2][236]\"},{\"t\":\"ricchi\",\"h\":[[186,187],[236,237]],\"parent\":1,\"children\":237,\"pos\":\"[2][237]\"},{\"t\":\"diedero\",\"h\":[[184],[238]],\"parent\":1,\"children\":238,\"pos\":\"[2][238]\"},{\"p\":\"(\",\"parent\":1,\"children\":239,\"pos\":\"[2][239]\"},{\"t\":\"i\",\"h\":[[],[240]],\"parent\":1,\"children\":240,\"pos\":\"[2][240]\"},{\"t\":\"loro\",\"h\":[[],[241]],\"parent\":1,\"children\":241,\"pos\":\"[2][241]\"},{\"t\":\"beni\",\"h\":[[],[242]],\"parent\":1,\"children\":242,\"pos\":\"[2][242]\"},{\"p\":\")\",\"parent\":1,\"children\":243,\"pos\":\"[2][243]\"},{\"t\":\"con\",\"h\":[[185],[244,245]],\"parent\":1,\"children\":244,\"pos\":\"[2][244]\"},{\"t\":\"generosità\",\"h\":[[185],[244,245]],\"parent\":1,\"children\":245,\"pos\":\"[2][245]\"},{\"t\":\"a\",\"h\":[[188,189],[246,247,248]],\"parent\":1,\"children\":246,\"pos\":\"[2][246]\"},{\"t\":\"coloro\",\"h\":[[188,189],[246,247,248]],\"parent\":1,\"children\":247,\"pos\":\"[2][247]\"},{\"t\":\"che\",\"h\":[[188,189],[246,247,248]],\"parent\":1,\"children\":248,\"pos\":\"[2][248]\"},{\"t\":\"si\",\"h\":[[190],[249,250]],\"parent\":1,\"children\":249,\"pos\":\"[2][249]\"},{\"t\":\"dilettavano\",\"h\":[[190],[249,250]],\"parent\":1,\"children\":250,\"pos\":\"[2][250]\"},{\"t\":\"di\",\"h\":[[],[251]],\"parent\":1,\"children\":251,\"pos\":\"[2][251]\"},{\"t\":\"loro\",\"h\":[[],[252]],\"parent\":1,\"children\":252,\"pos\":\"[2][252]\"},{\"p\":\",\",\"parent\":1,\"children\":253,\"pos\":\"[2][253]\"},{\"t\":\"e\",\"h\":[[192],[254]],\"parent\":1,\"children\":254,\"pos\":\"[2][254]\"},{\"t\":\"sono\",\"h\":[[199],[255,256,257]],\"parent\":1,\"children\":255,\"pos\":\"[2][255]\"},{\"t\":\"molto\",\"h\":[[199],[255,256,257]],\"parent\":1,\"children\":256,\"pos\":\"[2][256]\"},{\"t\":\"orgoglioso\",\"h\":[[199],[255,256,257]],\"parent\":1,\"children\":257,\"pos\":\"[2][257]\"},{\"t\":\"di\",\"h\":[[193],[258,259]],\"parent\":1,\"children\":258,\"pos\":\"[2][258]\"},{\"t\":\"prendere\",\"h\":[[193],[258,259]],\"parent\":1,\"children\":259,\"pos\":\"[2][259]\"},{\"t\":\"in\",\"h\":[[194],[260,261,262]],\"parent\":1,\"children\":260,\"pos\":\"[2][260]\"},{\"t\":\"modo\",\"h\":[[194],[260,261,262]],\"parent\":1,\"children\":261,\"pos\":\"[2][261]\"},{\"t\":\"legittimo\",\"h\":[[194],[260,261,262]],\"parent\":1,\"children\":262,\"pos\":\"[2][262]\"},{\"t\":\"i\",\"h\":[[195,196,198],[263,265]],\"parent\":1,\"children\":263,\"pos\":\"[2][263]\"},{\"t\":\"loro\",\"h\":[[197],[264]],\"parent\":1,\"children\":264,\"pos\":\"[2][264]\"},{\"t\":\"dolci\",\"h\":[[195,196,198],[263,265]],\"parent\":1,\"children\":265,\"pos\":\"[2][265]\"},{\"p\":\".\",\"parent\":1,\"children\":266,\"pos\":\"[2][266]\"}],[{\"t\":\"Mentre\",\"h\":[[],[267]],\"parent\":1,\"children\":267,\"pos\":\"[2][267]\"},{\"t\":\"io\",\"h\":[[208],[268]],\"parent\":1,\"children\":268,\"pos\":\"[2][268]\"},{\"t\":\"indicavo\",\"h\":[[207],[269]],\"parent\":1,\"children\":269,\"pos\":\"[2][269]\"},{\"p\":\",\",\"parent\":1,\"children\":270,\"pos\":\"[2][270]\"},{\"t\":\"uno\",\"h\":[[203],[271]],\"parent\":1,\"children\":271,\"pos\":\"[2][271]\"},{\"t\":\"di\",\"h\":[[204],[272,273]],\"parent\":1,\"children\":272,\"pos\":\"[2][272]\"},{\"t\":\"loro\",\"h\":[[204],[272,273]],\"parent\":1,\"children\":273,\"pos\":\"[2][273]\"},{\"t\":\"in\",\"h\":[[205],[274,275,276]],\"parent\":1,\"children\":274,\"pos\":\"[2][274]\"},{\"t\":\"modo\",\"h\":[[205],[274,275,276]],\"parent\":1,\"children\":275,\"pos\":\"[2][275]\"},{\"t\":\"conveniente\",\"h\":[[205],[274,275,276]],\"parent\":1,\"children\":276,\"pos\":\"[2][276]\"},{\"t\":\"chiese\",\"h\":[[210],[277]],\"parent\":1,\"children\":277,\"pos\":\"[2][277]\"},{\"t\":\"questo\",\"h\":[[211],[278,279,281]],\"parent\":1,\"children\":278,\"pos\":\"[2][278]\"},{\"t\":\"all\",\"h\":[[211],[278,279,281]],\"parent\":1,\"children\":279,\"pos\":\"[2][279]\"},{\"p\":\"’\",\"parent\":1,\"children\":280,\"pos\":\"[2][280]\"},{\"t\":\"altro\",\"h\":[[211],[278,279,281]],\"parent\":1,\"children\":281,\"pos\":\"[2][281]\"},{\"p\":\":\",\"parent\":1,\"children\":282,\"pos\":\"[2][282]\"},{\"p\":\"“\",\"parent\":1,\"children\":283,\"pos\":\"[2][283]\"},{\"t\":\"Avendo\",\"h\":[[],[284]],\"parent\":1,\"children\":284,\"pos\":\"[2][284]\"},{\"t\":\"io\",\"h\":[[214],[285]],\"parent\":1,\"children\":285,\"pos\":\"[2][285]\"},{\"t\":\"impastato\",\"h\":[[],[286]],\"parent\":1,\"children\":286,\"pos\":\"[2][286]\"},{\"t\":\"una\",\"h\":[[215],[287,288]],\"parent\":1,\"children\":287,\"pos\":\"[2][287]\"},{\"t\":\"focaccia\",\"h\":[[215],[287,288]],\"parent\":1,\"children\":288,\"pos\":\"[2][288]\"},{\"t\":\"musicale\",\"h\":[[217],[289]],\"parent\":1,\"children\":289,\"pos\":\"[2][289]\"},{\"t\":\"e\",\"h\":[[218,219],[290]],\"parent\":1,\"children\":290,\"pos\":\"[2][290]\"},{\"t\":\"fresca\",\"h\":[[220],[291]],\"parent\":1,\"children\":291,\"pos\":\"[2][291]\"},{\"t\":\"proprio\",\"h\":[[],[292]],\"parent\":1,\"children\":292,\"pos\":\"[2][292]\"},{\"t\":\"ora\",\"h\":[[],[293]],\"parent\":1,\"children\":293,\"pos\":\"[2][293]\"},{\"p\":\",\",\"parent\":1,\"children\":294,\"pos\":\"[2][294]\"},{\"t\":\"egli\",\"h\":[[222],[295]],\"parent\":1,\"children\":295,\"pos\":\"[2][295]\"},{\"t\":\"gliela\",\"h\":[[223],[296,297]],\"parent\":1,\"children\":296,\"pos\":\"[2][296]\"},{\"t\":\"dà\",\"h\":[[223],[296,297]],\"parent\":1,\"children\":297,\"pos\":\"[2][297]\"},{\"t\":\"impastata\",\"h\":[[224,227],[298]],\"parent\":1,\"children\":298,\"pos\":\"[2][298]\"},{\"t\":\"da\",\"h\":[[225],[299]],\"parent\":1,\"children\":299,\"pos\":\"[2][299]\"},{\"t\":\"me\",\"h\":[[226],[300]],\"parent\":1,\"children\":300,\"pos\":\"[2][300]\"},{\"p\":\".”\",\"parent\":1,\"children\":301,\"pos\":\"[2][301]\"}],[{\"t\":\"A\",\"h\":[[229],[302,303]],\"parent\":1,\"children\":302,\"pos\":\"[2][302]\"},{\"t\":\"costui\",\"h\":[[229],[302,303]],\"parent\":1,\"children\":303,\"pos\":\"[2][303]\"},{\"t\":\"dunque\",\"h\":[[231],[304]],\"parent\":1,\"children\":304,\"pos\":\"[2][304]\"},{\"t\":\"chiedo\",\"h\":[[232],[305]],\"parent\":1,\"children\":305,\"pos\":\"[2][305]\"},{\"t\":\"chi\",\"h\":[[233],[306]],\"parent\":1,\"children\":306,\"pos\":\"[2][306]\"},{\"t\":\"non\",\"h\":[[235],[307]],\"parent\":1,\"children\":307,\"pos\":\"[2][307]\"},{\"t\":\"si\",\"h\":[[],[308]],\"parent\":1,\"children\":308,\"pos\":\"[2][308]\"},{\"t\":\"ricordi\",\"h\":[[],[309]],\"parent\":1,\"children\":309,\"pos\":\"[2][309]\"},{\"t\":\"dei\",\"h\":[[236,237],[310,311,312]],\"parent\":1,\"children\":310,\"pos\":\"[2][310]\"},{\"t\":\"più\",\"h\":[[236,237],[310,311,312]],\"parent\":1,\"children\":311,\"pos\":\"[2][311]\"},{\"t\":\"valenti\",\"h\":[[236,237],[310,311,312]],\"parent\":1,\"children\":312,\"pos\":\"[2][312]\"}],[{\"t\":\"fra\",\"h\":[[238,239],[313,314,315]],\"parent\":1,\"children\":313,\"pos\":\"[2][313]\"},{\"t\":\"i\",\"h\":[[238,239],[313,314,315]],\"parent\":1,\"children\":314,\"pos\":\"[2][314]\"},{\"t\":\"cuochi\",\"h\":[[238,239],[313,314,315]],\"parent\":1,\"children\":315,\"pos\":\"[2][315]\"},{\"p\":\",\",\"parent\":1,\"children\":316,\"pos\":\"[2][316]\"},{\"t\":\"la\",\"h\":[[241],[317,318]],\"parent\":1,\"children\":317,\"pos\":\"[2][317]\"},{\"t\":\"cui\",\"h\":[[241],[317,318]],\"parent\":1,\"children\":318,\"pos\":\"[2][318]\"},{\"t\":\"grazia\",\"h\":[[242],[319]],\"parent\":1,\"children\":319,\"pos\":\"[2][319]\"},{\"t\":\"sembra\",\"h\":[[243],[320]],\"parent\":1,\"children\":320,\"pos\":\"[2][320]\"}],[{\"t\":\"essere\",\"h\":[[245],[321]],\"parent\":1,\"children\":321,\"pos\":\"[2][321]\"},{\"t\":\"la\",\"h\":[[244],[322,323]],\"parent\":1,\"children\":322,\"pos\":\"[2][322]\"},{\"t\":\"sola\",\"h\":[[244],[322,323]],\"parent\":1,\"children\":323,\"pos\":\"[2][323]\"},{\"t\":\"guida\",\"h\":[[247],[324]],\"parent\":1,\"children\":324,\"pos\":\"[2][324]\"},{\"t\":\"di\",\"h\":[[246],[325,326,327]],\"parent\":1,\"children\":325,\"pos\":\"[2][325]\"},{\"t\":\"un\",\"h\":[[246],[325,326,327]],\"parent\":1,\"children\":326,\"pos\":\"[2][326]\"},{\"t\":\"assai\",\"h\":[[246],[325,326,327]],\"parent\":1,\"children\":327,\"pos\":\"[2][327]\"},{\"t\":\"maestoso\",\"h\":[[246],[326,327,328]],\"parent\":1,\"children\":328,\"pos\":\"[2][328]\"},{\"t\":\"banchetto\",\"h\":[[248],[329]],\"parent\":1,\"children\":329,\"pos\":\"[2][329]\"},{\"p\":\".\",\"parent\":1,\"children\":330,\"pos\":\"[2][330]\"}],[{\"t\":\"Incoraggiato\",\"h\":[[250],[331]],\"parent\":1,\"children\":331,\"pos\":\"[2][331]\"},{\"p\":\",\",\"parent\":1,\"children\":332,\"pos\":\"[2][332]\"},{\"t\":\"ho\",\"h\":[[257],[333,334]],\"parent\":1,\"children\":333,\"pos\":\"[2][333]\"},{\"t\":\"mischiato\",\"h\":[[257],[333,334]],\"parent\":1,\"children\":334,\"pos\":\"[2][334]\"},{\"t\":\"una\",\"h\":[[255],[335,337]],\"parent\":1,\"children\":335,\"pos\":\"[2][335]\"},{\"t\":\"piccola\",\"h\":[[253],[336]],\"parent\":1,\"children\":336,\"pos\":\"[2][336]\"},{\"t\":\"parte\",\"h\":[[255],[335,337]],\"parent\":1,\"children\":337,\"pos\":\"[2][337]\"},{\"t\":\"del\",\"h\":[[],[338]],\"parent\":1,\"children\":338,\"pos\":\"[2][338]\"},{\"t\":\"mio\",\"h\":[[],[339]],\"parent\":1,\"children\":339,\"pos\":\"[2][339]\"},{\"t\":\"piatto\",\"h\":[[],[340]],\"parent\":1,\"children\":340,\"pos\":\"[2][340]\"}],[{\"t\":\"alle\",\"h\":[[252],[341,342]],\"parent\":1,\"children\":341,\"pos\":\"[2][341]\"},{\"t\":\"altre\",\"h\":[[252],[341,342]],\"parent\":1,\"children\":342,\"pos\":\"[2][342]\"},{\"p\":\",\",\"parent\":1,\"children\":343,\"pos\":\"[2][343]\"},{\"t\":\"per\",\"h\":[[261],[344,345]],\"parent\":1,\"children\":344,\"pos\":\"[2][344]\"},{\"t\":\"non\",\"h\":[[261],[344,345]],\"parent\":1,\"children\":345,\"pos\":\"[2][345]\"},{\"t\":\"sembrare\",\"h\":[[259,260],[346]],\"parent\":1,\"children\":346,\"pos\":\"[2][346]\"},{\"t\":\"completamente\",\"h\":[[262],[347]],\"parent\":1,\"children\":347,\"pos\":\"[2][347]\"}],[{\"t\":\"di\",\"h\":[[265],[348,349]],\"parent\":1,\"children\":348,\"pos\":\"[2][348]\"},{\"t\":\"essere\",\"h\":[[265],[348,349]],\"parent\":1,\"children\":349,\"pos\":\"[2][349]\"},{\"t\":\"un\",\"h\":[[264],[350,351]],\"parent\":1,\"children\":350,\"pos\":\"[2][350]\"},{\"t\":\"qualche\",\"h\":[[264],[350,351]],\"parent\":1,\"children\":351,\"pos\":\"[2][351]\"},{\"t\":\"parassita\",\"h\":[[263],[352]],\"parent\":1,\"children\":352,\"pos\":\"[2][352]\"},{\"t\":\"fra\",\"h\":[[266,269],[353,354,355]],\"parent\":1,\"children\":353,\"pos\":\"[2][353]\"},{\"t\":\"i\",\"h\":[[266,269],[353,354,355]],\"parent\":1,\"children\":354,\"pos\":\"[2][354]\"},{\"t\":\"convitati\",\"h\":[[266,269],[353,354,355]],\"parent\":1,\"children\":355,\"pos\":\"[2][355]\"},{\"t\":\"presso\",\"h\":[[267,268],[356,357,358]],\"parent\":1,\"children\":356,\"pos\":\"[2][356]\"},{\"t\":\"casa\",\"h\":[[267,268],[356,357,358]],\"parent\":1,\"children\":357,\"pos\":\"[2][357]\"},{\"t\":\"mia\",\"h\":[[267,268],[356,357,358]],\"parent\":1,\"children\":358,\"pos\":\"[2][358]\"},{\"p\":\".\",\"parent\":1,\"children\":359,\"pos\":\"[2][359]\"}],[{\"t\":\"Ma\",\"h\":[[271],[360]],\"parent\":1,\"children\":360,\"pos\":\"[2][360]\"},{\"t\":\"da\",\"h\":[[272],[361]],\"parent\":1,\"children\":361,\"pos\":\"[2][361]\"},{\"t\":\"ciascuno\",\"h\":[[273],[362]],\"parent\":1,\"children\":362,\"pos\":\"[2][362]\"},{\"t\":\"porto\",\"h\":[[275],[363,364]],\"parent\":1,\"children\":363,\"pos\":\"[2][363]\"},{\"t\":\"via\",\"h\":[[275],[363,364]],\"parent\":1,\"children\":364,\"pos\":\"[2][364]\"},{\"t\":\"una\",\"h\":[[276],[365,367]],\"parent\":1,\"children\":365,\"pos\":\"[2][365]\"},{\"t\":\"misera\",\"h\":[[274],[366]],\"parent\":1,\"children\":366,\"pos\":\"[2][366]\"},{\"t\":\"parte\",\"h\":[[276],[365,367]],\"parent\":1,\"children\":367,\"pos\":\"[2][367]\"},{\"p\":\",\",\"parent\":1,\"children\":368,\"pos\":\"[2][368]\"},{\"t\":\"tanto\",\"h\":[[278],[369,370,371,375,376,377]],\"parent\":1,\"children\":369,\"pos\":\"[2][369]\"},{\"t\":\"grande\",\"h\":[[278],[369,370,371,375,376,377]],\"parent\":1,\"children\":370,\"pos\":\"[2][370]\"},{\"t\":\"quanto\",\"h\":[[278],[369,370,371,375,376,377]],\"parent\":1,\"children\":371,\"pos\":\"[2][371]\"},{\"t\":\"un\",\"h\":[[279],[372,373,378,379]],\"parent\":1,\"children\":372,\"pos\":\"[2][372]\"},{\"t\":\"assaggio\",\"h\":[[279],[372,373,378,379]],\"parent\":1,\"children\":373,\"pos\":\"[2][373]\"},{\"p\":\"(\",\"parent\":1,\"children\":374,\"pos\":\"[2][374]\"},{\"t\":\"di\",\"h\":[[278],[369,370,371,375,376,377]],\"parent\":1,\"children\":375,\"pos\":\"[2][375]\"},{\"t\":\"grandezza\",\"h\":[[278],[369,370,371,375,376,377]],\"parent\":1,\"children\":376,\"pos\":\"[2][376]\"},{\"t\":\"tale\",\"h\":[[278],[369,370,371,375,376,377]],\"parent\":1,\"children\":377,\"pos\":\"[2][377]\"},{\"t\":\"per\",\"h\":[[279],[372,373,378,379]],\"parent\":1,\"children\":378,\"pos\":\"[2][378]\"},{\"t\":\"assaggiare\",\"h\":[[279],[372,373,378,379]],\"parent\":1,\"children\":379,\"pos\":\"[2][379]\"},{\"p\":\");\",\"parent\":1,\"children\":380,\"pos\":\"[2][380]\"},{\"t\":\"di\",\"h\":[[281,283],[381,382,383,384]],\"parent\":1,\"children\":381,\"pos\":\"[2][381]\"},{\"t\":\"tutto\",\"h\":[[281,283],[381,382,383,384]],\"parent\":1,\"children\":382,\"pos\":\"[2][382]\"},{\"t\":\"il\",\"h\":[[281,283],[381,382,383,384]],\"parent\":1,\"children\":383,\"pos\":\"[2][383]\"},{\"t\":\"resto\",\"h\":[[281,283],[381,382,383,384]],\"parent\":1,\"children\":384,\"pos\":\"[2][384]\"},{\"t\":\"se\",\"h\":[[284],[385]],\"parent\":1,\"children\":385,\"pos\":\"[2][385]\"},{\"t\":\"qualcuno\",\"h\":[[287],[386]],\"parent\":1,\"children\":386,\"pos\":\"[2][386]\"},{\"t\":\"desiderasse\",\"h\":[[285],[387]],\"parent\":1,\"children\":387,\"pos\":\"[2][387]\"},{\"t\":\"trovarlo\",\"h\":[[286],[388]],\"parent\":1,\"children\":388,\"pos\":\"[2][388]\"},{\"t\":\"tutto\",\"h\":[[288],[389]],\"parent\":1,\"children\":389,\"pos\":\"[2][389]\"},{\"t\":\"e\",\"h\":[[289],[390]],\"parent\":1,\"children\":390,\"pos\":\"[2][390]\"},{\"t\":\"trarre\",\"h\":[[290],[391]],\"parent\":1,\"children\":391,\"pos\":\"[2][391]\"},{\"t\":\"da\",\"h\":[[],[392]],\"parent\":1,\"children\":392,\"pos\":\"[2][392]\"},{\"t\":\"questo\",\"h\":[[],[393]],\"parent\":1,\"children\":393,\"pos\":\"[2][393]\"},{\"t\":\"sazietà\",\"h\":[[291,292],[394]],\"parent\":1,\"children\":394,\"pos\":\"[2][394]\"},{\"p\":\",\",\"parent\":1,\"children\":395,\"pos\":\"[2][395]\"},{\"t\":\"dovete\",\"h\":[[299],[396,397,398,399,400]],\"parent\":1,\"children\":396,\"pos\":\"[2][396]\"},{\"t\":\"sapere\",\"h\":[[299],[396,397,398,399,400]],\"parent\":1,\"children\":397,\"pos\":\"[2][397]\"},{\"t\":\"che\",\"h\":[[299],[396,397,398,399,400]],\"parent\":1,\"children\":398,\"pos\":\"[2][398]\"},{\"t\":\"dobbiamo\",\"h\":[[299],[396,397,398,399,400]],\"parent\":1,\"children\":399,\"pos\":\"[2][399]\"},{\"t\":\"andare\",\"h\":[[299],[396,397,398,399,400]],\"parent\":1,\"children\":400,\"pos\":\"[2][400]\"},{\"t\":\"al\",\"h\":[[297,298],[401,402]],\"parent\":1,\"children\":401,\"pos\":\"[2][401]\"},{\"t\":\"mercato\",\"h\":[[297,298],[401,402]],\"parent\":1,\"children\":402,\"pos\":\"[2][402]\"},{\"p\":\".\",\"parent\":1,\"children\":403,\"pos\":\"[2][403]\"}],[{\"t\":\"Per\",\"h\":[[],[404]],\"parent\":1,\"children\":404,\"pos\":\"[2][404]\"},{\"t\":\"dare\",\"h\":[[],[405]],\"parent\":1,\"children\":405,\"pos\":\"[2][405]\"},{\"t\":\"onore\",\"h\":[[321],[406]],\"parent\":1,\"children\":406,\"pos\":\"[2][406]\"},{\"t\":\"ai\",\"h\":[[304,305],[407,408]],\"parent\":1,\"children\":407,\"pos\":\"[2][407]\"},{\"t\":\"miei\",\"h\":[[304,305],[407,408]],\"parent\":1,\"children\":408,\"pos\":\"[2][408]\"},{\"t\":\"sforzi\",\"h\":[[306],[409]],\"parent\":1,\"children\":409,\"pos\":\"[2][409]\"},{\"p\":\",\",\"parent\":1,\"children\":410,\"pos\":\"[2][410]\"},{\"t\":\"incomincerò\",\"h\":[[313],[411]],\"parent\":1,\"children\":411,\"pos\":\"[2][411]\"},{\"t\":\"l\",\"h\":[[311,312],[412,414]],\"parent\":1,\"children\":412,\"pos\":\"[2][412]\"},{\"p\":\"’\",\"parent\":1,\"children\":413,\"pos\":\"[2][413]\"},{\"t\":\"esordio\",\"h\":[[311,312],[412,414]],\"parent\":1,\"children\":414,\"pos\":\"[2][414]\"},{\"t\":\"dal\",\"h\":[[308],[415]],\"parent\":1,\"children\":415,\"pos\":\"[2][415]\"},{\"t\":\"sovrano\",\"h\":[[309,310],[416]],\"parent\":1,\"children\":416,\"pos\":\"[2][416]\"},{\"p\":\";\",\"parent\":1,\"children\":417,\"pos\":\"[2][417]\"}],[{\"t\":\"infatti\",\"h\":[[316],[418]],\"parent\":1,\"children\":418,\"pos\":\"[2][418]\"},{\"t\":\"procederà\",\"h\":[[319],[419]],\"parent\":1,\"children\":419,\"pos\":\"[2][419]\"},{\"t\":\"tutto\",\"h\":[[315],[420]],\"parent\":1,\"children\":420,\"pos\":\"[2][420]\"},{\"t\":\"a\",\"h\":[[318],[421,422,423]],\"parent\":1,\"children\":421,\"pos\":\"[2][421]\"},{\"t\":\"mio\",\"h\":[[318],[421,422,423]],\"parent\":1,\"children\":422,\"pos\":\"[2][422]\"},{\"t\":\"favore\",\"h\":[[318],[421,422,423]],\"parent\":1,\"children\":423,\"pos\":\"[2][423]\"},{\"p\":\".\",\"parent\":1,\"children\":424,\"pos\":\"[2][424]\"}],[{\"t\":\"E\",\"h\":[[321],[425]],\"parent\":1,\"children\":425,\"pos\":\"[2][425]\"},{\"t\":\"per\",\"h\":[[325],[426,427]],\"parent\":1,\"children\":426,\"pos\":\"[2][426]\"},{\"t\":\"cantare\",\"h\":[[325],[426,427]],\"parent\":1,\"children\":427,\"pos\":\"[2][427]\"},{\"t\":\"le\",\"h\":[[323],[428]],\"parent\":1,\"children\":428,\"pos\":\"[2][428]\"},{\"t\":\"grandi\",\"h\":[[323],[429]],\"parent\":1,\"children\":429,\"pos\":\"[2][429]\"},{\"t\":\"imprese\",\"h\":[[324],[430]],\"parent\":1,\"children\":430,\"pos\":\"[2][430]\"},{\"t\":\"che\",\"h\":[[],[431]],\"parent\":1,\"children\":431,\"pos\":\"[2][431]\"},{\"t\":\"io\",\"h\":[[327],[432,433]],\"parent\":1,\"children\":432,\"pos\":\"[2][432]\"},{\"t\":\"possa\",\"h\":[[327],[432,433]],\"parent\":1,\"children\":433,\"pos\":\"[2][433]\"},{\"t\":\"trovare\",\"h\":[[326],[434]],\"parent\":1,\"children\":434,\"pos\":\"[2][434]\"},{\"t\":\"anche\",\"h\":[[328],[435]],\"parent\":1,\"children\":435,\"pos\":\"[2][435]\"},{\"t\":\"un\",\"h\":[[329],[436,437]],\"parent\":1,\"children\":436,\"pos\":\"[2][436]\"},{\"t\":\"linguaggio\",\"h\":[[329],[436,437]],\"parent\":1,\"children\":437,\"pos\":\"[2][437]\"},{\"t\":\"elevato\",\"h\":[[330],[438]],\"parent\":1,\"children\":438,\"pos\":\"[2][438]\"},{\"p\":\".\",\"parent\":1,\"children\":439,\"pos\":\"[2][439]\"}],[]]]', 40, NULL, '2017-09-05 10:33:49', '2017-09-05 10:33:49');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(26, 8, 21, 8, 74, 2, '[[[{\"t\":\"τὴν\",\"h\":[[1],[2,3]],\"pos\":\"[1][1]\",\"parent\":0,\"children\":1},{\"t\":\"καταφλεξίπολιν\",\"h\":[[2],[4,5,6,7]],\"pos\":\"[1][2]\",\"parent\":0,\"children\":2},{\"t\":\"Σθενελαΐδα\",\"h\":[[3],[1]],\"pos\":\"[1][3]\",\"parent\":0,\"children\":3},{\"p\":\",\"},{\"t\":\"τὴν\",\"h\":[[4],[8]],\"pos\":\"[1][4]\",\"parent\":0,\"children\":4},{\"t\":\"βαρύμισθον\",\"h\":[[5],[9,10,11,12,13]],\"pos\":\"[1][5]\",\"parent\":0,\"children\":5},{\"p\":\",\"}],[{\"t\":\"τὴν\",\"h\":[[6],[14]],\"pos\":\"[1][6]\",\"parent\":0,\"children\":6},{\"t\":\"τοῖς\",\"h\":[[7,8],[20,21,22,23,24,25]],\"pos\":\"[1][7]\",\"parent\":0,\"children\":7},{\"t\":\"βουλομένοις\",\"h\":[[7,8],[20,21,22,23,24,25]],\"pos\":\"[1][8]\",\"parent\":0,\"children\":8},{\"t\":\"χρυσὸν\",\"h\":[[9],[17,18,19]],\"pos\":\"[1][9]\",\"parent\":0,\"children\":9},{\"t\":\"ἐρευγομένην\",\"h\":[[10],[15,16]],\"pos\":\"[1][10]\",\"parent\":0,\"children\":10}],[{\"t\":\"γυμνήν\",\"h\":[[11],[31]],\"pos\":\"[1][11]\",\"parent\":0,\"children\":11},{\"t\":\"μοι\",\"h\":[[12],[32,33,34]],\"pos\":\"[1][12]\",\"parent\":0,\"children\":12},{\"t\":\"διὰ\",\"h\":[[13,14],[35,36,37]],\"pos\":\"[1][13]\",\"parent\":0,\"children\":13},{\"t\":\"νυκτὸς\",\"h\":[[13,14],[35,36,37]],\"pos\":\"[1][14]\",\"parent\":0,\"children\":14},{\"t\":\"ὅλης\",\"h\":[[15],[]],\"pos\":\"[1][15]\",\"parent\":0,\"children\":15},{\"t\":\"παρέκλινεν\",\"h\":[[16],[29,30]],\"pos\":\"[1][16]\",\"parent\":0,\"children\":16},{\"t\":\"ὄνειρος\",\"h\":[[17],[26,27]],\"pos\":\"[1][17]\",\"parent\":0,\"children\":17}],[{\"t\":\"ἄχρι\",\"h\":[[18,19],[42]],\"pos\":\"[1][18]\",\"parent\":0,\"children\":18},{\"t\":\"φίλης\",\"h\":[[18,19],[42]],\"pos\":\"[1][19]\",\"parent\":0,\"children\":19},{\"t\":\"ἠοῦς\",\"h\":[[20,21],[43,45,46]],\"pos\":\"[1][20]\",\"parent\":0,\"children\":20},{\"t\":\"προῖκα\",\"h\":[[20,21],[43,45,46]],\"pos\":\"[1][21]\",\"parent\":0,\"children\":21},{\"t\":\"χαριζομένην\",\"h\":[[22],[38,39,40,41]],\"pos\":\"[1][22]\",\"parent\":0,\"children\":22},{\"p\":\".\"}],[],[{\"t\":\"οὐκέτι\",\"h\":[[23],[48,50]],\"pos\":\"[1][23]\",\"parent\":0,\"children\":23},{\"t\":\"γουνάσομαι\",\"h\":[[24],[47,49,52]],\"pos\":\"[1][24]\",\"parent\":0,\"children\":24},{\"t\":\"τὴν\",\"h\":[[25,26],[55,56]],\"pos\":\"[1][25]\",\"parent\":0,\"children\":25},{\"t\":\"βάρβαρον\",\"h\":[[25,26],[55,56]],\"pos\":\"[1][26]\",\"parent\":0,\"children\":26},{\"p\":\",\"},{\"t\":\"οὐδ\",\"h\":[[27],[57]],\"pos\":\"[1][27]\",\"parent\":0,\"children\":27},{\"t\":\"ἐπ\",\"h\":[[28,29],[59,60,61]],\"pos\":\"[1][28]\",\"parent\":0,\"children\":28},{\"t\":\"ἐμαυτῷ\",\"h\":[[28,29],[59,60,61]],\"pos\":\"[1][29]\",\"parent\":0,\"children\":29}],[{\"t\":\"κλαύσομαι\",\"h\":[[30],[58]],\"pos\":\"[1][30]\",\"parent\":0,\"children\":30},{\"p\":\",\"},{\"t\":\"ὕπνον\",\"h\":[[31],[66,67]],\"pos\":\"[1][31]\",\"parent\":0,\"children\":31},{\"t\":\"ἔχων\",\"h\":[[32],[62,63,64,65]],\"pos\":\"[1][32]\",\"parent\":0,\"children\":32},{\"t\":\"κεῖνα\",\"h\":[[33],[71,72]],\"pos\":\"[1][33]\",\"parent\":0,\"children\":33},{\"t\":\"χαριζόμενον\",\"h\":[[34],[68,69,70]],\"pos\":\"[1][34]\",\"parent\":0,\"children\":34},{\"p\":\".\"}]],[[{\"t\":\"Sthénélaïde\",\"h\":[[3],[1]],\"pos\":\"[2][1]\",\"parent\":1,\"children\":1},{\"p\":\",\"},{\"t\":\"celle\",\"h\":[[1],[2,3]],\"pos\":\"[2][2]\",\"parent\":1,\"children\":2},{\"t\":\"qui\",\"h\":[[1],[2,3]],\"pos\":\"[2][3]\",\"parent\":1,\"children\":3},{\"t\":\"fait\",\"h\":[[2],[4,5,6,7]],\"pos\":\"[2][4]\",\"parent\":1,\"children\":4},{\"t\":\"brûler\",\"h\":[[2],[4,5,6,7]],\"pos\":\"[2][5]\",\"parent\":1,\"children\":5},{\"t\":\"les\",\"h\":[[2],[4,5,6,7]],\"pos\":\"[2][6]\",\"parent\":1,\"children\":6},{\"t\":\"villes\",\"h\":[[2],[4,5,6,7]],\"pos\":\"[2][7]\",\"parent\":1,\"children\":7},{\"p\":\",\"},{\"t\":\"celle\",\"h\":[[4],[8]],\"pos\":\"[2][8]\",\"parent\":1,\"children\":8},{\"t\":\"qui\",\"h\":[[5],[9,10,11,12,13]],\"pos\":\"[2][9]\",\"parent\":1,\"children\":9},{\"t\":\"se\",\"h\":[[5],[9,10,11,12,13]],\"pos\":\"[2][10]\",\"parent\":1,\"children\":10},{\"t\":\"fait\",\"h\":[[5],[9,10,11,12,13]],\"pos\":\"[2][11]\",\"parent\":1,\"children\":11},{\"t\":\"payer\",\"h\":[[5],[9,10,11,12,13]],\"pos\":\"[2][12]\",\"parent\":1,\"children\":12},{\"t\":\"cher\",\"h\":[[5],[9,10,11,12,13]],\"pos\":\"[2][13]\",\"parent\":1,\"children\":13},{\"p\":\",\"}],[{\"t\":\"celle\",\"h\":[[6],[14]],\"pos\":\"[2][14]\",\"parent\":1,\"children\":14},{\"t\":\"qui\",\"h\":[[10],[15,16]],\"pos\":\"[2][15]\",\"parent\":1,\"children\":15},{\"t\":\"crache\",\"h\":[[10],[15,16]],\"pos\":\"[2][16]\",\"parent\":1,\"children\":16},{\"t\":\"de\",\"h\":[[9],[17,18,19]],\"pos\":\"[2][17]\",\"parent\":1,\"children\":17},{\"t\":\"l\",\"h\":[[9],[17,18,19]],\"pos\":\"[2][18]\",\"parent\":1,\"children\":18},{\"p\":\"’\"},{\"t\":\"or\",\"h\":[[9],[17,18,19]],\"pos\":\"[2][19]\",\"parent\":1,\"children\":19},{\"t\":\"d\",\"h\":[[7,8],[20,21,22,23,24,25]],\"pos\":\"[2][20]\",\"parent\":1,\"children\":20},{\"p\":\"’\"},{\"t\":\"après\",\"h\":[[7,8],[20,21,22,23,24,25]],\"pos\":\"[2][21]\",\"parent\":1,\"children\":21},{\"t\":\"ceux\",\"h\":[[7,8],[20,21,22,23,24,25]],\"pos\":\"[2][22]\",\"parent\":1,\"children\":22},{\"t\":\"qui\",\"h\":[[7,8],[20,21,22,23,24,25]],\"pos\":\"[2][23]\",\"parent\":1,\"children\":23},{\"t\":\"la\",\"h\":[[7,8],[20,21,22,23,24,25]],\"pos\":\"[2][24]\",\"parent\":1,\"children\":24},{\"t\":\"désirent\",\"h\":[[7,8],[20,21,22,23,24,25]],\"pos\":\"[2][25]\",\"parent\":1,\"children\":25},{\"p\":\",\"}],[{\"t\":\"le\",\"h\":[[17],[26,27]],\"pos\":\"[2][26]\",\"parent\":1,\"children\":26},{\"t\":\"rêve\",\"h\":[[17],[26,27]],\"pos\":\"[2][27]\",\"parent\":1,\"children\":27},{\"t\":\"l\",\"h\":[[],[28]],\"pos\":\"[2][28]\",\"parent\":1,\"children\":28},{\"p\":\"’\"},{\"t\":\"a\",\"h\":[[16],[29,30]],\"pos\":\"[2][29]\",\"parent\":1,\"children\":29},{\"t\":\"couchée\",\"h\":[[16],[29,30]],\"pos\":\"[2][30]\",\"parent\":1,\"children\":30},{\"t\":\"nue\",\"h\":[[11],[31]],\"pos\":\"[2][31]\",\"parent\":1,\"children\":31},{\"t\":\"à\",\"h\":[[12],[32,33,34]],\"pos\":\"[2][32]\",\"parent\":1,\"children\":32},{\"t\":\"mes\",\"h\":[[12],[32,33,34]],\"pos\":\"[2][33]\",\"parent\":1,\"children\":33},{\"t\":\"côtés\",\"h\":[[12],[32,33,34]],\"pos\":\"[2][34]\",\"parent\":1,\"children\":34},{\"t\":\"toute\",\"h\":[[13,14],[35,36,37]],\"pos\":\"[2][35]\",\"parent\":1,\"children\":35},{\"t\":\"la\",\"h\":[[13,14],[35,36,37]],\"pos\":\"[2][36]\",\"parent\":1,\"children\":36},{\"t\":\"nuit\",\"h\":[[13,14],[35,36,37]],\"pos\":\"[2][37]\",\"parent\":1,\"children\":37}],[{\"t\":\"me\",\"h\":[[22],[38,39,40,41]],\"pos\":\"[2][38]\",\"parent\":1,\"children\":38},{\"t\":\"donnant\",\"h\":[[22],[38,39,40,41]],\"pos\":\"[2][39]\",\"parent\":1,\"children\":39},{\"t\":\"du\",\"h\":[[22],[38,39,40,41]],\"pos\":\"[2][40]\",\"parent\":1,\"children\":40},{\"t\":\"plaisir\",\"h\":[[22],[38,39,40,41]],\"pos\":\"[2][41]\",\"parent\":1,\"children\":41},{\"t\":\"gratuitement\",\"h\":[[18,19],[42]],\"pos\":\"[2][42]\",\"parent\":1,\"children\":42},{\"t\":\"jusqu\",\"h\":[[20,21],[43,45,46]],\"pos\":\"[2][43]\",\"parent\":1,\"children\":43},{\"p\":\"’\"},{\"t\":\"à\",\"h\":[[],[44]],\"pos\":\"[2][44]\",\"parent\":1,\"children\":44},{\"t\":\"l\",\"h\":[[20,21],[43,45,46]],\"pos\":\"[2][45]\",\"parent\":1,\"children\":45},{\"p\":\"’\"},{\"t\":\"aurore\",\"h\":[[20,21],[43,45,46]],\"pos\":\"[2][46]\",\"parent\":1,\"children\":46},{\"p\":\".\"}],[{\"t\":\"Je\",\"h\":[[24],[47,49,52]],\"pos\":\"[2][47]\",\"parent\":1,\"children\":47},{\"t\":\"ne\",\"h\":[[23],[48,50]],\"pos\":\"[2][48]\",\"parent\":1,\"children\":48},{\"t\":\"devrai\",\"h\":[[24],[47,49,52]],\"pos\":\"[2][49]\",\"parent\":1,\"children\":49},{\"t\":\"pas\",\"h\":[[23],[48,50]],\"pos\":\"[2][50]\",\"parent\":1,\"children\":50},{\"t\":\"la\",\"h\":[[],[51]],\"pos\":\"[2][51]\",\"parent\":1,\"children\":51},{\"t\":\"supplier\",\"h\":[[24],[47,49,52]],\"pos\":\"[2][52]\",\"parent\":1,\"children\":52},{\"t\":\"à\",\"h\":[[],[53]],\"pos\":\"[2][53]\",\"parent\":1,\"children\":53},{\"t\":\"genoux\",\"h\":[[],[54]],\"pos\":\"[2][54]\",\"parent\":1,\"children\":54},{\"p\":\",\"},{\"t\":\"cette\",\"h\":[[25,26],[55,56]],\"pos\":\"[2][55]\",\"parent\":1,\"children\":55},{\"t\":\"barbare\",\"h\":[[25,26],[55,56]],\"pos\":\"[2][56]\",\"parent\":1,\"children\":56},{\"p\":\",\"},{\"t\":\"ni\",\"h\":[[27],[57]],\"pos\":\"[2][57]\",\"parent\":1,\"children\":57},{\"t\":\"pleurer\",\"h\":[[30],[58]],\"pos\":\"[2][58]\",\"parent\":1,\"children\":58},{\"t\":\"sur\",\"h\":[[28,29],[59,60,61]],\"pos\":\"[2][59]\",\"parent\":1,\"children\":59},{\"t\":\"moi\",\"h\":[[28,29],[59,60,61]],\"pos\":\"[2][60]\",\"parent\":1,\"children\":60},{\"p\":\"-\"},{\"t\":\"même\",\"h\":[[28,29],[59,60,61]],\"pos\":\"[2][61]\",\"parent\":1,\"children\":61},{\"p\":\",\"}],[{\"t\":\"parce\",\"h\":[[32],[62,63,64,65]],\"pos\":\"[2][62]\",\"parent\":1,\"children\":62},{\"t\":\"que\",\"h\":[[32],[62,63,64,65]],\"pos\":\"[2][63]\",\"parent\":1,\"children\":63},{\"t\":\"j\",\"h\":[[32],[62,63,64,65]],\"pos\":\"[2][64]\",\"parent\":1,\"children\":64},{\"p\":\"’\"},{\"t\":\"ai\",\"h\":[[32],[62,63,64,65]],\"pos\":\"[2][65]\",\"parent\":1,\"children\":65},{\"t\":\"le\",\"h\":[[31],[66,67]],\"pos\":\"[2][66]\",\"parent\":1,\"children\":66},{\"t\":\"Sommeil\",\"h\":[[31],[66,67]],\"pos\":\"[2][67]\",\"parent\":1,\"children\":67},{\"t\":\"qui\",\"h\":[[34],[68,69,70]],\"pos\":\"[2][68]\",\"parent\":1,\"children\":68},{\"t\":\"m\",\"h\":[[34],[68,69,70]],\"pos\":\"[2][69]\",\"parent\":1,\"children\":69},{\"p\":\"’\"},{\"t\":\"accorde\",\"h\":[[34],[68,69,70]],\"pos\":\"[2][70]\",\"parent\":1,\"children\":70},{\"t\":\"ces\",\"h\":[[33],[71,72]],\"pos\":\"[2][71]\",\"parent\":1,\"children\":71},{\"t\":\"plaisirs\",\"h\":[[33],[71,72]],\"pos\":\"[2][72]\",\"parent\":1,\"children\":72},{\"p\":\".\"}]]]', 2, NULL, '2017-09-15 10:55:23', '2017-09-15 10:55:23'),
(27, 5, 12, 8, 79, 2, '[[[{\"t\":\"ὄρθρος\",\"h\":[[1],[1,2]],\"pos\":\"[1][1]\",\"parent\":0,\"children\":1},{\"t\":\"ἔβη\",\"h\":[[2],[3,4]],\"pos\":\"[1][2]\",\"parent\":0,\"children\":2},{\"p\":\",\"},{\"t\":\"Χρύσιλλα\",\"h\":[[3],[5]],\"pos\":\"[1][3]\",\"parent\":0,\"children\":3},{\"p\":\",\"},{\"t\":\"πάλαι\",\"h\":[[4,5],[6,7,8]],\"pos\":\"[1][4]\",\"parent\":0,\"children\":4},{\"t\":\"δ\",\"h\":[[4,5],[6,7,8]],\"pos\":\"[1][5]\",\"parent\":0,\"children\":5},{\"t\":\"ἠῷος\",\"h\":[[6],[11]],\"pos\":\"[1][6]\",\"parent\":0,\"children\":6},{\"t\":\"ἀλέκτωρ\",\"h\":[[7],[9,10]],\"pos\":\"[1][7]\",\"parent\":0,\"children\":7}],[{\"t\":\"κηρύσσων\",\"h\":[[8],[12]],\"pos\":\"[1][8]\",\"parent\":0,\"children\":8},{\"t\":\"φθονερὴν\",\"h\":[[9],[18]],\"pos\":\"[1][9]\",\"parent\":0,\"children\":9},{\"t\":\"Ἠριγένειαν\",\"h\":[[10],[16,17]],\"pos\":\"[1][10]\",\"parent\":0,\"children\":10},{\"t\":\"ἄγει\",\"h\":[[11],[13,14,15]],\"pos\":\"[1][11]\",\"parent\":0,\"children\":11},{\"p\":\".\"}],[{\"t\":\"ὀρνίθων\",\"h\":[[12],[26,27]],\"pos\":\"[1][12]\",\"parent\":0,\"children\":12},{\"t\":\"ἔρροις\",\"h\":[[13],[19,20,21,22]],\"pos\":\"[1][13]\",\"parent\":0,\"children\":13},{\"t\":\"φθονερώτατος\",\"h\":[[14],[23,24,25]],\"pos\":\"[1][14]\",\"parent\":0,\"children\":14},{\"p\":\",\"},{\"t\":\"ὅς\",\"h\":[[15],[28]],\"pos\":\"[1][15]\",\"parent\":0,\"children\":15},{\"t\":\"με\",\"h\":[[16],[29]],\"pos\":\"[1][16]\",\"parent\":0,\"children\":16},{\"t\":\"διώκεις\",\"h\":[[17],[30]],\"pos\":\"[1][17]\",\"parent\":0,\"children\":17}],[{\"t\":\"οἴκοθεν\",\"h\":[[18],[31,32,33,34]],\"pos\":\"[1][18]\",\"parent\":0,\"children\":18},{\"t\":\"εἰς\",\"h\":[[19],[35]],\"pos\":\"[1][19]\",\"parent\":0,\"children\":19},{\"t\":\"πολλοὺς\",\"h\":[[20],[36,37]],\"pos\":\"[1][20]\",\"parent\":0,\"children\":20},{\"t\":\"ἠιθέων\",\"h\":[[21],[39,40]],\"pos\":\"[1][21]\",\"parent\":0,\"children\":21},{\"t\":\"ὀάρους\",\"h\":[[22],[38]],\"pos\":\"[1][22]\",\"parent\":0,\"children\":22},{\"p\":\".\"}],[],[{\"t\":\"γηράσκεις\",\"h\":[[23],[41,42]],\"pos\":\"[1][23]\",\"parent\":0,\"children\":23},{\"p\":\",\"},{\"t\":\"Τιθωνέ\",\"h\":[[24],[43]],\"pos\":\"[1][24]\",\"parent\":0,\"children\":24},{\"p\":\":\"},{\"t\":\"τί\",\"h\":[[25],[44]],\"pos\":\"[1][25]\",\"parent\":0,\"children\":25},{\"t\":\"γὰρ\",\"h\":[[26],[45]],\"pos\":\"[1][26]\",\"parent\":0,\"children\":26},{\"t\":\"σὴν\",\"h\":[[27],[48]],\"pos\":\"[1][27]\",\"parent\":0,\"children\":27},{\"t\":\"εὐνέτιν\",\"h\":[[28],[49]],\"pos\":\"[1][28]\",\"parent\":0,\"children\":28},{\"t\":\"Ἠῶ\",\"h\":[[29],[50]],\"pos\":\"[1][29]\",\"parent\":0,\"children\":29}],[{\"t\":\"οὕτως\",\"h\":[[30],[46]],\"pos\":\"[1][30]\",\"parent\":0,\"children\":30},{\"t\":\"ὀρθριδίην\",\"h\":[[31],[53,54]],\"pos\":\"[1][31]\",\"parent\":0,\"children\":31},{\"t\":\"ἤλασας\",\"h\":[[32],[47]],\"pos\":\"[1][32]\",\"parent\":0,\"children\":32},{\"t\":\"ἐκ\",\"h\":[[33],[51]],\"pos\":\"[1][33]\",\"parent\":0,\"children\":33},{\"t\":\"λεχέων\",\"h\":[[34],[52]],\"pos\":\"[1][34]\",\"parent\":0,\"children\":34},{\"p\":\";\"}]],[[{\"t\":\"Le\",\"h\":[[1],[1,2]],\"pos\":\"[2][1]\",\"parent\":1,\"children\":1},{\"t\":\"jour\",\"h\":[[1],[1,2]],\"pos\":\"[2][2]\",\"parent\":1,\"children\":2},{\"t\":\"se\",\"h\":[[2],[3,4]],\"pos\":\"[2][3]\",\"parent\":1,\"children\":3},{\"t\":\"lève\",\"h\":[[2],[3,4]],\"pos\":\"[2][4]\",\"parent\":1,\"children\":4},{\"p\":\",\"},{\"t\":\"Chrysille\",\"h\":[[3],[5]],\"pos\":\"[2][5]\",\"parent\":1,\"children\":5},{\"p\":\",\"},{\"t\":\"et\",\"h\":[[4,5],[6,7,8]],\"pos\":\"[2][6]\",\"parent\":1,\"children\":6},{\"t\":\"depuis\",\"h\":[[4,5],[6,7,8]],\"pos\":\"[2][7]\",\"parent\":1,\"children\":7},{\"t\":\"longtemps\",\"h\":[[4,5],[6,7,8]],\"pos\":\"[2][8]\",\"parent\":1,\"children\":8},{\"p\":\",\"},{\"t\":\"le\",\"h\":[[7],[9,10]],\"pos\":\"[2][9]\",\"parent\":1,\"children\":9},{\"t\":\"coq\",\"h\":[[7],[9,10]],\"pos\":\"[2][10]\",\"parent\":1,\"children\":10},{\"t\":\"matinier\",\"h\":[[6],[11]],\"pos\":\"[2][11]\",\"parent\":1,\"children\":11}],[{\"t\":\"chantant\",\"h\":[[8],[12]],\"pos\":\"[2][12]\",\"parent\":1,\"children\":12},{\"t\":\"a\",\"h\":[[11],[13,14,15]],\"pos\":\"[2][13]\",\"parent\":1,\"children\":13},{\"t\":\"fait\",\"h\":[[11],[13,14,15]],\"pos\":\"[2][14]\",\"parent\":1,\"children\":14},{\"t\":\"apparaître\",\"h\":[[11],[13,14,15]],\"pos\":\"[2][15]\",\"parent\":1,\"children\":15},{\"t\":\"l\",\"h\":[[10],[16,17]],\"pos\":\"[2][16]\",\"parent\":1,\"children\":16},{\"p\":\"’\"},{\"t\":\"Aurore\",\"h\":[[10],[16,17]],\"pos\":\"[2][17]\",\"parent\":1,\"children\":17},{\"t\":\"envieuse\",\"h\":[[9],[18]],\"pos\":\"[2][18]\",\"parent\":1,\"children\":18},{\"p\":\".\"}],[{\"t\":\"Va\",\"h\":[[13],[19,20,21,22]],\"pos\":\"[2][19]\",\"parent\":1,\"children\":19},{\"t\":\"au\",\"h\":[[13],[19,20,21,22]],\"pos\":\"[2][20]\",\"parent\":1,\"children\":20},{\"t\":\"diable\",\"h\":[[13],[19,20,21,22]],\"pos\":\"[2][21]\",\"parent\":1,\"children\":21},{\"t\":\"toi\",\"h\":[[13],[19,20,21,22]],\"pos\":\"[2][22]\",\"parent\":1,\"children\":22},{\"p\":\",\"},{\"t\":\"le\",\"h\":[[14],[23,24,25]],\"pos\":\"[2][23]\",\"parent\":1,\"children\":23},{\"t\":\"plus\",\"h\":[[14],[23,24,25]],\"pos\":\"[2][24]\",\"parent\":1,\"children\":24},{\"t\":\"jaloux\",\"h\":[[14],[23,24,25]],\"pos\":\"[2][25]\",\"parent\":1,\"children\":25},{\"t\":\"des\",\"h\":[[12],[26,27]],\"pos\":\"[2][26]\",\"parent\":1,\"children\":26},{\"t\":\"oiseaux\",\"h\":[[12],[26,27]],\"pos\":\"[2][27]\",\"parent\":1,\"children\":27},{\"p\":\",\"},{\"t\":\"qui\",\"h\":[[15],[28]],\"pos\":\"[2][28]\",\"parent\":1,\"children\":28},{\"t\":\"me\",\"h\":[[16],[29]],\"pos\":\"[2][29]\",\"parent\":1,\"children\":29},{\"t\":\"presse\",\"h\":[[17],[30]],\"pos\":\"[2][30]\",\"parent\":1,\"children\":30}],[{\"t\":\"hors\",\"h\":[[18],[31,32,33,34]],\"pos\":\"[2][31]\",\"parent\":1,\"children\":31},{\"t\":\"de\",\"h\":[[18],[31,32,33,34]],\"pos\":\"[2][32]\",\"parent\":1,\"children\":32},{\"t\":\"la\",\"h\":[[18],[31,32,33,34]],\"pos\":\"[2][33]\",\"parent\":1,\"children\":33},{\"t\":\"maison\",\"h\":[[18],[31,32,33,34]],\"pos\":\"[2][34]\",\"parent\":1,\"children\":34},{\"t\":\"vers\",\"h\":[[19],[35]],\"pos\":\"[2][35]\",\"parent\":1,\"children\":35},{\"t\":\"les\",\"h\":[[20],[36,37]],\"pos\":\"[2][36]\",\"parent\":1,\"children\":36},{\"t\":\"nombreux\",\"h\":[[20],[36,37]],\"pos\":\"[2][37]\",\"parent\":1,\"children\":37},{\"t\":\"chants\",\"h\":[[22],[38]],\"pos\":\"[2][38]\",\"parent\":1,\"children\":38},{\"t\":\"des\",\"h\":[[21],[39,40]],\"pos\":\"[2][39]\",\"parent\":1,\"children\":39},{\"t\":\"célibataires\",\"h\":[[21],[39,40]],\"pos\":\"[2][40]\",\"parent\":1,\"children\":40},{\"p\":\".\"}],[{\"t\":\"Tu\",\"h\":[[23],[41,42]],\"pos\":\"[2][41]\",\"parent\":1,\"children\":41},{\"t\":\"vieillis\",\"h\":[[23],[41,42]],\"pos\":\"[2][42]\",\"parent\":1,\"children\":42},{\"p\":\",\"},{\"t\":\"Tithon\",\"h\":[[24],[43]],\"pos\":\"[2][43]\",\"parent\":1,\"children\":43},{\"p\":\";\"},{\"t\":\"pourquoi\",\"h\":[[25],[44]],\"pos\":\"[2][44]\",\"parent\":1,\"children\":44},{\"t\":\"sinon\",\"h\":[[26],[45]],\"pos\":\"[2][45]\",\"parent\":1,\"children\":45},{\"t\":\"tu\",\"h\":[[30],[46]],\"pos\":\"[2][46]\",\"parent\":1,\"children\":46},{\"t\":\"chasses\",\"h\":[[32],[47]],\"pos\":\"[2][47]\",\"parent\":1,\"children\":47},{\"t\":\"ton\",\"h\":[[27],[48]],\"pos\":\"[2][48]\",\"parent\":1,\"children\":48},{\"t\":\"épouse\",\"h\":[[28],[49]],\"pos\":\"[2][49]\",\"parent\":1,\"children\":49},{\"t\":\"Aurore\",\"h\":[[29],[50]],\"pos\":\"[2][50]\",\"parent\":1,\"children\":50}],[{\"t\":\"du\",\"h\":[[33],[51]],\"pos\":\"[2][51]\",\"parent\":1,\"children\":51},{\"t\":\"lit\",\"h\":[[34],[52]],\"pos\":\"[2][52]\",\"parent\":1,\"children\":52},{\"t\":\"si\",\"h\":[[31],[53,54]],\"pos\":\"[2][53]\",\"parent\":1,\"children\":53},{\"t\":\"tôt\",\"h\":[[31],[53,54]],\"pos\":\"[2][54]\",\"parent\":1,\"children\":54},{\"p\":\"?\"}]]]', 2, NULL, '2017-09-15 11:29:51', '2017-09-15 11:29:51');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(28, 32, 82, 4, 85, 2, '[[[{\"t\":\"Τί\",\"h\":[[1],[1]],\"pos\":\"[1][1]\",\"parent\":0,\"children\":1},{\"t\":\"χρή\",\"h\":[[2],[2,3]],\"pos\":\"[1][2]\",\"parent\":0,\"children\":2},{\"p\":\",\"},{\"t\":\"τί\",\"h\":[[3],[5]],\"pos\":\"[1][3]\",\"parent\":0,\"children\":3},{\"t\":\"χρή\",\"h\":[[4],[6,7]],\"pos\":\"[1][4]\",\"parent\":0,\"children\":4},{\"t\":\"με\",\"h\":[[5],[8,9]],\"pos\":\"[1][5]\",\"parent\":0,\"children\":5},{\"p\":\",\"},{\"t\":\"δέσποτ\",\"h\":[[6],[4]],\"pos\":\"[1][6]\",\"parent\":0,\"children\":6},{\"p\":\"\'\"},{\"p\":\",\"},{\"t\":\"ἐν\",\"h\":[[7,8],[11,12,13]],\"pos\":\"[1][7]\",\"parent\":0,\"children\":7},{\"t\":\"ξένᾳ\",\"h\":[[7,8],[11,12,13]],\"pos\":\"[1][8]\",\"parent\":0,\"children\":8},{\"t\":\"ξένον\",\"h\":[[9],[10]],\"pos\":\"[1][9]\",\"parent\":0,\"children\":9}],[{\"t\":\"στέγειν\",\"h\":[[10],[18,19]],\"pos\":\"[1][10]\",\"parent\":0,\"children\":10},{\"p\":\",\"},{\"t\":\"ἢ\",\"h\":[[11],[20]],\"pos\":\"[1][11]\",\"parent\":0,\"children\":11},{\"t\":\"τί\",\"h\":[[12],[14]],\"pos\":\"[1][12]\",\"parent\":0,\"children\":12},{\"t\":\"λέγειν\",\"h\":[[13],[22,23]],\"pos\":\"[1][13]\",\"parent\":0,\"children\":13},{\"t\":\"πρὸς\",\"h\":[[14],[]],\"pos\":\"[1][14]\",\"parent\":0,\"children\":14},{\"t\":\"ἄνδρ\",\"h\":[[15],[]],\"pos\":\"[1][15]\",\"parent\":0,\"children\":15},{\"p\":\"\'\"},{\"t\":\"ὑπόπταν\",\"h\":[[16],[27]],\"pos\":\"[1][16]\",\"parent\":0,\"children\":16},{\"p\":\";\"}],[{\"t\":\"Φράζε\",\"h\":[[17],[]],\"pos\":\"[1][17]\",\"parent\":0,\"children\":17},{\"t\":\"μοι\",\"h\":[[18],[]],\"pos\":\"[1][18]\",\"parent\":0,\"children\":18},{\"p\":\"·\"}],[{\"t\":\"τέχνα\",\"h\":[[19],[31,32]],\"pos\":\"[1][19]\",\"parent\":0,\"children\":19},{\"t\":\"γὰρ\",\"h\":[[20],[30]],\"pos\":\"[1][20]\",\"parent\":0,\"children\":20},{\"t\":\"τέχνας\",\"h\":[[21],[36]],\"pos\":\"[1][21]\",\"parent\":0,\"children\":21},{\"t\":\"ἑτέρας\",\"h\":[[22],[34,35]],\"pos\":\"[1][22]\",\"parent\":0,\"children\":22}],[{\"t\":\"προύχει\",\"h\":[[23],[33]],\"pos\":\"[1][23]\",\"parent\":0,\"children\":23},{\"t\":\"καὶ\",\"h\":[[24],[37,38,39,40]],\"pos\":\"[1][24]\",\"parent\":0,\"children\":24},{\"t\":\"γνώμα\",\"h\":[[25],[41,42]],\"pos\":\"[1][25]\",\"parent\":0,\"children\":25},{\"t\":\"παρ\",\"h\":[[26,27],[43,44,45]],\"pos\":\"[1][26]\",\"parent\":0,\"children\":26},{\"p\":\"\'\"},{\"t\":\"ὅτῳ\",\"h\":[[26,27],[43,44,45]],\"pos\":\"[1][27]\",\"parent\":0,\"children\":27},{\"t\":\"τὸ\",\"h\":[[28],[]],\"pos\":\"[1][28]\",\"parent\":0,\"children\":28},{\"t\":\"θεῖον\",\"h\":[[29],[]],\"pos\":\"[1][29]\",\"parent\":0,\"children\":29}],[{\"t\":\"Διὸς\",\"h\":[[30],[51,52]],\"pos\":\"[1][30]\",\"parent\":0,\"children\":30},{\"t\":\"σκῆπτρον\",\"h\":[[31],[50]],\"pos\":\"[1][31]\",\"parent\":0,\"children\":31},{\"t\":\"ἀνάσσεται\",\"h\":[[32],[47]],\"pos\":\"[1][32]\",\"parent\":0,\"children\":32},{\"p\":\"·\"}],[{\"t\":\"σὲ\",\"h\":[[33],[]],\"pos\":\"[1][33]\",\"parent\":0,\"children\":33},{\"t\":\"δ\",\"h\":[[34],[]],\"pos\":\"[1][34]\",\"parent\":0,\"children\":34},{\"p\":\"\'\"},{\"p\":\",\"},{\"t\":\"ὦ\",\"h\":[[35],[]],\"pos\":\"[1][35]\",\"parent\":0,\"children\":35},{\"t\":\"τέκνον\",\"h\":[[36],[]],\"pos\":\"[1][36]\",\"parent\":0,\"children\":36},{\"p\":\",\"},{\"t\":\"τόδ\",\"h\":[[37],[]],\"pos\":\"[1][37]\",\"parent\":0,\"children\":37},{\"p\":\"\'\"},{\"t\":\"ἐλήλυθεν\",\"h\":[[38],[]],\"pos\":\"[1][38]\",\"parent\":0,\"children\":38}],[{\"t\":\"πᾶν\",\"h\":[[39],[]],\"pos\":\"[1][39]\",\"parent\":0,\"children\":39},{\"t\":\"κράτος\",\"h\":[[40],[]],\"pos\":\"[1][40]\",\"parent\":0,\"children\":40},{\"t\":\"ὠγύγιον\",\"h\":[[41],[]],\"pos\":\"[1][41]\",\"parent\":0,\"children\":41},{\"p\":\"·\"},{\"t\":\"τό\",\"h\":[[42],[]],\"pos\":\"[1][42]\",\"parent\":0,\"children\":42},{\"t\":\"μοι\",\"h\":[[43],[]],\"pos\":\"[1][43]\",\"parent\":0,\"children\":43},{\"t\":\"ἔννεπε\",\"h\":[[44],[]],\"pos\":\"[1][44]\",\"parent\":0,\"children\":44}],[{\"t\":\"τί\",\"h\":[[45],[]],\"pos\":\"[1][45]\",\"parent\":0,\"children\":45},{\"t\":\"σοι\",\"h\":[[46],[]],\"pos\":\"[1][46]\",\"parent\":0,\"children\":46},{\"t\":\"χρεὼν\",\"h\":[[47],[]],\"pos\":\"[1][47]\",\"parent\":0,\"children\":47},{\"t\":\"ὑπουργεῖν\",\"h\":[[48],[]],\"pos\":\"[1][48]\",\"parent\":0,\"children\":48},{\"p\":\".\"}],[],[{\"p\":\"{\"},{\"t\":\"ΝΕ\",\"h\":[[49],[]],\"pos\":\"[1][49]\",\"parent\":0,\"children\":49},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Νῦν\",\"h\":[[50],[]],\"pos\":\"[1][50]\",\"parent\":0,\"children\":50},{\"t\":\"μέν\",\"h\":[[51],[]],\"pos\":\"[1][51]\",\"parent\":0,\"children\":51},{\"p\":\",\"},{\"t\":\"ἴσως\",\"h\":[[52],[]],\"pos\":\"[1][52]\",\"parent\":0,\"children\":52},{\"t\":\"γὰρ\",\"h\":[[53],[]],\"pos\":\"[1][53]\",\"parent\":0,\"children\":53},{\"t\":\"τόπον\",\"h\":[[54],[]],\"pos\":\"[1][54]\",\"parent\":0,\"children\":54},{\"t\":\"ἐσχατιαῖς\",\"h\":[[55],[]],\"pos\":\"[1][55]\",\"parent\":0,\"children\":55}],[{\"t\":\"προσιδεῖν\",\"h\":[[56],[]],\"pos\":\"[1][56]\",\"parent\":0,\"children\":56},{\"t\":\"ἐθέλεις\",\"h\":[[57],[]],\"pos\":\"[1][57]\",\"parent\":0,\"children\":57},{\"t\":\"ὅντινα\",\"h\":[[58],[]],\"pos\":\"[1][58]\",\"parent\":0,\"children\":58},{\"t\":\"κεῖται\",\"h\":[[59],[]],\"pos\":\"[1][59]\",\"parent\":0,\"children\":59},{\"p\":\",\"}],[{\"t\":\"δέρκου\",\"h\":[[60],[]],\"pos\":\"[1][60]\",\"parent\":0,\"children\":60},{\"t\":\"θαρσῶν\",\"h\":[[61],[]],\"pos\":\"[1][61]\",\"parent\":0,\"children\":61},{\"p\":\"·\"},{\"t\":\"ὁπόταν\",\"h\":[[62],[]],\"pos\":\"[1][62]\",\"parent\":0,\"children\":62},{\"t\":\"δὲ\",\"h\":[[63],[]],\"pos\":\"[1][63]\",\"parent\":0,\"children\":63},{\"t\":\"μόλῃ\",\"h\":[[64],[]],\"pos\":\"[1][64]\",\"parent\":0,\"children\":64}],[{\"t\":\"δεινὸς\",\"h\":[[65],[]],\"pos\":\"[1][65]\",\"parent\":0,\"children\":65},{\"t\":\"ὁδίτης\",\"h\":[[66],[]],\"pos\":\"[1][66]\",\"parent\":0,\"children\":66},{\"p\":\",\"},{\"t\":\"τῶνδ\",\"h\":[[67],[]],\"pos\":\"[1][67]\",\"parent\":0,\"children\":67},{\"p\":\"\'\"},{\"t\":\"οὑκ\",\"h\":[[68],[]],\"pos\":\"[1][68]\",\"parent\":0,\"children\":68},{\"t\":\"μελάθρων\",\"h\":[[69],[]],\"pos\":\"[1][69]\",\"parent\":0,\"children\":69}],[{\"t\":\"πρὸς\",\"h\":[[70],[]],\"pos\":\"[1][70]\",\"parent\":0,\"children\":70},{\"t\":\"ἐμὴν\",\"h\":[[71],[]],\"pos\":\"[1][71]\",\"parent\":0,\"children\":71},{\"t\":\"αἰεὶ\",\"h\":[[72],[]],\"pos\":\"[1][72]\",\"parent\":0,\"children\":72},{\"t\":\"χεῖρα\",\"h\":[[73],[]],\"pos\":\"[1][73]\",\"parent\":0,\"children\":73},{\"t\":\"προχωρῶν\",\"h\":[[74],[]],\"pos\":\"[1][74]\",\"parent\":0,\"children\":74}],[{\"t\":\"πειρῶ\",\"h\":[[75],[]],\"pos\":\"[1][75]\",\"parent\":0,\"children\":75},{\"t\":\"τὸ\",\"h\":[[76],[]],\"pos\":\"[1][76]\",\"parent\":0,\"children\":76},{\"t\":\"παρὸν\",\"h\":[[77],[]],\"pos\":\"[1][77]\",\"parent\":0,\"children\":77},{\"t\":\"θεραπεύειν\",\"h\":[[78],[]],\"pos\":\"[1][78]\",\"parent\":0,\"children\":78},{\"p\":\".\"}],[],[{\"p\":\"{\"},{\"t\":\"ΧΟ\",\"h\":[[79],[]],\"pos\":\"[1][79]\",\"parent\":0,\"children\":79},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Μέλον\",\"h\":[[80],[]],\"pos\":\"[1][80]\",\"parent\":0,\"children\":80},{\"t\":\"πάλαι\",\"h\":[[81],[]],\"pos\":\"[1][81]\",\"parent\":0,\"children\":81},{\"t\":\"μέλημά\",\"h\":[[82],[]],\"pos\":\"[1][82]\",\"parent\":0,\"children\":82},{\"t\":\"μοι\",\"h\":[[83],[]],\"pos\":\"[1][83]\",\"parent\":0,\"children\":83},{\"t\":\"λέγεις\",\"h\":[[84],[]],\"pos\":\"[1][84]\",\"parent\":0,\"children\":84},{\"p\":\",\"},{\"t\":\"ἄναξ\",\"h\":[[85],[]],\"pos\":\"[1][85]\",\"parent\":0,\"children\":85},{\"p\":\",\"}],[{\"t\":\"φρουρεῖν\",\"h\":[[86],[]],\"pos\":\"[1][86]\",\"parent\":0,\"children\":86},{\"t\":\"ὄμμ\",\"h\":[[87],[]],\"pos\":\"[1][87]\",\"parent\":0,\"children\":87},{\"p\":\"\'\"},{\"t\":\"ἐπὶ\",\"h\":[[88],[]],\"pos\":\"[1][88]\",\"parent\":0,\"children\":88},{\"t\":\"σῷ\",\"h\":[[89],[]],\"pos\":\"[1][89]\",\"parent\":0,\"children\":89},{\"t\":\"μάλιστα\",\"h\":[[90],[]],\"pos\":\"[1][90]\",\"parent\":0,\"children\":90},{\"t\":\"καιρῷ\",\"h\":[[91],[]],\"pos\":\"[1][91]\",\"parent\":0,\"children\":91},{\"p\":\"·\"}],[{\"t\":\"νῦν\",\"h\":[[92],[]],\"pos\":\"[1][92]\",\"parent\":0,\"children\":92},{\"t\":\"δέ\",\"h\":[[93],[]],\"pos\":\"[1][93]\",\"parent\":0,\"children\":93},{\"t\":\"μοι\",\"h\":[[94],[]],\"pos\":\"[1][94]\",\"parent\":0,\"children\":94}],[{\"t\":\"λέγ\",\"h\":[[95],[]],\"pos\":\"[1][95]\",\"parent\":0,\"children\":95},{\"p\":\"\'\"},{\"t\":\"αὐλὰς\",\"h\":[[96],[]],\"pos\":\"[1][96]\",\"parent\":0,\"children\":96},{\"t\":\"ποίας\",\"h\":[[97],[]],\"pos\":\"[1][97]\",\"parent\":0,\"children\":97},{\"t\":\"ἔνεδρος\",\"h\":[[98],[]],\"pos\":\"[1][98]\",\"parent\":0,\"children\":98}],[{\"t\":\"ναίει\",\"h\":[[99],[]],\"pos\":\"[1][99]\",\"parent\":0,\"children\":99},{\"t\":\"καὶ\",\"h\":[[100],[]],\"pos\":\"[1][100]\",\"parent\":0,\"children\":100},{\"t\":\"χῶρον\",\"h\":[[101],[]],\"pos\":\"[1][101]\",\"parent\":0,\"children\":101},{\"t\":\"τίν\",\"h\":[[102],[]],\"pos\":\"[1][102]\",\"parent\":0,\"children\":102},{\"p\":\"\'\"},{\"t\":\"ἔχει\",\"h\":[[103],[]],\"pos\":\"[1][103]\",\"parent\":0,\"children\":103},{\"p\":\"·\"},{\"t\":\"τὸ\",\"h\":[[104],[]],\"pos\":\"[1][104]\",\"parent\":0,\"children\":104},{\"t\":\"γάρ\",\"h\":[[105],[]],\"pos\":\"[1][105]\",\"parent\":0,\"children\":105},{\"t\":\"μοι\",\"h\":[[106],[]],\"pos\":\"[1][106]\",\"parent\":0,\"children\":106}],[{\"t\":\"μαθεῖν\",\"h\":[[107],[]],\"pos\":\"[1][107]\",\"parent\":0,\"children\":107},{\"t\":\"οὐκ\",\"h\":[[108],[]],\"pos\":\"[1][108]\",\"parent\":0,\"children\":108},{\"t\":\"ἀποκαίριον\",\"h\":[[109],[]],\"pos\":\"[1][109]\",\"parent\":0,\"children\":109},{\"p\":\",\"}],[{\"t\":\"μὴ\",\"h\":[[110],[]],\"pos\":\"[1][110]\",\"parent\":0,\"children\":110},{\"t\":\"προσπεσών\",\"h\":[[111],[]],\"pos\":\"[1][111]\",\"parent\":0,\"children\":111},{\"t\":\"με\",\"h\":[[112],[]],\"pos\":\"[1][112]\",\"parent\":0,\"children\":112},{\"t\":\"λάθῃ\",\"h\":[[113],[]],\"pos\":\"[1][113]\",\"parent\":0,\"children\":113},{\"t\":\"ποθέν\",\"h\":[[114],[]],\"pos\":\"[1][114]\",\"parent\":0,\"children\":114},{\"p\":\"·\"}],[{\"t\":\"τίς\",\"h\":[[115],[]],\"pos\":\"[1][115]\",\"parent\":0,\"children\":115},{\"t\":\"τόπος\",\"h\":[[116],[]],\"pos\":\"[1][116]\",\"parent\":0,\"children\":116},{\"t\":\"ἢ\",\"h\":[[117],[]],\"pos\":\"[1][117]\",\"parent\":0,\"children\":117},{\"t\":\"τίς\",\"h\":[[118],[]],\"pos\":\"[1][118]\",\"parent\":0,\"children\":118},{\"t\":\"ἕδρα\",\"h\":[[119],[]],\"pos\":\"[1][119]\",\"parent\":0,\"children\":119},{\"p\":\",\"},{\"t\":\"τίν\",\"h\":[[120],[]],\"pos\":\"[1][120]\",\"parent\":0,\"children\":120},{\"p\":\"\'\"},{\"t\":\"ἔχει\",\"h\":[[121],[]],\"pos\":\"[1][121]\",\"parent\":0,\"children\":121},{\"t\":\"στίβον\",\"h\":[[122],[]],\"pos\":\"[1][122]\",\"parent\":0,\"children\":122},{\"p\":\",\"}],[{\"t\":\"ἔναυλον\",\"h\":[[123],[]],\"pos\":\"[1][123]\",\"parent\":0,\"children\":123},{\"t\":\"ἢ\",\"h\":[[124],[]],\"pos\":\"[1][124]\",\"parent\":0,\"children\":124},{\"t\":\"θυραῖον\",\"h\":[[125],[]],\"pos\":\"[1][125]\",\"parent\":0,\"children\":125},{\"p\":\";\"}],[],[{\"p\":\"{\"},{\"t\":\"ΝΕ\",\"h\":[[126],[]],\"pos\":\"[1][126]\",\"parent\":0,\"children\":126},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Οἶκον\",\"h\":[[127],[]],\"pos\":\"[1][127]\",\"parent\":0,\"children\":127},{\"t\":\"μὲν\",\"h\":[[128],[]],\"pos\":\"[1][128]\",\"parent\":0,\"children\":128},{\"t\":\"ὁρᾷς\",\"h\":[[129],[]],\"pos\":\"[1][129]\",\"parent\":0,\"children\":129},{\"t\":\"τόνδ\",\"h\":[[130],[]],\"pos\":\"[1][130]\",\"parent\":0,\"children\":130},{\"p\":\"\'\"},{\"t\":\"ἀμφίθυρον\",\"h\":[[131],[]],\"pos\":\"[1][131]\",\"parent\":0,\"children\":131}],[{\"t\":\"πετρίνης\",\"h\":[[132],[]],\"pos\":\"[1][132]\",\"parent\":0,\"children\":132},{\"t\":\"κοίτης\",\"h\":[[133],[]],\"pos\":\"[1][133]\",\"parent\":0,\"children\":133},{\"p\":\".\"}],[],[{\"p\":\"{\"},{\"t\":\"ΧΟ\",\"h\":[[134],[]],\"pos\":\"[1][134]\",\"parent\":0,\"children\":134},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Ποῦ\",\"h\":[[135],[]],\"pos\":\"[1][135]\",\"parent\":0,\"children\":135},{\"t\":\"γὰρ\",\"h\":[[136],[]],\"pos\":\"[1][136]\",\"parent\":0,\"children\":136},{\"t\":\"ὁ\",\"h\":[[137],[]],\"pos\":\"[1][137]\",\"parent\":0,\"children\":137},{\"t\":\"τλάμων\",\"h\":[[138],[]],\"pos\":\"[1][138]\",\"parent\":0,\"children\":138},{\"t\":\"αὐτὸς\",\"h\":[[139],[]],\"pos\":\"[1][139]\",\"parent\":0,\"children\":139},{\"t\":\"ἄπεστιν\",\"h\":[[140],[]],\"pos\":\"[1][140]\",\"parent\":0,\"children\":140},{\"p\":\";\"}],[],[{\"p\":\"{\"},{\"t\":\"ΝΕ\",\"h\":[[141],[]],\"pos\":\"[1][141]\",\"parent\":0,\"children\":141},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Δῆλον\",\"h\":[[142],[]],\"pos\":\"[1][142]\",\"parent\":0,\"children\":142},{\"t\":\"ἔμοιγ\",\"h\":[[143],[]],\"pos\":\"[1][143]\",\"parent\":0,\"children\":143},{\"p\":\"\'\"},{\"t\":\"ὡς\",\"h\":[[144],[]],\"pos\":\"[1][144]\",\"parent\":0,\"children\":144},{\"t\":\"φορβῆς\",\"h\":[[145],[]],\"pos\":\"[1][145]\",\"parent\":0,\"children\":145},{\"t\":\"χρείᾳ\",\"h\":[[146],[]],\"pos\":\"[1][146]\",\"parent\":0,\"children\":146}],[{\"t\":\"στίβον\",\"h\":[[147],[]],\"pos\":\"[1][147]\",\"parent\":0,\"children\":147},{\"t\":\"ὀγμεύει\",\"h\":[[148],[]],\"pos\":\"[1][148]\",\"parent\":0,\"children\":148},{\"t\":\"τῇδε\",\"h\":[[149],[]],\"pos\":\"[1][149]\",\"parent\":0,\"children\":149},{\"t\":\"πέλας\",\"h\":[[150],[]],\"pos\":\"[1][150]\",\"parent\":0,\"children\":150},{\"t\":\"που\",\"h\":[[151],[]],\"pos\":\"[1][151]\",\"parent\":0,\"children\":151},{\"p\":\".\"}],[{\"t\":\"ταύτην\",\"h\":[[152],[]],\"pos\":\"[1][152]\",\"parent\":0,\"children\":152},{\"t\":\"γὰρ\",\"h\":[[153],[]],\"pos\":\"[1][153]\",\"parent\":0,\"children\":153},{\"t\":\"ἔχειν\",\"h\":[[154],[]],\"pos\":\"[1][154]\",\"parent\":0,\"children\":154},{\"t\":\"βιοτῆς\",\"h\":[[155],[]],\"pos\":\"[1][155]\",\"parent\":0,\"children\":155},{\"t\":\"αὐτὸν\",\"h\":[[156],[]],\"pos\":\"[1][156]\",\"parent\":0,\"children\":156}],[{\"t\":\"λόγος\",\"h\":[[157],[]],\"pos\":\"[1][157]\",\"parent\":0,\"children\":157},{\"t\":\"ἐστὶ\",\"h\":[[158],[]],\"pos\":\"[1][158]\",\"parent\":0,\"children\":158},{\"t\":\"φύσιν\",\"h\":[[159],[]],\"pos\":\"[1][159]\",\"parent\":0,\"children\":159},{\"p\":\",\"},{\"t\":\"θηροβολοῦντα\",\"h\":[[160],[]],\"pos\":\"[1][160]\",\"parent\":0,\"children\":160}],[{\"t\":\"πτηνοῖς\",\"h\":[[161],[]],\"pos\":\"[1][161]\",\"parent\":0,\"children\":161},{\"t\":\"ἰοῖς\",\"h\":[[162],[]],\"pos\":\"[1][162]\",\"parent\":0,\"children\":162},{\"p\":\",\"},{\"t\":\"στυγερὸν\",\"h\":[[163],[]],\"pos\":\"[1][163]\",\"parent\":0,\"children\":163},{\"t\":\"στυγερῶς\",\"h\":[[164],[]],\"pos\":\"[1][164]\",\"parent\":0,\"children\":164},{\"p\":\",\"}],[{\"t\":\"οὐδέ\",\"h\":[[165],[]],\"pos\":\"[1][165]\",\"parent\":0,\"children\":165},{\"t\":\"τιν\",\"h\":[[166],[]],\"pos\":\"[1][166]\",\"parent\":0,\"children\":166},{\"p\":\"\'\"},{\"t\":\"αὐτῷ\",\"h\":[[167],[]],\"pos\":\"[1][167]\",\"parent\":0,\"children\":167}],[{\"t\":\"παιῶνα\",\"h\":[[168],[]],\"pos\":\"[1][168]\",\"parent\":0,\"children\":168},{\"t\":\"κακῶν\",\"h\":[[169],[]],\"pos\":\"[1][169]\",\"parent\":0,\"children\":169},{\"t\":\"ἐπινωμᾶν\",\"h\":[[170],[]],\"pos\":\"[1][170]\",\"parent\":0,\"children\":170},{\"p\":\".\"}],[],[{\"p\":\"{\"},{\"t\":\"ΧΟ\",\"h\":[[171],[]],\"pos\":\"[1][171]\",\"parent\":0,\"children\":171},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Οἰκτίρω\",\"h\":[[172],[]],\"pos\":\"[1][172]\",\"parent\":0,\"children\":172},{\"t\":\"νιν\",\"h\":[[173],[]],\"pos\":\"[1][173]\",\"parent\":0,\"children\":173},{\"t\":\"ἔγωγ\",\"h\":[[174],[]],\"pos\":\"[1][174]\",\"parent\":0,\"children\":174},{\"p\":\"\'\"},{\"p\":\",\"},{\"t\":\"ὅπως\",\"h\":[[175],[]],\"pos\":\"[1][175]\",\"parent\":0,\"children\":175},{\"p\":\",\"}],[{\"t\":\"μή\",\"h\":[[176],[]],\"pos\":\"[1][176]\",\"parent\":0,\"children\":176},{\"t\":\"του\",\"h\":[[177],[]],\"pos\":\"[1][177]\",\"parent\":0,\"children\":177},{\"t\":\"κηδομένου\",\"h\":[[178],[]],\"pos\":\"[1][178]\",\"parent\":0,\"children\":178},{\"t\":\"βροτῶν\",\"h\":[[179],[]],\"pos\":\"[1][179]\",\"parent\":0,\"children\":179},{\"p\":\",\"}],[{\"t\":\"μηδὲ\",\"h\":[[180],[]],\"pos\":\"[1][180]\",\"parent\":0,\"children\":180},{\"t\":\"ξύντροφον\",\"h\":[[181],[]],\"pos\":\"[1][181]\",\"parent\":0,\"children\":181},{\"t\":\"ὄμμ\",\"h\":[[182],[]],\"pos\":\"[1][182]\",\"parent\":0,\"children\":182},{\"p\":\"\'\"},{\"t\":\"ἔχων\",\"h\":[[183],[]],\"pos\":\"[1][183]\",\"parent\":0,\"children\":183},{\"p\":\",\"}],[{\"t\":\"δύστανος\",\"h\":[[184],[]],\"pos\":\"[1][184]\",\"parent\":0,\"children\":184},{\"p\":\",\"},{\"t\":\"μόνος\",\"h\":[[185],[]],\"pos\":\"[1][185]\",\"parent\":0,\"children\":185},{\"t\":\"αἰεί\",\"h\":[[186],[]],\"pos\":\"[1][186]\",\"parent\":0,\"children\":186},{\"p\":\",\"}],[{\"t\":\"νοσεῖ\",\"h\":[[187],[]],\"pos\":\"[1][187]\",\"parent\":0,\"children\":187},{\"t\":\"μὲν\",\"h\":[[188],[]],\"pos\":\"[1][188]\",\"parent\":0,\"children\":188},{\"t\":\"νόσον\",\"h\":[[189],[]],\"pos\":\"[1][189]\",\"parent\":0,\"children\":189},{\"t\":\"ἀγρίαν\",\"h\":[[190],[]],\"pos\":\"[1][190]\",\"parent\":0,\"children\":190},{\"p\":\",\"}],[{\"t\":\"ἀλύει\",\"h\":[[191],[]],\"pos\":\"[1][191]\",\"parent\":0,\"children\":191},{\"t\":\"δ\",\"h\":[[192],[]],\"pos\":\"[1][192]\",\"parent\":0,\"children\":192},{\"p\":\"\'\"},{\"t\":\"ἐπὶ\",\"h\":[[193],[]],\"pos\":\"[1][193]\",\"parent\":0,\"children\":193},{\"t\":\"παντί\",\"h\":[[194],[]],\"pos\":\"[1][194]\",\"parent\":0,\"children\":194},{\"t\":\"τῳ\",\"h\":[[195],[]],\"pos\":\"[1][195]\",\"parent\":0,\"children\":195}],[{\"t\":\"χρείας\",\"h\":[[196],[]],\"pos\":\"[1][196]\",\"parent\":0,\"children\":196},{\"t\":\"ἱσταμένῳ\",\"h\":[[197],[]],\"pos\":\"[1][197]\",\"parent\":0,\"children\":197},{\"p\":\"·\"},{\"t\":\"πῶς\",\"h\":[[198],[]],\"pos\":\"[1][198]\",\"parent\":0,\"children\":198},{\"t\":\"ποτε\",\"h\":[[199],[]],\"pos\":\"[1][199]\",\"parent\":0,\"children\":199},{\"p\":\",\"},{\"t\":\"πῶς\",\"h\":[[200],[]],\"pos\":\"[1][200]\",\"parent\":0,\"children\":200},{\"t\":\"δύσμορος\",\"h\":[[201],[]],\"pos\":\"[1][201]\",\"parent\":0,\"children\":201},{\"t\":\"ἀντέχει\",\"h\":[[202],[]],\"pos\":\"[1][202]\",\"parent\":0,\"children\":202},{\"p\":\";\"}],[{\"t\":\"Ὦ\",\"h\":[[203],[]],\"pos\":\"[1][203]\",\"parent\":0,\"children\":203},{\"t\":\"παλάμαι\",\"h\":[[204],[]],\"pos\":\"[1][204]\",\"parent\":0,\"children\":204},{\"t\":\"θνητῶν\",\"h\":[[205],[]],\"pos\":\"[1][205]\",\"parent\":0,\"children\":205},{\"p\":\",\"}],[{\"t\":\"ὦ\",\"h\":[[206],[]],\"pos\":\"[1][206]\",\"parent\":0,\"children\":206},{\"t\":\"δύστανα\",\"h\":[[207],[]],\"pos\":\"[1][207]\",\"parent\":0,\"children\":207},{\"t\":\"γένη\",\"h\":[[208],[]],\"pos\":\"[1][208]\",\"parent\":0,\"children\":208},{\"t\":\"βροτῶν\",\"h\":[[209],[]],\"pos\":\"[1][209]\",\"parent\":0,\"children\":209}],[{\"t\":\"οἷς\",\"h\":[[210],[]],\"pos\":\"[1][210]\",\"parent\":0,\"children\":210},{\"t\":\"μὴ\",\"h\":[[211],[]],\"pos\":\"[1][211]\",\"parent\":0,\"children\":211},{\"t\":\"μέτριος\",\"h\":[[212],[]],\"pos\":\"[1][212]\",\"parent\":0,\"children\":212},{\"t\":\"αἰών\",\"h\":[[213],[]],\"pos\":\"[1][213]\",\"parent\":0,\"children\":213},{\"p\":\".\"}],[],[{\"t\":\"Οὗτος\",\"h\":[[214],[]],\"pos\":\"[1][214]\",\"parent\":0,\"children\":214},{\"t\":\"πρωτογόνων\",\"h\":[[215],[]],\"pos\":\"[1][215]\",\"parent\":0,\"children\":215},{\"t\":\"ἴσως\",\"h\":[[216],[]],\"pos\":\"[1][216]\",\"parent\":0,\"children\":216}],[{\"t\":\"οἴκων\",\"h\":[[217],[]],\"pos\":\"[1][217]\",\"parent\":0,\"children\":217},{\"t\":\"οὐδενὸς\",\"h\":[[218],[]],\"pos\":\"[1][218]\",\"parent\":0,\"children\":218},{\"t\":\"ὕστερος\",\"h\":[[219],[]],\"pos\":\"[1][219]\",\"parent\":0,\"children\":219},{\"p\":\",\"}],[{\"t\":\"πάντων\",\"h\":[[220],[]],\"pos\":\"[1][220]\",\"parent\":0,\"children\":220},{\"t\":\"ἄμμορος\",\"h\":[[221],[]],\"pos\":\"[1][221]\",\"parent\":0,\"children\":221},{\"t\":\"ἐν\",\"h\":[[222],[]],\"pos\":\"[1][222]\",\"parent\":0,\"children\":222},{\"t\":\"βίῳ\",\"h\":[[223],[]],\"pos\":\"[1][223]\",\"parent\":0,\"children\":223}],[{\"t\":\"κεῖται\",\"h\":[[224],[]],\"pos\":\"[1][224]\",\"parent\":0,\"children\":224},{\"t\":\"μοῦνος\",\"h\":[[225],[]],\"pos\":\"[1][225]\",\"parent\":0,\"children\":225},{\"t\":\"ἀπ\",\"h\":[[226],[]],\"pos\":\"[1][226]\",\"parent\":0,\"children\":226},{\"p\":\"\'\"},{\"t\":\"ἄλλων\",\"h\":[[227],[]],\"pos\":\"[1][227]\",\"parent\":0,\"children\":227},{\"p\":\",\"}],[{\"t\":\"στικτῶν\",\"h\":[[228],[]],\"pos\":\"[1][228]\",\"parent\":0,\"children\":228},{\"t\":\"ἢ\",\"h\":[[229],[]],\"pos\":\"[1][229]\",\"parent\":0,\"children\":229},{\"t\":\"λασίων\",\"h\":[[230],[]],\"pos\":\"[1][230]\",\"parent\":0,\"children\":230},{\"t\":\"μετὰ\",\"h\":[[231],[]],\"pos\":\"[1][231]\",\"parent\":0,\"children\":231}],[{\"t\":\"θηρῶν\",\"h\":[[232],[]],\"pos\":\"[1][232]\",\"parent\":0,\"children\":232},{\"p\":\",\"},{\"t\":\"ἔν\",\"h\":[[233],[]],\"pos\":\"[1][233]\",\"parent\":0,\"children\":233},{\"t\":\"τ\",\"h\":[[234],[]],\"pos\":\"[1][234]\",\"parent\":0,\"children\":234},{\"p\":\"\'\"},{\"t\":\"ὀδύναις\",\"h\":[[235],[]],\"pos\":\"[1][235]\",\"parent\":0,\"children\":235},{\"t\":\"ὁμοῦ\",\"h\":[[236],[]],\"pos\":\"[1][236]\",\"parent\":0,\"children\":236}],[{\"t\":\"λιμῷ\",\"h\":[[237],[]],\"pos\":\"[1][237]\",\"parent\":0,\"children\":237},{\"t\":\"τ\",\"h\":[[238],[]],\"pos\":\"[1][238]\",\"parent\":0,\"children\":238},{\"p\":\"\'\"},{\"t\":\"οἰκτρὸς\",\"h\":[[239],[]],\"pos\":\"[1][239]\",\"parent\":0,\"children\":239},{\"t\":\"ἀνήκεστ\",\"h\":[[240],[]],\"pos\":\"[1][240]\",\"parent\":0,\"children\":240},{\"p\":\"’\"},{\"t\":\"ἀμερίμνητα\",\"h\":[[241],[]],\"pos\":\"[1][241]\",\"parent\":0,\"children\":241},{\"t\":\"τ\",\"h\":[[242],[]],\"pos\":\"[1][242]\",\"parent\":0,\"children\":242},{\"p\":\"’\"},{\"t\":\"ἔχων\",\"h\":[[243],[]],\"pos\":\"[1][243]\",\"parent\":0,\"children\":243},{\"t\":\"βάρη\",\"h\":[[244],[]],\"pos\":\"[1][244]\",\"parent\":0,\"children\":244},{\"p\":\".\"}],[{\"t\":\"ἁ\",\"h\":[[245],[]],\"pos\":\"[1][245]\",\"parent\":0,\"children\":245},{\"t\":\"δ\",\"h\":[[246],[]],\"pos\":\"[1][246]\",\"parent\":0,\"children\":246},{\"p\":\"\'\"},{\"t\":\"ἀθυρόστομος\",\"h\":[[247],[]],\"pos\":\"[1][247]\",\"parent\":0,\"children\":247}],[{\"t\":\"ἀχὼ\",\"h\":[[248],[]],\"pos\":\"[1][248]\",\"parent\":0,\"children\":248},{\"t\":\"τηλεφανὴς\",\"h\":[[249],[]],\"pos\":\"[1][249]\",\"parent\":0,\"children\":249},{\"t\":\"πικραῖς\",\"h\":[[250],[]],\"pos\":\"[1][250]\",\"parent\":0,\"children\":250}],[{\"t\":\"οἰμωγαῖς\",\"h\":[[251],[]],\"pos\":\"[1][251]\",\"parent\":0,\"children\":251},{\"t\":\"ὑπακούει\",\"h\":[[252],[]],\"pos\":\"[1][252]\",\"parent\":0,\"children\":252},{\"p\":\".\"}],[],[{\"p\":\"{\"},{\"t\":\"ΝΕ\",\"h\":[[253],[]],\"pos\":\"[1][253]\",\"parent\":0,\"children\":253},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Οὐδὲν\",\"h\":[[254],[]],\"pos\":\"[1][254]\",\"parent\":0,\"children\":254},{\"t\":\"τούτων\",\"h\":[[255],[]],\"pos\":\"[1][255]\",\"parent\":0,\"children\":255},{\"t\":\"θαυμαστὸν\",\"h\":[[256],[]],\"pos\":\"[1][256]\",\"parent\":0,\"children\":256},{\"t\":\"ἐμοί\",\"h\":[[257],[]],\"pos\":\"[1][257]\",\"parent\":0,\"children\":257},{\"p\":\"·\"}],[{\"t\":\"θεῖα\",\"h\":[[258],[]],\"pos\":\"[1][258]\",\"parent\":0,\"children\":258},{\"t\":\"γάρ\",\"h\":[[259],[]],\"pos\":\"[1][259]\",\"parent\":0,\"children\":259},{\"p\":\",\"},{\"t\":\"εἴπερ\",\"h\":[[260],[]],\"pos\":\"[1][260]\",\"parent\":0,\"children\":260},{\"t\":\"κἀγώ\",\"h\":[[261],[]],\"pos\":\"[1][261]\",\"parent\":0,\"children\":261},{\"t\":\"τι\",\"h\":[[262],[]],\"pos\":\"[1][262]\",\"parent\":0,\"children\":262},{\"t\":\"φρονῶ\",\"h\":[[263],[]],\"pos\":\"[1][263]\",\"parent\":0,\"children\":263},{\"p\":\",\"}],[{\"t\":\"καὶ\",\"h\":[[264],[]],\"pos\":\"[1][264]\",\"parent\":0,\"children\":264},{\"t\":\"τὰ\",\"h\":[[265],[]],\"pos\":\"[1][265]\",\"parent\":0,\"children\":265},{\"t\":\"παθήματα\",\"h\":[[266],[]],\"pos\":\"[1][266]\",\"parent\":0,\"children\":266},{\"t\":\"κεῖνα\",\"h\":[[267],[]],\"pos\":\"[1][267]\",\"parent\":0,\"children\":267},{\"t\":\"πρὸς\",\"h\":[[268],[]],\"pos\":\"[1][268]\",\"parent\":0,\"children\":268},{\"t\":\"αὐτὸν\",\"h\":[[269],[]],\"pos\":\"[1][269]\",\"parent\":0,\"children\":269}],[{\"t\":\"τῆς\",\"h\":[[270],[]],\"pos\":\"[1][270]\",\"parent\":0,\"children\":270},{\"t\":\"ὠμόφρονος\",\"h\":[[271],[]],\"pos\":\"[1][271]\",\"parent\":0,\"children\":271},{\"t\":\"Χρύσης\",\"h\":[[272],[]],\"pos\":\"[1][272]\",\"parent\":0,\"children\":272},{\"t\":\"ἐπέβη\",\"h\":[[273],[]],\"pos\":\"[1][273]\",\"parent\":0,\"children\":273}],[{\"t\":\"καὶ\",\"h\":[[274],[]],\"pos\":\"[1][274]\",\"parent\":0,\"children\":274},{\"t\":\"νῦν\",\"h\":[[275],[]],\"pos\":\"[1][275]\",\"parent\":0,\"children\":275},{\"t\":\"ἃ\",\"h\":[[276],[]],\"pos\":\"[1][276]\",\"parent\":0,\"children\":276},{\"t\":\"πονεῖ\",\"h\":[[277],[]],\"pos\":\"[1][277]\",\"parent\":0,\"children\":277},{\"t\":\"δίχα\",\"h\":[[278],[]],\"pos\":\"[1][278]\",\"parent\":0,\"children\":278},{\"t\":\"κηδεμόνων\",\"h\":[[279],[]],\"pos\":\"[1][279]\",\"parent\":0,\"children\":279},{\"p\":\",\"}],[{\"t\":\"οὐκ\",\"h\":[[280],[]],\"pos\":\"[1][280]\",\"parent\":0,\"children\":280},{\"t\":\"ἔσθ\",\"h\":[[281],[]],\"pos\":\"[1][281]\",\"parent\":0,\"children\":281},{\"p\":\"\'\"},{\"t\":\"ὡς\",\"h\":[[282],[]],\"pos\":\"[1][282]\",\"parent\":0,\"children\":282},{\"t\":\"οὐ\",\"h\":[[283],[]],\"pos\":\"[1][283]\",\"parent\":0,\"children\":283},{\"t\":\"θεῶν\",\"h\":[[284],[]],\"pos\":\"[1][284]\",\"parent\":0,\"children\":284},{\"t\":\"του\",\"h\":[[285],[]],\"pos\":\"[1][285]\",\"parent\":0,\"children\":285},{\"t\":\"μελέτῃ\",\"h\":[[286],[]],\"pos\":\"[1][286]\",\"parent\":0,\"children\":286}],[{\"t\":\"τοῦ\",\"h\":[[287],[]],\"pos\":\"[1][287]\",\"parent\":0,\"children\":287},{\"t\":\"μὴ\",\"h\":[[288],[]],\"pos\":\"[1][288]\",\"parent\":0,\"children\":288},{\"t\":\"πρότερον\",\"h\":[[289],[]],\"pos\":\"[1][289]\",\"parent\":0,\"children\":289},{\"t\":\"τόνδ\",\"h\":[[290],[]],\"pos\":\"[1][290]\",\"parent\":0,\"children\":290},{\"p\":\"\'\"},{\"t\":\"ἐπὶ\",\"h\":[[291],[]],\"pos\":\"[1][291]\",\"parent\":0,\"children\":291},{\"t\":\"Τροίᾳ\",\"h\":[[292],[]],\"pos\":\"[1][292]\",\"parent\":0,\"children\":292}],[{\"t\":\"τεῖναι\",\"h\":[[293],[]],\"pos\":\"[1][293]\",\"parent\":0,\"children\":293},{\"t\":\"τὰ\",\"h\":[[294],[]],\"pos\":\"[1][294]\",\"parent\":0,\"children\":294},{\"t\":\"θεῶν\",\"h\":[[295],[]],\"pos\":\"[1][295]\",\"parent\":0,\"children\":295},{\"t\":\"ἀμάχητα\",\"h\":[[296],[]],\"pos\":\"[1][296]\",\"parent\":0,\"children\":296},{\"t\":\"βέλη\",\"h\":[[297],[]],\"pos\":\"[1][297]\",\"parent\":0,\"children\":297},{\"p\":\",\"}],[{\"t\":\"πρὶν\",\"h\":[[298],[]],\"pos\":\"[1][298]\",\"parent\":0,\"children\":298},{\"t\":\"ὅδ\",\"h\":[[299],[]],\"pos\":\"[1][299]\",\"parent\":0,\"children\":299},{\"p\":\"\'\"},{\"t\":\"ἐξήκοι\",\"h\":[[300],[]],\"pos\":\"[1][300]\",\"parent\":0,\"children\":300},{\"t\":\"χρόνος\",\"h\":[[301],[]],\"pos\":\"[1][301]\",\"parent\":0,\"children\":301},{\"t\":\"ᾧ\",\"h\":[[302],[]],\"pos\":\"[1][302]\",\"parent\":0,\"children\":302},{\"t\":\"λέγεται\",\"h\":[[303],[]],\"pos\":\"[1][303]\",\"parent\":0,\"children\":303}],[{\"t\":\"χρῆναί\",\"h\":[[304],[]],\"pos\":\"[1][304]\",\"parent\":0,\"children\":304},{\"t\":\"σφ\",\"h\":[[305],[]],\"pos\":\"[1][305]\",\"parent\":0,\"children\":305},{\"p\":\"\'\"},{\"t\":\"ὑπὸ\",\"h\":[[306],[]],\"pos\":\"[1][306]\",\"parent\":0,\"children\":306},{\"t\":\"τῶνδε\",\"h\":[[307],[]],\"pos\":\"[1][307]\",\"parent\":0,\"children\":307},{\"t\":\"δαμῆναι\",\"h\":[[308],[]],\"pos\":\"[1][308]\",\"parent\":0,\"children\":308},{\"p\":\".\"}],[],[{\"p\":\"{\"},{\"t\":\"ΧΟ\",\"h\":[[309],[]],\"pos\":\"[1][309]\",\"parent\":0,\"children\":309},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Εὔστομ\",\"h\":[[310],[]],\"pos\":\"[1][310]\",\"parent\":0,\"children\":310},{\"p\":\"\'\"},{\"t\":\"ἔχε\",\"h\":[[311],[]],\"pos\":\"[1][311]\",\"parent\":0,\"children\":311},{\"p\":\",\"},{\"t\":\"παῖ\",\"h\":[[312],[]],\"pos\":\"[1][312]\",\"parent\":0,\"children\":312},{\"p\":\".\"},{\"p\":\"{\"},{\"t\":\"ΝΕ\",\"h\":[[313],[]],\"pos\":\"[1][313]\",\"parent\":0,\"children\":313},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Τί\",\"h\":[[314],[]],\"pos\":\"[1][314]\",\"parent\":0,\"children\":314},{\"t\":\"τόδε\",\"h\":[[315],[]],\"pos\":\"[1][315]\",\"parent\":0,\"children\":315},{\"p\":\";\"},{\"p\":\"{\"},{\"t\":\"ΧΟ\",\"h\":[[316],[]],\"pos\":\"[1][316]\",\"parent\":0,\"children\":316},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Προὐφάνη\",\"h\":[[317],[]],\"pos\":\"[1][317]\",\"parent\":0,\"children\":317},{\"t\":\"κτύπος\",\"h\":[[318],[]],\"pos\":\"[1][318]\",\"parent\":0,\"children\":318},{\"p\":\",\"}],[{\"t\":\"φωτὸς\",\"h\":[[319],[]],\"pos\":\"[1][319]\",\"parent\":0,\"children\":319},{\"t\":\"σύντροφος\",\"h\":[[320],[]],\"pos\":\"[1][320]\",\"parent\":0,\"children\":320},{\"t\":\"ὡς\",\"h\":[[321],[]],\"pos\":\"[1][321]\",\"parent\":0,\"children\":321},{\"t\":\"τειρομένου\",\"h\":[[322],[]],\"pos\":\"[1][322]\",\"parent\":0,\"children\":322},{\"t\":\"του\",\"h\":[[323],[]],\"pos\":\"[1][323]\",\"parent\":0,\"children\":323},{\"p\":\",\"}],[{\"t\":\"ἤ\",\"h\":[[324],[]],\"pos\":\"[1][324]\",\"parent\":0,\"children\":324},{\"t\":\"που\",\"h\":[[325],[]],\"pos\":\"[1][325]\",\"parent\":0,\"children\":325},{\"t\":\"τᾷδ\",\"h\":[[326],[]],\"pos\":\"[1][326]\",\"parent\":0,\"children\":326},{\"p\":\"\'\"},{\"t\":\"ἢ\",\"h\":[[327],[]],\"pos\":\"[1][327]\",\"parent\":0,\"children\":327},{\"t\":\"τᾷδε\",\"h\":[[328],[]],\"pos\":\"[1][328]\",\"parent\":0,\"children\":328},{\"t\":\"τόπων\",\"h\":[[329],[]],\"pos\":\"[1][329]\",\"parent\":0,\"children\":329},{\"p\":\"·\"}],[{\"t\":\"βάλλει\",\"h\":[[330],[]],\"pos\":\"[1][330]\",\"parent\":0,\"children\":330},{\"p\":\",\"},{\"t\":\"βάλλει\",\"h\":[[331],[]],\"pos\":\"[1][331]\",\"parent\":0,\"children\":331},{\"t\":\"μ\",\"h\":[[332],[]],\"pos\":\"[1][332]\",\"parent\":0,\"children\":332},{\"p\":\"\'\"},{\"t\":\"ἐτύμα\",\"h\":[[333],[]],\"pos\":\"[1][333]\",\"parent\":0,\"children\":333}],[{\"t\":\"φθογγά\",\"h\":[[334],[]],\"pos\":\"[1][334]\",\"parent\":0,\"children\":334},{\"t\":\"του\",\"h\":[[335],[]],\"pos\":\"[1][335]\",\"parent\":0,\"children\":335},{\"t\":\"στίβου\",\"h\":[[336],[]],\"pos\":\"[1][336]\",\"parent\":0,\"children\":336},{\"t\":\"κατ\",\"h\":[[337],[]],\"pos\":\"[1][337]\",\"parent\":0,\"children\":337},{\"p\":\"\'\"},{\"t\":\"ἀνάγ\",\"h\":[[338],[]],\"pos\":\"[1][338]\",\"parent\":0,\"children\":338},{\"p\":\"-\"}],[{\"t\":\"καν\",\"h\":[[339],[]],\"pos\":\"[1][339]\",\"parent\":0,\"children\":339},{\"t\":\"ἕρποντος\",\"h\":[[340],[]],\"pos\":\"[1][340]\",\"parent\":0,\"children\":340},{\"p\":\",\"},{\"t\":\"οὐδέ\",\"h\":[[341],[]],\"pos\":\"[1][341]\",\"parent\":0,\"children\":341},{\"t\":\"με\",\"h\":[[342],[]],\"pos\":\"[1][342]\",\"parent\":0,\"children\":342},{\"t\":\"λά\",\"h\":[[343],[]],\"pos\":\"[1][343]\",\"parent\":0,\"children\":343},{\"p\":\"-\"}],[{\"t\":\"θει\",\"h\":[[344],[]],\"pos\":\"[1][344]\",\"parent\":0,\"children\":344},{\"t\":\"βαρεῖα\",\"h\":[[345],[]],\"pos\":\"[1][345]\",\"parent\":0,\"children\":345},{\"t\":\"τηλόθεν\",\"h\":[[346],[]],\"pos\":\"[1][346]\",\"parent\":0,\"children\":346},{\"t\":\"αὐ\",\"h\":[[347],[]],\"pos\":\"[1][347]\",\"parent\":0,\"children\":347},{\"p\":\"-\"}],[{\"t\":\"δὰ\",\"h\":[[348],[]],\"pos\":\"[1][348]\",\"parent\":0,\"children\":348},{\"t\":\"τρυσάνωρ\",\"h\":[[349],[]],\"pos\":\"[1][349]\",\"parent\":0,\"children\":349},{\"p\":\"·\"},{\"t\":\"διάσημα\",\"h\":[[350],[]],\"pos\":\"[1][350]\",\"parent\":0,\"children\":350},{\"t\":\"γὰρ\",\"h\":[[351],[]],\"pos\":\"[1][351]\",\"parent\":0,\"children\":351},{\"t\":\"θρηνεῖ\",\"h\":[[352],[]],\"pos\":\"[1][352]\",\"parent\":0,\"children\":352},{\"p\":\".\"}],[],[{\"t\":\"Ἀλλ\",\"h\":[[353],[]],\"pos\":\"[1][353]\",\"parent\":0,\"children\":353},{\"p\":\"\'\"},{\"t\":\"ἔχε\",\"h\":[[354],[]],\"pos\":\"[1][354]\",\"parent\":0,\"children\":354},{\"p\":\",\"},{\"t\":\"τέκνον\",\"h\":[[355],[]],\"pos\":\"[1][355]\",\"parent\":0,\"children\":355},{\"p\":\",\"},{\"p\":\"{\"},{\"t\":\"ΝΕ\",\"h\":[[356],[]],\"pos\":\"[1][356]\",\"parent\":0,\"children\":356},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"Λέγ\",\"h\":[[357],[]],\"pos\":\"[1][357]\",\"parent\":0,\"children\":357},{\"p\":\"\'\"},{\"t\":\"ὅ\",\"h\":[[358],[]],\"pos\":\"[1][358]\",\"parent\":0,\"children\":358},{\"t\":\"τι\",\"h\":[[359],[]],\"pos\":\"[1][359]\",\"parent\":0,\"children\":359},{\"p\":\".\"},{\"p\":\"{\"},{\"t\":\"ΧΟ\",\"h\":[[360],[]],\"pos\":\"[1][360]\",\"parent\":0,\"children\":360},{\"p\":\".\"},{\"p\":\"}\"},{\"t\":\"φροντίδας\",\"h\":[[361],[]],\"pos\":\"[1][361]\",\"parent\":0,\"children\":361},{\"t\":\"νέας\",\"h\":[[362],[]],\"pos\":\"[1][362]\",\"parent\":0,\"children\":362},{\"p\":\"·\"}],[{\"t\":\"ὡς\",\"h\":[[363],[]],\"pos\":\"[1][363]\",\"parent\":0,\"children\":363},{\"t\":\"οὐκ\",\"h\":[[364],[]],\"pos\":\"[1][364]\",\"parent\":0,\"children\":364},{\"t\":\"ἔξεδρος\",\"h\":[[365],[]],\"pos\":\"[1][365]\",\"parent\":0,\"children\":365},{\"p\":\",\"},{\"t\":\"ἀλλ\",\"h\":[[366],[]],\"pos\":\"[1][366]\",\"parent\":0,\"children\":366},{\"p\":\"\'\"},{\"t\":\"ἔντοπος\",\"h\":[[367],[]],\"pos\":\"[1][367]\",\"parent\":0,\"children\":367},{\"t\":\"ἁνήρ\",\"h\":[[368],[]],\"pos\":\"[1][368]\",\"parent\":0,\"children\":368},{\"p\":\",\"}],[{\"t\":\"οὐ\",\"h\":[[369],[]],\"pos\":\"[1][369]\",\"parent\":0,\"children\":369},{\"t\":\"μολπὰν\",\"h\":[[370],[]],\"pos\":\"[1][370]\",\"parent\":0,\"children\":370},{\"t\":\"σύριγγος\",\"h\":[[371],[]],\"pos\":\"[1][371]\",\"parent\":0,\"children\":371},{\"t\":\"ἔχων\",\"h\":[[372],[]],\"pos\":\"[1][372]\",\"parent\":0,\"children\":372},{\"p\":\",\"}],[{\"t\":\"ὡς\",\"h\":[[373],[]],\"pos\":\"[1][373]\",\"parent\":0,\"children\":373},{\"t\":\"ποιμὴν\",\"h\":[[374],[]],\"pos\":\"[1][374]\",\"parent\":0,\"children\":374},{\"t\":\"ἀγροβάτας\",\"h\":[[375],[]],\"pos\":\"[1][375]\",\"parent\":0,\"children\":375},{\"p\":\",\"}],[{\"t\":\"ἀλλ\",\"h\":[[376],[]],\"pos\":\"[1][376]\",\"parent\":0,\"children\":376},{\"p\":\"\'\"},{\"t\":\"ἤ\",\"h\":[[377],[]],\"pos\":\"[1][377]\",\"parent\":0,\"children\":377},{\"t\":\"που\",\"h\":[[378],[]],\"pos\":\"[1][378]\",\"parent\":0,\"children\":378},{\"t\":\"πταίων\",\"h\":[[379],[]],\"pos\":\"[1][379]\",\"parent\":0,\"children\":379},{\"t\":\"ὑπ\",\"h\":[[380],[]],\"pos\":\"[1][380]\",\"parent\":0,\"children\":380},{\"p\":\"\'\"},{\"t\":\"ἀνάγ\",\"h\":[[381],[]],\"pos\":\"[1][381]\",\"parent\":0,\"children\":381},{\"p\":\"-\"}],[{\"t\":\"κας\",\"h\":[[382],[]],\"pos\":\"[1][382]\",\"parent\":0,\"children\":382},{\"t\":\"βοᾷ\",\"h\":[[383],[]],\"pos\":\"[1][383]\",\"parent\":0,\"children\":383},{\"t\":\"τηλωπὸν\",\"h\":[[384],[]],\"pos\":\"[1][384]\",\"parent\":0,\"children\":384},{\"t\":\"ἰω\",\"h\":[[385],[]],\"pos\":\"[1][385]\",\"parent\":0,\"children\":385},{\"p\":\"-\"}],[{\"t\":\"άν\",\"h\":[[386],[]],\"pos\":\"[1][386]\",\"parent\":0,\"children\":386},{\"p\":\",\"},{\"t\":\"ἢ\",\"h\":[[387],[]],\"pos\":\"[1][387]\",\"parent\":0,\"children\":387},{\"t\":\"ναὸς\",\"h\":[[388],[]],\"pos\":\"[1][388]\",\"parent\":0,\"children\":388},{\"t\":\"ἄξενον\",\"h\":[[389],[]],\"pos\":\"[1][389]\",\"parent\":0,\"children\":389},{\"t\":\"αὐγά\",\"h\":[[390],[]],\"pos\":\"[1][390]\",\"parent\":0,\"children\":390},{\"p\":\"-\"}],[{\"t\":\"ζων\",\"h\":[[391],[]],\"pos\":\"[1][391]\",\"parent\":0,\"children\":391},{\"t\":\"ὅρμον\",\"h\":[[392],[]],\"pos\":\"[1][392]\",\"parent\":0,\"children\":392},{\"p\":\"·\"},{\"t\":\"προβοᾷ\",\"h\":[[393],[]],\"pos\":\"[1][393]\",\"parent\":0,\"children\":393},{\"t\":\"τι\",\"h\":[[394],[]],\"pos\":\"[1][394]\",\"parent\":0,\"children\":394},{\"t\":\"γὰρ\",\"h\":[[395],[]],\"pos\":\"[1][395]\",\"parent\":0,\"children\":395},{\"t\":\"δεινόν\",\"h\":[[396],[]],\"pos\":\"[1][396]\",\"parent\":0,\"children\":396},{\"p\":\".\"}]],[[{\"t\":\"Que\",\"h\":[[1],[1]],\"pos\":\"[2][1]\",\"parent\":1,\"children\":1},{\"t\":\"faut\",\"h\":[[2],[2,3]],\"pos\":\"[2][2]\",\"parent\":1,\"children\":2},{\"p\":\"-\"},{\"t\":\"il\",\"h\":[[2],[2,3]],\"pos\":\"[2][3]\",\"parent\":1,\"children\":3},{\"p\":\",\"},{\"t\":\"maître\",\"h\":[[6],[4]],\"pos\":\"[2][4]\",\"parent\":1,\"children\":4},{\"p\":\",\"},{\"t\":\"que\",\"h\":[[3],[5]],\"pos\":\"[2][5]\",\"parent\":1,\"children\":5},{\"t\":\"faut\",\"h\":[[4],[6,7]],\"pos\":\"[2][6]\",\"parent\":1,\"children\":6},{\"p\":\"-\"},{\"t\":\"il\",\"h\":[[4],[6,7]],\"pos\":\"[2][7]\",\"parent\":1,\"children\":7},{\"t\":\"que\",\"h\":[[5],[8,9]],\"pos\":\"[2][8]\",\"parent\":1,\"children\":8},{\"t\":\"moi\",\"h\":[[5],[8,9]],\"pos\":\"[2][9]\",\"parent\":1,\"children\":9},{\"p\":\",\"},{\"t\":\"étranger\",\"h\":[[9],[10]],\"pos\":\"[2][10]\",\"parent\":1,\"children\":10},{\"t\":\"en\",\"h\":[[7,8],[11,12,13]],\"pos\":\"[2][11]\",\"parent\":1,\"children\":11},{\"t\":\"terre\",\"h\":[[7,8],[11,12,13]],\"pos\":\"[2][12]\",\"parent\":1,\"children\":12},{\"t\":\"étrangère\",\"h\":[[7,8],[11,12,13]],\"pos\":\"[2][13]\",\"parent\":1,\"children\":13},{\"p\":\",\"},{\"t\":\"que\",\"h\":[[12],[14]],\"pos\":\"[2][14]\",\"parent\":1,\"children\":14},{\"t\":\"faut\",\"h\":[[],[15]],\"pos\":\"[2][15]\",\"parent\":1,\"children\":15},{\"p\":\"-\"},{\"t\":\"il\",\"h\":[[],[16]],\"pos\":\"[2][16]\",\"parent\":1,\"children\":16},{\"t\":\"que\",\"h\":[[],[17]],\"pos\":\"[2][17]\",\"parent\":1,\"children\":17},{\"t\":\"je\",\"h\":[[10],[18,19]],\"pos\":\"[2][18]\",\"parent\":1,\"children\":18},{\"t\":\"taise\",\"h\":[[10],[18,19]],\"pos\":\"[2][19]\",\"parent\":1,\"children\":19},{\"p\":\",\"},{\"t\":\"ou\",\"h\":[[11],[20]],\"pos\":\"[2][20]\",\"parent\":1,\"children\":20},{\"t\":\"que\",\"h\":[[],[21]],\"pos\":\"[2][21]\",\"parent\":1,\"children\":21},{\"t\":\"je\",\"h\":[[13],[22,23]],\"pos\":\"[2][22]\",\"parent\":1,\"children\":22},{\"t\":\"dise\",\"h\":[[13],[22,23]],\"pos\":\"[2][23]\",\"parent\":1,\"children\":23},{\"p\":\",\"},{\"t\":\"à\",\"h\":[[],[24]],\"pos\":\"[2][24]\",\"parent\":1,\"children\":24},{\"t\":\"un\",\"h\":[[],[25]],\"pos\":\"[2][25]\",\"parent\":1,\"children\":25},{\"t\":\"homme\",\"h\":[[],[26]],\"pos\":\"[2][26]\",\"parent\":1,\"children\":26},{\"t\":\"soupçonneux\",\"h\":[[16],[27]],\"pos\":\"[2][27]\",\"parent\":1,\"children\":27},{\"p\":\",\"},{\"t\":\"dis\",\"h\":[[],[28]],\"pos\":\"[2][28]\",\"parent\":1,\"children\":28},{\"p\":\"-\"},{\"t\":\"moi\",\"h\":[[],[29]],\"pos\":\"[2][29]\",\"parent\":1,\"children\":29},{\"p\":\"?\"},{\"t\":\"Car\",\"h\":[[20],[30]],\"pos\":\"[2][30]\",\"parent\":1,\"children\":30},{\"t\":\"l\",\"h\":[[19],[31,32]],\"pos\":\"[2][31]\",\"parent\":1,\"children\":31},{\"p\":\"’\"},{\"t\":\"art\",\"h\":[[19],[31,32]],\"pos\":\"[2][32]\",\"parent\":1,\"children\":32},{\"t\":\"surpasse\",\"h\":[[23],[33]],\"pos\":\"[2][33]\",\"parent\":1,\"children\":33},{\"t\":\"tout\",\"h\":[[22],[34,35]],\"pos\":\"[2][34]\",\"parent\":1,\"children\":34},{\"t\":\"autre\",\"h\":[[22],[34,35]],\"pos\":\"[2][35]\",\"parent\":1,\"children\":35},{\"t\":\"art\",\"h\":[[21],[36]],\"pos\":\"[2][36]\",\"parent\":1,\"children\":36},{\"p\":\",\"},{\"t\":\"et\",\"h\":[[24],[37,38,39,40]],\"pos\":\"[2][37]\",\"parent\":1,\"children\":37},{\"t\":\"de\",\"h\":[[24],[37,38,39,40]],\"pos\":\"[2][38]\",\"parent\":1,\"children\":38},{\"t\":\"même\",\"h\":[[24],[37,38,39,40]],\"pos\":\"[2][39]\",\"parent\":1,\"children\":39},{\"t\":\"pour\",\"h\":[[24],[37,38,39,40]],\"pos\":\"[2][40]\",\"parent\":1,\"children\":40},{\"t\":\"le\",\"h\":[[25],[41,42]],\"pos\":\"[2][41]\",\"parent\":1,\"children\":41},{\"t\":\"jugement\",\"h\":[[25],[41,42]],\"pos\":\"[2][42]\",\"parent\":1,\"children\":42},{\"p\":\",\"},{\"t\":\"chez\",\"h\":[[26,27],[43,44,45]],\"pos\":\"[2][43]\",\"parent\":1,\"children\":43},{\"t\":\"l\",\"h\":[[26,27],[43,44,45]],\"pos\":\"[2][44]\",\"parent\":1,\"children\":44},{\"p\":\"’\"},{\"t\":\"homme\",\"h\":[[26,27],[43,44,45]],\"pos\":\"[2][45]\",\"parent\":1,\"children\":45},{\"t\":\"qui\",\"h\":[[],[46]],\"pos\":\"[2][46]\",\"parent\":1,\"children\":46},{\"t\":\"possède\",\"h\":[[32],[47]],\"pos\":\"[2][47]\",\"parent\":1,\"children\":47},{\"t\":\"le\",\"h\":[[],[48,49]],\"pos\":\"[2][48]\",\"parent\":1,\"children\":48},{\"t\":\"divin\",\"h\":[[],[48,49]],\"pos\":\"[2][49]\",\"parent\":1,\"children\":49},{\"t\":\"sceptre\",\"h\":[[31],[50]],\"pos\":\"[2][50]\",\"parent\":1,\"children\":50},{\"t\":\"de\",\"h\":[[30],[51,52]],\"pos\":\"[2][51]\",\"parent\":1,\"children\":51},{\"t\":\"Zeus\",\"h\":[[30],[51,52]],\"pos\":\"[2][52]\",\"parent\":1,\"children\":52},{\"p\":\".\"},{\"t\":\"Et\",\"h\":[[],[53]],\"pos\":\"[2][53]\",\"parent\":1,\"children\":53},{\"t\":\"c\",\"h\":[[],[54]],\"pos\":\"[2][54]\",\"parent\":1,\"children\":54},{\"p\":\"’\"},{\"t\":\"est\",\"h\":[[],[55]],\"pos\":\"[2][55]\",\"parent\":1,\"children\":55},{\"t\":\"à\",\"h\":[[],[56]],\"pos\":\"[2][56]\",\"parent\":1,\"children\":56},{\"t\":\"toi\",\"h\":[[],[57]],\"pos\":\"[2][57]\",\"parent\":1,\"children\":57},{\"p\":\",\"},{\"t\":\"enfant\",\"h\":[[],[58]],\"pos\":\"[2][58]\",\"parent\":1,\"children\":58},{\"p\":\",\"},{\"t\":\"qu\",\"h\":[[],[59]],\"pos\":\"[2][59]\",\"parent\":1,\"children\":59},{\"p\":\"’\"},{\"t\":\"est\",\"h\":[[],[60]],\"pos\":\"[2][60]\",\"parent\":1,\"children\":60},{\"t\":\"allée\",\"h\":[[],[61]],\"pos\":\"[2][61]\",\"parent\":1,\"children\":61},{\"t\":\"cette\",\"h\":[[],[62]],\"pos\":\"[2][62]\",\"parent\":1,\"children\":62},{\"t\":\"toute\",\"h\":[[],[63]],\"pos\":\"[2][63]\",\"parent\":1,\"children\":63},{\"p\":\"-\"},{\"t\":\"puissance\",\"h\":[[],[64]],\"pos\":\"[2][64]\",\"parent\":1,\"children\":64},{\"t\":\"ancestrale\",\"h\":[[],[65]],\"pos\":\"[2][65]\",\"parent\":1,\"children\":65},{\"p\":\";\"},{\"t\":\"dis\",\"h\":[[],[66]],\"pos\":\"[2][66]\",\"parent\":1,\"children\":66},{\"p\":\"-\"},{\"t\":\"moi\",\"h\":[[],[67]],\"pos\":\"[2][67]\",\"parent\":1,\"children\":67},{\"t\":\"donc\",\"h\":[[],[68]],\"pos\":\"[2][68]\",\"parent\":1,\"children\":68},{\"t\":\"en\",\"h\":[[],[69]],\"pos\":\"[2][69]\",\"parent\":1,\"children\":69},{\"t\":\"quoi\",\"h\":[[],[70]],\"pos\":\"[2][70]\",\"parent\":1,\"children\":70},{\"t\":\"il\",\"h\":[[],[71]],\"pos\":\"[2][71]\",\"parent\":1,\"children\":71},{\"t\":\"faut\",\"h\":[[],[72]],\"pos\":\"[2][72]\",\"parent\":1,\"children\":72},{\"t\":\"t\",\"h\":[[],[73]],\"pos\":\"[2][73]\",\"parent\":1,\"children\":73},{\"p\":\"’\"},{\"t\":\"aider\",\"h\":[[],[74]],\"pos\":\"[2][74]\",\"parent\":1,\"children\":74},{\"p\":\".\"}],[{\"t\":\"Eh\",\"h\":[[],[75]],\"pos\":\"[2][75]\",\"parent\":1,\"children\":75},{\"t\":\"bien\",\"h\":[[],[76]],\"pos\":\"[2][76]\",\"parent\":1,\"children\":76},{\"p\":\"–\"},{\"t\":\"car\",\"h\":[[],[77]],\"pos\":\"[2][77]\",\"parent\":1,\"children\":77},{\"t\":\"peut\",\"h\":[[],[78]],\"pos\":\"[2][78]\",\"parent\":1,\"children\":78},{\"p\":\"-\"},{\"t\":\"être\",\"h\":[[],[79]],\"pos\":\"[2][79]\",\"parent\":1,\"children\":79},{\"t\":\"veux\",\"h\":[[],[80]],\"pos\":\"[2][80]\",\"parent\":1,\"children\":80},{\"p\":\"-\"},{\"t\":\"tu\",\"h\":[[],[81]],\"pos\":\"[2][81]\",\"parent\":1,\"children\":81},{\"t\":\"te\",\"h\":[[],[82]],\"pos\":\"[2][82]\",\"parent\":1,\"children\":82},{\"t\":\"tourner\",\"h\":[[],[83]],\"pos\":\"[2][83]\",\"parent\":1,\"children\":83},{\"t\":\"vers\",\"h\":[[],[84]],\"pos\":\"[2][84]\",\"parent\":1,\"children\":84},{\"t\":\"le\",\"h\":[[],[85]],\"pos\":\"[2][85]\",\"parent\":1,\"children\":85},{\"t\":\"lieu\",\"h\":[[],[86]],\"pos\":\"[2][86]\",\"parent\":1,\"children\":86},{\"t\":\"au\",\"h\":[[],[87]],\"pos\":\"[2][87]\",\"parent\":1,\"children\":87},{\"t\":\"loin\",\"h\":[[],[88]],\"pos\":\"[2][88]\",\"parent\":1,\"children\":88},{\"t\":\"où\",\"h\":[[],[89]],\"pos\":\"[2][89]\",\"parent\":1,\"children\":89},{\"t\":\"il\",\"h\":[[],[90]],\"pos\":\"[2][90]\",\"parent\":1,\"children\":90},{\"t\":\"réside\",\"h\":[[],[91]],\"pos\":\"[2][91]\",\"parent\":1,\"children\":91},{\"p\":\"–\"},{\"t\":\"regarde\",\"h\":[[],[92]],\"pos\":\"[2][92]\",\"parent\":1,\"children\":92},{\"t\":\"avec\",\"h\":[[],[93]],\"pos\":\"[2][93]\",\"parent\":1,\"children\":93},{\"t\":\"confiance\",\"h\":[[],[94]],\"pos\":\"[2][94]\",\"parent\":1,\"children\":94},{\"p\":\";\"},{\"t\":\"lorsque\",\"h\":[[],[95]],\"pos\":\"[2][95]\",\"parent\":1,\"children\":95},{\"t\":\"viendra\",\"h\":[[],[96]],\"pos\":\"[2][96]\",\"parent\":1,\"children\":96},{\"t\":\"le\",\"h\":[[],[97]],\"pos\":\"[2][97]\",\"parent\":1,\"children\":97},{\"t\":\"terrible\",\"h\":[[],[98]],\"pos\":\"[2][98]\",\"parent\":1,\"children\":98},{\"t\":\"voyageur\",\"h\":[[],[99]],\"pos\":\"[2][99]\",\"parent\":1,\"children\":99},{\"t\":\"de\",\"h\":[[],[100]],\"pos\":\"[2][100]\",\"parent\":1,\"children\":100},{\"t\":\"ces\",\"h\":[[],[101]],\"pos\":\"[2][101]\",\"parent\":1,\"children\":101},{\"t\":\"noires\",\"h\":[[],[102]],\"pos\":\"[2][102]\",\"parent\":1,\"children\":102},{\"t\":\"demeures\",\"h\":[[],[103]],\"pos\":\"[2][103]\",\"parent\":1,\"children\":103},{\"p\":\",\"},{\"t\":\"approche\",\"h\":[[],[104]],\"pos\":\"[2][104]\",\"parent\":1,\"children\":104},{\"p\":\"-\"},{\"t\":\"toi\",\"h\":[[],[105]],\"pos\":\"[2][105]\",\"parent\":1,\"children\":105},{\"t\":\"toujours\",\"h\":[[],[106]],\"pos\":\"[2][106]\",\"parent\":1,\"children\":106},{\"t\":\"de\",\"h\":[[],[107]],\"pos\":\"[2][107]\",\"parent\":1,\"children\":107},{\"t\":\"mon\",\"h\":[[],[108]],\"pos\":\"[2][108]\",\"parent\":1,\"children\":108},{\"t\":\"bras\",\"h\":[[],[109]],\"pos\":\"[2][109]\",\"parent\":1,\"children\":109},{\"t\":\"et\",\"h\":[[],[110]],\"pos\":\"[2][110]\",\"parent\":1,\"children\":110},{\"t\":\"tente\",\"h\":[[],[111]],\"pos\":\"[2][111]\",\"parent\":1,\"children\":111},{\"t\":\"de\",\"h\":[[],[112]],\"pos\":\"[2][112]\",\"parent\":1,\"children\":112},{\"t\":\"t\",\"h\":[[],[113]],\"pos\":\"[2][113]\",\"parent\":1,\"children\":113},{\"p\":\"’\"},{\"t\":\"occuper\",\"h\":[[],[114]],\"pos\":\"[2][114]\",\"parent\":1,\"children\":114},{\"t\":\"de\",\"h\":[[],[115]],\"pos\":\"[2][115]\",\"parent\":1,\"children\":115},{\"t\":\"la\",\"h\":[[],[116]],\"pos\":\"[2][116]\",\"parent\":1,\"children\":116},{\"t\":\"situation\",\"h\":[[],[117]],\"pos\":\"[2][117]\",\"parent\":1,\"children\":117},{\"t\":\"présente\",\"h\":[[],[118]],\"pos\":\"[2][118]\",\"parent\":1,\"children\":118},{\"p\":\".\"}],[{\"t\":\"Ce\",\"h\":[[],[119]],\"pos\":\"[2][119]\",\"parent\":1,\"children\":119},{\"t\":\"que\",\"h\":[[],[120]],\"pos\":\"[2][120]\",\"parent\":1,\"children\":120},{\"t\":\"tu\",\"h\":[[],[121]],\"pos\":\"[2][121]\",\"parent\":1,\"children\":121},{\"t\":\"décris\",\"h\":[[],[122]],\"pos\":\"[2][122]\",\"parent\":1,\"children\":122},{\"t\":\"est\",\"h\":[[],[123]],\"pos\":\"[2][123]\",\"parent\":1,\"children\":123},{\"t\":\"une\",\"h\":[[],[124]],\"pos\":\"[2][124]\",\"parent\":1,\"children\":124},{\"t\":\"préoccupation\",\"h\":[[],[125]],\"pos\":\"[2][125]\",\"parent\":1,\"children\":125},{\"t\":\"que\",\"h\":[[],[126]],\"pos\":\"[2][126]\",\"parent\":1,\"children\":126},{\"t\":\"j\",\"h\":[[],[127]],\"pos\":\"[2][127]\",\"parent\":1,\"children\":127},{\"p\":\"’\"},{\"t\":\"ai\",\"h\":[[],[128]],\"pos\":\"[2][128]\",\"parent\":1,\"children\":128},{\"t\":\"de\",\"h\":[[],[129]],\"pos\":\"[2][129]\",\"parent\":1,\"children\":129},{\"t\":\"longue\",\"h\":[[],[130]],\"pos\":\"[2][130]\",\"parent\":1,\"children\":130},{\"t\":\"date\",\"h\":[[],[131]],\"pos\":\"[2][131]\",\"parent\":1,\"children\":131},{\"p\":\",\"},{\"t\":\"roi\",\"h\":[[],[132]],\"pos\":\"[2][132]\",\"parent\":1,\"children\":132},{\"p\":\",\"},{\"t\":\"que\",\"h\":[[],[133]],\"pos\":\"[2][133]\",\"parent\":1,\"children\":133},{\"t\":\"mon\",\"h\":[[],[134]],\"pos\":\"[2][134]\",\"parent\":1,\"children\":134},{\"t\":\"oeil\",\"h\":[[],[135]],\"pos\":\"[2][135]\",\"parent\":1,\"children\":135},{\"t\":\"veille\",\"h\":[[],[136]],\"pos\":\"[2][136]\",\"parent\":1,\"children\":136},{\"t\":\"sur\",\"h\":[[],[137]],\"pos\":\"[2][137]\",\"parent\":1,\"children\":137},{\"t\":\"ton\",\"h\":[[],[138]],\"pos\":\"[2][138]\",\"parent\":1,\"children\":138},{\"t\":\"plus\",\"h\":[[],[139]],\"pos\":\"[2][139]\",\"parent\":1,\"children\":139},{\"t\":\"grand\",\"h\":[[],[140]],\"pos\":\"[2][140]\",\"parent\":1,\"children\":140},{\"t\":\"avantage\",\"h\":[[],[141]],\"pos\":\"[2][141]\",\"parent\":1,\"children\":141},{\"p\":\";\"},{\"t\":\"maintenant\",\"h\":[[],[142]],\"pos\":\"[2][142]\",\"parent\":1,\"children\":142},{\"t\":\"dis\",\"h\":[[],[143]],\"pos\":\"[2][143]\",\"parent\":1,\"children\":143},{\"p\":\"-\"},{\"t\":\"moi\",\"h\":[[],[144]],\"pos\":\"[2][144]\",\"parent\":1,\"children\":144},{\"t\":\"dans\",\"h\":[[],[145]],\"pos\":\"[2][145]\",\"parent\":1,\"children\":145},{\"t\":\"quelle\",\"h\":[[],[146]],\"pos\":\"[2][146]\",\"parent\":1,\"children\":146},{\"t\":\"sorte\",\"h\":[[],[147]],\"pos\":\"[2][147]\",\"parent\":1,\"children\":147},{\"t\":\"de\",\"h\":[[],[148]],\"pos\":\"[2][148]\",\"parent\":1,\"children\":148},{\"t\":\"logis\",\"h\":[[],[149]],\"pos\":\"[2][149]\",\"parent\":1,\"children\":149},{\"t\":\"l\",\"h\":[[],[150]],\"pos\":\"[2][150]\",\"parent\":1,\"children\":150},{\"p\":\"’\"},{\"t\":\"habitant\",\"h\":[[],[151]],\"pos\":\"[2][151]\",\"parent\":1,\"children\":151},{\"t\":\"vit\",\"h\":[[],[152]],\"pos\":\"[2][152]\",\"parent\":1,\"children\":152},{\"t\":\"et\",\"h\":[[],[153]],\"pos\":\"[2][153]\",\"parent\":1,\"children\":153},{\"t\":\"quel\",\"h\":[[],[154]],\"pos\":\"[2][154]\",\"parent\":1,\"children\":154},{\"t\":\"pays\",\"h\":[[],[155]],\"pos\":\"[2][155]\",\"parent\":1,\"children\":155},{\"t\":\"il\",\"h\":[[],[156]],\"pos\":\"[2][156]\",\"parent\":1,\"children\":156},{\"t\":\"occupe\",\"h\":[[],[157]],\"pos\":\"[2][157]\",\"parent\":1,\"children\":157},{\"p\":\".\"},{\"t\":\"Car\",\"h\":[[],[158]],\"pos\":\"[2][158]\",\"parent\":1,\"children\":158},{\"t\":\"ce\",\"h\":[[],[159]],\"pos\":\"[2][159]\",\"parent\":1,\"children\":159},{\"t\":\"n\",\"h\":[[],[160]],\"pos\":\"[2][160]\",\"parent\":1,\"children\":160},{\"p\":\"’\"},{\"t\":\"est\",\"h\":[[],[161]],\"pos\":\"[2][161]\",\"parent\":1,\"children\":161},{\"t\":\"pas\",\"h\":[[],[162]],\"pos\":\"[2][162]\",\"parent\":1,\"children\":162},{\"t\":\"un\",\"h\":[[],[163]],\"pos\":\"[2][163]\",\"parent\":1,\"children\":163},{\"t\":\"mauvais\",\"h\":[[],[164]],\"pos\":\"[2][164]\",\"parent\":1,\"children\":164},{\"t\":\"moment\",\"h\":[[],[165]],\"pos\":\"[2][165]\",\"parent\":1,\"children\":165},{\"t\":\"pour\",\"h\":[[],[166]],\"pos\":\"[2][166]\",\"parent\":1,\"children\":166},{\"t\":\"moi\",\"h\":[[],[167]],\"pos\":\"[2][167]\",\"parent\":1,\"children\":167},{\"t\":\"de\",\"h\":[[],[168]],\"pos\":\"[2][168]\",\"parent\":1,\"children\":168},{\"t\":\"l\",\"h\":[[],[169]],\"pos\":\"[2][169]\",\"parent\":1,\"children\":169},{\"p\":\"’\"},{\"t\":\"apprendre\",\"h\":[[],[170]],\"pos\":\"[2][170]\",\"parent\":1,\"children\":170},{\"p\":\",\"},{\"t\":\"de\",\"h\":[[],[171]],\"pos\":\"[2][171]\",\"parent\":1,\"children\":171},{\"t\":\"peur\",\"h\":[[],[172]],\"pos\":\"[2][172]\",\"parent\":1,\"children\":172},{\"t\":\"qu\",\"h\":[[],[173]],\"pos\":\"[2][173]\",\"parent\":1,\"children\":173},{\"p\":\"’\"},{\"t\":\"il\",\"h\":[[],[174]],\"pos\":\"[2][174]\",\"parent\":1,\"children\":174},{\"t\":\"me\",\"h\":[[],[175]],\"pos\":\"[2][175]\",\"parent\":1,\"children\":175},{\"t\":\"tombe\",\"h\":[[],[176]],\"pos\":\"[2][176]\",\"parent\":1,\"children\":176},{\"t\":\"dessus\",\"h\":[[],[177]],\"pos\":\"[2][177]\",\"parent\":1,\"children\":177},{\"t\":\"à\",\"h\":[[],[178]],\"pos\":\"[2][178]\",\"parent\":1,\"children\":178},{\"t\":\"l\",\"h\":[[],[179]],\"pos\":\"[2][179]\",\"parent\":1,\"children\":179},{\"p\":\"’\"},{\"t\":\"improviste\",\"h\":[[],[180]],\"pos\":\"[2][180]\",\"parent\":1,\"children\":180},{\"p\":\",\"},{\"t\":\"sortant\",\"h\":[[],[181]],\"pos\":\"[2][181]\",\"parent\":1,\"children\":181},{\"t\":\"de\",\"h\":[[],[182]],\"pos\":\"[2][182]\",\"parent\":1,\"children\":182},{\"t\":\"je\",\"h\":[[],[183]],\"pos\":\"[2][183]\",\"parent\":1,\"children\":183},{\"t\":\"ne\",\"h\":[[],[184]],\"pos\":\"[2][184]\",\"parent\":1,\"children\":184},{\"t\":\"sais\",\"h\":[[],[185]],\"pos\":\"[2][185]\",\"parent\":1,\"children\":185},{\"t\":\"où\",\"h\":[[],[186]],\"pos\":\"[2][186]\",\"parent\":1,\"children\":186},{\"p\":\".\"},{\"t\":\"Comment\",\"h\":[[],[187]],\"pos\":\"[2][187]\",\"parent\":1,\"children\":187},{\"t\":\"est\",\"h\":[[],[188]],\"pos\":\"[2][188]\",\"parent\":1,\"children\":188},{\"t\":\"le\",\"h\":[[],[189]],\"pos\":\"[2][189]\",\"parent\":1,\"children\":189},{\"t\":\"site\",\"h\":[[],[190]],\"pos\":\"[2][190]\",\"parent\":1,\"children\":190},{\"p\":\"?\"},{\"t\":\"Comment\",\"h\":[[],[191]],\"pos\":\"[2][191]\",\"parent\":1,\"children\":191},{\"t\":\"sa\",\"h\":[[],[192]],\"pos\":\"[2][192]\",\"parent\":1,\"children\":192},{\"t\":\"demeure\",\"h\":[[],[193]],\"pos\":\"[2][193]\",\"parent\":1,\"children\":193},{\"p\":\"?\"},{\"t\":\"Comment\",\"h\":[[],[194]],\"pos\":\"[2][194]\",\"parent\":1,\"children\":194},{\"t\":\"est\",\"h\":[[],[195]],\"pos\":\"[2][195]\",\"parent\":1,\"children\":195},{\"t\":\"sa\",\"h\":[[],[196]],\"pos\":\"[2][196]\",\"parent\":1,\"children\":196},{\"t\":\"piste\",\"h\":[[],[197]],\"pos\":\"[2][197]\",\"parent\":1,\"children\":197},{\"p\":\"?\"},{\"t\":\"Vers\",\"h\":[[],[198]],\"pos\":\"[2][198]\",\"parent\":1,\"children\":198},{\"t\":\"l\",\"h\":[[],[199]],\"pos\":\"[2][199]\",\"parent\":1,\"children\":199},{\"p\":\"’\"},{\"t\":\"intérieur\",\"h\":[[],[200]],\"pos\":\"[2][200]\",\"parent\":1,\"children\":200},{\"t\":\"ou\",\"h\":[[],[201]],\"pos\":\"[2][201]\",\"parent\":1,\"children\":201},{\"t\":\"l\",\"h\":[[],[202]],\"pos\":\"[2][202]\",\"parent\":1,\"children\":202},{\"p\":\"’\"},{\"t\":\"extérieur\",\"h\":[[],[203]],\"pos\":\"[2][203]\",\"parent\":1,\"children\":203},{\"p\":\"?\"}],[{\"t\":\"Tu\",\"h\":[[],[204]],\"pos\":\"[2][204]\",\"parent\":1,\"children\":204},{\"t\":\"vois\",\"h\":[[],[205]],\"pos\":\"[2][205]\",\"parent\":1,\"children\":205},{\"t\":\"cette\",\"h\":[[],[206]],\"pos\":\"[2][206]\",\"parent\":1,\"children\":206},{\"t\":\"maison\",\"h\":[[],[207]],\"pos\":\"[2][207]\",\"parent\":1,\"children\":207},{\"t\":\"à\",\"h\":[[],[208]],\"pos\":\"[2][208]\",\"parent\":1,\"children\":208},{\"t\":\"deux\",\"h\":[[],[209]],\"pos\":\"[2][209]\",\"parent\":1,\"children\":209},{\"t\":\"portes\",\"h\":[[],[210]],\"pos\":\"[2][210]\",\"parent\":1,\"children\":210},{\"p\":\",\"},{\"t\":\"faite\",\"h\":[[],[211]],\"pos\":\"[2][211]\",\"parent\":1,\"children\":211},{\"t\":\"dans\",\"h\":[[],[212]],\"pos\":\"[2][212]\",\"parent\":1,\"children\":212},{\"t\":\"un\",\"h\":[[],[213]],\"pos\":\"[2][213]\",\"parent\":1,\"children\":213},{\"t\":\"lit\",\"h\":[[],[214]],\"pos\":\"[2][214]\",\"parent\":1,\"children\":214},{\"t\":\"de\",\"h\":[[],[215]],\"pos\":\"[2][215]\",\"parent\":1,\"children\":215},{\"t\":\"pierre\",\"h\":[[],[216]],\"pos\":\"[2][216]\",\"parent\":1,\"children\":216},{\"p\":\".\"}],[{\"t\":\"Mais\",\"h\":[[],[217]],\"pos\":\"[2][217]\",\"parent\":1,\"children\":217},{\"t\":\"où\",\"h\":[[],[218]],\"pos\":\"[2][218]\",\"parent\":1,\"children\":218},{\"t\":\"le\",\"h\":[[],[219]],\"pos\":\"[2][219]\",\"parent\":1,\"children\":219},{\"t\":\"malheureux\",\"h\":[[],[220]],\"pos\":\"[2][220]\",\"parent\":1,\"children\":220},{\"t\":\"lui\",\"h\":[[],[221]],\"pos\":\"[2][221]\",\"parent\":1,\"children\":221},{\"p\":\"-\"},{\"t\":\"même\",\"h\":[[],[222]],\"pos\":\"[2][222]\",\"parent\":1,\"children\":222},{\"t\":\"est\",\"h\":[[],[223]],\"pos\":\"[2][223]\",\"parent\":1,\"children\":223},{\"p\":\"-\"},{\"t\":\"il\",\"h\":[[],[224]],\"pos\":\"[2][224]\",\"parent\":1,\"children\":224},{\"t\":\"parti\",\"h\":[[],[225]],\"pos\":\"[2][225]\",\"parent\":1,\"children\":225},{\"p\":\"?\"}],[{\"t\":\"Il\",\"h\":[[],[226]],\"pos\":\"[2][226]\",\"parent\":1,\"children\":226},{\"t\":\"me\",\"h\":[[],[227]],\"pos\":\"[2][227]\",\"parent\":1,\"children\":227},{\"t\":\"semble\",\"h\":[[],[228]],\"pos\":\"[2][228]\",\"parent\":1,\"children\":228},{\"t\":\"évident\",\"h\":[[],[229]],\"pos\":\"[2][229]\",\"parent\":1,\"children\":229},{\"t\":\"que\",\"h\":[[],[230]],\"pos\":\"[2][230]\",\"parent\":1,\"children\":230},{\"t\":\"par\",\"h\":[[],[231]],\"pos\":\"[2][231]\",\"parent\":1,\"children\":231},{\"t\":\"besoin\",\"h\":[[],[232]],\"pos\":\"[2][232]\",\"parent\":1,\"children\":232},{\"t\":\"de\",\"h\":[[],[233]],\"pos\":\"[2][233]\",\"parent\":1,\"children\":233},{\"t\":\"nourriture\",\"h\":[[],[234]],\"pos\":\"[2][234]\",\"parent\":1,\"children\":234},{\"p\":\",\"},{\"t\":\"il\",\"h\":[[],[235]],\"pos\":\"[2][235]\",\"parent\":1,\"children\":235},{\"t\":\"traîne\",\"h\":[[],[236]],\"pos\":\"[2][236]\",\"parent\":1,\"children\":236},{\"t\":\"son\",\"h\":[[],[237]],\"pos\":\"[2][237]\",\"parent\":1,\"children\":237},{\"t\":\"pas\",\"h\":[[],[238]],\"pos\":\"[2][238]\",\"parent\":1,\"children\":238},{\"t\":\"quelque\",\"h\":[[],[239]],\"pos\":\"[2][239]\",\"parent\":1,\"children\":239},{\"t\":\"part\",\"h\":[[],[240]],\"pos\":\"[2][240]\",\"parent\":1,\"children\":240},{\"t\":\"près\",\"h\":[[],[241]],\"pos\":\"[2][241]\",\"parent\":1,\"children\":241},{\"t\":\"d\",\"h\":[[],[242]],\"pos\":\"[2][242]\",\"parent\":1,\"children\":242},{\"p\":\"’\"},{\"t\":\"ici\",\"h\":[[],[243]],\"pos\":\"[2][243]\",\"parent\":1,\"children\":243},{\"p\":\".\"}],[{\"t\":\"Car\",\"h\":[[],[244]],\"pos\":\"[2][244]\",\"parent\":1,\"children\":244},{\"t\":\"on\",\"h\":[[],[245]],\"pos\":\"[2][245]\",\"parent\":1,\"children\":245},{\"t\":\"dit\",\"h\":[[],[246]],\"pos\":\"[2][246]\",\"parent\":1,\"children\":246},{\"t\":\"qu\",\"h\":[[],[247]],\"pos\":\"[2][247]\",\"parent\":1,\"children\":247},{\"p\":\"’\"},{\"t\":\"il\",\"h\":[[],[248]],\"pos\":\"[2][248]\",\"parent\":1,\"children\":248},{\"t\":\"a\",\"h\":[[],[249]],\"pos\":\"[2][249]\",\"parent\":1,\"children\":249},{\"t\":\"une\",\"h\":[[],[250]],\"pos\":\"[2][250]\",\"parent\":1,\"children\":250},{\"t\":\"telle\",\"h\":[[],[251]],\"pos\":\"[2][251]\",\"parent\":1,\"children\":251},{\"t\":\"sorte\",\"h\":[[],[252]],\"pos\":\"[2][252]\",\"parent\":1,\"children\":252},{\"t\":\"de\",\"h\":[[],[253]],\"pos\":\"[2][253]\",\"parent\":1,\"children\":253},{\"t\":\"mode\",\"h\":[[],[254]],\"pos\":\"[2][254]\",\"parent\":1,\"children\":254},{\"t\":\"de\",\"h\":[[],[255]],\"pos\":\"[2][255]\",\"parent\":1,\"children\":255},{\"t\":\"vie\",\"h\":[[],[256]],\"pos\":\"[2][256]\",\"parent\":1,\"children\":256},{\"p\":\":\"},{\"t\":\"chassant\",\"h\":[[],[257]],\"pos\":\"[2][257]\",\"parent\":1,\"children\":257},{\"t\":\"les\",\"h\":[[],[258]],\"pos\":\"[2][258]\",\"parent\":1,\"children\":258},{\"t\":\"créatures\",\"h\":[[],[259]],\"pos\":\"[2][259]\",\"parent\":1,\"children\":259},{\"t\":\"ailées\",\"h\":[[],[260]],\"pos\":\"[2][260]\",\"parent\":1,\"children\":260},{\"t\":\"de\",\"h\":[[],[261]],\"pos\":\"[2][261]\",\"parent\":1,\"children\":261},{\"t\":\"ses\",\"h\":[[],[262]],\"pos\":\"[2][262]\",\"parent\":1,\"children\":262},{\"t\":\"flèches\",\"h\":[[],[263]],\"pos\":\"[2][263]\",\"parent\":1,\"children\":263},{\"p\":\",\"},{\"t\":\"misérable\",\"h\":[[],[264]],\"pos\":\"[2][264]\",\"parent\":1,\"children\":264},{\"p\":\",\"},{\"t\":\"misérablement\",\"h\":[[],[265]],\"pos\":\"[2][265]\",\"parent\":1,\"children\":265},{\"p\":\",\"},{\"t\":\"sans\",\"h\":[[],[266]],\"pos\":\"[2][266]\",\"parent\":1,\"children\":266},{\"t\":\"personne\",\"h\":[[],[267]],\"pos\":\"[2][267]\",\"parent\":1,\"children\":267},{\"t\":\"qui\",\"h\":[[],[268]],\"pos\":\"[2][268]\",\"parent\":1,\"children\":268},{\"t\":\"lui\",\"h\":[[],[269]],\"pos\":\"[2][269]\",\"parent\":1,\"children\":269},{\"t\":\"apporte\",\"h\":[[],[270]],\"pos\":\"[2][270]\",\"parent\":1,\"children\":270},{\"t\":\"un\",\"h\":[[],[271]],\"pos\":\"[2][271]\",\"parent\":1,\"children\":271},{\"t\":\"remède\",\"h\":[[],[272]],\"pos\":\"[2][272]\",\"parent\":1,\"children\":272},{\"t\":\"à\",\"h\":[[],[273]],\"pos\":\"[2][273]\",\"parent\":1,\"children\":273},{\"t\":\"ses\",\"h\":[[],[274]],\"pos\":\"[2][274]\",\"parent\":1,\"children\":274},{\"t\":\"maux\",\"h\":[[],[275]],\"pos\":\"[2][275]\",\"parent\":1,\"children\":275},{\"p\":\".\"}],[],[{\"t\":\"Je\",\"h\":[[],[276]],\"pos\":\"[2][276]\",\"parent\":1,\"children\":276},{\"t\":\"l\",\"h\":[[],[277]],\"pos\":\"[2][277]\",\"parent\":1,\"children\":277},{\"p\":\"’\"},{\"t\":\"ai\",\"h\":[[],[278]],\"pos\":\"[2][278]\",\"parent\":1,\"children\":278},{\"t\":\"en\",\"h\":[[],[279]],\"pos\":\"[2][279]\",\"parent\":1,\"children\":279},{\"t\":\"pitié\",\"h\":[[],[280]],\"pos\":\"[2][280]\",\"parent\":1,\"children\":280},{\"p\":\",\"},{\"t\":\"et\",\"h\":[[],[281]],\"pos\":\"[2][281]\",\"parent\":1,\"children\":281},{\"t\":\"comment\",\"h\":[[],[282]],\"pos\":\"[2][282]\",\"parent\":1,\"children\":282},{\"p\":\",\"},{\"t\":\"sans\",\"h\":[[],[283]],\"pos\":\"[2][283]\",\"parent\":1,\"children\":283},{\"t\":\"que\",\"h\":[[],[284]],\"pos\":\"[2][284]\",\"parent\":1,\"children\":284},{\"t\":\"quelqu\",\"h\":[[],[285]],\"pos\":\"[2][285]\",\"parent\":1,\"children\":285},{\"p\":\"’\"},{\"t\":\"un\",\"h\":[[],[286]],\"pos\":\"[2][286]\",\"parent\":1,\"children\":286},{\"t\":\"des\",\"h\":[[],[287]],\"pos\":\"[2][287]\",\"parent\":1,\"children\":287},{\"t\":\"mortels\",\"h\":[[],[288]],\"pos\":\"[2][288]\",\"parent\":1,\"children\":288},{\"t\":\"ne\",\"h\":[[],[289]],\"pos\":\"[2][289]\",\"parent\":1,\"children\":289},{\"t\":\"s\",\"h\":[[],[290]],\"pos\":\"[2][290]\",\"parent\":1,\"children\":290},{\"p\":\"’\"},{\"t\":\"en\",\"h\":[[],[291]],\"pos\":\"[2][291]\",\"parent\":1,\"children\":291},{\"t\":\"occupe\",\"h\":[[],[292]],\"pos\":\"[2][292]\",\"parent\":1,\"children\":292},{\"p\":\",\"},{\"t\":\"privé\",\"h\":[[],[293]],\"pos\":\"[2][293]\",\"parent\":1,\"children\":293},{\"t\":\"de\",\"h\":[[],[294]],\"pos\":\"[2][294]\",\"parent\":1,\"children\":294},{\"t\":\"l\",\"h\":[[],[295]],\"pos\":\"[2][295]\",\"parent\":1,\"children\":295},{\"p\":\"’\"},{\"t\":\"oeil\",\"h\":[[],[296]],\"pos\":\"[2][296]\",\"parent\":1,\"children\":296},{\"t\":\"d\",\"h\":[[],[297]],\"pos\":\"[2][297]\",\"parent\":1,\"children\":297},{\"p\":\"’\"},{\"t\":\"un\",\"h\":[[],[298]],\"pos\":\"[2][298]\",\"parent\":1,\"children\":298},{\"t\":\"convive\",\"h\":[[],[299]],\"pos\":\"[2][299]\",\"parent\":1,\"children\":299},{\"p\":\",\"},{\"t\":\"malheureux\",\"h\":[[],[300]],\"pos\":\"[2][300]\",\"parent\":1,\"children\":300},{\"p\":\",\"},{\"t\":\"toujours\",\"h\":[[],[301]],\"pos\":\"[2][301]\",\"parent\":1,\"children\":301},{\"t\":\"seul\",\"h\":[[],[302]],\"pos\":\"[2][302]\",\"parent\":1,\"children\":302},{\"p\":\",\"},{\"t\":\"il\",\"h\":[[],[303]],\"pos\":\"[2][303]\",\"parent\":1,\"children\":303},{\"t\":\"souffre\",\"h\":[[],[304]],\"pos\":\"[2][304]\",\"parent\":1,\"children\":304},{\"t\":\"d\",\"h\":[[],[305]],\"pos\":\"[2][305]\",\"parent\":1,\"children\":305},{\"p\":\"’\"},{\"t\":\"un\",\"h\":[[],[306]],\"pos\":\"[2][306]\",\"parent\":1,\"children\":306},{\"t\":\"mal\",\"h\":[[],[307]],\"pos\":\"[2][307]\",\"parent\":1,\"children\":307},{\"t\":\"sauvage\",\"h\":[[],[308]],\"pos\":\"[2][308]\",\"parent\":1,\"children\":308},{\"p\":\",\"},{\"t\":\"et\",\"h\":[[],[309]],\"pos\":\"[2][309]\",\"parent\":1,\"children\":309},{\"t\":\"perd\",\"h\":[[],[310]],\"pos\":\"[2][310]\",\"parent\":1,\"children\":310},{\"t\":\"ses\",\"h\":[[],[311]],\"pos\":\"[2][311]\",\"parent\":1,\"children\":311},{\"t\":\"moyens\",\"h\":[[],[312]],\"pos\":\"[2][312]\",\"parent\":1,\"children\":312},{\"t\":\"à\",\"h\":[[],[313]],\"pos\":\"[2][313]\",\"parent\":1,\"children\":313},{\"t\":\"chaque\",\"h\":[[],[314]],\"pos\":\"[2][314]\",\"parent\":1,\"children\":314},{\"t\":\"fois\",\"h\":[[],[315]],\"pos\":\"[2][315]\",\"parent\":1,\"children\":315},{\"t\":\"que\",\"h\":[[],[316]],\"pos\":\"[2][316]\",\"parent\":1,\"children\":316},{\"t\":\"se\",\"h\":[[],[317]],\"pos\":\"[2][317]\",\"parent\":1,\"children\":317},{\"t\":\"manifeste\",\"h\":[[],[318]],\"pos\":\"[2][318]\",\"parent\":1,\"children\":318},{\"t\":\"quelque\",\"h\":[[],[319]],\"pos\":\"[2][319]\",\"parent\":1,\"children\":319},{\"t\":\"chose\",\"h\":[[],[320]],\"pos\":\"[2][320]\",\"parent\":1,\"children\":320},{\"t\":\"de\",\"h\":[[],[321]],\"pos\":\"[2][321]\",\"parent\":1,\"children\":321},{\"t\":\"l\",\"h\":[[],[322]],\"pos\":\"[2][322]\",\"parent\":1,\"children\":322},{\"p\":\"’\"},{\"t\":\"ordre\",\"h\":[[],[323]],\"pos\":\"[2][323]\",\"parent\":1,\"children\":323},{\"t\":\"du\",\"h\":[[],[324]],\"pos\":\"[2][324]\",\"parent\":1,\"children\":324},{\"t\":\"besoin\",\"h\":[[],[325]],\"pos\":\"[2][325]\",\"parent\":1,\"children\":325},{\"p\":\".\"},{\"t\":\"Comment\",\"h\":[[],[326]],\"pos\":\"[2][326]\",\"parent\":1,\"children\":326},{\"t\":\"donc\",\"h\":[[],[327]],\"pos\":\"[2][327]\",\"parent\":1,\"children\":327},{\"p\":\",\"},{\"t\":\"comment\",\"h\":[[],[328]],\"pos\":\"[2][328]\",\"parent\":1,\"children\":328},{\"t\":\"le\",\"h\":[[],[329]],\"pos\":\"[2][329]\",\"parent\":1,\"children\":329},{\"t\":\"malheureux\",\"h\":[[],[330]],\"pos\":\"[2][330]\",\"parent\":1,\"children\":330},{\"t\":\"endure\",\"h\":[[],[331]],\"pos\":\"[2][331]\",\"parent\":1,\"children\":331},{\"p\":\"-\"},{\"t\":\"t\",\"h\":[[],[332]],\"pos\":\"[2][332]\",\"parent\":1,\"children\":332},{\"p\":\"-\"},{\"t\":\"il\",\"h\":[[],[333]],\"pos\":\"[2][333]\",\"parent\":1,\"children\":333},{\"p\":\"?\"},{\"t\":\"Ô\",\"h\":[[],[334]],\"pos\":\"[2][334]\",\"parent\":1,\"children\":334},{\"t\":\"violences\",\"h\":[[],[335]],\"pos\":\"[2][335]\",\"parent\":1,\"children\":335},{\"t\":\"des\",\"h\":[[],[336]],\"pos\":\"[2][336]\",\"parent\":1,\"children\":336},{\"t\":\"mortels\",\"h\":[[],[337]],\"pos\":\"[2][337]\",\"parent\":1,\"children\":337},{\"p\":\",\"},{\"t\":\"ô\",\"h\":[[],[338]],\"pos\":\"[2][338]\",\"parent\":1,\"children\":338},{\"t\":\"pauvres\",\"h\":[[],[339]],\"pos\":\"[2][339]\",\"parent\":1,\"children\":339},{\"t\":\"races\",\"h\":[[],[340]],\"pos\":\"[2][340]\",\"parent\":1,\"children\":340},{\"t\":\"des\",\"h\":[[],[341]],\"pos\":\"[2][341]\",\"parent\":1,\"children\":341},{\"t\":\"mortels\",\"h\":[[],[342]],\"pos\":\"[2][342]\",\"parent\":1,\"children\":342},{\"t\":\"pour\",\"h\":[[],[343]],\"pos\":\"[2][343]\",\"parent\":1,\"children\":343},{\"t\":\"qui\",\"h\":[[],[344]],\"pos\":\"[2][344]\",\"parent\":1,\"children\":344},{\"t\":\"la\",\"h\":[[],[345]],\"pos\":\"[2][345]\",\"parent\":1,\"children\":345},{\"t\":\"vie\",\"h\":[[],[346]],\"pos\":\"[2][346]\",\"parent\":1,\"children\":346},{\"t\":\"n\",\"h\":[[],[347]],\"pos\":\"[2][347]\",\"parent\":1,\"children\":347},{\"p\":\"’\"},{\"t\":\"est\",\"h\":[[],[348]],\"pos\":\"[2][348]\",\"parent\":1,\"children\":348},{\"t\":\"pas\",\"h\":[[],[349]],\"pos\":\"[2][349]\",\"parent\":1,\"children\":349},{\"t\":\"normale\",\"h\":[[],[350]],\"pos\":\"[2][350]\",\"parent\":1,\"children\":350},{\"p\":\".\"}],[],[{\"t\":\"Celui\",\"h\":[[],[351]],\"pos\":\"[2][351]\",\"parent\":1,\"children\":351},{\"p\":\"-\"},{\"t\":\"là\",\"h\":[[],[352]],\"pos\":\"[2][352]\",\"parent\":1,\"children\":352},{\"p\":\",\"},{\"t\":\"peut\",\"h\":[[],[353]],\"pos\":\"[2][353]\",\"parent\":1,\"children\":353},{\"p\":\"-\"},{\"t\":\"être\",\"h\":[[],[354]],\"pos\":\"[2][354]\",\"parent\":1,\"children\":354},{\"t\":\"issu\",\"h\":[[],[355]],\"pos\":\"[2][355]\",\"parent\":1,\"children\":355},{\"t\":\"des\",\"h\":[[],[356]],\"pos\":\"[2][356]\",\"parent\":1,\"children\":356},{\"t\":\"maisons\",\"h\":[[],[357]],\"pos\":\"[2][357]\",\"parent\":1,\"children\":357},{\"t\":\"ancestrales\",\"h\":[[],[358]],\"pos\":\"[2][358]\",\"parent\":1,\"children\":358},{\"p\":\",\"},{\"t\":\"inférieur\",\"h\":[[],[359]],\"pos\":\"[2][359]\",\"parent\":1,\"children\":359},{\"t\":\"à\",\"h\":[[],[360]],\"pos\":\"[2][360]\",\"parent\":1,\"children\":360},{\"t\":\"personne\",\"h\":[[],[361]],\"pos\":\"[2][361]\",\"parent\":1,\"children\":361},{\"p\":\",\"},{\"t\":\"privé\",\"h\":[[],[362]],\"pos\":\"[2][362]\",\"parent\":1,\"children\":362},{\"t\":\"de\",\"h\":[[],[363]],\"pos\":\"[2][363]\",\"parent\":1,\"children\":363},{\"t\":\"tout\",\"h\":[[],[364]],\"pos\":\"[2][364]\",\"parent\":1,\"children\":364},{\"t\":\"dans\",\"h\":[[],[365]],\"pos\":\"[2][365]\",\"parent\":1,\"children\":365},{\"t\":\"son\",\"h\":[[],[366]],\"pos\":\"[2][366]\",\"parent\":1,\"children\":366},{\"t\":\"existence\",\"h\":[[],[367]],\"pos\":\"[2][367]\",\"parent\":1,\"children\":367},{\"p\":\",\"},{\"t\":\"il\",\"h\":[[],[368]],\"pos\":\"[2][368]\",\"parent\":1,\"children\":368},{\"t\":\"gît\",\"h\":[[],[369]],\"pos\":\"[2][369]\",\"parent\":1,\"children\":369},{\"p\":\",\"},{\"t\":\"seul\",\"h\":[[],[370]],\"pos\":\"[2][370]\",\"parent\":1,\"children\":370},{\"t\":\"à\",\"h\":[[],[371]],\"pos\":\"[2][371]\",\"parent\":1,\"children\":371},{\"t\":\"l\",\"h\":[[],[372]],\"pos\":\"[2][372]\",\"parent\":1,\"children\":372},{\"p\":\"’\"},{\"t\":\"écart\",\"h\":[[],[373]],\"pos\":\"[2][373]\",\"parent\":1,\"children\":373},{\"t\":\"des\",\"h\":[[],[374]],\"pos\":\"[2][374]\",\"parent\":1,\"children\":374},{\"t\":\"autres\",\"h\":[[],[375]],\"pos\":\"[2][375]\",\"parent\":1,\"children\":375},{\"p\":\",\"},{\"t\":\"en\",\"h\":[[],[376]],\"pos\":\"[2][376]\",\"parent\":1,\"children\":376},{\"t\":\"compagnie\",\"h\":[[],[377]],\"pos\":\"[2][377]\",\"parent\":1,\"children\":377},{\"t\":\"des\",\"h\":[[],[378]],\"pos\":\"[2][378]\",\"parent\":1,\"children\":378},{\"t\":\"bêtes\",\"h\":[[],[379]],\"pos\":\"[2][379]\",\"parent\":1,\"children\":379},{\"t\":\"tachetées\",\"h\":[[],[380]],\"pos\":\"[2][380]\",\"parent\":1,\"children\":380},{\"t\":\"et\",\"h\":[[],[381]],\"pos\":\"[2][381]\",\"parent\":1,\"children\":381},{\"t\":\"velues\",\"h\":[[],[382]],\"pos\":\"[2][382]\",\"parent\":1,\"children\":382},{\"p\":\",\"},{\"t\":\"pitoyable\",\"h\":[[],[383]],\"pos\":\"[2][383]\",\"parent\":1,\"children\":383},{\"t\":\"dans\",\"h\":[[],[384]],\"pos\":\"[2][384]\",\"parent\":1,\"children\":384},{\"t\":\"les\",\"h\":[[],[385]],\"pos\":\"[2][385]\",\"parent\":1,\"children\":385},{\"t\":\"douleurs\",\"h\":[[],[386]],\"pos\":\"[2][386]\",\"parent\":1,\"children\":386},{\"t\":\"mélangées\",\"h\":[[],[387]],\"pos\":\"[2][387]\",\"parent\":1,\"children\":387},{\"t\":\"à\",\"h\":[[],[388]],\"pos\":\"[2][388]\",\"parent\":1,\"children\":388},{\"t\":\"la\",\"h\":[[],[389]],\"pos\":\"[2][389]\",\"parent\":1,\"children\":389},{\"t\":\"faim\",\"h\":[[],[390]],\"pos\":\"[2][390]\",\"parent\":1,\"children\":390},{\"p\":\",\"},{\"t\":\"portant\",\"h\":[[],[391]],\"pos\":\"[2][391]\",\"parent\":1,\"children\":391},{\"t\":\"des\",\"h\":[[],[392]],\"pos\":\"[2][392]\",\"parent\":1,\"children\":392},{\"t\":\"fardeaux\",\"h\":[[],[393]],\"pos\":\"[2][393]\",\"parent\":1,\"children\":393},{\"t\":\"inguérissables\",\"h\":[[],[394]],\"pos\":\"[2][394]\",\"parent\":1,\"children\":394},{\"t\":\"dont\",\"h\":[[],[395]],\"pos\":\"[2][395]\",\"parent\":1,\"children\":395},{\"t\":\"personne\",\"h\":[[],[396]],\"pos\":\"[2][396]\",\"parent\":1,\"children\":396},{\"t\":\"ne\",\"h\":[[],[397]],\"pos\":\"[2][397]\",\"parent\":1,\"children\":397},{\"t\":\"s\",\"h\":[[],[398]],\"pos\":\"[2][398]\",\"parent\":1,\"children\":398},{\"p\":\"’\"},{\"t\":\"inquiète\",\"h\":[[],[399]],\"pos\":\"[2][399]\",\"parent\":1,\"children\":399},{\"p\":\".\"},{\"t\":\"Et\",\"h\":[[],[400]],\"pos\":\"[2][400]\",\"parent\":1,\"children\":400},{\"t\":\"celle\",\"h\":[[],[401]],\"pos\":\"[2][401]\",\"parent\":1,\"children\":401},{\"t\":\"à\",\"h\":[[],[402]],\"pos\":\"[2][402]\",\"parent\":1,\"children\":402},{\"t\":\"la\",\"h\":[[],[403]],\"pos\":\"[2][403]\",\"parent\":1,\"children\":403},{\"t\":\"bouche\",\"h\":[[],[404]],\"pos\":\"[2][404]\",\"parent\":1,\"children\":404},{\"t\":\"sans\",\"h\":[[],[405]],\"pos\":\"[2][405]\",\"parent\":1,\"children\":405},{\"t\":\"porte\",\"h\":[[],[406]],\"pos\":\"[2][406]\",\"parent\":1,\"children\":406},{\"p\":\",\"},{\"t\":\"l\",\"h\":[[],[407]],\"pos\":\"[2][407]\",\"parent\":1,\"children\":407},{\"p\":\"’\"},{\"t\":\"Écho\",\"h\":[[],[408]],\"pos\":\"[2][408]\",\"parent\":1,\"children\":408},{\"t\":\"qu\",\"h\":[[],[409]],\"pos\":\"[2][409]\",\"parent\":1,\"children\":409},{\"p\":\"’\"},{\"t\":\"on\",\"h\":[[],[410]],\"pos\":\"[2][410]\",\"parent\":1,\"children\":410},{\"t\":\"entend\",\"h\":[[],[411]],\"pos\":\"[2][411]\",\"parent\":1,\"children\":411},{\"t\":\"de\",\"h\":[[],[412]],\"pos\":\"[2][412]\",\"parent\":1,\"children\":412},{\"t\":\"loin\",\"h\":[[],[413]],\"pos\":\"[2][413]\",\"parent\":1,\"children\":413},{\"p\":\",\"},{\"t\":\"répond\",\"h\":[[],[414]],\"pos\":\"[2][414]\",\"parent\":1,\"children\":414},{\"t\":\"à\",\"h\":[[],[415]],\"pos\":\"[2][415]\",\"parent\":1,\"children\":415},{\"t\":\"ses\",\"h\":[[],[416]],\"pos\":\"[2][416]\",\"parent\":1,\"children\":416},{\"t\":\"lamentations\",\"h\":[[],[417]],\"pos\":\"[2][417]\",\"parent\":1,\"children\":417},{\"t\":\"aiguës\",\"h\":[[],[418]],\"pos\":\"[2][418]\",\"parent\":1,\"children\":418},{\"p\":\".\"}],[{\"t\":\"Rien\",\"h\":[[],[419]],\"pos\":\"[2][419]\",\"parent\":1,\"children\":419},{\"t\":\"de\",\"h\":[[],[420]],\"pos\":\"[2][420]\",\"parent\":1,\"children\":420},{\"t\":\"ces\",\"h\":[[],[421]],\"pos\":\"[2][421]\",\"parent\":1,\"children\":421},{\"t\":\"choses\",\"h\":[[],[422]],\"pos\":\"[2][422]\",\"parent\":1,\"children\":422},{\"t\":\"n\",\"h\":[[],[423]],\"pos\":\"[2][423]\",\"parent\":1,\"children\":423},{\"p\":\"’\"},{\"t\":\"est\",\"h\":[[],[424]],\"pos\":\"[2][424]\",\"parent\":1,\"children\":424},{\"t\":\"étonnant\",\"h\":[[],[425]],\"pos\":\"[2][425]\",\"parent\":1,\"children\":425},{\"t\":\"à\",\"h\":[[],[426]],\"pos\":\"[2][426]\",\"parent\":1,\"children\":426},{\"t\":\"mes\",\"h\":[[],[427]],\"pos\":\"[2][427]\",\"parent\":1,\"children\":427},{\"t\":\"yeux\",\"h\":[[],[428]],\"pos\":\"[2][428]\",\"parent\":1,\"children\":428},{\"p\":\".\"},{\"t\":\"Car\",\"h\":[[],[429]],\"pos\":\"[2][429]\",\"parent\":1,\"children\":429},{\"t\":\"ils\",\"h\":[[],[430]],\"pos\":\"[2][430]\",\"parent\":1,\"children\":430},{\"t\":\"sont\",\"h\":[[],[431]],\"pos\":\"[2][431]\",\"parent\":1,\"children\":431},{\"t\":\"d\",\"h\":[[],[432]],\"pos\":\"[2][432]\",\"parent\":1,\"children\":432},{\"p\":\"’\"},{\"t\":\"origine\",\"h\":[[],[433]],\"pos\":\"[2][433]\",\"parent\":1,\"children\":433},{\"t\":\"divine\",\"h\":[[],[434]],\"pos\":\"[2][434]\",\"parent\":1,\"children\":434},{\"p\":\",\"},{\"t\":\"si\",\"h\":[[],[435]],\"pos\":\"[2][435]\",\"parent\":1,\"children\":435},{\"t\":\"du\",\"h\":[[],[436]],\"pos\":\"[2][436]\",\"parent\":1,\"children\":436},{\"t\":\"moins\",\"h\":[[],[437]],\"pos\":\"[2][437]\",\"parent\":1,\"children\":437},{\"t\":\"mon\",\"h\":[[],[438]],\"pos\":\"[2][438]\",\"parent\":1,\"children\":438},{\"t\":\"idée\",\"h\":[[],[439]],\"pos\":\"[2][439]\",\"parent\":1,\"children\":439},{\"t\":\"vaut\",\"h\":[[],[440]],\"pos\":\"[2][440]\",\"parent\":1,\"children\":440},{\"t\":\"quelque\",\"h\":[[],[441]],\"pos\":\"[2][441]\",\"parent\":1,\"children\":441},{\"t\":\"chose\",\"h\":[[],[442]],\"pos\":\"[2][442]\",\"parent\":1,\"children\":442},{\"p\":\",\"},{\"t\":\"ces\",\"h\":[[],[443]],\"pos\":\"[2][443]\",\"parent\":1,\"children\":443},{\"t\":\"maux\",\"h\":[[],[444]],\"pos\":\"[2][444]\",\"parent\":1,\"children\":444},{\"t\":\"qui\",\"h\":[[],[445]],\"pos\":\"[2][445]\",\"parent\":1,\"children\":445},{\"t\":\"sont\",\"h\":[[],[446]],\"pos\":\"[2][446]\",\"parent\":1,\"children\":446},{\"t\":\"venus\",\"h\":[[],[447]],\"pos\":\"[2][447]\",\"parent\":1,\"children\":447},{\"t\":\"à\",\"h\":[[],[448]],\"pos\":\"[2][448]\",\"parent\":1,\"children\":448},{\"t\":\"lui\",\"h\":[[],[449]],\"pos\":\"[2][449]\",\"parent\":1,\"children\":449},{\"t\":\"à\",\"h\":[[],[450]],\"pos\":\"[2][450]\",\"parent\":1,\"children\":450},{\"t\":\"cause\",\"h\":[[],[451]],\"pos\":\"[2][451]\",\"parent\":1,\"children\":451},{\"t\":\"de\",\"h\":[[],[452]],\"pos\":\"[2][452]\",\"parent\":1,\"children\":452},{\"t\":\"Chrysè\",\"h\":[[],[453]],\"pos\":\"[2][453]\",\"parent\":1,\"children\":453},{\"t\":\"aux\",\"h\":[[],[454]],\"pos\":\"[2][454]\",\"parent\":1,\"children\":454},{\"t\":\"sauvages\",\"h\":[[],[455]],\"pos\":\"[2][455]\",\"parent\":1,\"children\":455},{\"t\":\"pensées\",\"h\":[[],[456]],\"pos\":\"[2][456]\",\"parent\":1,\"children\":456},{\"p\":\",\"},{\"t\":\"et\",\"h\":[[],[457]],\"pos\":\"[2][457]\",\"parent\":1,\"children\":457},{\"t\":\"ces\",\"h\":[[],[458]],\"pos\":\"[2][458]\",\"parent\":1,\"children\":458},{\"t\":\"épreuves\",\"h\":[[],[459]],\"pos\":\"[2][459]\",\"parent\":1,\"children\":459},{\"t\":\"qu\",\"h\":[[],[460]],\"pos\":\"[2][460]\",\"parent\":1,\"children\":460},{\"p\":\"’\"},{\"t\":\"il\",\"h\":[[],[461]],\"pos\":\"[2][461]\",\"parent\":1,\"children\":461},{\"t\":\"vit\",\"h\":[[],[462]],\"pos\":\"[2][462]\",\"parent\":1,\"children\":462},{\"t\":\"maintenant\",\"h\":[[],[463]],\"pos\":\"[2][463]\",\"parent\":1,\"children\":463},{\"p\":\",\"},{\"t\":\"sans\",\"h\":[[],[464]],\"pos\":\"[2][464]\",\"parent\":1,\"children\":464},{\"t\":\"aides\",\"h\":[[],[465]],\"pos\":\"[2][465]\",\"parent\":1,\"children\":465},{\"p\":\",\"},{\"t\":\"il\",\"h\":[[],[466]],\"pos\":\"[2][466]\",\"parent\":1,\"children\":466},{\"t\":\"n\",\"h\":[[],[467]],\"pos\":\"[2][467]\",\"parent\":1,\"children\":467},{\"p\":\"’\"},{\"t\":\"est\",\"h\":[[],[468]],\"pos\":\"[2][468]\",\"parent\":1,\"children\":468},{\"t\":\"pas\",\"h\":[[],[469]],\"pos\":\"[2][469]\",\"parent\":1,\"children\":469},{\"t\":\"possible\",\"h\":[[],[470]],\"pos\":\"[2][470]\",\"parent\":1,\"children\":470},{\"t\":\"que\",\"h\":[[],[471]],\"pos\":\"[2][471]\",\"parent\":1,\"children\":471},{\"t\":\"ce\",\"h\":[[],[472]],\"pos\":\"[2][472]\",\"parent\":1,\"children\":472},{\"t\":\"ne\",\"h\":[[],[473]],\"pos\":\"[2][473]\",\"parent\":1,\"children\":473},{\"t\":\"soit\",\"h\":[[],[474]],\"pos\":\"[2][474]\",\"parent\":1,\"children\":474},{\"t\":\"pas\",\"h\":[[],[475]],\"pos\":\"[2][475]\",\"parent\":1,\"children\":475},{\"t\":\"par\",\"h\":[[],[476]],\"pos\":\"[2][476]\",\"parent\":1,\"children\":476},{\"t\":\"l\",\"h\":[[],[477]],\"pos\":\"[2][477]\",\"parent\":1,\"children\":477},{\"p\":\"’\"},{\"t\":\"effet\",\"h\":[[],[478]],\"pos\":\"[2][478]\",\"parent\":1,\"children\":478},{\"t\":\"du\",\"h\":[[],[479]],\"pos\":\"[2][479]\",\"parent\":1,\"children\":479},{\"t\":\"souci\",\"h\":[[],[480]],\"pos\":\"[2][480]\",\"parent\":1,\"children\":480},{\"t\":\"de\",\"h\":[[],[481]],\"pos\":\"[2][481]\",\"parent\":1,\"children\":481},{\"t\":\"l\",\"h\":[[],[482]],\"pos\":\"[2][482]\",\"parent\":1,\"children\":482},{\"p\":\"’\"},{\"t\":\"un\",\"h\":[[],[483]],\"pos\":\"[2][483]\",\"parent\":1,\"children\":483},{\"t\":\"des\",\"h\":[[],[484]],\"pos\":\"[2][484]\",\"parent\":1,\"children\":484},{\"t\":\"dieux\",\"h\":[[],[485]],\"pos\":\"[2][485]\",\"parent\":1,\"children\":485},{\"p\":\";\"},{\"t\":\"souci\",\"h\":[[],[486]],\"pos\":\"[2][486]\",\"parent\":1,\"children\":486},{\"t\":\"de\",\"h\":[[],[487]],\"pos\":\"[2][487]\",\"parent\":1,\"children\":487},{\"t\":\"ce\",\"h\":[[],[488]],\"pos\":\"[2][488]\",\"parent\":1,\"children\":488},{\"t\":\"que\",\"h\":[[],[489]],\"pos\":\"[2][489]\",\"parent\":1,\"children\":489},{\"t\":\"cet\",\"h\":[[],[490]],\"pos\":\"[2][490]\",\"parent\":1,\"children\":490},{\"t\":\"homme\",\"h\":[[],[491]],\"pos\":\"[2][491]\",\"parent\":1,\"children\":491},{\"t\":\"ne\",\"h\":[[],[492]],\"pos\":\"[2][492]\",\"parent\":1,\"children\":492},{\"t\":\"tende\",\"h\":[[],[493]],\"pos\":\"[2][493]\",\"parent\":1,\"children\":493},{\"t\":\"pas\",\"h\":[[],[494]],\"pos\":\"[2][494]\",\"parent\":1,\"children\":494},{\"t\":\"contre\",\"h\":[[],[495]],\"pos\":\"[2][495]\",\"parent\":1,\"children\":495},{\"t\":\"Troie\",\"h\":[[],[496]],\"pos\":\"[2][496]\",\"parent\":1,\"children\":496},{\"t\":\"les\",\"h\":[[],[497]],\"pos\":\"[2][497]\",\"parent\":1,\"children\":497},{\"t\":\"flèches\",\"h\":[[],[498]],\"pos\":\"[2][498]\",\"parent\":1,\"children\":498},{\"t\":\"imprenables\",\"h\":[[],[499]],\"pos\":\"[2][499]\",\"parent\":1,\"children\":499},{\"t\":\"des\",\"h\":[[],[500]],\"pos\":\"[2][500]\",\"parent\":1,\"children\":500},{\"t\":\"dieux\",\"h\":[[],[501]],\"pos\":\"[2][501]\",\"parent\":1,\"children\":501},{\"p\":\",\"},{\"t\":\"avant\",\"h\":[[],[502]],\"pos\":\"[2][502]\",\"parent\":1,\"children\":502},{\"t\":\"que\",\"h\":[[],[503]],\"pos\":\"[2][503]\",\"parent\":1,\"children\":503},{\"t\":\"le\",\"h\":[[],[504]],\"pos\":\"[2][504]\",\"parent\":1,\"children\":504},{\"t\":\"moment\",\"h\":[[],[505]],\"pos\":\"[2][505]\",\"parent\":1,\"children\":505},{\"t\":\"ne\",\"h\":[[],[506]],\"pos\":\"[2][506]\",\"parent\":1,\"children\":506},{\"t\":\"soit\",\"h\":[[],[507]],\"pos\":\"[2][507]\",\"parent\":1,\"children\":507},{\"t\":\"arrivé\",\"h\":[[],[508]],\"pos\":\"[2][508]\",\"parent\":1,\"children\":508},{\"p\":\",\"},{\"t\":\"moment\",\"h\":[[],[509]],\"pos\":\"[2][509]\",\"parent\":1,\"children\":509},{\"t\":\"pour\",\"h\":[[],[510]],\"pos\":\"[2][510]\",\"parent\":1,\"children\":510},{\"t\":\"lequel\",\"h\":[[],[511]],\"pos\":\"[2][511]\",\"parent\":1,\"children\":511},{\"t\":\"il\",\"h\":[[],[512]],\"pos\":\"[2][512]\",\"parent\":1,\"children\":512},{\"t\":\"est\",\"h\":[[],[513]],\"pos\":\"[2][513]\",\"parent\":1,\"children\":513},{\"t\":\"dit\",\"h\":[[],[514]],\"pos\":\"[2][514]\",\"parent\":1,\"children\":514},{\"t\":\"qu\",\"h\":[[],[515]],\"pos\":\"[2][515]\",\"parent\":1,\"children\":515},{\"p\":\"’\"},{\"t\":\"il\",\"h\":[[],[516]],\"pos\":\"[2][516]\",\"parent\":1,\"children\":516},{\"t\":\"est\",\"h\":[[],[517]],\"pos\":\"[2][517]\",\"parent\":1,\"children\":517},{\"t\":\"nécessaire\",\"h\":[[],[518]],\"pos\":\"[2][518]\",\"parent\":1,\"children\":518},{\"t\":\"qu\",\"h\":[[],[519]],\"pos\":\"[2][519]\",\"parent\":1,\"children\":519},{\"p\":\"’\"},{\"t\":\"ils\",\"h\":[[],[520]],\"pos\":\"[2][520]\",\"parent\":1,\"children\":520},{\"p\":\"(\"},{\"t\":\"les\",\"h\":[[],[521]],\"pos\":\"[2][521]\",\"parent\":1,\"children\":521},{\"t\":\"Troyens\",\"h\":[[],[522]],\"pos\":\"[2][522]\",\"parent\":1,\"children\":522},{\"p\":\")\"},{\"t\":\"soient\",\"h\":[[],[523]],\"pos\":\"[2][523]\",\"parent\":1,\"children\":523},{\"t\":\"domptés\",\"h\":[[],[524]],\"pos\":\"[2][524]\",\"parent\":1,\"children\":524},{\"t\":\"par\",\"h\":[[],[525]],\"pos\":\"[2][525]\",\"parent\":1,\"children\":525},{\"t\":\"ces\",\"h\":[[],[526]],\"pos\":\"[2][526]\",\"parent\":1,\"children\":526},{\"t\":\"hommes\",\"h\":[[],[527]],\"pos\":\"[2][527]\",\"parent\":1,\"children\":527},{\"p\":\"(\"},{\"t\":\"les\",\"h\":[[],[528]],\"pos\":\"[2][528]\",\"parent\":1,\"children\":528},{\"t\":\"Grecs\",\"h\":[[],[529]],\"pos\":\"[2][529]\",\"parent\":1,\"children\":529},{\"p\":\")\"},{\"p\":\".\"}],[],[{\"t\":\"Aie\",\"h\":[[],[530]],\"pos\":\"[2][530]\",\"parent\":1,\"children\":530},{\"t\":\"la\",\"h\":[[],[531]],\"pos\":\"[2][531]\",\"parent\":1,\"children\":531},{\"t\":\"bouche\",\"h\":[[],[532]],\"pos\":\"[2][532]\",\"parent\":1,\"children\":532},{\"t\":\"tranquille\",\"h\":[[],[533]],\"pos\":\"[2][533]\",\"parent\":1,\"children\":533},{\"p\":\",\"},{\"t\":\"enfant\",\"h\":[[],[534]],\"pos\":\"[2][534]\",\"parent\":1,\"children\":534},{\"p\":\".\"},{\"t\":\"Néo\",\"h\":[[],[535]],\"pos\":\"[2][535]\",\"parent\":1,\"children\":535},{\"p\":\".\"},{\"t\":\"Pourquoi\",\"h\":[[],[536]],\"pos\":\"[2][536]\",\"parent\":1,\"children\":536},{\"t\":\"cela\",\"h\":[[],[537]],\"pos\":\"[2][537]\",\"parent\":1,\"children\":537},{\"p\":\"?\"},{\"t\":\"Choeur\",\"h\":[[],[538]],\"pos\":\"[2][538]\",\"parent\":1,\"children\":538},{\"p\":\".\"},{\"t\":\"Un\",\"h\":[[],[539]],\"pos\":\"[2][539]\",\"parent\":1,\"children\":539},{\"t\":\"son\",\"h\":[[],[540]],\"pos\":\"[2][540]\",\"parent\":1,\"children\":540},{\"t\":\"s\",\"h\":[[],[541]],\"pos\":\"[2][541]\",\"parent\":1,\"children\":541},{\"p\":\"’\"},{\"t\":\"est\",\"h\":[[],[542]],\"pos\":\"[2][542]\",\"parent\":1,\"children\":542},{\"t\":\"fait\",\"h\":[[],[543]],\"pos\":\"[2][543]\",\"parent\":1,\"children\":543},{\"t\":\"entendre\",\"h\":[[],[544]],\"pos\":\"[2][544]\",\"parent\":1,\"children\":544},{\"t\":\"compagnon\",\"h\":[[],[545]],\"pos\":\"[2][545]\",\"parent\":1,\"children\":545},{\"t\":\"d\",\"h\":[[],[546]],\"pos\":\"[2][546]\",\"parent\":1,\"children\":546},{\"p\":\"’\"},{\"t\":\"un\",\"h\":[[],[547]],\"pos\":\"[2][547]\",\"parent\":1,\"children\":547},{\"t\":\"homme\",\"h\":[[],[548]],\"pos\":\"[2][548]\",\"parent\":1,\"children\":548},{\"t\":\"sans\",\"h\":[[],[549]],\"pos\":\"[2][549]\",\"parent\":1,\"children\":549},{\"t\":\"doute\",\"h\":[[],[550]],\"pos\":\"[2][550]\",\"parent\":1,\"children\":550},{\"t\":\"affaibli\",\"h\":[[],[551]],\"pos\":\"[2][551]\",\"parent\":1,\"children\":551},{\"p\":\",\"},{\"t\":\"venu\",\"h\":[[],[552]],\"pos\":\"[2][552]\",\"parent\":1,\"children\":552},{\"t\":\"de\",\"h\":[[],[553]],\"pos\":\"[2][553]\",\"parent\":1,\"children\":553},{\"t\":\"lieux\",\"h\":[[],[554]],\"pos\":\"[2][554]\",\"parent\":1,\"children\":554},{\"t\":\"ici\",\"h\":[[],[555]],\"pos\":\"[2][555]\",\"parent\":1,\"children\":555},{\"t\":\"ou\",\"h\":[[],[556]],\"pos\":\"[2][556]\",\"parent\":1,\"children\":556},{\"t\":\"là\",\"h\":[[],[557]],\"pos\":\"[2][557]\",\"parent\":1,\"children\":557},{\"p\":\".\"},{\"t\":\"Ils\",\"h\":[[],[558]],\"pos\":\"[2][558]\",\"parent\":1,\"children\":558},{\"t\":\"me\",\"h\":[[],[559]],\"pos\":\"[2][559]\",\"parent\":1,\"children\":559},{\"t\":\"frappent\",\"h\":[[],[560]],\"pos\":\"[2][560]\",\"parent\":1,\"children\":560},{\"p\":\",\"},{\"t\":\"ils\",\"h\":[[],[561]],\"pos\":\"[2][561]\",\"parent\":1,\"children\":561},{\"t\":\"me\",\"h\":[[],[562]],\"pos\":\"[2][562]\",\"parent\":1,\"children\":562},{\"t\":\"frappent\",\"h\":[[],[563]],\"pos\":\"[2][563]\",\"parent\":1,\"children\":563},{\"p\":\",\"},{\"t\":\"les\",\"h\":[[],[564]],\"pos\":\"[2][564]\",\"parent\":1,\"children\":564},{\"t\":\"authentiques\",\"h\":[[],[565]],\"pos\":\"[2][565]\",\"parent\":1,\"children\":565},{\"t\":\"sons\",\"h\":[[],[566]],\"pos\":\"[2][566]\",\"parent\":1,\"children\":566},{\"t\":\"d\",\"h\":[[],[567]],\"pos\":\"[2][567]\",\"parent\":1,\"children\":567},{\"p\":\"’\"},{\"t\":\"un\",\"h\":[[],[568]],\"pos\":\"[2][568]\",\"parent\":1,\"children\":568},{\"t\":\"homme\",\"h\":[[],[569]],\"pos\":\"[2][569]\",\"parent\":1,\"children\":569},{\"t\":\"marchant\",\"h\":[[],[570]],\"pos\":\"[2][570]\",\"parent\":1,\"children\":570},{\"t\":\"suivant\",\"h\":[[],[571]],\"pos\":\"[2][571]\",\"parent\":1,\"children\":571},{\"t\":\"la\",\"h\":[[],[572]],\"pos\":\"[2][572]\",\"parent\":1,\"children\":572},{\"t\":\"nécessité\",\"h\":[[],[573]],\"pos\":\"[2][573]\",\"parent\":1,\"children\":573},{\"t\":\"de\",\"h\":[[],[574]],\"pos\":\"[2][574]\",\"parent\":1,\"children\":574},{\"t\":\"son\",\"h\":[[],[575]],\"pos\":\"[2][575]\",\"parent\":1,\"children\":575},{\"t\":\"pied\",\"h\":[[],[576]],\"pos\":\"[2][576]\",\"parent\":1,\"children\":576},{\"p\":\",\"},{\"t\":\"et\",\"h\":[[],[577]],\"pos\":\"[2][577]\",\"parent\":1,\"children\":577},{\"t\":\"ne\",\"h\":[[],[578]],\"pos\":\"[2][578]\",\"parent\":1,\"children\":578},{\"t\":\"m\",\"h\":[[],[579]],\"pos\":\"[2][579]\",\"parent\":1,\"children\":579},{\"p\":\"’\"},{\"t\":\"a\",\"h\":[[],[580]],\"pos\":\"[2][580]\",\"parent\":1,\"children\":580},{\"t\":\"pas\",\"h\":[[],[581]],\"pos\":\"[2][581]\",\"parent\":1,\"children\":581},{\"t\":\"échappé\",\"h\":[[],[582]],\"pos\":\"[2][582]\",\"parent\":1,\"children\":582},{\"t\":\"une\",\"h\":[[],[583]],\"pos\":\"[2][583]\",\"parent\":1,\"children\":583},{\"t\":\"lourde\",\"h\":[[],[584]],\"pos\":\"[2][584]\",\"parent\":1,\"children\":584},{\"t\":\"voix\",\"h\":[[],[585]],\"pos\":\"[2][585]\",\"parent\":1,\"children\":585},{\"t\":\"au\",\"h\":[[],[586]],\"pos\":\"[2][586]\",\"parent\":1,\"children\":586},{\"t\":\"loin\",\"h\":[[],[587]],\"pos\":\"[2][587]\",\"parent\":1,\"children\":587},{\"t\":\"d\",\"h\":[[],[588]],\"pos\":\"[2][588]\",\"parent\":1,\"children\":588},{\"p\":\"’\"},{\"t\":\"un\",\"h\":[[],[589]],\"pos\":\"[2][589]\",\"parent\":1,\"children\":589},{\"t\":\"homme\",\"h\":[[],[590]],\"pos\":\"[2][590]\",\"parent\":1,\"children\":590},{\"t\":\"épuisé\",\"h\":[[],[591]],\"pos\":\"[2][591]\",\"parent\":1,\"children\":591},{\"p\":\";\"},{\"t\":\"car\",\"h\":[[],[592]],\"pos\":\"[2][592]\",\"parent\":1,\"children\":592},{\"t\":\"il\",\"h\":[[],[593]],\"pos\":\"[2][593]\",\"parent\":1,\"children\":593},{\"t\":\"émet\",\"h\":[[],[594]],\"pos\":\"[2][594]\",\"parent\":1,\"children\":594},{\"t\":\"des\",\"h\":[[],[595]],\"pos\":\"[2][595]\",\"parent\":1,\"children\":595},{\"t\":\"plaintes\",\"h\":[[],[596]],\"pos\":\"[2][596]\",\"parent\":1,\"children\":596},{\"t\":\"distinctes\",\"h\":[[],[597]],\"pos\":\"[2][597]\",\"parent\":1,\"children\":597},{\"p\":\".\"}],[],[{\"t\":\"Allons\",\"h\":[[],[598]],\"pos\":\"[2][598]\",\"parent\":1,\"children\":598},{\"p\":\",\"},{\"t\":\"enfant\",\"h\":[[],[599]],\"pos\":\"[2][599]\",\"parent\":1,\"children\":599},{\"p\":\",\"},{\"t\":\"aie\",\"h\":[[],[600]],\"pos\":\"[2][600]\",\"parent\":1,\"children\":600},{\"p\":\"…\"},{\"t\":\"Néo\",\"h\":[[],[601]],\"pos\":\"[2][601]\",\"parent\":1,\"children\":601},{\"p\":\".\"},{\"t\":\"Dis\",\"h\":[[],[602]],\"pos\":\"[2][602]\",\"parent\":1,\"children\":602},{\"t\":\"ce\",\"h\":[[],[603]],\"pos\":\"[2][603]\",\"parent\":1,\"children\":603},{\"t\":\"que\",\"h\":[[],[604]],\"pos\":\"[2][604]\",\"parent\":1,\"children\":604},{\"t\":\"tu\",\"h\":[[],[605]],\"pos\":\"[2][605]\",\"parent\":1,\"children\":605},{\"t\":\"penses\",\"h\":[[],[606]],\"pos\":\"[2][606]\",\"parent\":1,\"children\":606},{\"p\":\".\"},{\"t\":\"Choeur\",\"h\":[[],[607]],\"pos\":\"[2][607]\",\"parent\":1,\"children\":607},{\"p\":\".\"},{\"p\":\"…\"},{\"t\":\"des\",\"h\":[[],[608]],\"pos\":\"[2][608]\",\"parent\":1,\"children\":608},{\"t\":\"idées\",\"h\":[[],[609]],\"pos\":\"[2][609]\",\"parent\":1,\"children\":609},{\"t\":\"nouvelles\",\"h\":[[],[610]],\"pos\":\"[2][610]\",\"parent\":1,\"children\":610},{\"p\":\".\"}],[{\"t\":\"L\",\"h\":[[],[611]],\"pos\":\"[2][611]\",\"parent\":1,\"children\":611},{\"p\":\"’\"},{\"t\":\"homme\",\"h\":[[],[612]],\"pos\":\"[2][612]\",\"parent\":1,\"children\":612},{\"t\":\"n\",\"h\":[[],[613]],\"pos\":\"[2][613]\",\"parent\":1,\"children\":613},{\"p\":\"’\"},{\"t\":\"est\",\"h\":[[],[614]],\"pos\":\"[2][614]\",\"parent\":1,\"children\":614},{\"t\":\"pas\",\"h\":[[],[615]],\"pos\":\"[2][615]\",\"parent\":1,\"children\":615},{\"t\":\"ailleurs\",\"h\":[[],[616]],\"pos\":\"[2][616]\",\"parent\":1,\"children\":616},{\"p\":\",\"},{\"t\":\"mais\",\"h\":[[],[617]],\"pos\":\"[2][617]\",\"parent\":1,\"children\":617},{\"t\":\"ici\",\"h\":[[],[618]],\"pos\":\"[2][618]\",\"parent\":1,\"children\":618},{\"t\":\"même\",\"h\":[[],[619]],\"pos\":\"[2][619]\",\"parent\":1,\"children\":619},{\"p\":\",\"},{\"t\":\"ne\",\"h\":[[],[620]],\"pos\":\"[2][620]\",\"parent\":1,\"children\":620},{\"t\":\"s\",\"h\":[[],[621]],\"pos\":\"[2][621]\",\"parent\":1,\"children\":621},{\"p\":\"’\"},{\"t\":\"accompagnant\",\"h\":[[],[622]],\"pos\":\"[2][622]\",\"parent\":1,\"children\":622},{\"t\":\"pas\",\"h\":[[],[623]],\"pos\":\"[2][623]\",\"parent\":1,\"children\":623},{\"t\":\"du\",\"h\":[[],[624]],\"pos\":\"[2][624]\",\"parent\":1,\"children\":624},{\"t\":\"chant\",\"h\":[[],[625]],\"pos\":\"[2][625]\",\"parent\":1,\"children\":625},{\"t\":\"d\",\"h\":[[],[626]],\"pos\":\"[2][626]\",\"parent\":1,\"children\":626},{\"p\":\"’\"},{\"t\":\"une\",\"h\":[[],[627]],\"pos\":\"[2][627]\",\"parent\":1,\"children\":627},{\"t\":\"syrinx\",\"h\":[[],[628]],\"pos\":\"[2][628]\",\"parent\":1,\"children\":628},{\"p\":\",\"},{\"t\":\"tel\",\"h\":[[],[629]],\"pos\":\"[2][629]\",\"parent\":1,\"children\":629},{\"t\":\"un\",\"h\":[[],[630]],\"pos\":\"[2][630]\",\"parent\":1,\"children\":630},{\"t\":\"berger\",\"h\":[[],[631]],\"pos\":\"[2][631]\",\"parent\":1,\"children\":631},{\"t\":\"qui\",\"h\":[[],[632]],\"pos\":\"[2][632]\",\"parent\":1,\"children\":632},{\"t\":\"bat\",\"h\":[[],[633]],\"pos\":\"[2][633]\",\"parent\":1,\"children\":633},{\"t\":\"la\",\"h\":[[],[634]],\"pos\":\"[2][634]\",\"parent\":1,\"children\":634},{\"t\":\"campagne\",\"h\":[[],[635]],\"pos\":\"[2][635]\",\"parent\":1,\"children\":635},{\"p\":\",\"},{\"t\":\"mais\",\"h\":[[],[636]],\"pos\":\"[2][636]\",\"parent\":1,\"children\":636},{\"t\":\"plutôt\",\"h\":[[],[637]],\"pos\":\"[2][637]\",\"parent\":1,\"children\":637},{\"p\":\",\"},{\"t\":\"il\",\"h\":[[],[638]],\"pos\":\"[2][638]\",\"parent\":1,\"children\":638},{\"t\":\"lance\",\"h\":[[],[639]],\"pos\":\"[2][639]\",\"parent\":1,\"children\":639},{\"t\":\"un\",\"h\":[[],[640]],\"pos\":\"[2][640]\",\"parent\":1,\"children\":640},{\"t\":\"cri\",\"h\":[[],[641]],\"pos\":\"[2][641]\",\"parent\":1,\"children\":641},{\"t\":\"visible\",\"h\":[[],[642]],\"pos\":\"[2][642]\",\"parent\":1,\"children\":642},{\"t\":\"de\",\"h\":[[],[643]],\"pos\":\"[2][643]\",\"parent\":1,\"children\":643},{\"t\":\"loin\",\"h\":[[],[644]],\"pos\":\"[2][644]\",\"parent\":1,\"children\":644},{\"p\":\",\"},{\"t\":\"soit\",\"h\":[[],[645]],\"pos\":\"[2][645]\",\"parent\":1,\"children\":645},{\"t\":\"parce\",\"h\":[[],[646]],\"pos\":\"[2][646]\",\"parent\":1,\"children\":646},{\"t\":\"qu\",\"h\":[[],[647]],\"pos\":\"[2][647]\",\"parent\":1,\"children\":647},{\"p\":\"’\"},{\"t\":\"il\",\"h\":[[],[648]],\"pos\":\"[2][648]\",\"parent\":1,\"children\":648},{\"t\":\"trébuche\",\"h\":[[],[649]],\"pos\":\"[2][649]\",\"parent\":1,\"children\":649},{\"t\":\"sous\",\"h\":[[],[650]],\"pos\":\"[2][650]\",\"parent\":1,\"children\":650},{\"t\":\"le\",\"h\":[[],[651]],\"pos\":\"[2][651]\",\"parent\":1,\"children\":651},{\"t\":\"coup\",\"h\":[[],[652]],\"pos\":\"[2][652]\",\"parent\":1,\"children\":652},{\"t\":\"de\",\"h\":[[],[653]],\"pos\":\"[2][653]\",\"parent\":1,\"children\":653},{\"t\":\"la\",\"h\":[[],[654]],\"pos\":\"[2][654]\",\"parent\":1,\"children\":654},{\"t\":\"contrainte\",\"h\":[[],[655]],\"pos\":\"[2][655]\",\"parent\":1,\"children\":655},{\"p\":\",\"},{\"t\":\"soit\",\"h\":[[],[656]],\"pos\":\"[2][656]\",\"parent\":1,\"children\":656},{\"t\":\"parce\",\"h\":[[],[657]],\"pos\":\"[2][657]\",\"parent\":1,\"children\":657},{\"t\":\"qu\",\"h\":[[],[658]],\"pos\":\"[2][658]\",\"parent\":1,\"children\":658},{\"p\":\"’\"},{\"t\":\"il\",\"h\":[[],[659]],\"pos\":\"[2][659]\",\"parent\":1,\"children\":659},{\"t\":\"aperçoit\",\"h\":[[],[660]],\"pos\":\"[2][660]\",\"parent\":1,\"children\":660},{\"t\":\"le\",\"h\":[[],[661]],\"pos\":\"[2][661]\",\"parent\":1,\"children\":661},{\"t\":\"port\",\"h\":[[],[662]],\"pos\":\"[2][662]\",\"parent\":1,\"children\":662},{\"t\":\"inhospitalier\",\"h\":[[],[663]],\"pos\":\"[2][663]\",\"parent\":1,\"children\":663},{\"t\":\"d\",\"h\":[[],[664]],\"pos\":\"[2][664]\",\"parent\":1,\"children\":664},{\"p\":\"’\"},{\"t\":\"un\",\"h\":[[],[665]],\"pos\":\"[2][665]\",\"parent\":1,\"children\":665},{\"t\":\"navire\",\"h\":[[],[666]],\"pos\":\"[2][666]\",\"parent\":1,\"children\":666},{\"p\":\".\"},{\"t\":\"En\",\"h\":[[],[667]],\"pos\":\"[2][667]\",\"parent\":1,\"children\":667},{\"t\":\"effet\",\"h\":[[],[668]],\"pos\":\"[2][668]\",\"parent\":1,\"children\":668},{\"p\":\",\"},{\"t\":\"il\",\"h\":[[],[669]],\"pos\":\"[2][669]\",\"parent\":1,\"children\":669},{\"t\":\"lance\",\"h\":[[],[670]],\"pos\":\"[2][670]\",\"parent\":1,\"children\":670},{\"t\":\"un\",\"h\":[[],[671]],\"pos\":\"[2][671]\",\"parent\":1,\"children\":671},{\"t\":\"cri\",\"h\":[[],[672]],\"pos\":\"[2][672]\",\"parent\":1,\"children\":672},{\"t\":\"terrible\",\"h\":[[],[673]],\"pos\":\"[2][673]\",\"parent\":1,\"children\":673},{\"p\":\".\"}]]]', 44, NULL, '2017-09-18 16:46:31', '2017-09-18 16:46:31');
INSERT INTO `entities_versions_align` (`id_align`, `id_entity`, `source`, `source_lang`, `target`, `target_lang`, `json`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(29, 35, 88, 2, 90, 8, '[[[{\"t\":\"Enflammant\",\"h\":[[1],[2]],\"pos\":\"[1][1]\",\"parent\":0,\"children\":1},{\"t\":\"le\",\"h\":[[2,3],[3]],\"pos\":\"[1][2]\",\"parent\":0,\"children\":2},{\"t\":\"cœur\",\"h\":[[2,3],[3]],\"pos\":\"[1][3]\",\"parent\":0,\"children\":3},{\"t\":\"des\",\"h\":[[4,5],[1]],\"pos\":\"[1][4]\",\"parent\":0,\"children\":4},{\"t\":\"jeunes\",\"h\":[[4,5],[1]],\"pos\":\"[1][5]\",\"parent\":0,\"children\":5},{\"t\":\"avec\",\"h\":[[6,7,8],[5]],\"pos\":\"[1][6]\",\"parent\":0,\"children\":6},{\"t\":\"une\",\"h\":[[6,7,8],[5]],\"pos\":\"[1][7]\",\"parent\":0,\"children\":7},{\"t\":\"ferveur\",\"h\":[[6,7,8],[5]],\"pos\":\"[1][8]\",\"parent\":0,\"children\":8},{\"t\":\"savante\",\"h\":[[9],[4]],\"pos\":\"[1][9]\",\"parent\":0,\"children\":9},{\"p\":\",\"}],[{\"t\":\"je\",\"h\":[[10,11,15],[10]],\"pos\":\"[1][10]\",\"parent\":0,\"children\":10},{\"t\":\"ferai\",\"h\":[[10,11,15],[10]],\"pos\":\"[1][11]\",\"parent\":0,\"children\":11},{\"t\":\"que\",\"h\":[[12,13,14],[7]],\"pos\":\"[1][12]\",\"parent\":0,\"children\":12},{\"t\":\"l\",\"h\":[[12,13,14],[7]],\"pos\":\"[1][13]\",\"parent\":0,\"children\":13},{\"p\":\"’\"},{\"t\":\"Amour\",\"h\":[[12,13,14],[7]],\"pos\":\"[1][14]\",\"parent\":0,\"children\":14},{\"t\":\"soit\",\"h\":[[10,11,15],[10]],\"pos\":\"[1][15]\",\"parent\":0,\"children\":15},{\"t\":\"le\",\"h\":[[16,17],[6]],\"pos\":\"[1][16]\",\"parent\":0,\"children\":16},{\"t\":\"commencement\",\"h\":[[16,17],[6]],\"pos\":\"[1][17]\",\"parent\":0,\"children\":17},{\"t\":\"de\",\"h\":[[18,19,20],[8,9]],\"pos\":\"[1][18]\",\"parent\":0,\"children\":18},{\"t\":\"ces\",\"h\":[[18,19,20],[8,9]],\"pos\":\"[1][19]\",\"parent\":0,\"children\":19},{\"t\":\"discours\",\"h\":[[18,19,20],[8,9]],\"pos\":\"[1][20]\",\"parent\":0,\"children\":20},{\"p\":\";\"}],[{\"t\":\"c\",\"h\":[[21,22,23],[13]],\"pos\":\"[1][21]\",\"parent\":0,\"children\":21},{\"p\":\"’\"},{\"t\":\"est\",\"h\":[[21,22,23],[13]],\"pos\":\"[1][22]\",\"parent\":0,\"children\":22},{\"t\":\"lui\",\"h\":[[21,22,23],[13]],\"pos\":\"[1][23]\",\"parent\":0,\"children\":23},{\"p\":\",\"},{\"t\":\"en\",\"h\":[[24,25],[12]],\"pos\":\"[1][24]\",\"parent\":0,\"children\":24},{\"t\":\"effet\",\"h\":[[24,25],[12]],\"pos\":\"[1][25]\",\"parent\":0,\"children\":25},{\"p\":\",\"},{\"t\":\"qui\",\"h\":[[26,27],[14]],\"pos\":\"[1][26]\",\"parent\":0,\"children\":26},{\"t\":\"allume\",\"h\":[[26,27],[14]],\"pos\":\"[1][27]\",\"parent\":0,\"children\":27},{\"t\":\"le\",\"h\":[[28,29],[11]],\"pos\":\"[1][28]\",\"parent\":0,\"children\":28},{\"t\":\"flambeau\",\"h\":[[28,29],[11]],\"pos\":\"[1][29]\",\"parent\":0,\"children\":29},{\"t\":\"pour\",\"h\":[[30,31,32],[15,16]],\"pos\":\"[1][30]\",\"parent\":0,\"children\":30},{\"t\":\"les\",\"h\":[[30,31,32],[15,16]],\"pos\":\"[1][31]\",\"parent\":0,\"children\":31},{\"t\":\"jeunes\",\"h\":[[30,31,32],[15,16]],\"pos\":\"[1][32]\",\"parent\":0,\"children\":32}]],[[{\"t\":\"νέοις\",\"h\":[[4,5],[1]],\"pos\":\"[2][1]\",\"parent\":1,\"children\":1},{\"t\":\"ἀνάπτων\",\"h\":[[1],[2]],\"pos\":\"[2][2]\",\"parent\":1,\"children\":2},{\"t\":\"καρδίας\",\"h\":[[2,3],[3]],\"pos\":\"[2][3]\",\"parent\":1,\"children\":3},{\"t\":\"σοφὴν\",\"h\":[[9],[4]],\"pos\":\"[2][4]\",\"parent\":1,\"children\":4},{\"t\":\"ζέσιν\",\"h\":[[6,7,8],[5]],\"pos\":\"[2][5]\",\"parent\":1,\"children\":5},{\"p\":\",\"}],[{\"t\":\"ἀρχὴν\",\"h\":[[16,17],[6]],\"pos\":\"[2][6]\",\"parent\":1,\"children\":6},{\"t\":\"Ἔρωτα\",\"h\":[[12,13,14],[7]],\"pos\":\"[2][7]\",\"parent\":1,\"children\":7},{\"t\":\"τῶν\",\"h\":[[18,19,20],[8,9]],\"pos\":\"[2][8]\",\"parent\":1,\"children\":8},{\"t\":\"λόγων\",\"h\":[[18,19,20],[8,9]],\"pos\":\"[2][9]\",\"parent\":1,\"children\":9},{\"t\":\"ποιήσομαι\",\"h\":[[10,11,15],[10]],\"pos\":\"[2][10]\",\"parent\":1,\"children\":10},{\"p\":\":\"}],[{\"t\":\"πυρσὸν\",\"h\":[[28,29],[11]],\"pos\":\"[2][11]\",\"parent\":1,\"children\":11},{\"t\":\"γὰρ\",\"h\":[[24,25],[12]],\"pos\":\"[2][12]\",\"parent\":1,\"children\":12},{\"t\":\"οὗτος\",\"h\":[[21,22,23],[13]],\"pos\":\"[2][13]\",\"parent\":1,\"children\":13},{\"t\":\"ἐξανάπτει\",\"h\":[[26,27],[14]],\"pos\":\"[2][14]\",\"parent\":1,\"children\":14},{\"t\":\"τοῖς\",\"h\":[[30,31,32],[15,16]],\"pos\":\"[2][15]\",\"parent\":1,\"children\":15},{\"t\":\"νέοις\",\"h\":[[30,31,32],[15,16]],\"pos\":\"[2][16]\",\"parent\":1,\"children\":16},{\"p\":\".\"}]]]', 2, NULL, '2017-09-19 14:52:56', '2017-09-19 14:52:56');
-- --------------------------------------------------------
--
-- Structure de la table `entity_versions_alignements__entity_versions_align_pair`
--
CREATE TABLE `entity_versions_alignements__entity_versions_align_pair` (
`id` int(10) UNSIGNED NOT NULL,
`entity_versions_alignements` int(11) DEFAULT NULL,
`entity_versions_align_pair` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `eras`
--
CREATE TABLE `eras` (
`id_era` int(10) UNSIGNED NOT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`date_begin` int(11) DEFAULT NULL,
`date_end` int(11) DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `eras_images__images_eras`
--
CREATE TABLE `eras_images__images_eras` (
`id` int(10) UNSIGNED NOT NULL,
`eras_images` int(11) DEFAULT NULL,
`images_eras` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `eras_versions`
--
CREATE TABLE `eras_versions` (
`id` int(10) UNSIGNED NOT NULL,
`id_era` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`id_language` int(11) DEFAULT NULL,
`name` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`culture_centers` longtext COLLATE utf8_unicode_ci,
`description` longtext COLLATE utf8_unicode_ci,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `external_ref`
--
CREATE TABLE `external_ref` (
`id_entity_external` int(10) UNSIGNED NOT NULL,
`id_entity` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`id_language` int(11) DEFAULT NULL,
`title` longtext COLLATE utf8_unicode_ci,
`url` longtext COLLATE utf8_unicode_ci,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `external_ref`
--
INSERT INTO `external_ref` (`id_entity_external`, `id_entity`, `id_user`, `id_group`, `id_language`, `title`, `url`, `createdAt`, `updatedAt`) VALUES
(1, 8, 2, NULL, NULL, 'Putain de toi - Brassens', 'https://www.paroles.net/georges-brassens/paroles-p-de-toi', '2017-09-15 11:17:52', '2017-09-15 11:17:52');
-- --------------------------------------------------------
--
-- Structure de la table `genres`
--
CREATE TABLE `genres` (
`id_genre` int(10) UNSIGNED NOT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `genres_versions`
--
CREATE TABLE `genres_versions` (
`id` int(10) UNSIGNED NOT NULL,
`id_genre` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`id_language` int(11) DEFAULT NULL,
`title` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `images`
--
CREATE TABLE `images` (
`id_image` int(10) UNSIGNED NOT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`date` int(11) DEFAULT NULL,
`date_range` int(11) DEFAULT NULL,
`URL` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`file` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
`title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`credit` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `images`
--
INSERT INTO `images` (`id_image`, `id_user`, `id_group`, `date`, `date_range`, `URL`, `file`, `title`, `credit`, `createdAt`, `updatedAt`) VALUES
(1, 2, NULL, NULL, NULL, 'https://desmotsdeuxfemmes.files.wordpress.com/2015/01/eros-vase-grec.jpg?w=192&h=300', NULL, 'Eros - vase grec', 'Il s\'agit d\'un Eros sur un vase', '2017-09-15 11:05:39', '2017-09-15 11:05:39'),
(2, 1, NULL, NULL, NULL, 'https://www.w3schools.com/css/trolltunga.jpg', NULL, 'fjord', 'to be deleted', '2017-09-15 20:04:14', '2017-09-15 20:04:14'),
(3, 2, NULL, NULL, NULL, 'http://anthologiegrecque.org/IMG/png/2.png', NULL, 'Codex Palatinus p. 88 - 5.2', 'P. 88 codex palatinus 23', '2017-09-15 20:08:07', '2017-09-15 20:08:07'),
(4, 2, NULL, NULL, NULL, 'http://anthologiegrecque.org/IMG/png/1.png', NULL, 'Codex Palatinus 23, p. 88', '', '2017-09-19 14:54:37', '2017-09-19 14:54:37');
-- --------------------------------------------------------
--
-- Structure de la table `images_keywords__keywords_images`
--
CREATE TABLE `images_keywords__keywords_images` (
`id` int(10) UNSIGNED NOT NULL,
`images_keywords` int(11) DEFAULT NULL,
`keywords_images` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `images_manuscripts__manuscripts_images`
--
CREATE TABLE `images_manuscripts__manuscripts_images` (
`id` int(10) UNSIGNED NOT NULL,
`images_manuscripts` int(11) DEFAULT NULL,
`manuscripts_images` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `images_notes__notes_images`
--
CREATE TABLE `images_notes__notes_images` (
`id` int(10) UNSIGNED NOT NULL,
`images_notes` int(11) DEFAULT NULL,
`notes_images` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `images_scholies__scholies_images`
--
CREATE TABLE `images_scholies__scholies_images` (
`id` int(10) UNSIGNED NOT NULL,
`images_scholies` int(11) DEFAULT NULL,
`scholies_images` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `keywords`
--
CREATE TABLE `keywords` (
`id_keyword` int(10) UNSIGNED NOT NULL,
`category` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `keywords`
--
INSERT INTO `keywords` (`id_keyword`, `category`, `id_user`, `id_group`, `createdAt`, `updatedAt`) VALUES
(1, 3, 5, NULL, '2017-08-29 13:13:55', '2017-09-19 15:24:44'),
(2, 5, 5, NULL, '2017-08-29 13:14:09', '2017-09-19 15:24:56'),
(3, 5, 5, NULL, '2017-08-29 13:14:15', '2017-09-19 15:25:07'),
(4, NULL, 5, NULL, '2017-08-29 13:14:23', '2017-08-29 13:14:23'),
(5, 5, 5, NULL, '2017-08-29 13:14:38', '2017-09-19 15:25:24'),
(6, NULL, 5, NULL, '2017-08-29 13:14:46', '2017-08-29 13:14:46'),
(7, NULL, 5, NULL, '2017-08-29 13:14:53', '2017-08-29 13:14:53'),
(8, NULL, 5, NULL, '2017-08-29 13:15:05', '2017-08-29 13:15:05'),
(9, NULL, 5, NULL, '2017-08-29 13:15:13', '2017-08-29 13:15:13'),
(10, NULL, 5, NULL, '2017-08-29 13:15:19', '2017-08-29 13:15:19'),
(11, NULL, 5, NULL, '2017-08-29 13:15:25', '2017-08-29 13:15:25'),
(12, NULL, 2, NULL, '2017-09-11 11:11:06', '2017-09-15 11:59:01'),
(13, NULL, 2, NULL, '2017-09-15 10:56:40', '2017-09-15 10:57:16'),
(14, NULL, 2, NULL, '2017-09-15 11:00:03', '2017-09-15 11:00:29'),
(15, NULL, 2, NULL, '2017-09-15 11:00:49', '2017-09-15 11:00:49'),
(16, NULL, 2, NULL, '2017-09-15 11:01:24', '2017-09-15 11:01:24'),
(17, NULL, 2, NULL, '2017-09-15 11:02:49', '2017-09-15 11:02:49'),
(18, NULL, 2, NULL, '2017-09-15 11:32:06', '2017-09-15 11:33:40'),
(19, NULL, 2, NULL, '2017-09-15 11:34:36', '2017-09-15 11:34:36');
-- --------------------------------------------------------
--
-- Structure de la table `keywords_categories`
--
CREATE TABLE `keywords_categories` (
`id_keyword_category` int(10) UNSIGNED NOT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`title` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `keywords_categories`
--
INSERT INTO `keywords_categories` (`id_keyword_category`, `id_user`, `id_group`, `title`, `createdAt`, `updatedAt`) VALUES
(1, NULL, NULL, 'Motifs', '2017-09-19 15:21:54', '2017-09-19 15:38:00'),
(2, NULL, NULL, 'Époques', '2017-09-19 15:22:03', '2017-09-19 15:22:03'),
(3, NULL, NULL, 'Formes métriques', '2017-09-19 15:22:30', '2017-09-19 15:22:30'),
(4, NULL, NULL, 'Genres', '2017-09-19 15:22:56', '2017-09-19 15:22:56'),
(5, NULL, NULL, 'Personnes citées', '2017-09-19 15:23:24', '2017-09-19 15:23:24'),
(6, NULL, NULL, 'Parcours de lecture', '2017-09-19 15:24:02', '2017-09-19 15:24:02');
-- --------------------------------------------------------
--
-- Structure de la table `keywords_categories_version`
--
CREATE TABLE `keywords_categories_version` (
`id_keyword_category_versions` int(10) UNSIGNED NOT NULL,
`id_keyword_category` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`id_language` int(11) DEFAULT NULL,
`label` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` longtext COLLATE utf8_unicode_ci,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `keywords_families`
--
CREATE TABLE `keywords_families` (
`id_keyword_family` int(10) UNSIGNED NOT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`name` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Structure de la table `keywords_versions`
--
CREATE TABLE `keywords_versions` (
`id` int(10) UNSIGNED NOT NULL,
`id_keyword` int(11) DEFAULT NULL,
`id_user` int(11) DEFAULT NULL,
`id_group` int(11) DEFAULT NULL,
`id_language` int(11) DEFAULT NULL,
`title` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` longtext COLLATE utf8_unicode_ci,
`createdAt` datetime DEFAULT NULL,
`updatedAt` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Déchargement des données de la table `keywords_versions`
--
INSERT INTO `keywords_versions` (`id`, `id_keyword`, `id_user`, `id_group`, `id_language`, `title`, `description`, `createdAt`, `updatedAt`) VALUES