forked from parallel-stories/capstone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
databaseWithUserInfo.json
1189 lines (1189 loc) · 41.6 KB
/
databaseWithUserInfo.json
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
{
"review" : {
"All Summer in a Day" : [ {
"content" : "test 1",
"rating" : 2,
"storyId" : "All Summer in a Day"
}, {
"content" : "test 2",
"rating" : 5,
"storyId" : "All Summer in a Day"
}, {
"content" : "This story doesn't take place in summer. :(",
"rating" : 1,
"storyId" : "All Summer in a Day"
} ],
"Balthazar" : [ {
"content" : "This story is great",
"rating" : 4,
"storyId" : "Balthazar"
}, {
"content" : "This is the worst D:",
"rating" : 1,
"storyId" : "Balthazar"
} ]
},
"storyBranch" : {
"A whole newww worrrrrrld" : {
"storyCards" : [ "-Kvn7qVvDYC4oZUR4VVd" ],
"storyRoot" : [ "isRoot" ]
},
"All Summer in a Day" : {
"storyCards" : [ "-KvmoI-FX9ymLPSdOoiW", "-KvmoR5ctYZXTwLDZBeZ", "-Kvmo_cicbRdCUBOCMjv", "-Kvmo_sBGFSSTWjr127O" ],
"storyRoot" : [ "isRoot" ]
},
"Angry Birdy" : {
"published" : true,
"storyCards" : [ "-KvmpFbYGBGQnQkk6Tl3" ],
"storyRoot" : [ "isRoot" ]
},
"BIRDS" : {
"published" : true,
"storyCards" : [ "-KvmpXPOMcT6-m-pLD39", "-Kvn2VW_ZMK2xnt8dWQF", "-Kvn2nM-1YOoRz8rZHih" ],
"storyRoot" : [ "isRoot", "Larry Flowerpot", "BLAAAAAAA" ]
},
"BLAAAAAAA" : {
"published" : true,
"storyCards" : [ "-KvmpXPOMcT6-m-pLD39", "-Kvn2VW_ZMK2xnt8dWQF" ],
"storyRoot" : [ "isRoot", "Larry Flowerpot" ]
},
"Balthazar" : {
"published" : true,
"storyCards" : [ "-KvmrGNIBnF10enAXYea", "-KvmtxZrkIREKr7jJgsT" ],
"storyRoot" : [ "isRoot", "Justine" ]
},
"Banana" : {
"published" : true,
"storyCards" : [ "-KvnDGU9wXoIgKD4QmEn" ],
"storyRoot" : [ "isRoot" ]
},
"Chows on Steves" : {
"published" : true,
"storyCards" : [ "-KvmoG8sYGNNYFZk5Y_F", "-KvmxbPSHImUNGNgtYll" ],
"storyRoot" : [ "isRoot", "House of Leaves", "Louse of Heaves", "Spouse of Jeeves" ]
},
"Clea" : {
"published" : true,
"storyCards" : [ "-KvmrGNIBnF10enAXYea", "-Kvmw_p3xqc8u0ktVAPS" ],
"storyRoot" : [ "isRoot", "Justine" ]
},
"Co-op City" : {
"published" : true,
"storyCards" : [ "-KvnOQR1gx7AFF9mDSPw", "-KvnOROpIwzYJLQ-rQPz", "-KvnOa4zSU5RagUWKX0m", "-KvnOc3jh79EX2GcreR1" ],
"storyRoot" : [ "isRoot", "The Gunslinger" ]
},
"Continuing with Harmony" : {
"published" : true,
"storyCards" : [ "-KvmpXPOMcT6-m-pLD39", "-Kvn3ct1bvz-Dc01XOVq", "-Kvn3fXEdIr8C383Odyp" ],
"storyRoot" : [ "isRoot", "Larry Flowerpot", "Harmony Stranger: the wise witch" ]
},
"Dust Mice" : {
"published" : true,
"storyCards" : [ "-KvmoI-FX9ymLPSdOoiW", "-KvmoR5ctYZXTwLDZBeZ", "-Kvmo_cicbRdCUBOCMjv", "-Kvmo_sBGFSSTWjr127O", "-Kvn4RsaYWQgV_r7zryq", "-Kvn4SzICKMu1Z__R15e" ],
"storyRoot" : [ "isRoot", "All Summer in a Day" ]
},
"Happy Closet" : {
"published" : true,
"storyCards" : [ "-KvmoI-FX9ymLPSdOoiW", "-KvmoR5ctYZXTwLDZBeZ", "-Kvmo_cicbRdCUBOCMjv", "-Kvn7w9G6vD3akJyJmJ2" ],
"storyRoot" : [ "isRoot", "All Summer in a Day" ]
},
"Harmony Stranger: the wise witch" : {
"published" : true,
"storyCards" : [ "-KvmpXPOMcT6-m-pLD39", "-KvmpfCzuYq0s6EwxtJ0", "-KvmqD4iod4b7uXglF-T", "-KvmqeeaFpG87-Is8hlq" ],
"storyRoot" : [ "isRoot", "Larry Flowerpot" ]
},
"Hitchcock" : {
"storyCards" : [ "-KvmpFbYGBGQnQkk6Tl3", "-Kvn-r_y1jcrTSJSLoTa" ],
"storyRoot" : [ "isRoot", "Angry Birdy" ]
},
"House of Leaves" : {
"published" : true,
"storyCards" : [ "-KvmoG8sYGNNYFZk5Y_F", "-KvmoN2auiHFbbTsS_ft", "-KvmobHvVG8eAgZE0zP_", "-KvmocOFvepmiZ-cbKOE" ],
"storyRoot" : [ "isRoot" ]
},
"I wish I was a baller" : {
"storyCards" : [ "-KvnAYeNsh2i50w93Hjo", "-KvnAcdJdbnni32EdM_F" ],
"storyRoot" : [ "isRoot" ]
},
"Justine" : {
"published" : true,
"storyCards" : [ "-KvmrGNIBnF10enAXYea", "-Kvmr_H9i_Jw4gsrsiMX" ],
"storyRoot" : [ "isRoot" ]
},
"Knights Who Say Ni " : {
"published" : true,
"storyCards" : [ "-KvmnVb0LE70jLXG8WkE" ],
"storyRoot" : [ "isRoot" ]
},
"LYRICSFTW" : {
"published" : true,
"storyCards" : [ "-Kvn7qVvDYC4oZUR4VVd", "-KvnA4xDvWW3RJfEaI0Q" ],
"storyRoot" : [ "isRoot", "A whole newww worrrrrrld" ]
},
"Larry Flowerpot" : {
"storyCards" : [ "-KvmpXPOMcT6-m-pLD39", "-KvmpfCzuYq0s6EwxtJ0", "-Kvmpn6FuMQeyoW3uLBq", "-KvmpqwiHViK_WLz_7Iv" ],
"storyRoot" : [ "isRoot" ]
},
"Louse of Heaves" : {
"published" : true,
"storyCards" : [ "-KvmoG8sYGNNYFZk5Y_F", "-KvmpLQ9HpaX1mDKI86D", "-KvmpQcVuwAxDPGCZp6n" ],
"storyRoot" : [ "isRoot", "House of Leaves" ]
},
"Lovely Night" : {
"published" : true,
"storyCards" : [ "-KvmpFbYGBGQnQkk6Tl3", "-Kvn1-gGcoc9LBK25u2h" ],
"storyRoot" : [ "isRoot", "Angry Birdy", "Hitchcock" ]
},
"Marry Me" : {
"storyCards" : [ "-KvmnufmxpyyRm9gK_4q" ],
"storyRoot" : [ "isRoot" ]
},
"Mountolive" : {
"published" : true,
"storyCards" : [ "-KvmrGNIBnF10enAXYea", "-KvmsUnP2X3tKBweWsjc" ],
"storyRoot" : [ "isRoot", "Justine" ]
},
"My Story" : {
"storyCards" : [ "-Kvn7BcRxhq8B1B4Phsh" ],
"storyRoot" : [ "isRoot" ]
},
"My Story 1" : {
"storyCards" : [ "-Kvn7BcRxhq8B1B4Phsh", "-Kvn7Ob-IBeND5xUAOEB" ],
"storyRoot" : [ "isRoot", "My Story" ]
},
"My story" : {
"storyCards" : [ "-Kvn3lyg6UdX5I8bNhh4" ],
"storyRoot" : [ "isRoot" ]
},
"Response to Knights of the Round Table" : {
"published" : true,
"storyCards" : [ "-KvmnVb0LE70jLXG8WkE", "-KvmqExLLhAd8zd746OL", "-KvmqH8QmRTeCMEMGMpW" ],
"storyRoot" : [ "isRoot", "Knights Who Say Ni " ]
},
"Saving card" : {
"storyCards" : [ "-KvmoI-FX9ymLPSdOoiW", "-KvmoR5ctYZXTwLDZBeZ", "-Kvmo_cicbRdCUBOCMjv", "-Kvmo_sBGFSSTWjr127O", "-Kvn4s8lgJubR7MZWG0j" ],
"storyRoot" : [ "isRoot", "All Summer in a Day" ]
},
"Spouse of Jeeves" : {
"published" : true,
"storyCards" : [ "-KvmoG8sYGNNYFZk5Y_F", "-KvmpLQ9HpaX1mDKI86D", "-Kvmphv1Ur-wUk4g3CA6" ],
"storyRoot" : [ "isRoot", "House of Leaves", "Louse of Heaves" ]
},
"Story2" : {
"published" : true,
"storyCards" : [ "-Kvn46dtJpfAgW7ga-O-" ],
"storyRoot" : [ "isRoot" ]
},
"The Gunslinger" : {
"published" : true,
"storyCards" : [ "-KvnOQR1gx7AFF9mDSPw", "-KvnOROpIwzYJLQ-rQPz", "-KvnOSdWPNxWsehMVLAh" ],
"storyRoot" : [ "isRoot" ]
},
"The Way Station" : {
"published" : true,
"storyCards" : [ "-KvnOQR1gx7AFF9mDSPw", "-KvnOROpIwzYJLQ-rQPz", "-KvnOa4zSU5RagUWKX0m", "-KvnOc3jh79EX2GcreR1", "-KvnOlPb2HmoqVsacgDm" ],
"storyRoot" : [ "isRoot", "The Gunslinger", "Co-op City" ]
},
"Today is the day" : {
"published" : true,
"storyCards" : [ "-KvnAd8bLahX451PncGJ" ],
"storyRoot" : [ "isRoot" ]
},
"Tweeters" : {
"storyCards" : [ "-KvmpXPOMcT6-m-pLD39", "-KvnA3e2c8zllsxlsBHp" ],
"storyRoot" : [ "isRoot", "Larry Flowerpot", "BLAAAAAAA", "BIRDS" ]
},
"Unicorn Time" : {
"published" : true,
"storyCards" : [ "-Kvmol4qZEgZW-tH1A5Q", "-KvmowTuiG2iM0VJVPKT", "-Kvmp2p4W_9M7PNkMF8V" ],
"storyRoot" : [ "isRoot" ]
},
"Unicorns the SEQUEL" : {
"published" : true,
"storyCards" : [ "-Kvmol4qZEgZW-tH1A5Q", "-KvmowTuiG2iM0VJVPKT", "-Kvn6vlJnScIw7otRMdZ" ],
"storyRoot" : [ "isRoot", "Unicorn Time" ]
},
"bad bad dream" : {
"published" : true,
"storyCards" : [ "-KvmnufmxpyyRm9gK_4q", "-Kvn0nLUW8PN66dJgp3q" ],
"storyRoot" : [ "isRoot", "Marry Me" ]
},
"hello world" : {
"published" : true,
"storyCards" : [ "-KvnD1rOESrsZtI1jiml" ],
"storyRoot" : [ "isRoot" ]
},
"i forget" : {
"published" : true,
"storyCards" : [ "-KvmoI-FX9ymLPSdOoiW", "-KvmoR5ctYZXTwLDZBeZ", "-Kvmo_cicbRdCUBOCMjv", "-Kvmo_sBGFSSTWjr127O", "-Kvn4B3p4GjhikJIt5ip", "-Kvn4EV7rN_8cEKWLR4t" ],
"storyRoot" : [ "isRoot", "All Summer in a Day" ]
},
"oh noooooooo it doesnt persist :(" : {
"storyCards" : [ "-Kvn82hBye7frG510SLX", "-Kvn85qdsRJPjvzdTzVz" ],
"storyRoot" : [ "isRoot" ]
},
"robber bird" : {
"published" : true,
"storyCards" : [ "-KvmpFbYGBGQnQkk6Tl3", "-Kvn1mABbF02gtqZyes7" ],
"storyRoot" : [ "isRoot", "Angry Birdy" ]
},
"zz change title, no child CHANGED" : {
"storyCards" : [ "-KvrJevQZBYCDMmV_SvL" ],
"storyRoot" : [ "isRoot" ]
},
"zz static root" : {
"published" : true,
"storyCards" : [ "-KvrJoY-RzVJeDUOW36e" ],
"storyRoot" : [ "isRoot" ]
},
"zz update title of child of root CHANGED" : {
"storyCards" : [ "-KvrJoY-RzVJeDUOW36e", "-KvrJubDtJV86wuSw8mH" ],
"storyRoot" : [ "isRoot", "zz static root" ]
}
},
"storyCard" : {
"-KvmnVb0LE70jLXG8WkE" : {
"branchTitle" : "Knights Who Say Ni ",
"nextCard" : "-KvmqExLLhAd8zd746OL",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>Knight 1: Ni ni ni ni ni</p><p>Knight 2: Ni ni ni?</p><p>Knight 1: Ni!</p>",
"userId" : "WAzu1yiZAGYJsWZxTSfVDwIa2mr2"
},
"-KvmnufmxpyyRm9gK_4q" : {
"branchTitle" : "Marry Me",
"branches" : {
"bad bad dream" : "-Kvn0nLUW8PN66dJgp3q"
},
"nextCard" : "-Kvn0nLUW8PN66dJgp3q",
"prevCard" : "",
"published" : true,
"rootTitle" : "",
"text" : "<p>I am the best, so marry me?</p>",
"userId" : "hi2QjsWg5TQ3M4upATVJUCUn1Tv1"
},
"-KvmoG8sYGNNYFZk5Y_F" : {
"branchTitle" : "House of Leaves",
"branches" : {
"Chows on Steves" : "-KvmxbPSHImUNGNgtYll"
},
"nextCard" : "-KvmxbPSHImUNGNgtYll",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>The book is the reader is the book.</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-KvmoI-FX9ymLPSdOoiW" : {
"branchTitle" : "All Summer in a Day",
"nextCard" : "-KvmoR5ctYZXTwLDZBeZ",
"prevCard" : "",
"published" : true,
"rootTitle" : "",
"text" : "<p>There once were a group of children who lived on Mars</p>",
"userId" : "WAzu1yiZAGYJsWZxTSfVDwIa2mr2"
},
"-KvmoN2auiHFbbTsS_ft" : {
"branchTitle" : "House of Leaves",
"nextCard" : "-KvmobHvVG8eAgZE0zP_",
"prevCard" : "-KvmoG8sYGNNYFZk5Y_F",
"published" : true,
"rootTitle" : "House of Leaves",
"text" : "<p>We (and it) may never reach the bottom of this staircase. I fear it is infinite.</p>",
"userId" : 1
},
"-KvmoR5ctYZXTwLDZBeZ" : {
"branchTitle" : "All Summer in a Day",
"nextCard" : "-Kvmo_cicbRdCUBOCMjv",
"prevCard" : "-KvmoI-FX9ymLPSdOoiW",
"published" : true,
"rootTitle" : "All Summer in a Day",
"text" : "<p>One of these children were named Margot</p>",
"userId" : 1
},
"-Kvmo_cicbRdCUBOCMjv" : {
"branchTitle" : "All Summer in a Day",
"branches" : {
"Happy Closet" : "-Kvn7w9G6vD3akJyJmJ2"
},
"nextCard" : "-Kvn7w9G6vD3akJyJmJ2",
"prevCard" : "-KvmoR5ctYZXTwLDZBeZ",
"published" : true,
"rootTitle" : "All Summer in a Day",
"text" : "<p>The other children locked her in a closet. <span style=\"color: rgb(102, 0, 153);\">😢</span></p>",
"userId" : 1
},
"-Kvmo_sBGFSSTWjr127O" : {
"branchTitle" : "All Summer in a Day",
"branches" : {
"Saving card" : "-Kvn4s8lgJubR7MZWG0j"
},
"nextCard" : "-Kvn4s8lgJubR7MZWG0j",
"prevCard" : "-Kvmo_cicbRdCUBOCMjv",
"published" : false,
"rootTitle" : "All Summer in a Day",
"text" : "<p><br></p>",
"userId" : 1
},
"-KvmobHvVG8eAgZE0zP_" : {
"branchTitle" : "House of Leaves",
"nextCard" : "-KvmocOFvepmiZ-cbKOE",
"prevCard" : "-KvmoN2auiHFbbTsS_ft",
"published" : true,
"rootTitle" : "House of Leaves",
"text" : "<p>I drop a pebble, and no sound returns.</p>",
"userId" : 1
},
"-KvmocOFvepmiZ-cbKOE" : {
"branchTitle" : "House of Leaves",
"nextCard" : "",
"prevCard" : "-KvmobHvVG8eAgZE0zP_",
"published" : true,
"rootTitle" : "House of Leaves",
"text" : "<p>The dark around me is shadow; the dark beneath me is absence.</p>",
"userId" : 1
},
"-Kvmol4qZEgZW-tH1A5Q" : {
"branchTitle" : "Unicorn Time",
"nextCard" : "-KvmowTuiG2iM0VJVPKT",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>Once upon a time, a rumors of a mythical creature roaming the streets of New York City Central Park spread. What could it be?</p>",
"userId" : "hi2QjsWg5TQ3M4upATVJUCUn1Tv1"
},
"-KvmowTuiG2iM0VJVPKT" : {
"branchTitle" : "Unicorn Time",
"branches" : {
"Unicorns the SEQUEL" : "-Kvn6vlJnScIw7otRMdZ"
},
"nextCard" : "-Kvn6vlJnScIw7otRMdZ",
"prevCard" : "-Kvmol4qZEgZW-tH1A5Q",
"published" : true,
"rootTitle" : "Unicorn Time",
"text" : "<p>Some say they saw a centaur. Some say they saw an ogre. But I think it was a unicorn!</p>",
"userId" : 1
},
"-Kvmp2p4W_9M7PNkMF8V" : {
"branchTitle" : "Unicorn Time",
"nextCard" : "",
"prevCard" : "-KvmowTuiG2iM0VJVPKT",
"published" : true,
"rootTitle" : "Unicorn Time",
"text" : "<p>I name it Uni!</p>",
"userId" : 1
},
"-KvmpFbYGBGQnQkk6Tl3" : {
"branchTitle" : "Angry Birdy",
"branches" : {
"robber bird" : "-Kvn1mABbF02gtqZyes7"
},
"nextCard" : "-Kvn1mABbF02gtqZyes7",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>If you live in NYC, you know what the bird situation is like. </p>",
"userId" : "hi2QjsWg5TQ3M4upATVJUCUn1Tv1"
},
"-KvmpLQ9HpaX1mDKI86D" : {
"branchTitle" : "Louse of Heaves",
"nextCard" : "-Kvmphv1Ur-wUk4g3CA6",
"prevCard" : "-KvmoG8sYGNNYFZk5Y_F",
"published" : true,
"rootTitle" : [ "isRoot", "House of Leaves" ],
"text" : "<p>The look is the greeter is the hook is the feeder is the cook.</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-KvmpQcVuwAxDPGCZp6n" : {
"branchTitle" : "Louse of Heaves",
"nextCard" : "",
"prevCard" : "-KvmpLQ9HpaX1mDKI86D",
"published" : true,
"rootTitle" : "House of Leaves",
"text" : "<p>And so it will continue.</p>",
"userId" : 1
},
"-KvmpXPOMcT6-m-pLD39" : {
"branchTitle" : "Larry Flowerpot",
"branches" : {
"Tweeters" : "-KvnA3e2c8zllsxlsBHp"
},
"nextCard" : "-KvnA3e2c8zllsxlsBHp",
"prevCard" : "",
"published" : true,
"rootTitle" : "",
"text" : "<p>Hello all potters!</p>",
"userId" : "hi2QjsWg5TQ3M4upATVJUCUn1Tv1"
},
"-KvmpfCzuYq0s6EwxtJ0" : {
"branchTitle" : "Larry Flowerpot",
"nextCard" : "-KvmqD4iod4b7uXglF-T",
"prevCard" : "-KvmpXPOMcT6-m-pLD39",
"published" : true,
"rootTitle" : "Larry Flowerpot",
"text" : "<p>My name is Larry Flowerpot: the Good Wizard.</p>",
"userId" : 1
},
"-Kvmphv1Ur-wUk4g3CA6" : {
"branchTitle" : "Spouse of Jeeves",
"nextCard" : "",
"prevCard" : "-KvmpLQ9HpaX1mDKI86D",
"published" : true,
"rootTitle" : [ "isRoot", "House of Leaves", "Louse of Heaves" ],
"text" : "<p>An entirely different concept.</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-Kvmpn6FuMQeyoW3uLBq" : {
"branchTitle" : "Larry Flowerpot",
"nextCard" : "-KvmpqwiHViK_WLz_7Iv",
"prevCard" : "-KvmpfCzuYq0s6EwxtJ0",
"published" : true,
"rootTitle" : "Larry Flowerpot",
"text" : "<p>I weave magic everywhere and populate the world with beautiful flowers (and flowerpots)!</p>",
"userId" : 1
},
"-KvmpqwiHViK_WLz_7Iv" : {
"branchTitle" : "Larry Flowerpot",
"nextCard" : "",
"prevCard" : "-Kvmpn6FuMQeyoW3uLBq",
"published" : true,
"rootTitle" : "Larry Flowerpot",
"text" : "<p>I also make delicious pancakes.</p>",
"userId" : 1
},
"-KvmqD4iod4b7uXglF-T" : {
"branchTitle" : "Harmony Stranger: the wise witch",
"nextCard" : "-KvmqeeaFpG87-Is8hlq",
"prevCard" : "-KvmpfCzuYq0s6EwxtJ0",
"published" : true,
"rootTitle" : [ "isRoot", "Larry Flowerpot" ],
"text" : "<p>But this story is about Harmony Stranger, Flowerpot's best friend</p>",
"userId" : "WAzu1yiZAGYJsWZxTSfVDwIa2mr2"
},
"-KvmqExLLhAd8zd746OL" : {
"branchTitle" : "Response to Knights of the Round Table",
"nextCard" : "-KvmqH8QmRTeCMEMGMpW",
"prevCard" : "-KvmnVb0LE70jLXG8WkE",
"published" : true,
"rootTitle" : [ "isRoot", "Knights Who Say Ni " ],
"text" : "<p>You say \"Ni.\"</p><p><br></p><p>I say \"Hi.\"</p>",
"userId" : "hi2QjsWg5TQ3M4upATVJUCUn1Tv1"
},
"-KvmqH8QmRTeCMEMGMpW" : {
"branchTitle" : "Response to Knights of the Round Table",
"nextCard" : "",
"prevCard" : "-KvmqExLLhAd8zd746OL",
"published" : true,
"rootTitle" : "Knights Who Say Ni ",
"text" : "<p>Now goodbye.</p>",
"userId" : 1
},
"-KvmqeeaFpG87-Is8hlq" : {
"branchTitle" : "Harmony Stranger: the wise witch",
"nextCard" : "",
"prevCard" : "-KvmqD4iod4b7uXglF-T",
"published" : true,
"rootTitle" : "Larry Flowerpot",
"text" : "<p>And her orange cat, Shookcranks, who was half-dragon and half-tabby-cat.</p>",
"userId" : 1
},
"-KvmrGNIBnF10enAXYea" : {
"branchTitle" : "Justine",
"nextCard" : "-Kvmw_p3xqc8u0ktVAPS",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>How many ways can love be portrayed</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-Kvmr_H9i_Jw4gsrsiMX" : {
"branchTitle" : "Justine",
"nextCard" : "",
"prevCard" : "-KvmrGNIBnF10enAXYea",
"published" : true,
"rootTitle" : "Justine",
"text" : "<p>We explore obsession versus feint</p>",
"userId" : 1
},
"-KvmsUnP2X3tKBweWsjc" : {
"branchTitle" : "Mountolive",
"nextCard" : "",
"prevCard" : "-KvmrGNIBnF10enAXYea",
"published" : true,
"rootTitle" : [ "isRoot", "Justine" ],
"text" : "<p>The transference of a high from the wildly new to a single minor aspect of the chaos</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-KvmtxZrkIREKr7jJgsT" : {
"branchTitle" : "Balthazar",
"nextCard" : "",
"prevCard" : "-KvmrGNIBnF10enAXYea",
"published" : true,
"rootTitle" : [ "isRoot", "Justine" ],
"text" : "<p>The forceful movement from the heart to the head: substituting a more natural cataloguing for sterile memorization</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-Kvmw_p3xqc8u0ktVAPS" : {
"branchTitle" : "Clea",
"nextCard" : "",
"prevCard" : "-KvmrGNIBnF10enAXYea",
"published" : true,
"rootTitle" : [ "isRoot", "Justine" ],
"text" : "<p>The myth of the obligation-free affair</p>",
"userId" : 1
},
"-KvmxbPSHImUNGNgtYll" : {
"branchTitle" : "Chows on Steves",
"nextCard" : "",
"prevCard" : "-KvmoG8sYGNNYFZk5Y_F",
"published" : true,
"rootTitle" : [ "isRoot", "House of Leaves", "Louse of Heaves", "Spouse of Jeeves" ],
"text" : "<p>yum</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-Kvn-r_y1jcrTSJSLoTa" : {
"branchTitle" : "Hitchcock",
"nextCard" : "",
"prevCard" : "-KvmpFbYGBGQnQkk6Tl3",
"published" : false,
"rootTitle" : "Angry Birdy",
"text" : "<p>They attack at night</p>",
"userId" : "dvy8IZ2tU3YrJQnqdBpzSABlynf2"
},
"-Kvn0nLUW8PN66dJgp3q" : {
"branchTitle" : "bad bad dream",
"nextCard" : "",
"prevCard" : "-KvmnufmxpyyRm9gK_4q",
"published" : true,
"rootTitle" : [ "isRoot", "Marry Me" ],
"text" : "<p>this morning i woke up bleary-eye and beautiful, per usual. I rolled over and poked my boyfriend in the shoulder, so that he would kiss me or otherwise make a compliment of some important kind. He was pretty bleary-eyed as well, but - luckily for him, cuz otherwise he would have gotten a beating of some very violent kind - he did kiss me and tell me something nice, although I've already forgotten was. I think it was about how sweet I am (he is as discerning person, even in blearyhood.</p><p>\"Guess what I just dreamed about,\" he said.</p><p>\"What?\" I said. I hoped and assumed it was about marrying me, which I imagine is his one true goal in life.</p><p>\"We were planning our wedding -\"</p><p>(Here I chuckled to myself because duh he really has nothing else good to dream about, and I knew it).</p><p>\", but then I got too stressed out with the wedding planning, and decided I didn't want to get married anymore.\" </p><p>The hidden face inside of my real face fell, but my real face stayed smiling and good, ready for more kisses.</p>",
"userId" : "37dk3UmG6sUZ4dfysVOgXcK9Quw2"
},
"-Kvn1-gGcoc9LBK25u2h" : {
"branchTitle" : "Lovely Night",
"nextCard" : "",
"prevCard" : "-KvmpFbYGBGQnQkk6Tl3",
"published" : true,
"rootTitle" : [ "isRoot", "Angry Birdy", "Hitchcock" ],
"text" : "<p>They coo by my window</p>",
"userId" : "dvy8IZ2tU3YrJQnqdBpzSABlynf2"
},
"-Kvn1mABbF02gtqZyes7" : {
"branchTitle" : "robber bird",
"nextCard" : "",
"prevCard" : "-KvmpFbYGBGQnQkk6Tl3",
"published" : true,
"rootTitle" : [ "isRoot", "Angry Birdy" ],
"text" : "<p> Just the other day, I was eating a sandwich, a delcious sandwich, with cured ham and stewed meats and also some kind of foreign cheese whose name I cannot recall, when a bird alighted on my knee and started squawking, if that's how you spell squawking. </p><p>\"What's going on little birdy?\" I asked him, ready to listen to his troubles and also tell him my own.</p><p>\"I'm a hungry birdy.\"</p><p>\"Oh,\" I said. I was hoping for a more dramatic, bar-client to bar-tender kind of deal.</p><p>\"I'm planning on stealing your sandwich,\" he said.</p><p>\"Oh,\" I said, now hurrying a little bit on eating my sandwich so that he would have less to steal.</p><p>\"I'm gonna steal a lot of your sandwich,\" he said.</p><p>\"Oh,\" I said. (This interaction was becoming much more agressive than I had anticipated, and now I understood why people are so wary about talking to strangers).</p><p>Then an idea occurred to me:</p><p>\"Hey!\" I said. \"If I give you all my sandwich, then there is no way for you to steal it. It would be gift acceptance and not robbery.\"</p><p>\"Wow,\" the bird said, \"You have really defeated me.\"</p><p>\"Yeah,\" I said. \"Anyway, here is my sandwich. I think you'll like it.\"</p><p>The bird smiled, but just a little too craftily.</p>",
"userId" : "37dk3UmG6sUZ4dfysVOgXcK9Quw2"
},
"-Kvn2VW_ZMK2xnt8dWQF" : {
"branchTitle" : "BLAAAAAAA",
"branches" : {
"BIRDS" : "-Kvn2nM-1YOoRz8rZHih"
},
"nextCard" : "-Kvn2nM-1YOoRz8rZHih",
"prevCard" : "-KvmpXPOMcT6-m-pLD39",
"published" : true,
"rootTitle" : [ "isRoot", "Larry Flowerpot" ],
"text" : "<p>blaaaaaa</p>",
"userId" : "Yj8AqLbCbAfzGXfLBGKp32yS8jg1"
},
"-Kvn2nM-1YOoRz8rZHih" : {
"branchTitle" : "BIRDS",
"nextCard" : "",
"prevCard" : "-Kvn2VW_ZMK2xnt8dWQF",
"published" : true,
"rootTitle" : [ "isRoot", "Larry Flowerpot", "BLAAAAAAA" ],
"text" : "<p>birds</p>",
"userId" : "Yj8AqLbCbAfzGXfLBGKp32yS8jg1"
},
"-Kvn3ct1bvz-Dc01XOVq" : {
"branchTitle" : "Continuing with Harmony",
"nextCard" : "-Kvn3fXEdIr8C383Odyp",
"prevCard" : "-KvmpXPOMcT6-m-pLD39",
"published" : true,
"rootTitle" : [ "isRoot", "Larry Flowerpot", "Harmony Stranger: the wise witch" ],
"text" : "<p>Here we go, a hopping down the lane!</p>",
"userId" : "mIlF9PJnbNOoQvTqjX5lnASPK7i2"
},
"-Kvn3fXEdIr8C383Odyp" : {
"branchTitle" : "Continuing with Harmony",
"nextCard" : "",
"prevCard" : "-Kvn3ct1bvz-Dc01XOVq",
"published" : true,
"rootTitle" : "Harmony Stranger: the wise witch",
"text" : "<p><br></p>",
"userId" : 1
},
"-Kvn3lyg6UdX5I8bNhh4" : {
"branchTitle" : "My story",
"nextCard" : "",
"prevCard" : "",
"published" : false,
"rootTitle" : "",
"text" : "<p>german shepherd dog</p><p>german shepherd dog</p><p>rottweiler</p><p>hi.</p>",
"userId" : "bN4At1OrK7U9dB32MQpkpwWcTqD2"
},
"-Kvn46dtJpfAgW7ga-O-" : {
"branchTitle" : "Story2",
"nextCard" : "",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>22222</p>",
"userId" : "bN4At1OrK7U9dB32MQpkpwWcTqD2"
},
"-Kvn4B3p4GjhikJIt5ip" : {
"branchTitle" : "i forget",
"nextCard" : "-Kvn4EV7rN_8cEKWLR4t",
"prevCard" : "-Kvmo_sBGFSSTWjr127O",
"published" : true,
"rootTitle" : [ "isRoot", "All Summer in a Day" ],
"text" : "<p>and what happened right before this?</p>",
"userId" : "wCglMIt8IDV5bmFECmosO4rmj9M2"
},
"-Kvn4EV7rN_8cEKWLR4t" : {
"branchTitle" : "i forget",
"nextCard" : "",
"prevCard" : "-Kvn4B3p4GjhikJIt5ip",
"published" : true,
"rootTitle" : "All Summer in a Day",
"text" : "<p>what happened before this? </p>",
"userId" : 1
},
"-Kvn4Kd8TUdiy9UEFt4P" : {
"branchTitle" : "branch",
"nextCard" : "",
"prevCard" : "-Kvmo_sBGFSSTWjr127O",
"published" : true,
"rootTitle" : [ "isRoot", "All Summer in a Day", "i forget" ],
"text" : "<p>what am i doing</p>",
"userId" : "bN4At1OrK7U9dB32MQpkpwWcTqD2"
},
"-Kvn4RsaYWQgV_r7zryq" : {
"branchTitle" : "Dust Mice",
"nextCard" : "-Kvn4SzICKMu1Z__R15e",
"prevCard" : "-Kvmo_sBGFSSTWjr127O",
"published" : true,
"rootTitle" : [ "isRoot", "All Summer in a Day" ],
"text" : "<p>And she stayed there and made dust mice friends</p>",
"userId" : "wCglMIt8IDV5bmFECmosO4rmj9M2"
},
"-Kvn4SzICKMu1Z__R15e" : {
"branchTitle" : "Dust Mice",
"nextCard" : "",
"prevCard" : "-Kvn4RsaYWQgV_r7zryq",
"published" : false,
"rootTitle" : "All Summer in a Day",
"text" : "<p><br></p>",
"userId" : 1
},
"-Kvn4s8lgJubR7MZWG0j" : {
"branchTitle" : "Saving card",
"nextCard" : "",
"prevCard" : "-Kvmo_sBGFSSTWjr127O",
"published" : false,
"rootTitle" : "All Summer in a Day",
"text" : "<p>Maggot had a fun day at the park.</p>",
"userId" : "mIlF9PJnbNOoQvTqjX5lnASPK7i2"
},
"-Kvn6vlJnScIw7otRMdZ" : {
"branchTitle" : "Unicorns the SEQUEL",
"nextCard" : "",
"prevCard" : "-KvmowTuiG2iM0VJVPKT",
"published" : true,
"rootTitle" : [ "isRoot", "Unicorn Time" ],
"text" : "<p>unicorns can get meta and make <a href=\"https://github.com/parallel-stories/capstone\" target=\"_blank\">githubsss</a></p><ol><li>wowwww</li></ol>",
"userId" : "uG0LVL7fXLcaYnqbvf98a1XEtX93"
},
"-Kvn7BcRxhq8B1B4Phsh" : {
"branchTitle" : "My Story",
"branches" : {
"My Story 1" : "-Kvn7Ob-IBeND5xUAOEB"
},
"nextCard" : "-Kvn7Ob-IBeND5xUAOEB",
"prevCard" : "",
"published" : true,
"rootTitle" : "",
"text" : "<p>La La La</p>",
"userId" : "WAzu1yiZAGYJsWZxTSfVDwIa2mr2"
},
"-Kvn7Ob-IBeND5xUAOEB" : {
"branchTitle" : "My Story 1",
"nextCard" : "",
"prevCard" : "-Kvn7BcRxhq8B1B4Phsh",
"published" : false,
"rootTitle" : [ "isRoot", "My Story" ],
"text" : "<p>Hello</p>",
"userId" : "WAzu1yiZAGYJsWZxTSfVDwIa2mr2"
},
"-Kvn7qVvDYC4oZUR4VVd" : {
"branchTitle" : "A whole newww worrrrrrld",
"branches" : {
"LYRICSFTW" : "-KvnA4xDvWW3RJfEaI0Q"
},
"nextCard" : "-KvnA4xDvWW3RJfEaI0Q",
"prevCard" : "",
"published" : false,
"rootTitle" : [ "isRoot" ],
"text" : "<p><a href=\"https://images.genius.com/60b5625f2b03a3c8a7b3f64012de1272.1000x588x1.jpg\" target=\"_blank\">https://images.genius.com/60b5625f2b03a3c8a7b3f64012de1272.1000x588x1.jpg</a></p><p><br></p><p><br></p><p><br></p><p>much wow</p><p><br></p>",
"userId" : "uG0LVL7fXLcaYnqbvf98a1XEtX93"
},
"-Kvn7w9G6vD3akJyJmJ2" : {
"branchTitle" : "Happy Closet",
"nextCard" : "",
"prevCard" : "-Kvmo_cicbRdCUBOCMjv",
"published" : true,
"rootTitle" : [ "isRoot", "All Summer in a Day" ],
"text" : "<p>Margo had a phobia of being in large spaces, so this closet was really quite perfect. The other children knew this.</p>",
"userId" : "M6XqRVyvDSOJDkZNJhsu9IJRxzz1"
},
"-Kvn82hBye7frG510SLX" : {
"branchTitle" : "oh noooooooo it doesnt persist :(",
"nextCard" : "-Kvn85qdsRJPjvzdTzVz",
"prevCard" : "",
"published" : true,
"rootTitle" : "",
"text" : "<p>my whole new world :( : ( : ( : : ( </p><p><a href=\"https://images.genius.com/60b5625f2b03a3c8a7b3f64012de1272.1000x588x1.jpg\" target=\"_blank\">https://images.genius.com/60b5625f2b03a3c8a7b3f64012de1272.1000x588x1.jpg</a></p>",
"userId" : "uG0LVL7fXLcaYnqbvf98a1XEtX93"
},
"-Kvn85qdsRJPjvzdTzVz" : {
"branchTitle" : "oh noooooooo it doesnt persist :(",
"nextCard" : "",
"prevCard" : "-Kvn82hBye7frG510SLX",
"published" : true,
"rootTitle" : "oh noooooooo it doesnt persist :(",
"text" : "<p><br></p>",
"userId" : 1
},
"-KvnA3e2c8zllsxlsBHp" : {
"branchTitle" : "Tweeters",
"nextCard" : "",
"prevCard" : "-KvmpXPOMcT6-m-pLD39",
"published" : false,
"rootTitle" : [ "isRoot", "Larry Flowerpot", "BLAAAAAAA", "BIRDS" ],
"text" : "<p>birds tweet a lot dont they</p>",
"userId" : "SHL9KQyLcATSU1lfLksXIBDKUxL2"
},
"-KvnA4xDvWW3RJfEaI0Q" : {
"branchTitle" : "LYRICSFTW",
"nextCard" : "",
"prevCard" : "-Kvn7qVvDYC4oZUR4VVd",
"published" : true,
"rootTitle" : [ "isRoot", "A whole newww worrrrrrld" ],
"text" : "<p>A NEW FANTASTIC POOOOINT OF VIEWWWWWWWW. </p>",
"userId" : "ZaYMznOzaCOH28ONwVb7aW3IGr03"
},
"-KvnAYeNsh2i50w93Hjo" : {
"branchTitle" : "I wish I was a baller",
"nextCard" : "-KvnAcdJdbnni32EdM_F",
"prevCard" : "",
"published" : true,
"rootTitle" : "",
"text" : "<p>I wish I had a something in a hat with a something</p>",
"userId" : "SHL9KQyLcATSU1lfLksXIBDKUxL2"
},
"-KvnAcdJdbnni32EdM_F" : {
"branchTitle" : "I wish I was a baller",
"nextCard" : "",
"prevCard" : "-KvnAYeNsh2i50w93Hjo",
"published" : true,
"rootTitle" : "I wish I was a baller",
"text" : "<p>I wish I had a girl who looked good I would call her</p>",
"userId" : 1
},
"-KvnAd8bLahX451PncGJ" : {
"branchTitle" : "Today is the day",
"nextCard" : "",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>I came to parallel stories.</p><p><br></p><p>and WHAT I SAW. </p><p><br></p><p>WAS NOT WHAT I SAW.</p><p><br></p><p>IT WAS ALL A BRANCH.</p><p><br></p><p>IT'S A BRANCH</p><p><br></p><p>A NEW BRANCH</p><p><br></p><p>MUCH WOW</p>",
"userId" : "ZaYMznOzaCOH28ONwVb7aW3IGr03"
},
"-KvnD1rOESrsZtI1jiml" : {
"branchTitle" : "hello world",
"nextCard" : "",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>hiiiiii</p>",
"userId" : "WAzu1yiZAGYJsWZxTSfVDwIa2mr2"
},
"-KvnDGU9wXoIgKD4QmEn" : {
"branchTitle" : "Banana",
"nextCard" : "",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>hello, i'm a little banana, don't eat me. the end. </p>",
"userId" : "ZaYMznOzaCOH28ONwVb7aW3IGr03"
},
"-KvnOQR1gx7AFF9mDSPw" : {
"branchTitle" : "The Gunslinger",
"nextCard" : "-KvnOROpIwzYJLQ-rQPz",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>Roland</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-KvnOROpIwzYJLQ-rQPz" : {
"branchTitle" : "The Gunslinger",
"branches" : {
"Co-op City" : "-KvnOa4zSU5RagUWKX0m"
},
"nextCard" : "-KvnOa4zSU5RagUWKX0m",
"prevCard" : "-KvnOQR1gx7AFF9mDSPw",
"published" : true,
"rootTitle" : "The Gunslinger",
"text" : "<p>Is</p>",
"userId" : 1
},
"-KvnOSdWPNxWsehMVLAh" : {
"branchTitle" : "The Gunslinger",
"nextCard" : "",
"prevCard" : "-KvnOROpIwzYJLQ-rQPz",
"published" : true,
"rootTitle" : "The Gunslinger",
"text" : "<p>Hongry</p>",
"userId" : 1
},
"-KvnOa4zSU5RagUWKX0m" : {
"branchTitle" : "Co-op City",
"nextCard" : "-KvnOc3jh79EX2GcreR1",
"prevCard" : "-KvnOROpIwzYJLQ-rQPz",
"published" : true,
"rootTitle" : [ "isRoot", "The Gunslinger" ],
"text" : "<p>Aiming with his heart</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-KvnOc3jh79EX2GcreR1" : {
"branchTitle" : "Co-op City",
"branches" : {
"The Way Station" : "-KvnOlPb2HmoqVsacgDm"
},
"nextCard" : "-KvnOlPb2HmoqVsacgDm",
"prevCard" : "-KvnOa4zSU5RagUWKX0m",
"published" : true,
"rootTitle" : "The Gunslinger",
"text" : "<p>not with his eye</p>",
"userId" : 1
},
"-KvnOlPb2HmoqVsacgDm" : {
"branchTitle" : "The Way Station",
"nextCard" : "",
"prevCard" : "-KvnOc3jh79EX2GcreR1",
"published" : true,
"rootTitle" : [ "isRoot", "The Gunslinger", "Co-op City" ],
"text" : "<p>the undead boy waits</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-KvrJevQZBYCDMmV_SvL" : {
"branchTitle" : "zz change title, no child CHANGED",
"nextCard" : "",
"prevCard" : "",
"published" : false,
"rootTitle" : [ "isRoot" ],
"text" : "",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-KvrJoY-RzVJeDUOW36e" : {
"branchTitle" : "zz static root",
"branches" : {
"zz update title of child of root" : "-KvrJubDtJV86wuSw8mH"
},
"nextCard" : "-KvrJubDtJV86wuSw8mH",
"prevCard" : "",
"published" : true,
"rootTitle" : [ "isRoot" ],
"text" : "<p>test</p>",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
},
"-KvrJubDtJV86wuSw8mH" : {
"branchTitle" : "zz update title of child of root CHANGED",
"nextCard" : "",
"prevCard" : "-KvrJoY-RzVJeDUOW36e",
"published" : false,
"rootTitle" : [ "isRoot", "zz static root" ],
"text" : "",
"userId" : "kcVvWi1LKQauAei8WFUTyFbqshG3"
}
},
"storyRoot" : {
"A whole newww worrrrrrld" : {
"LYRICSFTW" : true,
"isRoot" : true
},
"All Summer in a Day" : {
"Dust Mice" : true,
"Happy Closet" : true,
"Saving card" : true,
"i forget" : true,
"isRoot" : true
},
"Angry Birdy" : {
"Hitchcock" : true,
"isRoot" : true,
"robber bird" : true
},
"BIRDS" : {
"Tweeters" : true
},
"BLAAAAAAA" : {
"BIRDS" : true
},
"Banana" : {
"isRoot" : true
},
"Co-op City" : {
"The Way Station" : true
},
"Harmony Stranger: the wise witch" : {
"Continuing with Harmony" : true
},
"Hitchcock" : {
"Lovely Night" : true
},
"House of Leaves" : {
"Louse of Heaves" : true,
"isRoot" : true
},
"I wish I was a baller" : {
"isRoot" : true
},
"Justine" : {
"Balthazar" : true,
"Clea" : true,
"Mountolive" : true,
"isRoot" : true
},
"Knights Who Say Ni " : {
"Response to Knights of the Round Table" : true,
"isRoot" : true
},
"Larry Flowerpot" : {
"BLAAAAAAA" : true,
"Harmony Stranger: the wise witch" : true,
"isRoot" : true
},
"Louse of Heaves" : {
"Spouse of Jeeves" : true
},
"Marry Me" : {
"bad bad dream" : true,
"isRoot" : true
},
"My Story" : {
"My Story 1" : true,
"isRoot" : true
},
"My story" : {
"isRoot" : true
},
"Spouse of Jeeves" : {
"Chows on Steves" : true
},
"Story2" : {
"isRoot" : true
},
"The Gunslinger" : {
"Co-op City" : true,
"isRoot" : true
},
"Today is the day" : {
"isRoot" : true
},
"Unicorn Time" : {
"Unicorns the SEQUEL" : true,