-
Notifications
You must be signed in to change notification settings - Fork 2
/
bulk_res.json
1010 lines (1010 loc) · 45.8 KB
/
bulk_res.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
{
"1459417": {
"2020": {
"_0": [
{
"sentence": "The company has priced its public offering of 15 million shares of common stock at a price to the public of $24 per share.",
"date": "2020-08-05",
"sentiment": "Neutral"
},
{
"sentence": "Company has used the net proceeds from the offering of base notes to repay all amounts outstanding under the credit facility.",
"date": "2020-04-20",
"sentiment": "Neutral"
},
{
"sentence": "The notes will be convertible into shares of the company\u2019s common stock at an initial conversion rate of 35.3773 shares.",
"date": "2020-04-20",
"sentiment": "Neutral"
},
{
"sentence": "Pursuant to the indenture, the notes will be convertible at the company\u2019s option into shares of the company\u2019s common stock.",
"date": "2020-04-20",
"sentiment": "Neutral"
},
{
"sentence": "Pricing of base notes on 20, 2020premium of 100% over last reported sale price of company\u2019s common stock.",
"date": "2020-04-20",
"sentiment": "Neutral"
},
{
"sentence": "Company to use portion of proceeds from offering to repay all amounts outstanding under term loan.",
"date": "2020-04-20",
"sentiment": "Neutral"
},
{
"sentence": "The notes will be convertible at 2u\u2019s option into shares of 2u\u2019s common stock.",
"date": "2020-04-20",
"sentiment": "Neutral"
}
],
"_1": [
{
"sentence": "The loans are secured by the company\u2019s assets.",
"date": "2020-06-25",
"sentiment": "Neutral"
},
{
"sentence": "Company used a portion of the proceeds from the sale of base notes to repay obligations under credit agreement.",
"date": "2020-04-20",
"sentiment": "Neutral"
}
],
"_2": [
{
"sentence": "Harsha mokkarala to step down as chief revenue officer of 2u, inc.",
"date": "2020-09-02",
"sentiment": "Neutral"
},
{
"sentence": "Graduate program segment revenue grew 14%, alternative credential segment revenue grew 216%.",
"date": "2020-04-30",
"sentiment": "Positive"
},
{
"sentence": "Total revenue for the first quarter of 2019 was $510.5 million. costs and expenses rose 56% from first quarter of 2019",
"date": "2020-04-30",
"sentiment": "Positive"
},
{
"sentence": "Career education expects first-quarter revenue to rise 44%. graduate program segment revenue expected to grow by 14% to $118.5 million",
"date": "2020-04-20",
"sentiment": "Positive"
},
{
"sentence": "Career education expects first-quarter revenue to rise 44%",
"date": "2020-04-20",
"sentiment": "Positive"
},
{
"sentence": "Revenue expected to grow by 26-30% in 2020; adjusted ebitda to turn positive in third quarter.",
"date": "2020-02-06",
"sentiment": "Positive"
}
],
"_3": [
{
"sentence": "Risks and uncertainties that could cause actual results to differ include, but are not limited to:",
"date": "2020-10-27",
"sentiment": "Neutral"
},
{
"sentence": "Risks and uncertainties that could cause actual results to differ include, but are not limited to:",
"date": "2020-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Forward-looking statements involve known and unknown risks, uncertainties and other factors that may cause the actual results, performance or achievements of 2u to be materially different.",
"date": "2020-04-30",
"sentiment": "Neutral"
},
{
"sentence": "Company expects to report cash, cash equivalents and restricted cash at march 31, 2020.",
"date": "2020-04-20",
"sentiment": "Neutral"
},
{
"sentence": "Forward-looking statements involve known and unknown risks, uncertainties and other factors that may cause the actual results, performance or achievements of the company to be materially different.",
"date": "2020-04-20",
"sentiment": "Neutral"
},
{
"sentence": "Company expects to report cash, cash equivalents and restricted cash at march 31, 2020.",
"date": "2020-04-20",
"sentiment": "Neutral"
},
{
"sentence": "Risks and uncertainties that could cause actual results to differ include, but are not limited to:",
"date": "2020-04-20",
"sentiment": "Neutral"
},
{
"sentence": "Forward-looking statements involve known and unknown risks, uncertainties and other factors that may cause the actual results, performance or achievements of 2u to be materially different.",
"date": "2020-02-06",
"sentiment": "Neutral"
}
],
"_4": [
{
"sentence": "Online education company 2u has raised $350m in series a funding.",
"date": "2020-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Cash, cash equivalents and restricted cash rose to $213.0 million from $189.9 million.",
"date": "2020-07-30",
"sentiment": "Positive"
},
{
"sentence": "$50 million incremental borrowings not to exceed $100 million.",
"date": "2020-06-25",
"sentiment": "Neutral"
},
{
"sentence": "Cash, cash equivalents and restricted cash was $157.5 million as of march 31, 2020.",
"date": "2020-04-30",
"sentiment": "Neutral"
},
{
"sentence": "On 23, 2020, the company issued $330.0 million of notes. initial purchasers exercised their option to purchase an additional $50.0 million of notes.",
"date": "2020-04-30",
"sentiment": "Neutral"
},
{
"sentence": "Issuance of $330.0 million aggregate principal amount of company\u2019s 2.25% convertible notes.",
"date": "2020-04-20",
"sentiment": "Neutral"
}
]
},
"2021": {
"_0": [
{
"sentence": "Ursuant to the purchase agreement, edx contributed substantially all of its assets to edx sub.",
"date": "2021-06-28",
"sentiment": "Neutral"
},
{
"sentence": "Company\u2019s common stock is listed on the new york stock exchange.",
"date": "2021-10-12",
"sentiment": "Neutral"
},
{
"sentence": "Ursuant to the purchase agreement, edx will contribute substantially all of its assets to edx sub.",
"date": "2021-06-28",
"sentiment": "Neutral"
}
],
"_1": [
{
"sentence": "Ursuant to separation, consulting and release agreement, mr. kenigsberg to serve as a consultant until 2, 2024.",
"date": "2021-11-10",
"sentiment": "Neutral"
},
{
"sentence": "Company borrowed an additional $100 million under its existing senior secured term loan a.",
"date": "2021-11-09",
"sentiment": "Neutral"
},
{
"sentence": "Transaction to be funded by existing cash, new $475 million senior secured term loan",
"date": "2021-06-28",
"sentiment": "Neutral"
},
{
"sentence": "Online university 2u has agreed to be acquired by private equity firm thoma bravo.",
"date": "2021-06-28",
"sentiment": "Neutral"
}
],
"_2": [
{
"sentence": "2u is the parent company of edx, a leading global online learning platform.",
"date": "2021-06-28",
"sentiment": "Neutral"
},
{
"sentence": "Revenue up 35% on strong full-year performance",
"date": "2021-02-11",
"sentiment": "Positive"
},
{
"sentence": "Online university 2u reported record revenues for the fourth quarter of 2020.",
"date": "2021-02-11",
"sentiment": "Positive"
},
{
"sentence": "Guidance reflects confidence in ability to maintain strong growth.",
"date": "2021-02-11",
"sentiment": "Positive"
}
],
"_3": [
{
"sentence": "Forward-looking statements are based on management\u2019s current expectations and are subject to a number of uncertainties and risks.",
"date": "2021-11-10",
"sentiment": "Neutral"
},
{
"sentence": "Online education company 2u reported strong third quarter results.",
"date": "2021-11-09",
"sentiment": "Positive"
},
{
"sentence": "Risks and uncertainties that could cause actual results to differ include, but are not limited to:",
"date": "2021-11-09",
"sentiment": "Neutral"
},
{
"sentence": "Risks and uncertainties that could cause actual results to differ include, but are not limited to:",
"date": "2021-07-29",
"sentiment": "Neutral"
},
{
"sentence": "The information in this report, including the exhibits thereto, isfurnished and copyrighted.",
"date": "2021-06-28",
"sentiment": "Neutral"
},
{
"sentence": "Factors that could cause actual results to differ materially from expectations include, but are not limited to:",
"date": "2021-06-28",
"sentiment": "Neutral"
},
{
"sentence": "Forward-looking statements involve known and unknown risks, uncertainties and other factors that may cause the actual results, performance or achievements of 2u to be materially different.",
"date": "2021-06-28",
"sentiment": "Neutral"
},
{
"sentence": "Forward-looking statements involve known and unknown risks, uncertainties and other factors that may cause the actual results, performance or achievements of 2u to be materially different.",
"date": "2021-04-28",
"sentiment": "Neutral"
},
{
"sentence": "Forward-looking statements involve known and unknown risks, uncertainties and other factors that may cause the actual results, performance or achievements of 2u to be materially different.",
"date": "2021-02-11",
"sentiment": "Neutral"
}
],
"_4": [
{
"sentence": "Edx is the education movement for restless learners. together with the majority of the worlds top-ranked universities and industry-leading companies, we bring our community of over 40 million learners world-class education",
"date": "2021-06-28",
"sentiment": "Neutral"
},
{
"sentence": "On 28, 2021, 2u entered into new $475 million senior term loan a.",
"date": "2021-06-28",
"sentiment": "Neutral"
},
{
"sentence": "Cash and cash equivalents rose to $505.1 million from $157.5 million.",
"date": "2021-04-28",
"sentiment": "Positive"
},
{
"sentence": "Cash used in operating activities was negative $7.6 million in the quarter.",
"date": "2021-04-28",
"sentiment": "Negative"
}
]
}
},
"1023731": {
"2020": {
"_0": [
{
"sentence": "Stock compensation is expected to account for more than 80% of named executive officer\u2019s targeted compensation.",
"date": "2020-07-13",
"sentiment": "Neutral"
},
{
"sentence": "(1) for the three months ended 31, 2019, stock-based compensation and expense related employer payroll taxes includes stock in lieu of cash.",
"date": "2020-02-04",
"sentiment": "Neutral"
}
],
"_1": [
{
"sentence": "As part of the separation agreement, he will receive: a cash payment of $1,295,296 reflecting the value of approximately six (6) months of time-based vesting.",
"date": "2020-12-09",
"sentiment": "Neutral"
}
],
"_2": [
{
"sentence": "Revenue guidance in the range of $132.0 million to $133.0 million, representing approximately 11% to 12% year-over-year growth.",
"date": "2020-12-09",
"sentiment": "Positive"
},
{
"sentence": "Service revenue guidance in the range of $124.0 million to $125.0 million.",
"date": "2020-12-09",
"sentiment": "Neutral"
},
{
"sentence": "G4s expects full-year revenue in range of $425 million to $425 million.",
"date": "2020-12-09",
"sentiment": "Neutral"
},
{
"sentence": "Total revenue guidance in the range of $519.0 million to $522.0 million.",
"date": "2020-12-09",
"sentiment": "Neutral"
},
{
"sentence": "Service revenue guidance in the range of $489.0 million to $492.0 million.",
"date": "2020-12-09",
"sentiment": "Neutral"
},
{
"sentence": "Covid-19 guidance includes non-gaap pre-tax loss of approximately $16.0 million.",
"date": "2020-12-09",
"sentiment": "Negative"
},
{
"sentence": "Gaap pre-tax income (loss) is not reconciled to gaap net income (loss).",
"date": "2020-12-09",
"sentiment": "Neutral"
},
{
"sentence": "Revenue rose 17.9% year-over-year to $129.1 million.",
"date": "2020-10-28",
"sentiment": "Positive"
},
{
"sentence": "Customer growth was driven by mid-market firms.",
"date": "2020-10-28",
"sentiment": "Neutral"
},
{
"sentence": "Enterprise customers comprise 20% of total arr growth.",
"date": "2020-10-28",
"sentiment": "Neutral"
},
{
"sentence": "Revenue guidance in the range of $132.0 million to $133.0 million, representing approximately 11% to 12% year-over-year growth.",
"date": "2020-10-28",
"sentiment": "Positive"
},
{
"sentence": "Service revenue guidance in the range of $124.0 million to $125.0 million.",
"date": "2020-10-28",
"sentiment": "Neutral"
},
{
"sentence": "G4s expects full-year revenue in range of $425 million to $425 million.",
"date": "2020-10-28",
"sentiment": "Neutral"
},
{
"sentence": "Total revenue guidance in the range of $519.0 million to $522.0 million.",
"date": "2020-10-28",
"sentiment": "Neutral"
},
{
"sentence": "Service revenue guidance in the range of $489.0 million to $492.0 million.",
"date": "2020-10-28",
"sentiment": "Neutral"
},
{
"sentence": "Covid-19 guidance includes non-gaap pre-tax loss of approximately $16.0 million.",
"date": "2020-10-28",
"sentiment": "Negative"
},
{
"sentence": "Measure of non-gaap pre-tax income (loss) is not reconciled to gaap measures.",
"date": "2020-10-28",
"sentiment": "Neutral"
},
{
"sentence": "Revenue for the first nine months of the year is up 30% from the same period last year.",
"date": "2020-07-30",
"sentiment": "Positive"
},
{
"sentence": "Customer growth was driven by mid-market firms.",
"date": "2020-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Year-on-year growth in retail sales slowed slightly in september.",
"date": "2020-07-30",
"sentiment": "Negative"
},
{
"sentence": "Total revenue guidance in the range of $125.5 million to $126.5 million.",
"date": "2020-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Service revenue guidance in the range of $117.3 million to $118.3 million.",
"date": "2020-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Covid-19 guidance includes non-gaap pre-tax loss of approximately $7.5 million.",
"date": "2020-07-30",
"sentiment": "Negative"
},
{
"sentence": "Gaap pre-tax income (loss) is a non-gaap measure.",
"date": "2020-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Revenue for the first nine months of the year is up 33% from the same period last year.",
"date": "2020-02-04",
"sentiment": "Positive"
},
{
"sentence": "Customer growth was driven by mid-market companies.",
"date": "2020-02-04",
"sentiment": "Neutral"
},
{
"sentence": "Enterprise customers accounted for 18% of total arr growth last year.",
"date": "2020-02-04",
"sentiment": "Neutral"
},
{
"sentence": "Year-on-year growth in retail sales slowed in september",
"date": "2020-02-04",
"sentiment": "Negative"
},
{
"sentence": "Total revenue guidance in the range of $118.9 million to $119.4 million.",
"date": "2020-02-04",
"sentiment": "Neutral"
},
{
"sentence": "Service revenue guidance in the range of $114.4 million to $114.9 million.",
"date": "2020-02-04",
"sentiment": "Neutral"
},
{
"sentence": "Covid-19 guidance includes non-gaap pre-tax loss of approximately $14.1 million.",
"date": "2020-02-04",
"sentiment": "Negative"
},
{
"sentence": "Service revenue now expects to grow 27% year-over-year.",
"date": "2020-02-04",
"sentiment": "Positive"
},
{
"sentence": "Reaffirms non-gaap pre-tax loss guidance of approximately $60.0 million.",
"date": "2020-02-04",
"sentiment": "Neutral"
},
{
"sentence": "Gaap pre-tax income (loss) is a non-gaap measure of gaap net income.",
"date": "2020-02-04",
"sentiment": "Neutral"
},
{
"sentence": "Acquisition and integration expenses, debt expense, legal and regulatory costs, severance and contract termination costs.",
"date": "2020-02-04",
"sentiment": "Negative"
},
{
"sentence": "Company to strengthen go-to-market leadership and customer operations. 8x8 to provide a detailed business update on 4th earnings call",
"date": "2020-01-16",
"sentiment": "Neutral"
}
],
"_3": [
{
"sentence": "Software-as-a-service provider 8x8 reports \u2018strong quarter across the board\u2019.",
"date": "2020-10-28",
"sentiment": "Positive"
}
],
"_4": [
{
"sentence": "Ceo to receive annual base salary of $525,000, target cash bonus of 100%.",
"date": "2020-12-09",
"sentiment": "Neutral"
},
{
"sentence": "Ms. cota\u2019s annual base salary is $300,000 and she has an annual bonus target of 40%.",
"date": "2020-10-22",
"sentiment": "Neutral"
},
{
"sentence": "Channel bookings grew 23% year-over-year, represented 59% of new bookings.",
"date": "2020-10-28",
"sentiment": "Positive"
},
{
"sentence": "Global contact center bookings grew by 62% year-over-year.",
"date": "2020-10-28",
"sentiment": "Positive"
},
{
"sentence": "Small business customers comprise 54% of total arr.",
"date": "2020-10-28",
"sentiment": "Neutral"
},
{
"sentence": "Channel bookings grew 47% year-over-year and represented 62% of new bookings.",
"date": "2020-07-30",
"sentiment": "Positive"
},
{
"sentence": "New contact center bookings grew 194% year-over-year.",
"date": "2020-07-30",
"sentiment": "Positive"
},
{
"sentence": "Small business customers comprise 55% of total arr.",
"date": "2020-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Enterprise customers comprise 19% of total arr.",
"date": "2020-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Executive officers may elect to receive up to 35% of base salary compensation.",
"date": "2020-07-13",
"sentiment": "Neutral"
},
{
"sentence": "Channel bookings grew 62% year-over-year and represented 54% of new bookings.",
"date": "2020-02-04",
"sentiment": "Positive"
},
{
"sentence": "North american contact center bookings grew 90% year-over-year.",
"date": "2020-02-04",
"sentiment": "Positive"
},
{
"sentence": "Small business customers make up 56% of total arr.",
"date": "2020-02-04",
"sentiment": "Neutral"
}
]
},
"2021": {
"_0": [
{
"sentence": "Each share of series a prime preferred stock issued and outstanding immediately prior to the effective time.",
"date": "2021-11-30",
"sentiment": "Neutral"
},
{
"sentence": "Management excludes stock-based compensation expense. acquisition and integration expenses consist of external and incremental costs.",
"date": "2021-11-02",
"sentiment": "Neutral"
},
{
"sentence": "Investors are cautioned that any such forward-looking statements are not guarantees of future performance.",
"date": "2021-01-28",
"sentiment": "Negative"
}
],
"_1": [
{
"sentence": "Merger agreement is qualified in its entirety by reference to the full text of the merger agreement.",
"date": "2021-11-30",
"sentiment": "Neutral"
}
],
"_2": [
{
"sentence": "Service revenue growth of 18% year-over-year; total arr increased 18%",
"date": "2021-11-02",
"sentiment": "Positive"
},
{
"sentence": "Revenue rose 17% year-over-year to $151.6 million in fourth quarter.",
"date": "2021-11-02",
"sentiment": "Positive"
},
{
"sentence": "Revenue in the range of $152.7 million to $154.2 million, representing approximately 12% to 13% year-over-year growth.",
"date": "2021-11-02",
"sentiment": "Positive"
},
{
"sentence": "Service revenue in the range of $144 million to $145 million, representing approximately 13% to 14% year-over-year growth.",
"date": "2021-11-02",
"sentiment": "Positive"
},
{
"sentence": "Company raises full-year revenue outlook.",
"date": "2021-11-02",
"sentiment": "Neutral"
},
{
"sentence": "Service revenue growth of 21% year-over-year; total arr grew 24%",
"date": "2021-07-30",
"sentiment": "Positive"
},
{
"sentence": "Service revenue to approximately 14%-15% year-over-year growth",
"date": "2021-07-30",
"sentiment": "Positive"
},
{
"sentence": "Revenue rose 22% year-over-year to $148.3 million in third quarter.",
"date": "2021-07-30",
"sentiment": "Positive"
},
{
"sentence": "Mid-market customers account for 19% of total arr growth.",
"date": "2021-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Enterprise customers comprise 49% of total arr growth.",
"date": "2021-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Revenue in the range of $147.5 million to $149.0 million, representing approximately 14% to 15% year-over-year growth.",
"date": "2021-07-30",
"sentiment": "Positive"
},
{
"sentence": "Service revenue in the range of $138.5 million to $139.5 million, representing 15% year-over-year growth.",
"date": "2021-07-30",
"sentiment": "Positive"
},
{
"sentence": "We are raising our total revenue outlook from $595 million to $605 million.",
"date": "2021-07-30",
"sentiment": "Positive"
},
{
"sentence": "We are raising our service revenue range from $555 million to $565 million.",
"date": "2021-07-30",
"sentiment": "Positive"
},
{
"sentence": "Fiscal 2021 total revenue increased 19% year-over-year to $532 million.",
"date": "2021-05-10",
"sentiment": "Positive"
},
{
"sentence": "Revenue rose 19.1% year-over-year to $144.7 million in 3q.",
"date": "2021-05-10",
"sentiment": "Positive"
},
{
"sentence": "Revenue rose 19.3% year-over-year to $532.3 million",
"date": "2021-05-10",
"sentiment": "Positive"
},
{
"sentence": "Customer growth was driven by mid-market firms.",
"date": "2021-05-10",
"sentiment": "Neutral"
},
{
"sentence": "Service revenue growth of 15% year-over-year; total arr grew 20% to approximately $500 million.",
"date": "2021-01-28",
"sentiment": "Positive"
},
{
"sentence": "Service revenue to approximately 19% year-over-year growth",
"date": "2021-01-28",
"sentiment": "Positive"
},
{
"sentence": "Revenue rose 15.3% year-over-year, exceeding high-end of guidance range.",
"date": "2021-01-28",
"sentiment": "Positive"
},
{
"sentence": "Service revenue increased 15.2% year-over-year, exceeding high-end of guidance range.",
"date": "2021-01-28",
"sentiment": "Positive"
},
{
"sentence": "Gaap pre-tax loss was $39.9 million and non-gaap pre-tax loss was $1.9 million.",
"date": "2021-01-28",
"sentiment": "Negative"
},
{
"sentence": "8x8 raises full-year revenue guidance, sees improved path to profitability.",
"date": "2021-01-28",
"sentiment": "Positive"
},
{
"sentence": "Customer growth was driven by mid-market firms.",
"date": "2021-01-28",
"sentiment": "Neutral"
},
{
"sentence": "Revenue guidance in the range of $138.5 million to $140.5 million, representing approximately 14% to 16% year-over-year growth.",
"date": "2021-01-28",
"sentiment": "Positive"
},
{
"sentence": "Service revenue guidance in the range of $130.8 million to $131.8 million.",
"date": "2021-01-28",
"sentiment": "Neutral"
},
{
"sentence": "Covid-19 guidance includes non-gaap pre-tax loss of approximately $0.8 million.",
"date": "2021-01-28",
"sentiment": "Negative"
},
{
"sentence": "Service revenue guidance raises from a range of $489.0 million to $492.0 million to a range of $493.0 million to $494.0 million.",
"date": "2021-01-28",
"sentiment": "Positive"
},
{
"sentence": "Drugmaker radius health issues new non-gaap pre-tax loss guidance.",
"date": "2021-01-28",
"sentiment": "Neutral"
},
{
"sentence": "Measure of non-gaap pre-tax income (loss) is not reconciled to gaap measures.",
"date": "2021-01-28",
"sentiment": "Neutral"
}
],
"_3": [
{
"sentence": "8x8 named a leader for 10th year in a row in gartner report. fuze named a visionary for seventh year in a row in gartner",
"date": "2021-11-30",
"sentiment": "Neutral"
},
{
"sentence": "Cloud contact center firm reports better-than-expected results.",
"date": "2021-05-10",
"sentiment": "Positive"
}
],
"_4": [
{
"sentence": "Private placement of additional notes at offering price of $1,007.79 per $1,000 principal amount.",
"date": "2021-12-14",
"sentiment": "Neutral"
},
{
"sentence": "8x8 has issued an additional $25 million in aggregate principal amount of 0.50% convertible senior notes due 2024.",
"date": "2021-12-14",
"sentiment": "Neutral"
},
{
"sentence": "8x8 to issue $137.5 million in additional notes in private placement.",
"date": "2021-12-14",
"sentiment": "Neutral"
},
{
"sentence": "8x8 to issue $500.0 million aggregate principal amount of additional notes.",
"date": "2021-12-14",
"sentiment": "Neutral"
},
{
"sentence": "8x8 has priced a private placement of $550 million of additional notes.",
"date": "2021-12-14",
"sentiment": "Neutral"
},
{
"sentence": "Facebook facebook to pay $250 million for fuze in cash deal.",
"date": "2021-11-30",
"sentiment": "Neutral"
},
{
"sentence": "(4) small business arr is defined as arr from customers that generate $25,000 arr.",
"date": "2021-11-02",
"sentiment": "Neutral"
},
{
"sentence": "Small business customers comprise 32% of total arr, up 7% year-over-year.",
"date": "2021-07-30",
"sentiment": "Positive"
},
{
"sentence": "Platform-wide 99.999% sla across ucaas and ccaas solutions.",
"date": "2021-07-30",
"sentiment": "Neutral"
},
{
"sentence": "(1) small business arr is defined as customers that generate $25k arr.",
"date": "2021-07-30",
"sentiment": "Neutral"
},
{
"sentence": "Channel bookings grew 7% year-over-year, represented 53% of new bookings.",
"date": "2021-05-10",
"sentiment": "Positive"
},
{
"sentence": "New contact center bookings grew 20% year-over-year and represented 33% of total new bookings.",
"date": "2021-05-10",
"sentiment": "Positive"
},
{
"sentence": "Small business customers comprise 52% of total arr.",
"date": "2021-05-10",
"sentiment": "Neutral"
},
{
"sentence": "Enterprise customers comprise 21% of total arr.",
"date": "2021-05-10",
"sentiment": "Neutral"
},
{
"sentence": "Platform-wide 99.99% sla across an integrated cloud solution.",
"date": "2021-05-10",
"sentiment": "Neutral"
},
{
"sentence": "Channel bookings grew 64% year-over-year and represented 64% of new bookings.",
"date": "2021-01-28",
"sentiment": "Positive"
},
{
"sentence": "New contact center bookings grew 33% year-over-year and represented 31% of total new bookings.",
"date": "2021-01-28",
"sentiment": "Positive"
},
{
"sentence": "Small business customers comprise 52% of total arr.",
"date": "2021-01-28",
"sentiment": "Neutral"
},
{
"sentence": "Enterprise customers comprise 22% of total arr.",
"date": "2021-01-28",
"sentiment": "Neutral"
}
]
}
},
"1580808": {
"2020": {
"_0": [
{
"sentence": "The stock price achievement will be determined based on the average of the volume weighted average price of the company\u2019s common stock.",
"date": "2020-10-19",
"sentiment": "Neutral"
},
{
"sentence": "Report on form 8-k on compensation and stock repurchase program.",
"date": "2020-09-16",
"sentiment": "Neutral"
}
],
"_1": [
{
"sentence": "Company provides secure application services and solutions for on-premises, multi-cloud and edge-cloud environments.",
"date": "2020-10-27",
"sentiment": "Neutral"
},
{
"sentence": "A10 provides secure application services for on-premises, multi-cloud and edge-cloud.",
"date": "2020-09-16",
"sentiment": "Neutral"
}
],
"_2": [
{
"sentence": "Revenues for the first nine months of the year were up 10.3% vs. same period last year.",
"date": "2020-09-16",
"sentiment": "Positive"
}
],
"_3": [
{
"sentence": "Forward-looking statements involve known and unknown risks, uncertainties and other factors that may cause our actual results, performance or achievements to be materially different.",
"date": "2020-10-27",
"sentiment": "Neutral"
},
{
"sentence": "Forward-looking statements include, but are not limited to, statements regarding:",
"date": "2020-09-16",
"sentiment": "Neutral"
}
],
"_4": [
{
"sentence": "Organically, net income up $6 million, adjusted ebitda up $8.5 million.",
"date": "2020-10-27",
"sentiment": "Positive"
},
{
"sentence": "Board of directors to buy back $50 million of shares.",
"date": "2020-09-16",
"sentiment": "Neutral"
}
]
},
"2021": {
"_0": [
{
"sentence": "Board of directors has declared a quarterly dividend on the company's common stock of 20 cents a share.",
"date": "2021-10-28",
"sentiment": "Neutral"
},
{
"sentence": "The board of directors has approved a capital allocation strategy to return capital to stockholders.",
"date": "2021-10-28",
"sentiment": "Positive"
},
{
"sentence": "Board of directors has declared a quarterly dividend on the company's common stock of 20 cents a share.",
"date": "2021-10-28",
"sentiment": "Neutral"
},
{
"sentence": ".001 par value: 500,000 shares authorized, 77,102 shares issued and outstanding.",
"date": "2021-04-27",
"sentiment": "Neutral"
},
{
"sentence": "Ended the year with $158.1 million in cash, after $32.5 million of stock repurchase activity.",
"date": "2021-02-09",
"sentiment": "Neutral"
},
{
"sentence": ".001 par value: 500,000 shares authorized; 76,346 and 77,580 shares issued and outstanding.",
"date": "2021-02-09",
"sentiment": "Neutral"
}
],
"_1": [
{
"sentence": "Company provides secure application services and solutions for on-premises, multi-cloud and edge-cloud environments.",
"date": "2021-07-27",
"sentiment": "Neutral"
},
{
"sentence": "Severance payments to be made under form of change in control and severance agreement.",
"date": "2021-01-13",
"sentiment": "Neutral"
}
],
"_2": [
{
"sentence": "Long-term deferred revenue has grown 16% year-over-year.",
"date": "2021-10-28",
"sentiment": "Positive"
},
{
"sentence": "Revenues rise 15%; ebitda margin expands to 26%",
"date": "2021-10-28",
"sentiment": "Positive"
},
{
"sentence": "Recurring revenue up 17.6%; deferred revenue at all-time high",
"date": "2021-07-27",
"sentiment": "Positive"
},
{
"sentence": "Security revenue now represents more than 10% of total revenue.",
"date": "2021-04-27",
"sentiment": "Neutral"
},
{
"sentence": "Management says focus on execution, cost discipline drove earnings growth.",
"date": "2021-02-09",
"sentiment": "Positive"
}
],
"_3": [
{
"sentence": "All statements other than statements of historical fact in this release are forward-looking.",
"date": "2021-07-27",
"sentiment": "Neutral"
}
],