-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathsetup.sql
More file actions
2291 lines (2286 loc) · 198 KB
/
setup.sql
File metadata and controls
2291 lines (2286 loc) · 198 KB
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
-- Create the database
DROP DATABASE IF EXISTS lang_ai_demo;
CREATE DATABASE lang_ai_demo;
-- Create the tables
CREATE TABLE IF NOT EXISTS lang_ai_demo.public.zoom_cancellations (
ID STRING,
Cancellation_Reason STRING,
Date DATE,
User_ID STRING
);
CREATE TABLE IF NOT EXISTS lang_ai_demo.public.zoom_users (
ID STRING,
Email STRING,
Plan_Type STRING
);
-- Insert data into zoom_cancellations
INSERT INTO zoom_cancellations VALUES
('a24c89c97bac40a0', 'Interface is too cluttered and confusing for our team members', '2024-07-27', 'dc1803f989d54981'),
('017906ee9ed94546', 'Can''t figure out how to use breakout rooms efficiently', '2024-07-03', '494fef2aa834493e'),
('f9e922a9a33f4292', 'The mobile app is not user-friendly enough for our on-the-go team', '2024-07-29', '3c55f56f2e6e41db'),
('59c8d333061149e5', 'Too many clicks required to start a meeting', '2024-07-11', 'a42f0e0a61824163'),
('2fd7a9a722b347c9', 'Difficulty managing participant controls during large meetings', '2024-07-02', '0ddec354a0674dec'),
('eec99c859e174c6a', 'The whiteboard feature is not intuitive for our creative sessions', '2024-07-16', 'acb281ae9d534100'),
('199d1214a8b24e64', 'Can''t easily customize the meeting layout to our liking', '2024-07-28', '6b109fc31c254a46'),
('a71d8db3bad44b03', 'The chat feature is clunky and hard to use during presentations', '2024-07-26', '8fabe73ce5d54a34'),
('ab7186dd7219498f', 'Struggle with audio settings every time we start a meeting', '2024-07-21', '0dfed8450af04db1'),
('3e070335336d4764', 'Can''t figure out how to use virtual backgrounds properly', '2024-07-07', 'e3dce10bd2e14d95'),
('5625cac08a8c4b0d', 'The waiting room feature is confusing for our clients', '2024-07-11', 'ee93c8c0daeb482d'),
('d89473f080394e22', 'Difficulty scheduling recurring meetings with different participants', '2024-07-29', '5e7056f220b94a94'),
('f9e85397f6454fe0', 'Can''t easily manage multiple hosts in our team meetings', '2024-07-26', '3b50c7d459a0417a'),
('8a25238b675b4598', 'The screen sharing process is not smooth for our presenters', '2024-07-05', '6c9f5f49cb8f4057'),
('1b980fca05094829', 'Trouble navigating between different features during a call', '2024-07-30', '2cfd341bdaec4b33'),
('b64c9533266b4da7', 'The polling feature is too complicated for our quick team check-ins', '2024-07-01', '746b7850a0b54fdc'),
('69aac79511f54bb6', 'Can''t figure out how to use the webinar feature effectively', '2024-07-09', '270421cf01bc44d6'),
('41dfc4a9930c439b', 'The raise hand feature is not prominent enough for our Q&A sessions', '2024-07-24', 'fff95bd50ce7427c'),
('742abb6e9fca413d', 'Difficulty managing breakout rooms for our training sessions', '2024-07-06', '98f58a70438d4cad'),
('4ffcae34cbf0431a', 'The gallery view is not optimized for our large team meetings', '2024-07-14', '1fe33398a26d4520'),
('0c0d5d3534214538', 'Can''t easily switch between speaker and gallery view', '2024-07-23', 'd15942ebe39140b4'),
('648a5789f3044bcb', 'The reactions feature is not intuitive for our team', '2024-07-30', '2e4fe6f925424088'),
('5496db7a2b524e5d', 'Trouble setting up and using the live transcription feature', '2024-07-04', '206c64417289490e'),
('a95e0dbd485248bb', 'The mute all participants function is hard to find quickly', '2024-07-05', '5dfc5b28870f41a8'),
('c7c0f2ecbd91408c', 'Can''t figure out how to use the annotation tools effectively', '2024-07-24', '07c28a2710654e8b'),
('8ddabce70bf645c9', 'The process of inviting external participants is cumbersome', '2024-07-09', 'e848378a8f5c4ee4'),
('c06fad3126274267', 'Difficulty managing audio sharing for our music lessons', '2024-07-19', 'b07b72462d46496a'),
('548427fcaf1749b0', 'Can''t easily customize notification settings', '2024-07-10', '9b80388019334c00'),
('a2db27324d044796', 'The process of starting a scheduled meeting is not straightforward', '2024-07-18', 'e63ae7527d694938'),
('7639a690e8264a90', 'Trouble using the co-host feature for our team presentations', '2024-07-30', 'a498232deb224c0f'),
('08367adb4a404991', 'The chat sidebar is distracting during important meetings', '2024-07-13', '52c0c44fe5d14708'),
('aa22667a69914568', 'Can''t figure out how to use the focus mode effectively', '2024-07-02', 'a86346ec8842410d'),
('a2c98d276faf424c', 'Difficulty managing participant video feeds in large meetings', '2024-07-07', 'f0f5244972a743a1'),
('b34ac37b027e43ba', 'The process of sharing multiple screens simultaneously is confusing', '2024-07-21', '179ca478f6274968'),
('3ad298aae6fa41f8', 'Trouble using the non-verbal feedback features', '2024-07-28', 'e5d3225f11034a5c'),
('c9c9543c804a4b7e', 'Can''t easily manage meeting settings for different types of calls', '2024-07-05', 'a038414346734712'),
('48877c074ecd412f', 'The process of creating and managing meeting templates is not intuitive', '2024-07-23', 'd25db0fa02a0445c'),
('d49007d9fa1c485a', 'Difficulty using the spotlight video feature for our speakers', '2024-07-25', '5b77048a57234321'),
('a76d43ce1bb44912', 'Can''t figure out how to use the live streaming option', '2024-07-18', '5148871df1ba4db3'),
('7601e48471f342f7', 'The process of setting up recurring meetings is too complex', '2024-07-06', 'ccaa5f979210488a'),
('ada069f7dde84951', 'Trouble managing breakout room assignments efficiently', '2024-07-15', '4407f97ed5ae42f9'),
('7eab8ab542924bd0', 'Can''t easily customize the meeting invitation format', '2024-07-20', '5d8cb0902915442f'),
('b7f2bda7094049b0', 'The process of sharing computer audio is not straightforward', '2024-07-21', 'd281c98764be4dd9'),
('3cb588c7156e45ef', 'Difficulty using the remote control feature for tech support', '2024-07-07', '3e51cac902924b46'),
('884292e190764430', 'Can''t figure out how to use the closed captioning feature', '2024-07-12', 'b3d9fd0d384b4688'),
('44bff46f4ff04341', 'The process of managing meeting recordings is cumbersome', '2024-07-22', '418c83e8d8f8407c'),
('b89379f834624588', 'Trouble using the waiting room customization options', '2024-07-12', '4aecce5c00854cd5'),
('d23dc76352694b1c', 'Can''t easily manage participant permissions during meetings', '2024-07-19', '2829ba21491b4720'),
('72ebd6a304e94083', 'The process of setting up language interpretation is confusing', '2024-07-27', '863c559f4dea45ef'),
('00c3308674fb4909', 'Difficulty using the file transfer feature during meetings', '2024-07-25', 'b9519783693e4437'),
('a55e9d2c340c4459', 'Can''t figure out how to use the meeting analytics effectively', '2024-07-14', 'ed0cddd8ee9f45c4'),
('2a22e37fff344ba4', 'The process of creating and managing team chat channels is not intuitive', '2024-07-22', '19cc332b69864068'),
('0d4fb5aad5c84a53', 'Trouble using the virtual background without a green screen', '2024-07-29', '129483d39a6f4fea'),
('3e7feee6e8d84d65', 'Can''t easily customize the meeting join options', '2024-07-24', '33d4f5bce7d94083'),
('88a150de84fb4c59', 'The process of scheduling meetings across time zones is complex', '2024-07-24', '8a2b223cd9434a6c'),
('26133657cc584df4', 'Difficulty using the attendance tracking feature for our classes', '2024-07-25', 'e5550cb4e2f54daa'),
('0c7cc4471fd14e16', 'Can''t figure out how to use the meeting reactions effectively', '2024-07-13', '8b6cdfc76eb04a93'),
('11001b71db854dd5', 'The process of managing meeting security settings is overwhelming', '2024-07-10', 'ca226521635446f1'),
('0240c49e3e3d4e33', 'Trouble using the in-meeting file sharing feature', '2024-07-26', '147307e7ace2466a'),
('a4f22ca4543d427f', 'Can''t easily customize the personal meeting ID settings', '2024-07-28', '756bc112afba4015'),
('aa397631046441fb', 'The process of setting up and using webinars is too complicated', '2024-07-01', 'b87a2debd3794cf3'),
('7db2d664eeed45cb', 'Difficulty using the Q&A feature in our town hall meetings', '2024-07-02', 'eddf91d9b3e94b84'),
('6f6ee911e0904b15', 'Can''t figure out how to use the meeting templates effectively', '2024-07-28', '7fc567bdd4ed49d4'),
('ed82acb1febf42dc', 'The process of managing cloud recordings is not user-friendly', '2024-07-28', '86bad24be4964422'),
('031c9a32d5b949a6', 'Trouble using the dual monitors feature for our presentations', '2024-07-06', 'dcac4036bf2644e5'),
('861089bc4f0d40b9', 'Can''t easily customize the email notifications for meetings', '2024-07-25', '93855b9ca5514717'),
('02bc816ab7074864', 'The process of setting up SSO authentication is too complex', '2024-07-27', '457efcb88d7a4963'),
('7cd362d08fb949f2', 'Difficulty using the meeting scheduling feature with Google Calendar', '2024-07-21', 'c10ddce874d14eff'),
('b911f52aeca541ce', 'Can''t figure out how to use the large meeting add-on effectively', '2024-07-23', '8f034963310e467e'),
('63b9fbdf3a0b4f50', 'The process of managing participant audio settings is cumbersome', '2024-07-13', '0beb8d48d86a47c9'),
('3093a9477cc84fce', 'Trouble using the virtual background video feature', '2024-07-17', 'd40a81600f9a44ec'),
('b5d42bd53596460a', 'Can''t easily customize the meeting reminder settings', '2024-07-08', '794faf1984014ed0'),
('16c463e457c843e3', 'The process of setting up breakout rooms pre-meeting is not intuitive', '2024-07-10', '8c4571903df841d3'),
('05bf2cd59b0b4410', 'Difficulty using the meeting polls feature for quick team decisions', '2024-07-29', 'e9ed2cdf82684924'),
('9df0312854ff4ec6', 'Can''t figure out how to use the meeting registration feature effectively', '2024-07-22', 'e0cda1530896453d'),
('2e87c3ee38f84ccf', 'The process of managing meeting participants is overwhelming in large calls', '2024-07-25', '05c970e5b51d496f'),
('296ae3e26b144b7f', 'Trouble using the touch up my appearance feature consistently', '2024-07-29', 'ad7b6c37c0134f4f'),
('034c6f0114d84e76', 'Can''t easily customize the in-meeting chat settings', '2024-07-27', 'b48ffc7f9f614118'),
('a638ee2872214f86', 'The process of setting up and using the Zoom Phone feature is complex', '2024-07-09', 'c83d6a6d008c43d7'),
('ffececdd7b5f43db', 'Difficulty using the meeting reactions and nonverbal feedback', '2024-07-04', '9b5f63036abd447b'),
('d2044dd5611e4f9d', 'Can''t figure out how to use the end-to-end encryption feature', '2024-07-23', '9a424fda0f6a41d5'),
('b2d12f20d8da49e6', 'The process of managing meeting recordings and transcripts is not streamlined', '2024-07-18', '9ad0c1e5708c43dc'),
('084c2380f0914e07', 'Trouble using the live streaming to social media platforms', '2024-07-12', 'bf0159643b924c9d'),
('45b7fe16396443b1', 'Can''t easily customize the virtual background without affecting video quality', '2024-07-15', 'c0f55b471b704f76'),
('70e58c82056249a8', 'The process of setting up and managing breakout rooms is too time-consuming', '2024-07-18', '8a5a974138b541d2'),
('948db29710414fe5', 'Difficulty using the attention tracking feature for our training sessions', '2024-07-01', '96ec2aa6057545e7'),
('144d1844ee3d4e36', 'Can''t figure out how to use the Zoom for Home devices effectively', '2024-07-26', '81e653f8bc874599'),
('d572a2cebfc744ec', 'The process of managing meeting participants'' video layouts is not intuitive', '2024-07-20', '955688c3021c4fc5'),
('7748e54836fe475f', 'Trouble using the simultaneous screen sharing feature', '2024-07-08', '87cecc5b4055472e'),
('71497c761ea44602', 'Can''t easily customize the meeting invitation settings', '2024-07-03', '686f5d2690cd4be7'),
('cd1820a190ae487c', 'The process of setting up and using the Zoom Rooms feature is overwhelming', '2024-07-04', '8496c78e5b794904'),
('85bafd30343a42af', 'Difficulty using the meeting scheduling feature with Outlook', '2024-07-27', 'f6c3f67e5a07443b'),
('49705d5b696c4069', 'Can''t figure out how to use the advanced chat features effectively', '2024-07-04', 'ca88b888dbc74b10'),
('5b26ef697ec34d83', 'The process of managing meeting security and privacy settings is too complex', '2024-07-15', '158824b19a994e4e'),
('d0dd60ced8874eb0', 'Trouble using the virtual receptionist feature for our office', '2024-07-03', 'fea913f54afc443b'),
('885b94b974224519', 'Can''t easily customize the meeting join audio options', '2024-07-28', '7494777b2899445b'),
('d34307759a224a84', 'The process of setting up and using the Zoom Events feature is not user-friendly', '2024-07-22', '9491a542824d40cb'),
('b65c5dbfecee4623', 'Difficulty using the meeting notes feature for our team collaborations', '2024-07-29', 'b315889f7b2149d7'),
('1e679a1e45ab4957', 'Can''t figure out how to use the advanced video settings effectively', '2024-07-23', '7bf823a924b24b86'),
('e06f89a417bd48ff', 'Constant audio lag during meetings, making communication difficult', '2024-07-23', 'a092e5e3a5a241c1'),
('7845612d56294011', 'Video freezing issues persist even after multiple reinstalls', '2024-07-17', 'f5cbb14219a34e34'),
('6f7ae282e4a84cf2', 'Unable to resolve recurring echo problem in conference rooms', '2024-07-07', 'e4fbd19e0fbb4169'),
('9ebf4a54696c49a0', 'Screen sharing feature frequently crashes the application', '2024-07-07', 'e1829c2eec4d467d'),
('6102f0cc5f304ce4', 'Incompatibility with our company''s VPN causing connection drops', '2024-07-15', '884c2596fead4232'),
('6887fb8ec7a14330', 'Persistent issues with microphone detection on macOS', '2024-07-03', '188ed300f5d7400d'),
('95249c61b2f44a96', 'Zoom client keeps crashing on Windows 11 after recent update', '2024-07-05', 'd23fbe63203842e0'),
('5b6bc9e94fb04cd8', 'Unable to join meetings due to firewall conflicts', '2024-07-15', 'd76ac84db6384a24'),
('151f4100d1e14341', 'Bandwidth usage too high, causing network congestion', '2024-07-02', '74d88dcd7df34e27'),
('9785f0c480cb42bc', 'Recurring problem with camera not being detected', '2024-07-17', '7a22cf63f2154a27'),
('3574c1250f2a4672', 'Audio cutting out intermittently during long meetings', '2024-07-05', '4c0ec6fa05c449c1'),
('28b541d7801f436a', 'Can''t resolve issue with Zoom using wrong audio output device', '2024-07-21', '9abdceb306f0475c'),
('ddbb7b7679e44de9', 'Persistent ''unstable internet connection'' warnings despite fast internet', '2024-07-01', '0644fb0e97f24ff4'),
('5242ef0b08664c11', 'Unable to use virtual backgrounds due to graphics card limitations', '2024-07-23', 'fdfc28321d9a4af8'),
('2cadd8ef28444d6d', 'Zoom rooms hardware consistently failing to connect', '2024-07-06', '5e20f85d7f6f4a80'),
('62a891ac7b1446f7', 'Mobile app drains battery excessively on iOS devices', '2024-07-15', '38171a9ee9644539'),
('d6e72169402945af', 'Frequent ''Your connection is unstable'' messages disrupting meetings', '2024-07-03', 'f807184bfe934b83'),
('aa68999ee3de4916', 'Unable to resolve issue with automatic audio adjustment', '2024-07-12', 'f2e3c59bfa394eed'),
('79d624a539a5456f', 'Persistent problems with SSO integration', '2024-07-09', '2fdf20b593794f18'),
('241cecbfbb7c4679', 'Zoom client conflicts with other video conferencing software', '2024-07-16', 'd96a399914944a07'),
('0beba20e64ce4c95', 'Can''t get HD video to work consistently, despite meeting requirements', '2024-07-15', 'a58c039ce37f46ef'),
('62a6129a56294aa8', 'Recurring issues with audio sync in recorded meetings', '2024-07-23', 'a3c1ba143ab44b9a'),
('f8d1cddf6c244c82', 'Unable to resolve persistent ''Error code 5003'' when joining meetings', '2024-07-19', '3b8bd520a42240b0'),
('6e29cfd3dea84d0c', 'Zoom Rooms controller tablet frequently disconnects', '2024-07-12', '3a2316a128bb453a'),
('033bdb54194941aa', 'Consistent lag when using breakout rooms feature', '2024-07-17', 'b002678e723d4647'),
('8fa849383f044efd', 'Unable to resolve echo cancellation issues in large conference rooms', '2024-07-01', 'a1381d71c08d4921'),
('f8b1e41d73e346db', 'Persistent problems with audio device switching mid-call', '2024-07-28', '077cbe0e667f4ee4'),
('f7ea85104ff34ea3', 'Zoom client causes blue screen crashes on some Windows machines', '2024-07-03', 'ba66080fb44b4a70'),
('d6ee76cafb4b40c4', 'Can''t resolve issue with Zoom using 100% CPU on older computers', '2024-07-22', '271c809ba13f4f80'),
('19322f898c2f43ea', 'Persistent problems with Zoom Phone integration', '2024-07-06', '62a9c7b31a214ed6'),
('1cdf7c08d6ba4ae2', 'Unable to fix issue with video thumbnails not loading', '2024-07-24', 'f361a0beedcb41bf'),
('637a62f45b5b4fad', 'Recurring problem with meeting links not working for external participants', '2024-07-26', '7aa598c61f204e87'),
('0b0dc41d3c064e97', 'Zoom''s high GPU usage causing overheating on laptops', '2024-07-29', 'f58187c4ea6d4519'),
('20c2acad210e48fc', 'Persistent issues with screen recording on Linux systems', '2024-07-14', '11dabe6ae57e4304'),
('bc922090372245b1', 'Unable to resolve problems with Zoom''s network adapter', '2024-07-09', '17793a6f4b80480d'),
('a7c2955e30ff46fe', 'Recurring crashes when using multiple monitors', '2024-07-23', '3f708753266e406a'),
('3ffe92ae31ea4d41', 'Can''t fix issue with Zoom not recognizing USB headsets', '2024-07-15', '95d5925476894be8'),
('3c37eebe3bf44385', 'Persistent problems with audio quality in large meetings', '2024-07-25', 'a511c3ef7c1a497b'),
('deb679250ce848f0', 'Unable to resolve issue with Zoom client auto-updates failing', '2024-07-15', 'c8ed96ff787b4101'),
('04bc363c59ab450d', 'Recurring problem with waiting room feature not working correctly', '2024-07-29', 'c6fe71e74c324c18'),
('62805e76d1a941df', 'Zoom client consistently slow to start up on older hardware', '2024-07-27', '06d3b6d973c6420f'),
('05b62b3795e64ff2', 'Persistent issues with closed captioning accuracy', '2024-07-19', '592710dc40ae4194'),
('c5533dae755e401a', 'Unable to fix problem with Zoom using incorrect camera', '2024-07-24', 'bf5c2a2f912849d3'),
('646400053f8c46ad', 'Recurring issues with meeting recordings failing to save', '2024-07-29', '3782d9681c674264'),
('67c1052c721a45ee', 'Can''t resolve persistent ''Error 1132'' when launching Zoom', '2024-07-26', '2815eea8e05d4e9a'),
('cc4fccbb7d104531', 'Zoom client conflicts with antivirus software, causing instability', '2024-07-30', 'b6a2e78e3b72452e'),
('ce4afbbeca9243a1', 'Unable to fix issue with audio feedback in certain room setups', '2024-07-01', '24708195ce384b59'),
('c65ec3c784b348e6', 'Persistent problems with Zoom''s performance on Chromebooks', '2024-07-19', '852bd76eda794d64'),
('61dd6faedd8944f8', 'Recurring issues with breakout room assignments not saving', '2024-07-19', '0eb2151bfa1445de'),
('28dc4fffa3d641e8', 'Can''t resolve problem with Zoom failing to release system resources', '2024-07-25', 'd0bb7296fc714f3a'),
('d941ce70db1543a4', 'Unable to fix persistent issues with Zoom Phone call quality', '2024-07-12', 'cbe9b46e8cb54f65'),
('20d15a0b525848da', 'Zoom client repeatedly loses connection to company''s LDAP server', '2024-07-30', '2e5d8c253c6b4aaa'),
('26ad3b60677441e2', 'Recurring problem with Zoom not detecting secondary displays', '2024-07-29', '3dbf359735fd4541'),
('e6536abde73c4d7b', 'Persistent issues with Zoom''s bandwidth adaptation', '2024-07-04', '69eac962c444437e'),
('8861c7ad742b4326', 'Unable to resolve conflicts between Zoom and other audio drivers', '2024-07-25', '3aeabc0458394793'),
('211975eea44f4878', 'Can''t fix recurring issue with Zoom mistakenly muting participants', '2024-07-30', 'b583173e9c6b4738'),
('2dc0113e6ada4664', 'Zoom client consistently fails to connect through corporate proxy', '2024-07-10', '9cac3a0862a74989'),
('5dbefac7571e4da1', 'Persistent problems with video quality degradation over time', '2024-07-01', 'aaee7922a48f4e1a'),
('502782566a0a4083', 'Unable to resolve issue with Zoom rooms calendar integration', '2024-07-16', '068b9fa8049f4fd7'),
('37e902f740f04e51', 'Recurring crashes when using virtual backgrounds with green screen', '2024-07-30', '3abbf15597f343d1'),
('2f8e809b0ead40b7', 'Can''t fix persistent audio normalization issues', '2024-07-12', 'b31e768c482547ba'),
('bdb6471222cb4b99', 'Zoom client fails to properly handle network switches', '2024-07-09', '708756e304b04771'),
('ad0896b7af7b44bd', 'Unable to resolve persistent ''Error 1132'' when joining webinars', '2024-07-18', '7b6104ab664c4bfd'),
('0671f77debb94ede', 'Recurring issues with Zoom incorrectly adjusting microphone levels', '2024-07-28', 'a1f5167007704139'),
('92d7ad0876b249ba', 'Persistent problems with Zoom''s performance on ARM-based devices', '2024-07-26', '1a4fe317d28e4bfd'),
('dcd8a1973e774977', 'Can''t fix issue with Zoom failing to release camera after meetings', '2024-07-19', '0aec6f1f885a4e1a'),
('5f6221e4dbd447f8', 'Unable to resolve recurring problems with meeting chat feature', '2024-07-29', '76d70d68bfe04c72'),
('bb00554271fa4b3a', 'Zoom client consistently fails to sync offline meeting changes', '2024-07-01', '48495c9da7f448f0'),
('e27e7f01eb564545', 'Persistent issues with audio device priority settings', '2024-07-01', '9d36ff58bd4d4eaa'),
('f281d2f6b54e4122', 'Recurring problem with Zoom''s hardware acceleration feature', '2024-07-29', '0d5ddd5838614682'),
('b69fbcbf838e4623', 'Unable to fix issue with Zoom client freezing during screen sharing', '2024-07-30', 'd6f4d3046bf84627'),
('5c4f33192f9646d0', 'Can''t resolve persistent problems with Zoom''s noise cancellation', '2024-07-01', 'dff06e540d30484d'),
('ca14b281f0524ca1', 'Zoom client fails to properly handle multiple network adapters', '2024-07-06', 'b2ae1bf291b44b6d'),
('175367494c504f10', 'Recurring issues with Zoom rooms touch display responsiveness', '2024-07-20', '2a57df0a0a864fba'),
('4d8278cb70f048ac', 'Persistent problems with Zoom''s handling of poor network conditions', '2024-07-06', '97881592d17b4b2e'),
('7ca7260b697b48fd', 'Unable to resolve issue with Zoom using incorrect microphone', '2024-07-29', 'a7aef32e5d9a49b4'),
('f906d41b42a1491a', 'Can''t fix recurring problem with Zoom''s echo test feature', '2024-07-19', '59ff52d4a24e4b86'),
('55b125fa66d44c6c', 'Zoom client consistently fails to remember audio settings', '2024-07-11', 'a4a6ea3a2cdd49d9'),
('f0ca1417173841c3', 'Persistent issues with Zoom''s performance on virtual machines', '2024-07-08', '7af3798436494e9b'),
('feaf74643f844711', 'Unable to resolve recurring problems with Zoom''s push-to-talk feature', '2024-07-14', '39ee46bfdb0241d8'),
('5a58553d02af4389', 'Recurring crashes when using Zoom''s in-meeting file transfer', '2024-07-11', 'c2502ed77dcd4b27'),
('05761e47254e4d2f', 'Can''t fix persistent issues with Zoom''s gallery view performance', '2024-07-16', '798aa787b1c44d6a'),
('abc5894950724fe7', 'Zoom client fails to properly handle multiple audio devices', '2024-07-19', '4b0bed2795b54de0'),
('375dd47b8d61467b', 'Unable to resolve issue with Zoom rooms camera auto-framing', '2024-07-28', '3f9e4deb6cca4184'),
('1c1e17dd56754a78', 'Persistent problems with Zoom''s handling of network address translation', '2024-07-19', 'd2ff258a0326453d'),
('951a6289d96c4ed4', 'Recurring issues with Zoom''s performance on low-end mobile devices', '2024-07-17', '0386e6ee606a4b8f'),
('207a8edd06044e55', 'Can''t fix issue with Zoom failing to detect HDMI audio output', '2024-07-04', 'aa23754983d44698'),
('e2e522fad0174544', 'Unable to resolve persistent problems with Zoom''s live transcription accuracy', '2024-07-13', '4cc8c8fdb27c406c'),
('dd97e50a892747e7', 'Zoom client consistently fails to connect to certain geographic regions', '2024-07-09', '514af2ac6bef4a79'),
('0deae366bfaa4584', 'Recurring issues with Zoom''s handling of simultaneous screen shares', '2024-07-03', '1b72ab1081b9402b'),
('c9ce0f0b83004d49', 'Persistent problems with Zoom''s performance during peak usage hours', '2024-07-28', 'b067b5932a2d4f99'),
('f19fa38b68354b78', 'Unable to fix issue with Zoom client memory leaks on long meetings', '2024-07-22', '87b480ef31304394'),
('297fb67d60884b53', 'Can''t resolve recurring issues with Zoom''s background noise suppression', '2024-07-21', '9dd56ce0df754da4'),
('2213658244934799', 'Zoom client fails to properly handle dynamic IP addresses', '2024-07-22', '79ef9da0079c4283'),
('39d70f9ccde54456', 'Persistent problems with Zoom''s handling of multiple webcams', '2024-07-20', '69924eaefd604b93'),
('b3647c6c96924d74', 'Unable to resolve issue with Zoom rooms audio echo cancellation', '2024-07-07', '380001f30e684b11'),
('48c860b48625493b', 'Recurring crashes when using Zoom''s whiteboard feature', '2024-07-19', '67b575c12a3d431d'),
('16944fb839124e44', 'Can''t fix persistent issues with Zoom''s performance on satellite internet', '2024-07-21', '3c8ec4c933814e8d'),
('e80c68bdac064a50', 'Too expensive for our small business budget', '2024-07-27', '2f4213a217cc49b7'),
('69cc8a7818204111', 'Found a cheaper alternative that meets our needs', '2024-07-16', '691a854b69f2495e'),
('529d4498b9f64c5d', 'Can''t justify the cost for infrequent use', '2024-07-25', '7f28835cc3144a49'),
('f7b790dc0a974567', 'Annual billing is too much of an upfront cost', '2024-07-02', '322dc73c914e49ff'),
('14375f1a0bcf443f', 'Monthly price increased without notice', '2024-07-28', '91a30ce9b65d4af2'),
('a65b5f42d74741c3', 'Need to cut expenses due to economic downturn', '2024-07-27', 'ff6383e47b4946ff'),
('83c3d0c426ca4ec9', 'Free plan sufficient for our current needs', '2024-07-23', '9c5296f3c6584b3f'),
('11bf6d5fc76b4552', 'Price per user is too high for our growing team', '2024-07-17', '8addae289b394303'),
('c168018eab4c4f65', 'Billing errors causing overcharges', '2024-07-09', '17736f7f67e043e7'),
('a668f025da074d67', 'No educational discount available', '2024-07-25', 'af87b4fd7b0e4d0d'),
('b7f0e52244af4a97', 'Cost per minute for toll-free audio is excessive', '2024-07-07', '5e2be760834c4d93'),
('175c9efd70bc4ed7', 'Unable to customize plan to reduce costs', '2024-07-26', '7149f1d5af584cee'),
('72c839c6ce294933', 'Lack of flexible payment options', '2024-07-21', '1b8716ca57d34f6c'),
('0c738a1ff8114980', 'Price difference between tiers is too steep', '2024-07-28', '7614b253d28b46b1'),
('8e46722873ba4dee', 'No longer able to expense Zoom costs', '2024-07-20', '0a69817531164adb'),
('4007d308ffdf423f', 'Yearly contract is too long of a commitment', '2024-07-29', '14f12b687b6f423d'),
('e454f5bed01b4908', 'Hidden fees not disclosed upfront', '2024-07-25', '479f45aa1228487b'),
('5fb368831f124a40', 'Cost-benefit ratio no longer favorable', '2024-07-11', 'f70f2f47bb1b4b70'),
('df2014e6857c42df', 'Budget cuts force us to downgrade to free plan', '2024-07-06', '97fd353c206e4a81'),
('5428254f7adb49da', 'Pricing structure doesn''t align with our usage patterns', '2024-07-18', '92e9928826d94496'),
('be86b24becce427d', 'Too expensive compared to similar services', '2024-07-03', 'c7973b8bb0b84c9d'),
('e66e46ffab934ef5', 'No discount for non-profit organizations', '2024-07-20', '43b5485cdab14247'),
('2c4493e4d5c44b06', 'Can''t afford to renew at current rates', '2024-07-04', '1e24d29a8d514ec6'),
('1a5f56f1e0544bce', 'Price increase outpaces value of new features', '2024-07-17', '6b85e81f4ff24f18'),
('2318feb311b24f92', 'Forced to upgrade for a single feature we need', '2024-07-28', 'e9acba2ff5c74e56'),
('8a67b984a3b748eb', 'No loyalty discount for long-term customers', '2024-07-19', '2442bc5b1a114c82'),
('db7728e9c7ea43ee', 'Cost per user model doesn''t work for our part-time staff', '2024-07-26', 'c014ba740d9c4eb9'),
('474def6738164685', 'Unexpected charges for add-on features', '2024-07-11', 'fa84f7826f2444ad'),
('1446a82cfd964c7b', 'Pricing tiers don''t align with our org structure', '2024-07-12', 'c9040ff9cdb8444e'),
('3a181419cbd74c41', 'No option to pause subscription during slow periods', '2024-07-23', '18e39571e87945f3'),
('70776ad0085f4c55', 'Better value proposition from competitors', '2024-07-25', '1c1433095b914bfc'),
('20b3253ba3044e45', 'Unable to justify ROI to management', '2024-07-26', '44e9fc864c084b5b'),
('a03acd5f85db430d', 'Lack of transparency in pricing structure', '2024-07-20', 'a90c3e2168a943c5'),
('ab317ea4a38c4964', 'No free trial period to test advanced features', '2024-07-11', '9668ed50714645cc'),
('53525363bb4e4d89', 'Cost of additional storage is too high', '2024-07-03', 'fc8a5d8921e94209'),
('ee85be1a44ff48a4', 'Price doesn''t reflect actual usage', '2024-07-20', '4e74a84cb5ee4953'),
('7607b593a9e04fdf', 'No discounts for bulk licensing', '2024-07-10', '999592b6f96a4573'),
('6f48b71c01f4468f', 'Unable to downgrade to a cheaper plan', '2024-07-23', 'db94a776bb084cb2'),
('99e3bcfbe1eb4891', 'Webinar add-on pricing is prohibitive', '2024-07-30', '23df5eabc8884b5d'),
('b5a65b77c848491b', 'No flexibility in license allocation', '2024-07-18', '492d80aa77ee4409'),
('c026dea7ca874eca', 'Charged for unused licenses', '2024-07-24', 'c1b3887871d44934'),
('90ea7b26eb524225', 'Currency exchange rates make it too expensive', '2024-07-16', '8df65c74b62542f9'),
('98d56d607cfc4369', 'No option for pay-as-you-go model', '2024-07-07', '524de662bee74c4e'),
('bea878aa447d4031', 'Lack of customizable plan options', '2024-07-10', 'd4d105be81784df8'),
('8f1616450e494977', 'Price increased significantly at renewal', '2024-07-20', 'c61ca28f4f8e42bb'),
('a39593e0763b4ca8', 'Unable to afford Business Plus features we need', '2024-07-12', '7124ed91f63340aa'),
('8c647ba18ef2455f', 'No discount for educational institutions', '2024-07-18', 'cd29af60d59241a7'),
('3d45eddb23164f09', 'Cost of international calls is too high', '2024-07-15', '3088a2f9f21c4098'),
('8c7d239d58d54a6b', 'Pricing doesn''t scale well for our company size', '2024-07-26', '9986238e94504164'),
('bd53c1e44dc440ff', 'No option to purchase single-use credits', '2024-07-11', '4fcaa3213e2a48b8'),
('f1dbb6e34bae40b9', 'Unexpected charges for exceeding limits', '2024-07-17', '68c7c820601f4a8f'),
('4e3b8b6625e04ff6', 'Unable to justify premium features cost', '2024-07-20', '749dec6479ae47ae'),
('44518bd1cbb141ae', 'No seasonal pricing options available', '2024-07-14', '2aaab662212146cd'),
('ef523cf4fad04a82', 'Cost of large meeting add-on is too expensive', '2024-07-30', '41682a1bd89648ec'),
('69796a46586045af', 'Pricing model doesn''t fit our project-based work', '2024-07-02', '9179a887e9b74a37'),
('df15ac99b3f6491b', 'No discount for government agencies', '2024-07-03', '2d6ca0d108484625'),
('b78c39993f2f48dd', 'Unable to afford separate webinar licenses', '2024-07-24', 'c2ff47450d0d45b6'),
('9b140b51b87c4e67', 'Cost of cloud recording storage is too high', '2024-07-03', 'bd0fa81a023a4938'),
('e02e1892764c4f8b', 'No option for shared licenses across departments', '2024-07-10', 'f79b9882e6484409'),
('b6667d69aee14667', 'Price doesn''t reflect market competition', '2024-07-14', 'f79be63b3eb04918'),
('76037a8af0db402d', 'Unable to afford multi-year discount upfront', '2024-07-26', '04078c62a2c14c00'),
('bc2c00eb234c4539', 'No option to customize feature set for lower cost', '2024-07-09', '361092d9d5704b76'),
('1bca97ff4c874896', 'Charged for features we don''t use', '2024-07-07', '27a3a5a4415b4755'),
('d35912de9aab461e', 'Cost of toll-free numbers is excessive', '2024-07-19', '813fa3adb4d44002'),
('3755439fa35947c3', 'No volume discounts available', '2024-07-15', 'e542c1e587704320'),
('1dda11a8d462495b', 'Price increased without proportional feature improvements', '2024-07-16', '3f660c0ac007410b'),
('26ff48498c9f4dd4', 'Unable to justify cost for occasional large meetings', '2024-07-22', 'ffe99bb178184927'),
('6555ae3b0dc74307', 'No option to purchase additional admin seats separately', '2024-07-05', '9939bc44a23447a9'),
('8adc6fa6741f47c2', 'Cost of API access is prohibitive for our use case', '2024-07-16', '5944a3db61a34c71'),
('f702915474454482', 'Unable to afford separate room connector licenses', '2024-07-02', '2d602f567f894b60'),
('f91217c00d374872', 'No discounts for resellers or affiliates', '2024-07-13', '55d534b264b141bf'),
('e11aa8b3492147a9', 'Price doesn''t align with our budget cycle', '2024-07-28', '29e326fb4653445d'),
('8de665db82e94491', 'Cost of additional cloud storage is too high', '2024-07-01', '5e394dc386894c87'),
('9b6bfe5e1d844324', 'No option to pay in local currency', '2024-07-26', '90e33c23540c40a3'),
('26877c2166f64162', 'Unable to justify cost for advanced reporting features', '2024-07-05', '2424529ba35f4a4e'),
('933492dabfc6474b', 'Pricing structure penalizes growth', '2024-07-17', '3cc9d717d40b485f'),
('da6955b679b5415b', 'No option for usage-based billing', '2024-07-24', '1e0beebe4c0449f7'),
('d64839b6f5cd4a4e', 'Cost of compliance features is too high for our needs', '2024-07-07', '589e544ddeed4f4c'),
('055f3a82ea92459b', 'Unable to afford enterprise-grade security features', '2024-07-08', 'a5833cf5250943bc'),
('5b7e9c0d20fd4022', 'No discount for bundling with other Zoom products', '2024-07-03', 'f20691eeeafd44e6'),
('bf421ba11ebf49e2', 'Price doesn''t reflect actual meeting minutes used', '2024-07-12', 'f6fc380dac5f43e8'),
('a1189593f4a649aa', 'Unable to justify cost for single sign-on feature', '2024-07-23', '002da3ddd51046d7'),
('ac00816332634509', 'No option to purchase additional moderator controls à la carte', '2024-07-13', '3c55986bf37843ae'),
('3dcaf18f8c734e05', 'Cost of managed domains feature is too high', '2024-07-06', 'd06fdc0f24bc46d5'),
('865839e2a40347d7', 'Unable to afford dedicated customer success manager', '2024-07-27', 'a581716a312e42f0'),
('5998618883684c14', 'No option for quarterly billing', '2024-07-05', '369da2ca892140b2'),
('d543915cf4984b60', 'Price doesn''t reflect limited use of advanced features', '2024-07-02', '9630e96aa57a466a'),
('a1f2087503a54b1e', 'Unable to justify cost for branding and customization', '2024-07-28', 'c8c8542497364374'),
('244a7116622f4bca', 'No discount for early renewal', '2024-07-20', 'a05be693c00f4881'),
('ae1096ede52e4e3c', 'Cost of LTI integration for education is too high', '2024-07-24', '31871589386c40b2'),
('670f1f5df5e4443d', 'Unable to afford separate interpreter licenses', '2024-07-28', '5eb1b4ea71d84b54'),
('bd34612f6e5c4942', 'No option for metered billing based on actual usage', '2024-07-29', '7941894b6c7340a8'),
('a555b1155edb4a03', 'Price doesn''t align with our fiscal year planning', '2024-07-16', '1e30e6ad288e4344'),
('060cfe863617425c', 'Unable to justify cost for advanced chat features', '2024-07-25', 'be9097f983c946cb'),
('e1bab72d49cc4c17', 'No discount for upgrading mid-contract', '2024-07-05', '157a94da8a6344cc'),
('717ad6fa69e04a9f', 'Cost of additional cloud recording transcription is too high', '2024-07-13', '4ea23852002941ec'),
('b4a45d56ed6d4268', 'Unable to afford separate scheduler licenses', '2024-07-07', 'ef2ac8be3b8142cb'),
('e342647d3d7e42e9', 'No option for fractional user licensing', '2024-07-25', '1e3eec1b90e64a3a'),
('3d8e78efc29f41cf', 'Price doesn''t reflect our seasonal business fluctuations', '2024-07-24', '5119c46281454903'),
('5c25f7e89faf4c92', 'Unable to justify cost for advanced polling features', '2024-07-03', '5e852a7f27894ced'),
('3b142fda0e784b30', 'No discount for multi-product bundles', '2024-07-17', '8b5e30d85e8c49d2'),
('110e6b1622b04e73', 'Need more than 3 whiteboards for team brainstorming sessions', '2024-07-04', '10568fe187884288'),
('26214f205f5d4733', '30-hour meeting duration not sufficient for our extended workshops', '2024-07-12', 'b53a80506b8b4df4'),
('5d91b33b29844eb0', 'Require more than 5GB cloud recording storage for our webinar series', '2024-07-16', '7c1760cd657f4daf'),
('8203851025684048', 'Limited to 100 participants, but our all-hands meetings often exceed this', '2024-07-09', '31d15b9c3c474033'),
('676c81198eed4c7e', 'No option for breakout rooms in the Pro plan', '2024-07-06', '774a24a2f74b4869'),
('f55959ebeda54e3b', 'Lack of advanced polling features for our market research meetings', '2024-07-08', '5bd33860cec24f92'),
('3414229c6fb54d02', 'Insufficient cloud storage for our monthly recorded training sessions', '2024-07-11', 'eb78e018ff554b3f'),
('cb9636254cab4f83', 'No option for simultaneous language interpretation', '2024-07-16', '9352dc53fae149b5'),
('0ab8eba202854e12', 'Missing advanced reporting features needed for our compliance requirements', '2024-07-04', 'd273a85cdfef4947'),
('117f04b66b984aed', 'Unable to customize waiting room with our company branding', '2024-07-02', 'd3a59580b38d4af4'),
('934c073dde8148a1', 'Need more than 1 license for our growing team', '2024-07-01', 'ce645fe246ad4977'),
('63189cb653eb4efb', 'Lack of SSO integration in the Pro plan', '2024-07-24', '557992ee461b45fc'),
('5669abf40f9c44b6', 'No option for managed domains in our current plan', '2024-07-25', 'a3345c5c8dc04a23'),
('4e9ad42eaadf4b8e', 'Missing advanced chat features for our customer support team', '2024-07-24', '1472d371a611474a'),
('835d040da50747d4', 'Inability to add watermarks to our recorded sessions', '2024-07-21', 'f8b578d066db4525'),
('3ebd0ee7109e40dc', 'Limited options for meeting reactions and engagement tools', '2024-07-16', '4b0b93ed4bc24d9b'),
('15636adbf8b44614', 'No custom emails for meeting invitations and reminders', '2024-07-06', 'fcb0751cdaf9443f'),
('b91be815b77e4bd4', 'Lack of advanced audio transcription features', '2024-07-12', '4a688a95efd74b59'),
('ebd2184fde6641b2', 'Insufficient options for meeting scheduling and calendar integration', '2024-07-11', '182a68bbec5a4774'),
('d74d8b270a2b430a', 'Missing advanced webinar features for our marketing events', '2024-07-11', 'a8bbe8f4e31548ec'),
('13dd2ba6a77c4460', 'No option for live streaming to social media platforms', '2024-07-14', '9cec16fd72ce4054'),
('669e2ec1c44b4c0c', 'Limited reporting capabilities for tracking employee engagement', '2024-07-19', '736e3169532543ca'),
('0408c13691264a05', 'Inability to create and manage multiple meeting templates', '2024-07-20', 'df13ca490cc34bb8'),
('4ca82c3f48384754', 'Lack of advanced Q&A moderation tools for large meetings', '2024-07-27', 'c480c1d2667f44d4'),
('fc6d5e6e094d4e9e', 'No option for end-to-end encryption in our current plan', '2024-07-29', 'dc5bf8da900642a8'),
('42c61e5d4cff4a97', 'Missing advanced role management features for our organization', '2024-07-08', 'c9fcc34ba48f4418'),
('d18cdaeba4c84df5', 'Insufficient options for customizing meeting layouts', '2024-07-20', 'd110ce9aea8d4ca8'),
('c41bb890cf3c4931', 'Lack of advanced audio controls for our podcast recordings', '2024-07-20', '87241688d2d14a45'),
('e50bea9269334af1', 'No ability to create and manage subaccounts for our clients', '2024-07-02', '12f9a49939234550'),
('dc6a400c10b4444e', 'Limited options for integrating with our project management tools', '2024-07-13', '41f1cd304d4b4f99'),
('c48ab781a51144a5', 'Missing advanced meeting analytics for our sales team', '2024-07-06', 'c46a52dd21a94eaf'),
('3e6e563098534c6f', 'Inability to set up recurring breakout rooms for team meetings', '2024-07-14', '797aade0da914eab'),
('826fc67758b04b81', 'Lack of advanced file sharing options during meetings', '2024-07-15', '0c233d5f20d14756'),
('f35b4b9d42224712', 'No option for creating and managing team chat channels', '2024-07-08', '5a31a634074c4e0e'),
('a58a92f830e44b4e', 'Insufficient control over participant video settings', '2024-07-08', '79504ed778c5465e'),
('9bef3545d1cb4349', 'Missing advanced closed captioning features for accessibility', '2024-07-16', '0a3a62351dab4d3f'),
('da6f937eca6d47bc', 'Limited options for customizing meeting invitations', '2024-07-04', 'dcceec9db8d34240'),
('1527d701d78a4954', 'Lack of advanced meeting scheduling options for our global team', '2024-07-29', '190678d1c9744bdc'),
('418f81d1ffc74429', 'No ability to create and manage multiple waiting rooms', '2024-07-27', 'b76a5c6603ee45e7'),
('d0c4b4d9f1ac43fc', 'Insufficient options for managing large contact lists', '2024-07-23', '610210d202274114'),
('c128dc0b247d4328', 'Missing advanced audio processing features for noisy environments', '2024-07-17', 'a1de39460eda4fe9'),
('d2616f0e8e7743d4', 'Limited control over meeting join permissions', '2024-07-25', 'cb764b71addb4a64'),
('eb46d76acfc54f63', 'Lack of advanced screen sharing options for complex presentations', '2024-07-13', 'f335db79793a41ed'),
('b79de40b142a410c', 'No option for creating and managing team wikis', '2024-07-13', '592234e8ce6b439b'),
('e6bcf9585016475c', 'Insufficient features for managing remote team building activities', '2024-07-17', '6f0a4a3287f74ba0'),
('99c2f26962ea4a5e', 'Missing advanced meeting templates for different types of sessions', '2024-07-26', 'bbb487f02c7f4bfc'),
('dadeb84bcd904832', 'Limited options for customizing virtual backgrounds', '2024-07-26', 'bb10b56eeab145ea'),
('5b789c5317324c07', 'Lack of advanced meeting notes and action item tracking', '2024-07-27', '93e56cf6ba1b4f9f'),
('b85dd61c331f4d55', 'No ability to create and manage team surveys', '2024-07-08', '51aa5379fa6c4d4f'),
('2ccbead4bed74dd4', 'Insufficient options for managing meeting roles and permissions', '2024-07-08', 'c07b3c587b6d4826'),
('fbe5624276c84aa1', 'Missing advanced meeting archiving features for compliance', '2024-07-20', '02b01ad2484042d2'),
('135aa64f05ce4363', 'Limited options for integrating with our CRM system', '2024-07-12', '3d44c286f98f4f4b'),
('b5f0cbbe78794c7b', 'Lack of advanced meeting reminder and follow-up features', '2024-07-28', '21d413c721184008'),
('5247598c2d824bea', 'No option for creating and managing team knowledge bases', '2024-07-14', 'c4816892e4d94b34'),
('6365178ac7264ab9', 'Insufficient features for managing large-scale virtual events', '2024-07-04', '29ee1dd83be2487e'),
('a75a2936a3314b01', 'Missing advanced meeting engagement scoring', '2024-07-27', '656325da3cd74888'),
('b9dc5d64c0cb4e8f', 'Limited options for customizing meeting controls for different user groups', '2024-07-29', '232e5a1f67a043c4'),
('01acb39efe8e49d7', 'Lack of advanced meeting analytics for measuring team productivity', '2024-07-22', 'eb37902257434e95'),
('da638f84306f4278', 'No ability to create and manage custom meeting apps', '2024-07-14', 'aa3573092c9b4025'),
('029448529c1a4278', 'Insufficient options for managing meeting security settings', '2024-07-28', 'abb9291c88784bae'),
('b4e74676561741f5', 'Missing advanced features for hybrid in-person and virtual meetings', '2024-07-05', '511319a38fe74014'),
('e1746b939ec84c0e', 'Limited options for integrating with our learning management system', '2024-07-09', '571e0985736c4608'),
('b3643e53218d4aa0', 'Lack of advanced meeting feedback and rating system', '2024-07-23', 'cce641272994403b'),
('1ae80c252a864f77', 'No option for creating and managing team goals within the platform', '2024-07-14', 'd8987b634cf0489f'),
('58f6a58a68154792', 'Insufficient features for managing multi-day virtual conferences', '2024-07-01', 'af2398f85bfc480e'),
('4616df56c4f643a8', 'Missing advanced options for customizing meeting UI', '2024-07-19', '1c4afdffc5854510'),
('337bcfc3452f43f6', 'Limited control over data residency and storage locations', '2024-07-14', 'cba694e193a1497d'),
('8d6424fbca6e43c4', 'Lack of advanced meeting translation features for our global team', '2024-07-05', '5d8f7b2292e342bd'),
('1751b58270384078', 'No ability to create and manage custom meeting roles', '2024-07-08', '7504fd43c57547e8'),
('a3c9531ef8654dda', 'Insufficient options for managing meeting bandwidth usage', '2024-07-12', '83aa547e5bfb4436'),
('49a4cffd63144bd5', 'Missing advanced features for virtual team building activities', '2024-07-25', 'f7474791990b45fe'),
('51215927f4a74c32', 'Limited options for integrating with our HR management system', '2024-07-10', 'd11089a63a084f26'),
('9f12371dcff94760', 'Lack of advanced meeting attendance tracking and reporting', '2024-07-16', '2861a15f87ed42b9'),
('a496da00abd74946', 'No option for creating and managing team resource libraries', '2024-07-04', '154fa830484f482a'),
('de2d3a0b2d224234', 'Insufficient features for managing large-scale training programs', '2024-07-07', 'bfbe407a6b6843ee'),
('e5c06a518e684bdc', 'Missing advanced options for customizing meeting notifications', '2024-07-04', '9335f70126614bf5'),
('f8ae04e98deb4876', 'Limited control over meeting recording access and sharing', '2024-07-09', '671e093fb29a403f'),
('80e583f28fe543b1', 'Lack of advanced features for managing virtual office hours', '2024-07-17', '3a473aa5a9194ff1'),
('287bf650b7c54cd5', 'No ability to create and manage custom meeting workflows', '2024-07-23', '3fd976e367a64f2d'),
('311353fe65854839', 'Insufficient options for managing meeting compliance requirements', '2024-07-05', 'd0db1451c44e4584'),
('0a75b5ccdf5f4789', 'Missing advanced features for virtual trade show management', '2024-07-09', '7240fedc7e2f4d34'),
('b3b9d5a29017408d', 'Limited options for integrating with our document management system', '2024-07-10', '0f7eee987d744399'),
('c2621349e5cc496d', 'Lack of advanced meeting sentiment analysis features', '2024-07-01', '1b7fe384160244bb'),
('ea9a0d08190a4877', 'No option for creating and managing team mentorship programs', '2024-07-04', 'f2dcef0f111e4869'),
('06616b60708c4516', 'Insufficient features for managing large-scale customer webinars', '2024-07-18', '1b1879a733c047ec'),
('524d7952db804b35', 'Missing advanced options for customizing meeting chat features', '2024-07-21', '5afa3e57aaab4b4a'),
('8e9ac2da5c29478a', 'Limited control over meeting participant data collection', '2024-07-08', '9c5babd2f5e94dc4'),
('fac2efc0864d46db', 'Lack of advanced features for managing virtual team retreats', '2024-07-09', '4aeb46ed77ac40fb'),
('8ae80b0c7f154862', 'No ability to create and manage custom meeting polls', '2024-07-30', '1889994912794f05'),
('6c4747cedb584dd0', 'Insufficient options for managing meeting room hardware integration', '2024-07-26', 'fe041d05a7cc4260'),
('fb51f1a4e3b44f88', 'Missing advanced features for virtual classroom management', '2024-07-23', 'ebb23f3fee624f34'),
('17e42f3517074309', 'Limited options for integrating with our billing and invoicing system', '2024-07-13', '8598078c8db1425d'),
('39f462012e944da4', 'Lack of advanced meeting gamification features', '2024-07-29', '3e58b82ea8b34eb0'),
('975c6920cdc54c47', 'No option for creating and managing team onboarding programs', '2024-07-08', '477da8c9d32048fc'),
('7d910c3889ef4a75', 'Insufficient features for managing large-scale virtual job fairs', '2024-07-24', 'af0a7d52e92043f0'),
('f0f589294c74467a', 'Missing advanced options for customizing meeting registration process', '2024-07-11', 'd0cdf55fdbfd4327'),
('87c4507d840949e5', 'Limited control over meeting recording transcription and editing', '2024-07-16', '088e0bf821674929'),
('256eecf95445487e', 'Lack of advanced features for managing virtual customer support queues', '2024-07-01', 'f39f685a3c3147ff'),
('55c131fd02d64006', 'No ability to create and manage custom meeting breakout activities', '2024-07-03', 'f7ccfc3c99204131'),
('054ceaca3cfb4883', 'Insufficient options for managing meeting accessibility features', '2024-07-16', '21a085bbaeda4a22'),
('a9b7b9f420c1401c', 'Missing advanced features for virtual event sponsorship management', '2024-07-18', '08d3cdb3203749f2'),
('ee22ae5e4c624a95', 'Frustrated with long wait times for customer support"', '2024-07-24', 'd7c3d4a285cf4e62'),
('94e52a673d61473a', 'Unable to get timely resolution for billing issues', '2024-07-15', 'dcd1788c29f643a1'),
('79455425c0f04136', 'Customer service reps lack technical knowledge to solve our problems', '2024-07-12', 'd1248a244c3f428e'),
('7e3d6c9c8b5841a2', 'No dedicated account manager for our enterprise needs', '2024-07-28', '77b98f41d6df4822'),
('789932ad3b704a4c', 'Difficulty reaching support during non-business hours', '2024-07-09', '820ae3aa28124603'),
('5b46f766083e43cc', 'Language barrier with offshore support team', '2024-07-04', 'e11c64c6fcb54a18'),
('93cbaafa02ff4960', 'Inconsistent information from different support agents', '2024-07-12', 'a6c3f14c5ec14a45'),
('e5909d44a5c24cd1', 'Lack of phone support for urgent issues', '2024-07-10', '1cd2e21da88b41e0'),
('87a93088ff1c4521', 'Unresolved ticket for weeks, impacting our operations', '2024-07-25', '4f78c0d844554c5f'),
('917167af803246ac', 'Poor follow-up on reported bugs', '2024-07-21', 'ea55e100cbf9491e'),
('b7f7188593794579', 'No priority support for our high-tier subscription', '2024-07-29', 'e1bab256b0d044f2'),
('e3321399cd2f4a5d', 'Chat support is slow and ineffective', '2024-07-03', '29c15e711756448b'),
('71727b3cd5ca4df6', 'Unable to escalate issues to higher-level technicians', '2024-07-14', 'dac606b58d7648bd'),
('6b34593f431b47ba', 'Support team unable to assist with API integration problems', '2024-07-17', '027d4b9bd8f7468c'),
('6b71504cd2cd4794', 'Lack of proactive communication on known issues', '2024-07-29', '1ea5d70048c3412e'),
('ff0269014ed64f8a', 'No weekend support available for our global team', '2024-07-25', '1602b6daa75c4985'),
('bdc611a3c1374bfb', 'Unhelpful canned responses to support inquiries', '2024-07-20', '367e414fc54d4604'),
('fd6df73870594acb', 'Support team unfamiliar with our industry-specific needs', '2024-07-25', 'bc62ce1f174349ec'),
('9e216737f0974cd7', 'Long email response times for critical issues', '2024-07-15', '7f4c2f8a939c45a6'),
('4663bfdaa87a4bfa', 'Unable to get clear answers on compliance questions', '2024-07-23', '4d68a636aea64fa6'),
('55f4860c63e84bd0', 'Lack of video tutorials for troubleshooting common problems', '2024-07-20', '68222e92eec146c6'),
('854e887ba10d4705', 'No dedicated support channel for admins', '2024-07-19', '4c21d5ae118343cc'),
('dde2bcae966e4c2e', 'Poor handling of data migration support', '2024-07-10', 'e55884fcc9e3444a'),
('15cf2b3c4ed24d00', 'Difficulty getting refunds for service outages', '2024-07-07', '593020caf48841af'),
('5740e1b3616f4439', 'Inadequate support for custom integration issues', '2024-07-07', 'f2c28da4aebf4c3e'),
('b95e4daa5d3e4fa9', 'Support team unable to replicate or understand our specific setup', '2024-07-30', 'c9671c535d3e41bd'),
('c6c8fed613a24d95', 'Lack of in-person support options for complex deployments', '2024-07-11', '233c3bfb54994ad0'),
('2e91ced056af4d19', 'No 24/7 support for our international team', '2024-07-24', 'ddbb8c7a260d4e3d'),
('c537aa004572414a', 'Unable to get help with advanced security configurations', '2024-07-16', 'b4f715b50e1c4996'),
('d823bfb144a54b2d', 'Support team slow to escalate critical issues', '2024-07-05', 'd3c11cc01763483a'),
('5d74613510164e0c', 'Lack of expertise in supporting our specific use case', '2024-07-09', 'af1119e5d06f4bd6'),
('c69def4195214907', 'No clear path for feature requests or product feedback', '2024-07-24', '96564a72078c4298'),
('ce2d8b1b111d4c50', 'Support unable to assist with SSO implementation', '2024-07-21', '1814cea7b23a41c2'),
('9f7f18b2c1da44f9', 'Difficulty getting support for third-party app integrations', '2024-07-19', 'fa762ded844c472b'),
('14a044a0e61a42ff', 'Lack of transparency in issue resolution process', '2024-07-17', 'f14c0fa8002e4bfb'),
('196f5dd980ef465d', 'Unable to get consistent answers on data retention policies', '2024-07-23', '93584b0ad0be4c03'),
('d223ceb7cd224222', 'No support for custom branding issues', '2024-07-24', '826d8659f5dc4984'),
('5517156321024c5c', 'Lack of onboarding support for new team members', '2024-07-13', 'bd3d65bff738445a'),
('ae8c70fe38bb4ed2', 'Support team unable to help with advanced analytics questions', '2024-07-22', '8d59414a91bb4848'),
('4ffe60cc4db24a6f', 'Difficulty getting help with large-scale deployment', '2024-07-25', 'cbd30299e95a4316'),
('af645eb0f2e846a6', 'No support for configuring advanced audio settings', '2024-07-26', 'c7a5bdf14ac74d8c'),
('74640afa5d0b4f1b', 'Unable to get assistance with complex webinar setup', '2024-07-30', '7c12971f86544786'),
('f253c7e8e977423f', 'Lack of support for customizing security settings', '2024-07-14', 'dc679c8267564adf'),
('8c29edcfe3ef4551', 'Poor guidance on optimizing network performance', '2024-07-07', '5174587a9287407d'),
('7169add80b294bf6', 'Support team unable to help with API rate limiting issues', '2024-07-17', '3e43716222944633'),
('6ed4e82a5fcf4494', 'Difficulty getting assistance with role-based access control', '2024-07-20', '9e4bad75376447bd'),
('3a122c195055464b', 'No support for resolving meeting recording access problems', '2024-07-07', 'd65674f46d3e455c'),
('c9efbe07d13341a0', 'Lack of help with setting up breakout rooms for large events', '2024-07-11', 'b9d62019eebf447d'),
('a8c3a8d101154fec', 'Unable to get support for configuring advanced polling features', '2024-07-22', 'c0b2f86d00ec4d67'),
('2eeaca872cad461c', 'Support team unhelpful in troubleshooting recurring audio echo issues', '2024-07-10', 'ceb64496e35d4c7f'),
('2a5101bfb4fc4ec6', 'Concerned about recent news of Zoom bombing incidents"', '2024-07-29', '6689f4ce8a874fd5'),
('450a47ea155a4ddc', 'Not comfortable with Zoom''s data sharing practices', '2024-07-28', '84b8fb22403b45e4'),
('c1fa9830d9114830', 'Worried about potential vulnerabilities in end-to-end encryption', '2024-07-25', '51cbf17f6bb54da7'),
('f06ae7a0aff3415b', 'Company policy change requires a more secure platform', '2024-07-29', 'fb142bb1308a4ae6'),
('1b147776530c4140', 'Lack of granular controls for meeting security settings', '2024-07-18', '67f84f10cc5e4e07'),
('606f792346834986', 'Uncomfortable with Zoom''s privacy policy updates', '2024-07-23', '1159de4d25954212'),
('8e4da0f1d2844296', 'Security team found potential risks in Zoom''s infrastructure', '2024-07-30', 'cc6a9623973644f2'),
('1036880fc22242f7', 'Concerns about data storage locations and compliance', '2024-07-14', 'd561bda1ea014d94'),
('1db636b25a154aa6', 'Insufficient options for user authentication', '2024-07-23', '80caaf57aa404742'),
('4ac5400de0d64154', 'Worried about unauthorized access to recorded meetings', '2024-07-04', '6bd0d2ec49414082'),
('1de3fa98f8bb4888', 'Need better audit logs for security compliance', '2024-07-05', 'f4e753fbfb9e4ff1'),
('ec8c79bc81ca43c8', 'Lack of HIPAA compliance features in our plan', '2024-07-01', '44f85cd41a5c4bb8'),
('465255e5c3124c00', 'Concerns about potential data breaches', '2024-07-07', '2df33fe1966a41f6'),
('c8dfe017fabe4681', 'Insufficient control over participant data', '2024-07-29', '099d6bb5a1884c6c'),
('9fbf3d0011c841b9', 'Security team recommends switching to a different platform', '2024-07-08', '01cdc9211f74404e'),
('b90b8fe071e74000', 'Worried about potential backdoors in the software', '2024-07-15', '0d9931ae61904cee'),
('c812a7124dd44c9a', 'Need more robust encryption for sensitive meetings', '2024-07-26', '638445ae7e364356'),
('6546726592e342c5', 'Concerns about Zoom''s data retention policies', '2024-07-08', '0b1a59ab92424aa9'),
('1b93adb96b9b4832', 'Lack of multi-factor authentication options', '2024-07-21', '8a48a667b6a84769'),
('c568e9b9e3ab47ee', 'Worried about potential eavesdropping on calls', '2024-07-03', '3d3f6fe55e0e4ef1'),
('34cfefb6536c46b1', 'Insufficient control over screen sharing permissions', '2024-07-03', 'f1722b1a2bea4b6f'),
('4adfc557e1634c37', 'Security concerns with file sharing feature', '2024-07-19', '73c1497057484414'),
('1fd097e95b1241c7', 'Need better integration with our company''s VPN', '2024-07-24', 'fd75c85d5cc04c2a'),
('ac174e84e3be4adf', 'Concerns about Zoom''s compliance with GDPR', '2024-07-24', '7c45f017c9d04357'),
('9119854f08164a34', 'Lack of detailed security whitepapers and documentation', '2024-07-26', 'c00d4e3a8b5c4cc3'),
('1431733cc68c432b', 'Worried about potential insider threats at Zoom', '2024-07-11', 'b9ce5586e1194b54'),
('9766f4f057324310', 'Insufficient options for meeting password complexity', '2024-07-19', 'be1836c013154d19'),
('5b57b9120d914883', 'Concerns about Zoom''s handling of user metadata', '2024-07-06', 'b32cc0136b3e4ea8'),
('a39a4428038f47df', 'Need better controls for preventing unauthorized recording', '2024-07-14', '94b282904f734a2b'),
('1a76c4101dbe4636', 'Worried about potential vulnerabilities in Zoom client', '2024-07-30', '8426a2a4b6944c87'),
('87a08b3309ea4453', 'Lack of end-to-end encryption for all meeting types', '2024-07-12', '2cab476455fd4709'),
('d9bd1ba1f45149e4', 'Concerns about Zoom''s data centers and their security', '2024-07-25', 'bf0209ac119d443e'),
('183dbe8ee94d42c4', 'Insufficient options for secure chat and file transfer', '2024-07-12', 'f3f044fa043b4012'),
('4ab7a50c74354e6e', 'Worried about potential man-in-the-middle attacks', '2024-07-13', '6a5b12e714304a76'),
('d64558e490ca4534', 'Need better security features for breakout rooms', '2024-07-17', '44892509e5214721'),
('df3f1e0b043c4f5d', 'Concerns about Zoom''s incident response capabilities', '2024-07-15', '1039e89d0d4c4857'),
('bb95e86d8d324270', 'Lack of customizable security policies for our organization', '2024-07-13', '6123839744004080'),
('e5d2fd31e4fd4465', 'Worried about potential leaks of meeting attendance data', '2024-07-20', '7a2c3cb741de44fa'),
('f26e711011e8470b', 'Insufficient control over participant camera access', '2024-07-18', '4833103eac2b4f18'),
('1cba4941716d4af2', 'Concerns about Zoom''s third-party integrations and their security', '2024-07-05', 'e850f74678284e71'),
('452b2504853a445f', 'Need better options for secure guest access', '2024-07-10', '067645e662774b77'),
('002364f9425c4916', 'Worried about potential vulnerabilities in Zoom Phone', '2024-07-20', '2e09543071044ccc'),
('a7302a3afe0849aa', 'Lack of detailed security certifications', '2024-07-19', 'b65cb15bc67348a3'),
('47c864cddeb8477b', 'Concerns about Zoom''s handling of international data transfers', '2024-07-03', 'b63d53919703416c'),
('9aa5133993a341d4', 'Insufficient options for meeting host security controls', '2024-07-29', 'f6f4a00a21fc4ade'),
('cef89b3e2c114c55', 'Worried about potential security risks in Zoom Rooms', '2024-07-24', '8248bd6d8a9d49c4'),
('117ad78b6ed94286', 'Need better security features for webinars', '2024-07-19', '194b83cb4e004b98'),
('bc2a88586c754222', 'Concerns about Zoom''s approach to zero-day vulnerabilities', '2024-07-11', '0ae1661415d84ccc'),
('99e079a3d1874d3d', 'Lack of advanced DLP (Data Loss Prevention) features', '2024-07-11', 'f49e46528c1e46b2'),
('40a085e8d00848dc', 'Worried about potential security risks with Zoom marketplace apps', '2024-07-13', '83b4843a0e09483f'),
('3b2c0a87942244c4', 'Switching to Microsoft Teams as our company is moving to Office 365 suite', '2024-07-10', '8c8e5527214a49bf'),
('7a735d432fb84102', 'Google Meet is now included in our Google Workspace subscription, so we''re consolidating', '2024-07-06', 'fb540ec0398d4693'),
('3662807043414edc', 'Found Cisco Webex offers better integration with our existing systems', '2024-07-29', 'e1ba5854de3c46df'),
('7876513b39f04960', 'Moving to Slack for both chat and video calls to streamline our communication', '2024-07-05', 'd77569f8c7ea430f'),
('e491237f1f964ed7', 'Our clients prefer GoToMeeting, so we''re switching for better compatibility', '2024-07-10', '39ea678a6eec4782'),
('9fce8f6ef8114f54', 'Skype for Business is more cost-effective for our small team', '2024-07-22', 'c4004385b98e4f16'),
('a0193d44073943ee', 'BlueJeans offers better video quality for our large-scale webinars', '2024-07-30', 'fe4ceeded50b46c9'),
('d53ce3ae1b214494', 'Transitioning to Discord for our gaming community''s video needs', '2024-07-08', '9c94fd3b51b9411e'),
('1c378f8ae371489e', 'Microsoft Teams provides better file sharing and collaboration features for our projects', '2024-07-06', '548b72d8d57846c5'),
('69a254082e254a13', 'Google Meet''s unlimited meeting time for free users better suits our needs', '2024-07-21', 'e1f477991a624fc4'),
('e193d0c0d1c14196', 'Webex''s advanced breakout room features are more suitable for our training sessions', '2024-07-26', '6b1c5eafb42341f3'),
('f0c84238bee840d1', 'Switching to Jitsi Meet for its open-source nature and customization options', '2024-07-16', 'd60678f257e543c9'),
('05f8da5da7fc4ebb', 'RingCentral''s all-in-one communication solution is more comprehensive for our needs', '2024-07-13', 'c4eb601e8ec64d64'),
('fa3c1e7981724ee8', 'Moving to GoToWebinar for its superior webinar hosting capabilities', '2024-07-04', 'b61c13febc414b79'),
('58b7cd0b3c9f45ad', 'Slack''s Huddles feature is more convenient for quick team check-ins', '2024-07-21', 'c87a475438ed45df'),
('f400acf9f1644dbe', 'Transitioning to Whereby for its simpler, no-download interface', '2024-07-13', '04272c4c40c94173'),
('536539f5fa3c4471', 'Our university is standardizing on BigBlueButton for online classes', '2024-07-20', '1954e5acb7004741'),
('13b94c28ede04d77', 'Switching to Lifesize for its hardware integration in our conference rooms', '2024-07-26', 'b2eb8f8fe5d34653'),
('5e2dea1752ef47b5', 'Found Zoho Meeting more cost-effective for our small business', '2024-07-08', '53c9c9b5411c4b41'),
('a7e3dcc5e71e4ae7', 'Moving to join.me for its simplicity and ease of use', '2024-07-24', 'b1f6803a4ac3490e'),
('e1bfb1fbcf4a40ff', 'Transitioning to Intermedia AnyMeeting as part of our unified communications package', '2024-07-03', 'e1343fa355634c23'),
('afdfdb9e626b4a68', 'Switching to Livestorm for better webinar analytics and engagement features', '2024-07-04', '167ecfd5ecb34f23'),
('b95f1f3cf3674894', 'Our non-profit is moving to Jitsi Meet to save on costs', '2024-07-17', '9604c4bbdb1c450d'),
('124864b819f14ddc', 'Transitioning to Fuze for its contact center integration', '2024-07-06', 'bb7e43de3cf645ea'),
('c949b9888559478d', 'Google Meet''s integration with Google Calendar works better for our scheduling needs', '2024-07-22', '501ca6f649cc43ba'),
('fdc8a1a684684885', 'Moving to Vonage Video API to build custom video solutions for our clients', '2024-07-16', '9c02544318a44e33'),
('812e3861b19745c7', 'Switching to BlueJeans for its superior Dolby Voice audio quality', '2024-07-16', '26173802a079443e'),
('ab1cc06c11ba405c', 'Transitioning to Dialpad UberConference for its AI-powered features', '2024-07-18', '55f5ad90a2b64dd2'),
('d22e2a8caaf54c7e', 'Found Highfive''s all-in-one hardware and software solution more suitable for our office', '2024-07-01', '15d1291dcf3f463e'),
('1f555c7365f54956', 'Moving to Pexip for its interoperability with other video conferencing systems', '2024-07-07', '6fab7a7c6628457d'),
('ad95f2d6a4a0468f', 'Switching to Chime as we''re heavily invested in other AWS services', '2024-07-12', '47e524dd45b14e8f'),
('2b014dcd0f244196', 'Transitioning to StarLeaf for its focus on security in regulated industries', '2024-07-16', '4f867d3718d846ae'),
('e1b1abf344764d76', 'Found Whereby''s no-download, browser-based solution more convenient for client meetings', '2024-07-16', '8a9855bb30d84b88'),
('7e2f4779903c4b9c', 'Moving to GoToMeeting for its better mobile app experience', '2024-07-30', '5158e4f53182470c'),
('5043dbee3fcd459a', 'Switching to Webex for its real-time translation features', '2024-07-02', '5b1387b0093c4949'),
('8a45f05fcf204e2a', 'Transitioning to BlueJeans Gateway for better Microsoft Teams and Zoom interoperability', '2024-07-28', '5d7c8d32e06c430e'),
('577671ff904f4dc0', 'Found Lifesize''s 4K video quality superior for our design review meetings', '2024-07-03', '86efc8252d9249d0'),
('064b3f76178b461e', 'Moving to Skype for its wider global reach and familiarity', '2024-07-10', 'ca7b30d98ad74731'),
('3e993a5212644a42', 'Switching to Google Meet for better integration with our Google Workspace environment', '2024-07-07', '75b1aae8ec094c18'),
('2bf743440aeb45b1', 'Transitioning to Jitsi for its self-hosting option to maintain data control', '2024-07-02', '2e0091e0b3ab4685'),
('897dd23a3bec402a', 'Found RingCentral Meetings offers better phone system integration for our sales team', '2024-07-22', '6c5966c098684281'),
('14f61ac030944b0e', 'Moving to Zoho Meeting as part of our overall Zoho suite adoption', '2024-07-20', '5ff02cb2523346a6'),
('c9b5ffe1f476429d', 'Switching to Cisco Webex for its advanced virtual background and noise cancellation', '2024-07-01', '9d45503d7766429f'),
('297ce56e000c470f', 'Transitioning to Microsoft Teams for better integration with our SharePoint sites', '2024-07-01', '0d27d8e7b2ec4a08'),
('6b716d62c3054fff', 'Found LogMeIn GoToMeeting''s simplified UI more user-friendly for our less tech-savvy clients', '2024-07-17', '02cad056458a4817'),
('a9a86844046140a4', 'Moving to Slack calls for quick internal communications', '2024-07-25', '966eb4229218467b'),
('fbbe97f415f4408a', 'Switching to Google Meet for its live streaming capabilities to YouTube', '2024-07-12', 'd3fdc98a36044efe'),
('b5ee39f214674209', 'Transitioning to BlueJeans Events for large-scale virtual events and town halls', '2024-07-29', 'd1dca4bfb45344bd'),
('dd044e3700a84b1e', 'Found Whereby''s custom branding options better for our client-facing meetings', '2024-07-18', 'e0a067e9eb3e4559'),
('6d38975077884514', 'Moving to Skype for Business Online as part of our Office 365 subscription', '2024-07-09', '6ce547aaa0ea4467'),
('662c11e7a3ea468e', 'Switching to join.me for its faster meeting join process', '2024-07-09', 'e409788f4aa64245'),
('da7ce75de7644dd7', 'Transitioning to Intermedia AnyMeeting for its integrated file sharing capabilities', '2024-07-05', 'a150a0d06a9f45ef'),
('6b7e751db50a4e9f', 'Found Lifesize''s room system compatibility better suited for our hybrid work model', '2024-07-25', 'c94c4925d6884a5f'),
('5042869e258f42b9', 'Moving to StarLeaf for its ISO/IEC 27001 certification for our compliance needs', '2024-07-20', '73ef4ea1b2ca4366'),
('f5708013991640bf', 'Switching to Vonage Video API to embed video calls directly into our web application', '2024-07-07', 'a473796e8f73426f'),
('63e6140438a8448f', 'Transitioning to Dialpad UberConference for its real-time sentiment analysis', '2024-07-01', '446f501303f94c25'),
('12e859d165ae482a', 'Found Highfive''s meeting room solutions more cost-effective for our office setup', '2024-07-22', '8a5800ed0e3245b1'),
('656230f61ca846fe', 'Moving to Pexip for its customizable video layouts and branding options', '2024-07-24', 'e1ba1324818e4b86'),
('8cf27032a9894d89', 'Switching to Amazon Chime for its pay-per-use pricing model', '2024-07-01', '5d51b80f39604026'),
('60aa31e948ce4cc4', 'Transitioning to BlueJeans for its Dolby Voice audio and background noise cancellation', '2024-07-21', '9332925266d347b4'),
('18c83045f1144af3', 'Found Google Meet''s integration with Google Classroom essential for our educational institution', '2024-07-04', '5480a3bd43c84924'),
('c891657b9def485c', 'Moving to Webex for its gesture recognition features and meeting reactions', '2024-07-08', '8abfe5a8054e4574'),
('f48dabca76c64257', 'Switching to Microsoft Teams for its collaborative whiteboarding capabilities', '2024-07-04', '541096052acb4ae7'),
('b5b80784bd9d400e', 'Transitioning to Slack for a more integrated chat and video experience', '2024-07-09', 'c8c36d63d8fb4512'),
('cd9ec8e0a8134e09', 'Found GoToMeeting''s mobile app more reliable for on-the-go meetings', '2024-07-16', 'd9136ef1d9b3443e'),
('1a04d32394b4453b', 'Moving to Jitsi Meet for its open-source nature and community support', '2024-07-08', 'caaf0734507b43a4'),
('1bab6dfe4b88493c', 'Switching to RingCentral for its unified communications approach', '2024-07-05', '427c3a02ea2a4bef'),
('882b04d6e6784998', 'Transitioning to Zoho Meeting for better integration with our CRM', '2024-07-18', '8eea97eaceb34dd0'),
('9e6a37340cd04815', 'Found Cisco Webex''s cognitive collaboration features more advanced', '2024-07-07', 'e7fd39d3b84944e5'),
('9f77d53412e54140', 'Moving to Google Meet for its AI-powered noise cancellation', '2024-07-25', '1fadaa4886504d40'),
('0b59ca4ba6134142', 'Switching to BlueJeans for its integration with our Facebook Workplace', '2024-07-02', '290769d81ff14658'),
('cc73210a149a4b23', 'Transitioning to LogMeIn GoToMeeting for its simplified webinar tools', '2024-07-08', '845e7b8de4c24f42'),
('aa79adc052ce4bf1', 'Found Microsoft Teams'' breakout rooms more intuitive for our training sessions', '2024-07-13', '6458488244f34f37'),
('1ac8051560474f45', 'Moving to Skype for its broad international coverage and call-in options', '2024-07-17', '0016a03ffe3648dc'),
('4ee401f6684f42a5', 'Switching to Whereby for its HIPAA compliance in healthcare communications', '2024-07-25', '4d62d1d867e84474'),
('50c059baf3044946', 'Transitioning to Livestorm for its automated webinar features', '2024-07-26', '3aaa969d3f43464b'),
('0f3a4710fa0841ab', 'Found join.me''s visual interface more engaging for creative brainstorming sessions', '2024-07-25', 'fb2f58d3ddb34a85'),
('2d6a70b2e8e34aa4', 'Moving to StarLeaf for its focus on security in financial services', '2024-07-07', '96f8ece109fe472a'),
('f6336ca6f4cd43d3', 'Switching to Intermedia AnyMeeting for its integrated task management', '2024-07-04', '80cdc9dc0238484d'),
('41fda37b28e049d8', 'Transitioning to Lifesize for its 4K screen sharing capabilities', '2024-07-07', 'a788c9cb622d4604'),
('c58085fcb6064d0a', 'Found Highfive''s all-in-one hardware solution more suitable for our conference rooms', '2024-07-12', 'f49e6ac42a6a42c5'),
('e75a9c38b1e64789', 'Moving to Pexip for its ability to handle large-scale video events', '2024-07-30', 'dce154cf08054d35'),
('906356ea90cc4ac6', 'Switching to Amazon Chime for its integration with AWS services', '2024-07-09', '80714ca8f00d4568'),
('24b019f7aa004c74', 'Transitioning to Vonage Video API for custom development of our telehealth platform', '2024-07-02', '0084c257e2244242'),
('c6a5e9dca3c2444a', 'Found Dialpad UberConference''s voice intelligence features more useful for our sales calls', '2024-07-24', '5656850c21614ee0'),
('73773b7712d5422f', 'Moving to BlueJeans for its integration with our Slack workspace', '2024-07-26', 'b96efbdb15ca45a7'),
('8c4d7c8ee05d4ea8', 'Switching to Google Meet for its live captions and transcription features', '2024-07-25', 'dc9b6b3f890a46e4'),
('4f817df3b5fb4fc6', 'Transitioning to Webex for its advanced virtual backgrounds and immersive sharing', '2024-07-10', 'be8ae95c573143b8'),
('2ca83bbf12b64b8d', 'Found Microsoft Teams'' Together mode more engaging for our virtual team meetings', '2024-07-13', 'c78227c8467f485b'),
('9b5062fb1bd84e8e', 'Moving to Slack Huddles for quick, informal video chats within our organization', '2024-07-24', '47d64195d803452d'),
('a964178e97384d52', 'Switching to GoToMeeting for its drawing tools and mouse sharing features', '2024-07-29', 'e3c0324a2a2c4097'),
('28ee417dcf424afb', 'Transitioning to Jitsi Meet for its end-to-end encryption options', '2024-07-03', '890b0943005c4eb6'),
('759e3dbe2f6e45be', 'Found RingCentral Meetings'' analytics more comprehensive for tracking usage and ROI', '2024-07-04', '3bb8cedf63604a8a'),
('b153d3d203e344f2', 'Moving to Zoho Meeting for its integration with our project management tools', '2024-07-17', '7fe98a23bc49417f'),
('3c659ebaa9c844d7', 'Switching to Cisco Webex for its AI-powered meeting assistant', '2024-07-14', 'c09f6050f4c54665'),
('4b5c729dea004298', 'Transitioning to BlueJeans for its integration with our learning management system', '2024-07-02', '4c7c04de07454c50'),
('fe171921826d4a9c', 'Found LogMeIn GoToMeeting''s mobile screen sharing more reliable', '2024-07-19', 'a7d035ad1d3240a4'),
('0074ac38a5e34119', 'Moving to Google Meet for its low-light mode and background blur features', '2024-07-29', '0a706c70cbd84850'),
('f167e5b5f3164e83', 'Switching to Microsoft Teams for its larger gallery view of participants', '2024-07-30', 'd424ada9eeef4845'),
('221e308c58cb4aa2', 'Transitioning to Whereby for its browser-based simplicity and no-download meetings', '2024-07-08', '8aa7f0526d0340c8'),
('f8e5969dbe334a6e', 'Found Livestorm''s engagement features more suitable for our marketing webinars', '2024-07-04', '5a3094bb26264f96'),
('773af6a833f345d1', 'Moving to join.me for its personalized meeting links and custom backgrounds', '2024-07-15', '1c33a97148344196'),
('1d005d5d3f6a4048', 'Switching to StarLeaf for its self-hosted option to meet our data residency requirements', '2024-07-09', '49155a4aceb64ed4'),
('6d6ebcc95fd94b26', 'Transitioning to Intermedia AnyMeeting for its integrated audio conferencing', '2024-07-11', '9e6a0065d84244ec'),
('950f3daaf3054b24', 'Found Lifesize''s meeting room hardware more compatible with our existing AV setup', '2024-07-18', '02c302166e824dcf'),
('d46d0f24ffee43be', 'Moving to Highfive for its all-in-one pricing model including hardware', '2024-07-24', '0af0ded55ad0479f'),
('51529e45d6c54526', 'Switching to Pexip for its customizable video layouts for virtual events', '2024-07-17', '3263d15687bc4773'),
('5f39007b386a4f67', 'Transitioning to Amazon Chime for its integration with our AWS-based applications', '2024-07-17', '417402ca130f4348'),
('dbf7bbcd5f97469f', 'Found Vonage Video API more flexible for building our custom teleconferencing solution', '2024-07-02', '02b042f70b3145b1'),
('1f82e399c124450d', 'Moving to Dialpad UberConference for its AI-powered post-call summaries', '2024-07-14', '14cca7e2336d4fb6'),
('4096a45256594730', 'Switching to BlueJeans for its integration with our Splunk monitoring system', '2024-07-07', '2dbfa7ed1138483b'),
('373c6d1e9d3547da', 'Transitioning to Google Meet for its noise cancellation and low-light mode features', '2024-07-14', 'a7724d0f761a41ee'),
('d915a2caadda4aa2', 'Found Webex''s gesture recognition more intuitive for participant interactions', '2024-07-21', '402f4149e5f04ea2'),
('cf45f592f8ed40df', 'Moving to Microsoft Teams for its background noise suppression capabilities', '2024-07-12', '752916e9c7984b81'),
('5ab1a1973f8e45d0', 'Switching to Slack for its seamless transition between chat and video calls', '2024-07-26', '88ffc0de1d6b48fd'),
('260eac5323974814', 'Transitioning to GoToMeeting for its mouse and keyboard sharing features', '2024-07-29', '972846451aeb4773'),
('28e0237a463c4e12', 'Found Jitsi Meet''s open-source platform more customizable for our specific needs', '2024-07-09', 'f01a3aa5e32d41c9'),
('7bee054e81cf4175', 'Moving to RingCentral for its integrated team messaging and video meetings', '2024-07-29', 'd7a43c05b1b14370'),
('dbdcfb763c374731', 'Switching to Zoho Meeting for its native integration with our Zoho CRM', '2024-07-21', 'd6d194d9d24847cb'),
('7ec0e84a6ea54f9c', 'Transitioning to Cisco Webex for its real-time translation in 100+ languages', '2024-07-08', '6f1eddaa556b4cbe'),
('d924c819b23a431a', 'Found BlueJeans'' Dolby Voice audio quality superior for our podcast recordings', '2024-07-22', '04efc041a2e24445'),
('a6bbc1d643c649f4', 'Moving to LogMeIn GoToMeeting for its commuter mode on mobile devices', '2024-07-06', 'c067796c49094692'),
('67728d94efab4597', 'Switching to Google Meet for its integration with Google Classroom', '2024-07-20', '26efc50c502e4ecf'),
('43a28ef8376b4be5', 'Transitioning to Microsoft Teams for its collaborative apps within meetings', '2024-07-03', '9417600b3dd549e6'),
('cd7d3fec0eca4c01', 'Found Whereby''s customizable meeting rooms more on-brand for our client interactions', '2024-07-22', '166594bb1df6463d'),
('75b6338fb06f4c2b', 'Moving to Livestorm for its automated webinar workflows and marketing integrations', '2024-07-21', 'e5c92552eee34525'),
('3642f975b1294f46', 'Switching to join.me for its simple, no-frills approach to video conferencing', '2024-07-11', 'cf77dfbe96514803'),
('6d48e2ebfa294f71', 'Transitioning to StarLeaf for its focus on security in legal communications', '2024-07-15', '1baec6507670461a'),
('80b6e22a16b54f11', 'Found Intermedia AnyMeeting''s webinar mode more suitable for our online events', '2024-07-25', '18163193cb84492b'),
('8415798b77ab4b59', 'Moving to Lifesize for its ability to connect traditional video conferencing systems', '2024-07-22', 'b7c2ef3b09ce4a82'),
('fa9bf8cc86bc46d1', 'Switching to Highfive for its all-in-one hardware and software solution for our meeting rooms', '2024-07-27', 'a4d20d5f3b9c4597'),
('4cabffea4eee43f6', 'Transitioning to Pexip for its ability to handle large-scale video events with thousands of participants', '2024-07-16', 'ae993147f6fa4153'),
('b86b67e53a4e414e', 'Found Amazon Chime''s pay-as-you-go pricing model more cost-effective for our usage patterns', '2024-07-30', '0d2b30ef1d264865'),
('38e7a967dcb943cb', 'Moving to Vonage Video API for building video capabilities directly into our mobile app', '2024-07-18', '3caf31892a474a5a'),
('2a1a86aaf9484df5', 'Switching to Dialpad UberConference for its voice intelligence and automatic note-taking', '2024-07-15', 'e6dc6dd9caba4383'),
('1dfd77a9c9d84c02', 'Transitioning to BlueJeans for its integration with our Facebook Workplace environment', '2024-07-06', '921f9e17525940af'),
('77166e90d37d449c', 'Found Google Meet''s live streaming to YouTube feature essential for our public webinars', '2024-07-23', '374b6436175b49ca'),
('dd48080c0a1e4728', 'Moving to Webex for its advanced virtual background and immersive sharing capabilities', '2024-07-05', 'b6b1a1be5a2e4f14'),
('8d43811828d14062', 'Switching to Microsoft Teams for its larger gallery view and together mode for virtual events', '2024-07-21', '42788abaccad4fbd'),
('f211594caa654ca9', 'Transitioning to Slack for a more integrated communication experience across our organization', '2024-07-09', 'f548a70ab9ad4870'),
('27fa79773a7e4c9b', 'Found GoToMeeting''s drawing tools and annotation features more useful for our design reviews', '2024-07-30', 'ff565c57549b4e73'),
('1b2f95f685e14ae3', 'Moving to Jitsi Meet for its focus on privacy and security with end-to-end encryption', '2024-07-14', 'ca187852d91943fa'),
('efb56fba0ef142fc', 'Switching to RingCentral for its comprehensive unified communications platform', '2024-07-22', '2d221a2870d64065'),
('473e599e305f4f5a', 'Transitioning to Zoho Meeting for deeper integration with our other Zoho business apps', '2024-07-18', 'e1dc8f4bc4cd40fd'),
('7785131ee880414d', 'Our company is downsizing and we no longer need as many licenses.', '2024-07-24', '678a691199fc4d74'),
('ba44634321b54b30', 'I''m retiring and won''t be needing Zoom for work anymore.', '2024-07-25', '5ffb39e439ab481b'),
('33730f8628324450', 'We''re shifting to a fully in-person work model and don''t require video conferencing.', '2024-07-09', '471dc0d57f5547b4'),
('2dbef0cffb3e46d9', 'Our startup has been acquired and the parent company uses a different platform.', '2024-07-05', '4ce7c68d8dda4454'),
('96fd550374bd4ca8', 'I''ve changed jobs and my new employer provides a different video conferencing tool.', '2024-07-20', '584c54b728724b2e'),
('74e8a6385e2f41df', 'We''re consolidating our tech stack and moving to an all-in-one solution.', '2024-07-06', '8ee05c9626754991'),
('c1c15b7b570e47ed', 'Our non-profit lost funding and we need to cut costs.', '2024-07-20', 'b805c9e679c04e07'),
('c3657defb034438a', 'I''m going back to school full-time and won''t need a professional account.', '2024-07-28', '88d66d33b50b4bbf'),
('6848695358d84e7b', 'Our company is merging with another that uses a different platform.', '2024-07-21', '900bbd61fa7c4f19'),
('91361cc1b8a44de9', 'We''ve decided to outsource our customer support, reducing our need for video calls.', '2024-07-08', '8e82e1d0feec4859'),
('4ada08ddc74e4406', 'I''m taking a sabbatical and won''t need Zoom for the next year.', '2024-07-02', 'e09c34953ab84e03'),
('5928a9c1ff6847cd', 'Our business model has changed and we no longer conduct virtual meetings.', '2024-07-04', 'dc0ba46875464929'),
('8e7df4aea70b4a38', 'We''ve moved to a hybrid work model and need a different collaboration tool.', '2024-07-17', '0753f7b578634d26'),
('b5659e6b17b64b22', 'I''m transitioning to freelance work and can use the free version for now.', '2024-07-05', 'ae7ab7d4bd4a4a13'),
('8e862ef0c4104a28', 'Our company has gone through restructuring and we''re streamlining our tools.', '2024-07-27', '7b0b96ae3d8b40e6'),
('2853607911c94909', 'We''ve shifted our focus to asynchronous communication and need fewer video calls.', '2024-07-30', '691a6bc5a89a4cd3'),
('d6b8a7c3f22449b7', 'I''m moving to a remote area with limited internet, making video calls impractical.', '2024-07-16', 'a8c2ede8f2fd49a2'),
('3d1ab6973bf44709', 'Our team size has reduced significantly, and we no longer need as many licenses.', '2024-07-14', 'c11b7bf502994384'),
('b51afbe782144fb7', 'We''re pivoting our business and our new model doesn''t require video conferencing.', '2024-07-07', '36984383f546406c'),
('9a3ae5dd5fd2467d', 'I''ve started a new role that doesn''t involve client meetings or video calls.', '2024-07-04', 'b07374c4d69f4d97'),
('7565bc3db86e4881', 'Our company has been bought out and we''re adopting the parent company''s tools.', '2024-07-22', '7264d4f56e4e4414'),
('f1b2508cef3a4da5', 'We''ve decided to centralize all our communication through our CRM system.', '2024-07-07', '6d92ba6fdf1947ad'),
('16ede3c5bc5540b1', 'I''m taking an extended leave of absence and won''t need Zoom during this time.', '2024-07-07', '9abdbef88bd542b7'),
('ba844d11c4c94a8c', 'Our organization is dissolving and we no longer need any subscriptions.', '2024-07-21', '9990e705c25044a6'),
('a9bcaf624a424e2c', 'We''ve moved to a different country and need a localized solution.', '2024-07-04', 'b555fd0b0b744203'),
('18975192b8f04e7a', 'I''m changing industries and won''t be using video conferencing in my new role.', '2024-07-14', '39b85e29918645de'),
('22b8153b785e4e39', 'Our company has decided to build our own internal communication tool.', '2024-07-16', 'b7cd160f4f0c4793'),
('1e097d0e67ea4bce', 'We''re scaling down our operations and need to reduce our software expenses.', '2024-07-20', '9698f49beba14f3a'),
('f4c4df655f904c2c', 'I''m starting my own business and need to cut personal expenses for now.', '2024-07-04', 'e36ce9e4290a4292'),
('3401e4fa9f294739', 'Our non-profit is shifting focus and no longer needs extensive video conferencing.', '2024-07-12', '00060c32e5c649bc'),
('43d554b75e01453f', 'We''ve adopted a new project management system with built-in video calls.', '2024-07-04', '727fc86972af45ce'),
('2d9368956ac04a24', 'I''m taking a career break and won''t need a professional Zoom account.', '2024-07-23', '5e4cb06a507d4131'),
('18790388c9d145c5', 'Our company is going through financial difficulties and cutting all non-essential costs.', '2024-07-05', 'abcb0e8c0056406f'),
('613fefd135b547d8', 'We''ve decided to prioritize in-person meetings and reduce virtual communications.', '2024-07-12', 'f616b01e6df649f3'),
('8cd610e7e7a44dda', 'I''m relocating to an area with poor internet connectivity.', '2024-07-17', 'ecfcfa01a8f046d3'),
('76391d706ffe459e', 'Our startup didn''t secure the next round of funding, so we''re reducing expenses.', '2024-07-21', '031d4d30bfbd4002'),
('7b87b00129ef46a6', 'We''re changing our business model to focus more on written communication.', '2024-07-26', 'a82fb0a230714ff7'),
('7eeb460fdb704bd4', 'I''ve decided to take early retirement and won''t need Zoom for work purposes.', '2024-07-29', '3c1c8dc8bc58480c'),
('989aae164a2d461b', 'Our organization is merging with another that uses a different video platform.', '2024-07-22', '183a199c77de4e7f'),
('19ae78af17a74ac2', 'We''ve decided to switch to phone calls for most of our client interactions.', '2024-07-24', '39f1b9edd9cd4ee1'),
('fa6d52308cd84d66', 'I''m going on an extended travel sabbatical and won''t need regular video calls.', '2024-07-04', '6995f5d6d0254655'),
('b799218b563d4aff', 'Our company is decentralizing and each department is choosing their own tools.', '2024-07-12', 'a2676e7e32314818'),
('16cf41c327114305', 'We''re moving to a four-day work week and reducing our overall meeting time.', '2024-07-06', 'bf25d927d2c64397'),
('9f2868f662a54888', 'I''m transitioning to a government job that restricts use of certain software.', '2024-07-21', '3312169b87ba483d'),
('d956715baace4845', 'Our non-profit is shifting to more field work and less office-based activities.', '2024-07-29', '5f6a693599fa44d4'),
('7e567554e7bc4d16', 'We''ve decided to use our parent company''s enterprise communication solution.', '2024-07-24', 'f59d9139245e41f4'),
('5eafb7ffcab94674', 'I''m starting a PhD program and won''t need a professional account for a while.', '2024-07-23', '5a0b4131595e4d06'),
('6c22868de732493e', 'Our company is undergoing a digital transformation and consolidating all tools.', '2024-07-29', 'e0be1aefcf8b4a1a'),
('f07e2df8f3e848ab', 'We''re adopting a ''minimal meetings'' policy to improve productivity.', '2024-07-12', 'dab342114cba4a71'),
('e17b3858447a4ceb', 'I''m changing careers to a field that doesn''t require video conferencing.', '2024-07-15', 'a7183c887b01408e'),
('83878a21a4cb4cb1', 'Our organization is splitting into smaller entities with different needs.', '2024-07-05', '693d7f8d6f1e48ae'),
('a61d48e22cbe4e61', 'We''ve decided to use our client''s preferred platforms for meetings instead.', '2024-07-17', 'd30c66b7de13446e'),
('b563347a9fd0446f', 'I''m taking a sabbatical to write a book and won''t need regular video calls.', '2024-07-07', '9d1ecdbdce7541ad'),
('8c705fa31669411e', 'Our company is moving to a co-working space with its own conferencing system.', '2024-07-19', '78652acc0a984899'),
('faaa7f64887b41e4', 'We''re implementing a new ERP system with built-in communication tools.', '2024-07-06', 'f84d15cc360e4d6f'),
('2d23e0f606cf479c', 'I''m transitioning to part-time work and can manage with the free version.', '2024-07-02', 'c85407e62c8a4012'),
('ad3f29e9ecc64eb2', 'Our startup is pivoting to a new business model that doesn''t require video calls.', '2024-07-04', '8add4457e74b47a0'),
('a1f039244349426a', 'We''ve decided to use different tools for internal and external communication.', '2024-07-26', 'd4c1520627e847be'),
('aa31aca629ec4373', 'I''m moving into a consulting role where I''ll use my clients'' preferred platforms.', '2024-07-11', '5fd84af9653c4ed3'),
('92833de140084e82', 'Our organization is shifting to more asynchronous communication methods.', '2024-07-29', '934fa1ae97064aa9'),
('1e327a7ec5e3437c', 'We''re adopting a new company-wide collaboration suite that includes video.', '2024-07-14', 'df801b7f36194a69'),
('8c5cc773630e41be', 'I''m taking a year off to travel and won''t need a professional Zoom account.', '2024-07-20', '4f52884f306a492f'),
('07e04d1c545b44f8', 'Our company is decentralizing and allowing each team to choose their own tools.', '2024-07-07', 'ac2bd7b5c28748b0'),
('8e283d74d3a24ef0', 'We''ve decided to prioritize in-person client meetings over virtual ones.', '2024-07-25', '4632d865011c4f08'),
('0f656c3022464339', 'I''m changing to a role that primarily uses a different video conferencing tool.', '2024-07-17', '2a3b9709b6474f63'),
('fd6f3863290d4b2a', 'Our non-profit is restructuring and streamlining all of our software usage.', '2024-07-17', 'df23f2dfac2546e9'),
('47f4c3c5a1ac4931', 'We''re moving to a ''bring your own device'' policy and need more flexible tools.', '2024-07-28', '91ec63c646bf4f7e'),
('f465b39eeefd4ebd', 'I''m starting my own business and need to cut back on subscription costs.', '2024-07-02', '2bcd394d0bf74467'),
('49ecad15f565439e', 'Our company is being acquired and we''re adopting the buyer''s tech stack.', '2024-07-30', '38d845eb40e948a6'),
('9c16633e594b4110', 'We''ve decided to use different tools for webinars and internal meetings.', '2024-07-01', '443118c51afa4580'),
('814728fd49ba4e21', 'I''m transitioning to a government contract that requires specific secure tools.', '2024-07-12', '5a7785ffc4e04ddd'),
('344ef02589d5402b', 'Our organization is shifting focus to local community work with less remote collaboration.', '2024-07-11', '1cde38de723b4d09'),
('07cb864a2b134df7', 'We''re implementing a new learning management system with built-in video features.', '2024-07-12', '82d4a06b290a4367'),
('e20f2e5804f34b2f', 'I''m moving to a sales role that relies more on phone calls than video.', '2024-07-14', 'd205eb26431848a2'),
('2ea568b06b1b42ea', 'Our company is downsizing our remote workforce and need fewer licenses.', '2024-07-08', 'efc1676982b44776'),
('553f614df81647fa', 'We''ve decided to use our client''s preferred video conferencing tools for meetings.', '2024-07-07', 'bf16ca0f20ef4610'),
('afb22634f43e431a', 'I''m taking a career break to focus on family and won''t need a pro account.', '2024-07-10', '894dbf2639b54c42'),
('06789026bf674989', 'Our startup didn''t meet growth targets and we need to cut all possible costs.', '2024-07-10', '8690a19ec94f4ccd'),
('6fe71e58ee3a49c0', 'We''re shifting to a model with more recorded content and fewer live meetings.', '2024-07-08', 'faf155d1df824bb0'),
('47646f59df0b479c', 'I''m changing to a role that doesn''t involve client-facing video calls.', '2024-07-07', '89ed054d033f4536'),
('647cdd59d92a4eb5', 'Our organization is moving to a hub-and-spoke model with less need for video.', '2024-07-08', 'd76abe20e65c4ea6'),
('dea8c39b05c042de', 'We''ve decided to standardize on a single communication platform company-wide.', '2024-07-08', 'd68752a42caf4835'),
('8bd5a294e8cd43c9', 'I''m starting a new venture and need to minimize expenses in the beginning.', '2024-07-30', 'c30df4d570e94f76'),
('a024dae33a414789', 'Our company is restructuring and each division will choose their own tools.', '2024-07-04', 'f18130cf82374bb2'),
('0da8f79c75c44573', 'We''re implementing a new policy to reduce meeting time across the organization.', '2024-07-04', 'f19ca1ac7f014391'),
('fa2a1affb7134c6f', 'I''m transitioning to a role with less client interaction and fewer video calls.', '2024-07-05', '6aeb1be277854f95'),
('54481438f6d34081', 'Our non-profit is shifting focus to more offline, community-based activities.', '2024-07-02', '399507043c25467d'),
('fdd4a028343f41b9', 'We''ve decided to use different tools for internal meetings and external webinars.', '2024-07-06', '3970963bc6d74cca'),
('1302a9dfef384049', 'I''m taking a sabbatical to learn new skills and won''t need Zoom for a while.', '2024-07-27', 'be5d7beb0ed64656'),
('8d15c0f87c5842a6', 'Our company is moving to a new office with built-in conferencing systems.', '2024-07-29', '7b9f2c3b4c2c4fa8'),
('f2c743cf4709452d', 'We''re adopting a new project management tool with integrated video features.', '2024-07-25', 'c33e029c980b4270'),
('cd127eb5a12a49a0', 'I''m changing industries and my new role doesn''t require video conferencing.', '2024-07-27', '24e06c4c2607410b'),
('95a52383748b43ba', 'Our organization is decentralizing and each department is selecting their tools.', '2024-07-23', 'eec0cc2f00f3488d'),
('d80b769acc1f4461', 'We''ve decided to prioritize face-to-face meetings and reduce virtual ones.', '2024-07-29', '9a4dc335a85e447d'),
('1ad02702830f4c4c', 'I''m starting a freelance career and can manage with the free version for now.', '2024-07-29', '4065978190d84650'),
('f95021222eda4a66', 'Our company is going through a major restructuring and reevaluating all tools.', '2024-07-28', '3cb72c543ab24d00'),
('0a4af00f59784608', 'We''re shifting to a hybrid work model and need a different collaboration solution.', '2024-07-18', '51932e1f7c294074'),
('2c5ef6fe3f81455b', 'I''m taking an extended leave for personal reasons and won''t need Zoom.', '2024-07-03', '1071e744b79a4cb0'),
('458bcfcc28334ce0', 'Our startup is pivoting to a new business model with different communication needs.', '2024-07-11', '260cdaf3b77c4440'),
('9e3e3166292847d8', 'We''ve decided to use our parent company''s preferred video conferencing solution.', '2024-07-24', 'bb6cdd019c744c68'),
('26e2af60d5654cc7', 'Frequent audio lag during important client meetings', '2024-07-25', '90a25418a6f34add'),
('5f269e571450445e', 'Video quality deteriorates with more than 10 participants', '2024-07-17', '064c5b114e2a4b71'),
('77a2264bb623401b', 'Screen sharing often freezes, disrupting presentations', '2024-07-13', 'fb59f28f4b2d4625'),
('b3b0924443054785', 'Inconsistent connection quality, even with good internet', '2024-07-21', '1e6399f6e5044010'),
('86355a6cc0cc4d72', 'Audio echo issues persist despite troubleshooting', '2024-07-09', '09e9e6cec2744f92'),
('dc969193db874755', 'Video stuttering makes virtual workshops ineffective', '2024-07-13', '9d7b91836d674549'),
('7761df9f4cdb46a9', 'Constant buffering during large team meetings', '2024-07-11', '409e6460d21c4906'),
('ee34426e7ca54f96', 'Poor performance on mobile devices', '2024-07-10', '9459db2b9e5f41a9'),
('ba3e33d44baa4411', 'Difficulty maintaining stable connection in rural areas', '2024-07-18', 'e397eb0f74f84210'),
('a8b7c404586e46ae', 'Video pixelation issues during high-stakes presentations', '2024-07-07', 'd68432a6d4a045d7'),
('830e84bafd3847ba', 'Audio cutting out randomly mid-sentence', '2024-07-08', '3490a3aff94e4aad'),
('4c7b787dac364f4b', 'Inability to handle multiple video streams smoothly', '2024-07-28', 'bb11d6b09c9741e4'),
('0327c4b12bd1499a', 'Frequent disconnections during longer meetings', '2024-07-20', '2ac461fc86f24789'),
('8049dbb487894b48', 'Screen sharing resolution too low for detailed work', '2024-07-07', '0958ac5c114b4452'),
('ebae4b7bf1cf40c8', 'Lag when using virtual backgrounds', '2024-07-29', '9d4bf0fa4e6e40d5'),
('9952697db5184102', 'Video and audio often out of sync', '2024-07-10', '463e83224a5a461d'),
('0f6b3ebdde344a87', 'Poor handling of low-bandwidth situations', '2024-07-11', '88f790b108d04941'),
('58c91a95a3e24868', 'Inconsistent performance across different devices', '2024-07-26', 'ec141ca1daa3413f'),
('958316e3174f4960', 'Difficulty maintaining video quality with many participants', '2024-07-25', '199213431a70441e'),
('ce5d00f17c9b42a1', 'Audio distortion during music lessons', '2024-07-28', 'bdad74b1865c4987'),
('3dde3b10e3244260', 'Screen sharing causes significant performance drop', '2024-07-26', '8f1da02c05fb42ba'),
('a995baa57d2249a1', 'Video freezing issues during important client pitches', '2024-07-25', '9ccdda9e79a0428d'),
('ff144ca569bd4fa9', 'Unreliable performance for webinars with 100+ attendees', '2024-07-25', 'bfa8fb60ffc6419c'),
('fed000d6e6d04115', 'Audio echo in large conference rooms', '2024-07-26', 'f0bf0e189373493c'),
('02e71ed02c214e9b', 'Inconsistent video quality across different browsers', '2024-07-21', '396807abb58b419a'),
('80b1238a578b4e17', 'Frequent crashes during extended meetings', '2024-07-15', 'ede2c139664b4fbd'),
('aeba2a03198a4790', 'Poor handling of participants with varying internet speeds', '2024-07-11', '0226467fa7cb44b7'),
('88c1c3548056442a', 'Video quality degrades over time in long meetings', '2024-07-25', 'e075544d9cf54a8c'),
('1d20c96d14a044c8', 'Audio issues when using bluetooth headphones', '2024-07-08', 'f626843b09424cc8'),
('3bafac1783a94ef6', 'Screen sharing lag makes live demonstrations difficult', '2024-07-06', '8330089a38cc44dc'),
('5f4a27eeac0d40b3', 'Inconsistent performance between desktop and mobile apps', '2024-07-23', 'b1b16afaf4fc4169'),
('8beabe4b9b0447f7', 'Video quality insufficient for medical consultations', '2024-07-26', '4da2cfc803344680'),
('eb959201ad1b4062', 'Audio cutting out during critical team discussions', '2024-07-16', 'f7ed903f421a4d52'),
('5334c6e5d46e4d34', 'Difficulty maintaining stable connection in high-rise offices', '2024-07-25', 'fb3317a38fb14c30'),
('608a74a342124d6f', 'Screen sharing causes audio sync issues', '2024-07-20', '63abbcc856624f94'),
('0e8267fc440a4232', 'Video quality inadequate for detailed product showcases', '2024-07-22', '7090645c14ae4d36'),
('abd7e60509c2440e', 'Frequent ''unstable internet connection'' warnings', '2024-07-05', '7013037efa8949eb'),
('182617961c2e4c8b', 'Audio delay makes real-time collaboration challenging', '2024-07-27', '5d5a2e06482543ec'),
('9c6ec18a1b744b55', 'Poor performance when sharing high-resolution images', '2024-07-17', '238d42fbd48a46f5'),
('62636596a13c4804', 'Video freezing during recorded sessions', '2024-07-13', '52168db124f347d7'),
('0ed3efd797324732', 'Inconsistent audio quality for music performances', '2024-07-17', '50d476ff48ee4689'),
('33cf108e4437478e', 'Screen sharing resolution too low for CAD demonstrations', '2024-07-05', 'bde0075500a24fde'),
('c2798a5355f44583', 'Video quality degrades with multiple screen shares', '2024-07-20', 'cab7fe41c77a4ea6'),
('2ef81dd8c9d4488d', 'Audio echo in rooms with hard surfaces', '2024-07-18', '8b98cd6e49b44c2e'),
('4d94eb5735f34f73', 'Difficulty maintaining connection stability on trains', '2024-07-10', 'dd902696108f40c6'),
('be4f82f5dcff4557', 'Video lag makes virtual fitness classes ineffective', '2024-07-22', 'a1e1580e7dca4949'),
('7cebc09daaaf4109', 'Poor handling of background noise in open offices', '2024-07-08', 'cd9b119091374824'),
('fbc3d919aa1e4b8d', 'Screen sharing causes significant CPU usage and overheating', '2024-07-27', '7357875800c64f67'),
('894b947cd1924e43', 'Video quality insufficient for sign language interpretation', '2024-07-08', 'c3df7f92a6634e98'),
('85594bdb0b8f48f5', 'Audio issues when using multiple microphones', '2024-07-11', 'd83acd6fb5af455d'),
('8b2c88a57f6849ac', 'Inconsistent performance across different operating systems', '2024-07-03', '973812ba6a724177'),
('bdae569d3d3d4331', 'Video stuttering during virtual court proceedings', '2024-07-12', 'd50d89189edd4e19'),
('e7e3a4be8f7c421b', 'Frequent ''your internet is unstable'' messages', '2024-07-13', 'c11d1f40d70e4f8a'),
('0efe0e43ae344c0c', 'Audio cutting out during crucial sales calls', '2024-07-27', 'f5cb837ade1c4195'),
('ca16f5cfcd174622', 'Poor video quality for virtual property tours', '2024-07-01', 'c93b116205794b9e'),
('26a7fa0ff4174006', 'Screen sharing causes laptop fans to run loudly', '2024-07-14', '0ed709f754bd434b'),
('5296c48a23f545b6', 'Video freezing issues during online exams', '2024-07-20', 'f0505de7c6ba458c'),
('d2198e38a7354367', 'Audio delay makes language interpretation difficult', '2024-07-01', 'b0da3863e1bf4897'),
('4114a72f56da4c6c', 'Inconsistent performance in countries with internet restrictions', '2024-07-07', 'a60a7a4923b84bf4'),
('424ca2b69e9240c6', 'Video quality degrades when using virtual backgrounds', '2024-07-13', '1bd0034cf6d34932'),
('148fa1c0f4ed43b9', 'Poor handling of echo cancellation in large rooms', '2024-07-25', '7a3f35b06f794f05'),
('c2c7d4f7eef84b7e', 'Screen sharing causes significant battery drain on laptops', '2024-07-11', '02573017dfd34921'),
('0e76144700134803', 'Video quality insufficient for telemedicine diagnoses', '2024-07-30', '34ebf813d72f4e40'),
('5f180a51d4034709', 'Audio issues when using external USB microphones', '2024-07-28', 'd33f37f02f324e5d'),
('3a82cd5e77e540ed', 'Difficulty maintaining stable connection in high-density WiFi areas', '2024-07-14', '88e2912a1e6543cb'),
('5382973e162040b2', 'Video lag makes lip-reading impossible for hearing-impaired users', '2024-07-03', 'e37fcff0ea3c4340'),
('6814e95b38ac40f4', 'Poor performance when sharing video clips', '2024-07-30', '5f941e945c7a490a'),
('4ed409395032409c', 'Screen sharing causes other applications to slow down', '2024-07-29', '1ab6c76e56f64d9e'),
('3aaa9a1569ae4bca', 'Video quality degrades in low-light conditions', '2024-07-20', '8bb23414d26c4eb4'),
('6acb4e33ee304298', 'Audio cutting out during virtual town hall meetings', '2024-07-19', '7d9f9bdc81f94ec6'),
('def8f7628f334d7a', 'Inconsistent performance across different time zones', '2024-07-24', '9d95bf6172aa4b5b'),
('e20f1eb6a2b946f9', 'Video stuttering during live streaming events', '2024-07-23', 'c2210092a0ea429c'),
('a3364e180ba142a5', 'Poor handling of sudden internet speed fluctuations', '2024-07-18', '6043f67de95a404b'),
('31c43a2cc29b4d2c', 'Screen sharing resolution insufficient for code reviews', '2024-07-24', '14c1f99fc4a84667'),
('95e184a4cb794b94', 'Video freezing during critical investor presentations', '2024-07-09', '7707c084e5e74aea'),
('38e405f11efc40c1', 'Audio echo when multiple participants are in the same room', '2024-07-03', '7589d66153754ecb'),
('50bfc0f85fc0472c', 'Difficulty maintaining stable connection during peak hours', '2024-07-18', 'b7f167d16ec74495'),
('e7df98deb62a4594', 'Video quality inadequate for virtual art gallery tours', '2024-07-13', 'bad1beafec884816'),
('66287efaabd044c3', 'Poor performance when using breakout rooms', '2024-07-12', '95a53b648af149f6'),
('5e3c3cb34b9642ed', 'Screen sharing causes audio to become choppy', '2024-07-08', '98a76495fac0437a'),
('d8c65c2758b94f35', 'Video lag makes virtual dance classes ineffective', '2024-07-15', '993106832d7c44a0'),
('e4ef8c8f818f49fb', 'Audio issues when using noise-cancelling headphones', '2024-07-02', '7728b457666b4547'),
('b3185c99c213420e', 'Inconsistent performance when accessing from different countries', '2024-07-27', 'd9e2ec49ac414b8b'),
('e9c755608a104062', 'Video quality insufficient for detailed engineering reviews', '2024-07-29', '11148a2d04584fc9'),
('a48a651cfad44687', 'Frequent ''network bandwidth is low'' warnings', '2024-07-25', '06962c414c9a4eef'),
('42de99660b984879', 'Audio cutting out during virtual conference keynotes', '2024-07-22', 'ad7a776e7e08422c'),
('da54a2ca3f5c4446', 'Poor handling of participants joining from mobile data', '2024-07-25', 'ceeb302110b044da'),
('263552f35d254ec7', 'Screen sharing causes video quality to degrade significantly', '2024-07-29', '592126889e2c494c'),
('7523050168b24025', 'Video freezing during online therapy sessions', '2024-07-18', 'bd092b2ef972424e'),
('d33346be73644b94', 'Audio delay makes musical collaboration impossible', '2024-07-07', '904e2d9256a048ef'),
('c4cdf2a615e24437', 'Inconsistent performance when using VPN connections', '2024-07-21', 'a627c76ca75c4b97'),
('db929cd1a6734b18', 'Video stuttering during virtual fashion shows', '2024-07-05', '1fd1e301353d47f9'),
('01c894240a274455', 'Poor quality for participants with satellite internet', '2024-07-24', '36ee682b83184a67'),
('a8c7652127fd4f64', 'Screen sharing causes other participants'' video to freeze', '2024-07-30', '07e58a5e172a43fc'),
('eec35548fdb643e4', 'Video quality degrades when using custom backgrounds', '2024-07-14', '8906925b8dc2496a'),
('7039218df7924265', 'Audio issues when using wireless conference room systems', '2024-07-17', '7abb25b794f14884'),
('f86899c5e62f4f5f', 'Difficulty maintaining stable connection in high-rise buildings', '2024-07-30', 'ebf018fb41dc4358'),
('d465847bcbbb4377', 'Video lag makes virtual job interviews awkward', '2024-07-07', '9b2b441f3adc4b37'),
('153e806280654ded', 'Poor handling of sudden increases in participant numbers', '2024-07-04', 'e12e64d0892f49a8'),
('f367866459704ec6', 'Screen sharing causes significant internet bandwidth usage', '2024-07-21', '6a471358a2d24393'),
('990a2d29c52643dc', 'Video quality insufficient for detailed product demonstrations', '2024-07-12', '86079be190d24d26'),
('6fd6341b9ccf4b39', 'Audio distortion during high-stakes investor calls', '2024-07-26', '6017c7d27e3a4bb1'),
('a79de8ceb9a346d4', 'Screen sharing causes significant frame rate drops', '2024-07-27', '5514059b878940ba'),
('226b842e90aa48d1', 'Frequent connection drops in multi-story office buildings', '2024-07-18', '1e78a16bb22c4e55'),
('1fa56a4455784b6a', 'Video freezing issues during virtual court hearings', '2024-07-03', 'bcf6f0f0ca7d46f5'),
('a4fbf6bb5d434a78', 'Poor audio quality when using computer''s built-in microphone', '2024-07-02', '712489477990495f'),
('8fcdfe1a12004e9e', 'Inconsistent performance across different network types (WiFi, Ethernet, 4G)', '2024-07-11', '81d36339e5d84717'),
('28e92fa9f4e645de', 'Video lag makes sign language interpretation challenging', '2024-07-04', '5319af0acdb74973'),
('b769298178974b0d', 'Screen sharing causes audio to fall out of sync', '2024-07-13', '1df04e499dc245fc'),
('e7aa8f9fa53a4571', 'Difficulty maintaining stable connection in areas with frequent power outages', '2024-07-26', '7af67d6dfdee42b6'),
('98e64bac92d64e41', 'Video quality degrades noticeably after 1 hour of meeting time', '2024-07-13', '05928adfbc754da5'),
('79c803440c7d4dcd', 'Audio echo issues in rooms with high ceilings', '2024-07-17', 'd1d1ac08ff894da0'),
('0acad0e8242d41ae', 'Poor handling of participants joining from countries with internet censorship', '2024-07-03', 'dc27f893aa1b4de0'),
('55b52e5ce77c4d2d', 'Screen sharing resolution too low for architectural design reviews', '2024-07-03', '48b2390430a14378'),
('849dd5edb36d4887', 'Video stuttering during virtual trade show presentations', '2024-07-24', '26a3af02ec17485b'),
('ac7ac3da82ac4485', 'Inconsistent audio quality when using different headset brands', '2024-07-07', '9e7e6a7f66a148ba'),
('5aa818cc97a2405d', 'Frequent ''CPU usage is high'' warnings during video-heavy meetings', '2024-07-03', '67a535d427d440e8'),
('4642096612e74f68', 'Video quality insufficient for remote medical diagnoses', '2024-07-18', '696577d8296944dc'),
('c0fe66a246b24c36', 'Audio cutting out when multiple people speak simultaneously', '2024-07-16', '372863ce9d764d07'),
('8175d7f1743a4083', 'Screen sharing causes significant delay for remote participants', '2024-07-09', '1ae3f51b0bcc4d2b'),
('bdd5ac43420b4cfb', 'Video freezing issues during online gaming streams', '2024-07-12', '71d804738c39487e'),
('b3beba2f9efd40aa', 'Poor performance when using virtual receptionist feature', '2024-07-21', '0eb941653f234eaf'),
('d71ed796b370468e', 'Difficulty maintaining stable connection in underground offices', '2024-07-10', 'df7e32a1bc504a1e'),
('4d04b8a6cccb4eff', 'Video quality degrades when using animated virtual backgrounds', '2024-07-01', 'e8af6339e5d248dc'),
('7ebc8bdc4a894ee6', 'Audio delay makes real-time language interpretation impossible', '2024-07-03', '656a0766ce074e9c'),
('da794d8dedeb4e43', 'Inconsistent performance when accessing through different browsers', '2024-07-18', 'f4cc17a3fb804dbb'),
('71cc5fb89ad542d9', 'Screen sharing causes laptop to overheat', '2024-07-21', 'd710bd45273b4db8'),
('e0ff7413e1a04f13', 'Video lag makes virtual yoga classes ineffective', '2024-07-17', 'f4926c53e8f74eb2'),
('ce3d5101dea841fc', 'Poor handling of echo cancellation in rooms with hard surfaces', '2024-07-25', '9283d1e74c8d4e79'),
('cc0403062e134701', 'Audio issues when using bluetooth conference room speakers', '2024-07-10', '12e2bf1e79ed4a10'),
('44042de868034231', 'Video quality insufficient for detailed gemstone appraisals', '2024-07-30', '65afbdfb39b840dc'),
('7957090c10b64cd6', 'Frequent ''your connection is unstable'' messages in high-rise apartments', '2024-07-03', '54c0eef5f5574611'),
('c116ce9298b54e73', 'Screen sharing causes other participants'' audio to become choppy', '2024-07-29', '0b2459da5efc4d0a'),
('9fa6cd7dffcd4837', 'Video stuttering during virtual museum tours', '2024-07-21', '4a0ddc3946494076'),
('814c55fb552d441c', 'Inconsistent performance when using different ISPs', '2024-07-09', '472d7634a7904337'),
('8ce12aafe8ba48c3', 'Audio cutting out during crucial board meetings', '2024-07-12', '337e8cd0cef142b8'),
('69328af06d5c40f0', 'Poor video quality for virtual wine tasting events', '2024-07-21', '6c466fe40ab942f3'),
('8278f50bcc8e4245', 'Difficulty maintaining stable connection on cruise ships', '2024-07-18', '3848b9d157fb4288'),
('eb70f45d8cef4b62', 'Video freezing issues during online university lectures', '2024-07-27', '9e5753caa5ad4599'),
('18fe2bd409ad44e1', 'Screen sharing causes significant battery drain on mobile devices', '2024-07-28', '14cc57bb0b364be3'),
('d59d96561e914f0a', 'Audio echo in rooms with multiple devices logged into the same meeting', '2024-07-17', '4872850694cb487a'),
('77b6b598916049d0', 'Video quality degrades when using custom video filters', '2024-07-18', 'b83713680a0a4728'),
('508d15fea9784d96', 'Poor handling of sudden drops in internet speed', '2024-07-03', '3fa629774f904fb9'),
('d5d1414fbaa84a34', 'Inconsistent performance across different versions of the Zoom app', '2024-07-10', 'fff2b61689764e78'),
('9a7533f2463b4d91', 'Screen sharing resolution insufficient for detailed financial chart analysis', '2024-07-30', '494441df214a4f1f'),
('7f7b5d831560479b', 'Video lag makes virtual chess tournaments frustrating', '2024-07-21', 'd4d25130e9d84588'),
('60f8f1f9fcf1452c', 'Audio issues when using USB speakerphones', '2024-07-12', 'aafbd179922248a7'),
('543e143f5f614f09', 'Difficulty maintaining stable connection in rural areas with satellite internet', '2024-07-24', 'b78a795a7a2649a7'),
('4b2de262b99b470b', 'Video quality insufficient for virtual art auctions', '2024-07-12', 'c6356fefa210421f'),
('5c745a2063094303', 'Poor performance when using breakout rooms for large groups', '2024-07-06', 'fba1dc21212a4065'),
('9688c51334e24ffe', 'Screen sharing causes significant increase in data usage', '2024-07-22', '53eaacb7a5ff44d5'),
('0745ac67557448eb', 'Video freezing during critical software demo presentations', '2024-07-05', '41158d3c64aa4244'),
('fcb53bf3c2b0463f', 'Audio cutting out during virtual city council meetings', '2024-07-24', '0d6ca7420db244b4'),
('1029f9233211458e', 'Inconsistent performance when accessing from different continents', '2024-07-30', 'ee30c7b8eee64545'),
('9f0650dd89c141fc', 'Video stuttering during live cooking class demonstrations', '2024-07-27', 'c735e77cfbfd4f7a'),
('5aa8fdc108c74637', 'Poor handling of background noise in industrial settings', '2024-07-24', '7e64e68d9981424e'),
('060e21d9ed334177', 'Screen sharing causes other applications to crash', '2024-07-04', 'd6afc94d8e854d21'),
('c87d2e39a8d44c78', 'Video quality degrades when multiple participants use virtual backgrounds', '2024-07-11', '9919752ba0ad4001'),
('e6dc4caaee0c4925', 'Audio delay makes musical rehearsals impossible', '2024-07-11', 'd108942e20f944c8'),
('ed965e6d06b94539', 'Difficulty maintaining stable connection during thunderstorms', '2024-07-24', '720ef8fc1ebe4aee'),
('3c3e73da1a8f47ef', 'Video lag makes virtual reality demonstrations ineffective', '2024-07-04', '32142caed1cd4f41'),
('18389aa60aa14340', 'Inconsistent audio quality when using different microphone types', '2024-07-24', 'dc954f351b1344ba'),
('9f7db9705a494ac6', 'Frequent ''internet bandwidth is low'' warnings in shared office spaces', '2024-07-15', 'd92111bf9c5349b7'),
('1625917d95c94b79', 'Screen sharing causes significant lag for participants with older devices', '2024-07-09', '8812bac0f6834d09'),
('2c643fe0361b4e00', 'Video quality insufficient for detailed jewelry showcases', '2024-07-21', 'ce320d7b064e4bad'),
('51c0cd93bc34439b', 'Poor performance when using simultaneous interpretation feature', '2024-07-23', '3f0782c6713f4a4f'),
('0316d02b2f6441e6', 'Audio issues when using noise-cancelling microphones', '2024-07-25', '1b975de1735545b5'),
('0e8f53c178e14f2b', 'Video freezing during virtual graduation ceremonies', '2024-07-18', '9db4e58eb7a04659'),
('bbf785968ade422c', 'Difficulty maintaining stable connection in areas with 5G interference', '2024-07-18', '12031a5fbee84a2e'),
('f8b9f501758a4204', 'Screen sharing resolution too low for intricate needlework demonstrations', '2024-07-05', '2b1fbd3ea20147b7'),
('9a678e08409347a4', 'Video stuttering during virtual fashion runway shows', '2024-07-04', '799e535f1888481f'),
('a1f695e77e924851', 'Inconsistent performance when accessing through VPN', '2024-07-21', '1358093046ed442a'),
('14dcc877e9cf43f0', 'Audio cutting out during crucial crisis management meetings', '2024-07-07', '60d9705e28c54ae4'),
('2e0d8ede70e94610', 'Poor video quality for virtual real estate tours', '2024-07-02', '131508c161d34aa3'),
('92433a24c2b54461', 'Screen sharing causes significant performance issues on older computers', '2024-07-08', 'dffa65ff71fc4601'),
('14813eb37873429a', 'Video lag makes virtual dance competitions unfair', '2024-07-29', '46271e35d4224e7c'),
('4d8bedbd9c704146', 'Audio echo in large auditoriums', '2024-07-28', 'e732d6966c014538'),
('f1ec00c1b89340ab', 'Difficulty maintaining stable connection in areas with frequent solar flares', '2024-07-18', 'a500498aa3994db7'),
('a212972610a44e88', 'Video quality degrades when using beauty touch-up features', '2024-07-17', '0262b65566654b38'),
('9690ec1da81b4873', 'Poor handling of participants joining from different time zones', '2024-07-04', 'f476ad657d4d4a73'),
('83496909495d4d46', 'Inconsistent performance across different GPU types', '2024-07-17', 'e81490365a9249d9'),
('d5b1d84d9b4b452d', 'Screen sharing causes audio to become distorted', '2024-07-23', '07cf12ab030c4bb5'),
('997234956c644b4f', 'Video freezing issues during online arbitration sessions', '2024-07-23', '83bae2dc281444fb'),
('e0c8c265b4964444', 'Audio delay makes lip-syncing impossible for dubbing sessions', '2024-07-13', '37cda3d8d1604bf5'),
('523cc0f0fe6e4866', 'Video quality insufficient for detailed watch mechanism demonstrations', '2024-07-20', '45a8b181c7d340fe'),
('8b0d6131132a426e', 'Poor performance when using live transcription feature', '2024-07-13', '57415a93d2ce48d8'),
('aba1f2f5b689485b', 'Difficulty maintaining stable connection in concrete buildings', '2024-07-01', 'd1c83066d1b74aa4'),
('025d827491ab4609', 'Screen sharing causes significant frame drops in video playback', '2024-07-11', 'c7e90819045c4639'),
('d2d56ccc876f475e', 'Video stuttering during virtual comic con panels', '2024-07-04', 'e1ad8aed4bba43a4'),
('b95c658681114f82', 'Inconsistent audio quality when using different audio codecs', '2024-07-20', 'a1af9c0f32714b19'),
('11c486b36e7e4713', 'Frequent ''your internet connection is unstable'' warnings in open-plan offices', '2024-07-26', 'ca6f567c21e54b33'),
('0c5901d6edd94064', 'Video quality degrades when using multiple monitors', '2024-07-12', '585b4007d7b14f83'),
('1af84f40fb0049b2', 'Audio cutting out during virtual parliamentary debates', '2024-07-08', '3c40c5ea2de04441'),
('5ae60038dca44b2d', 'Poor handling of echo cancellation in cars', '2024-07-15', 'f975daeed2af4f2c'),
('54eb7bca92494eea', 'Screen sharing resolution insufficient for detailed map analysis', '2024-07-24', 'f1e734e11f88421b'),
('a60212e931324c0e', 'Video lag makes virtual magic show performances unconvincing', '2024-07-30', '0a1d0796a7914ba4'),
('fbe9c828fca54a42', 'Difficulty maintaining stable connection during solar eclipses', '2024-07-15', '28204e4118894105'),
('693ff2c87ea949a8', 'Inconsistent performance when accessing through different CDNs', '2024-07-14', '187f8c16a22c4e3c'),
('e0284ff7476e458d', 'Audio issues when using bone conduction headphones', '2024-07-04', 'f9f0b14092fa4f28'),
('0e66f0e183ca49d4', 'Video freezing during virtual wedding ceremonies', '2024-07-25', '7a65a0a1cf634f44'),
('cfa1f3b877fe4703', 'Difficulty integrating Zoom with our company''s custom CRM software', '2024-07-21', '96199452fb8c4667'),
('72747e88f9ef45eb', 'Incompatibility issues with our Linux-based systems', '2024-07-19', '96bc5bd999a848c6'),
('0347dcdc15704afb', 'Zoom doesn''t work well with our legacy video conferencing hardware', '2024-07-04', '89afd4f06f9e4206'),
('c55b9cbd97694769', 'Poor integration with Microsoft Outlook calendar', '2024-07-20', '1633f4d136bc4a3f'),
('beebaa5b14094455', 'Can''t seamlessly connect Zoom to our project management tool', '2024-07-26', 'caa650dd7ec4415a'),
('179cc073c2814d5f', 'Compatibility problems with our company''s firewall', '2024-07-01', 'f9eda7e51b454074'),
('65dc8cd28fdc49e1', 'Zoom''s API doesn''t support our specific integration needs', '2024-07-12', 'cc2919e5a4714882'),
('fc9f98bc490143b0', 'Issues syncing Zoom meetings with Google Calendar', '2024-07-05', 'f6c199ee131c4b76'),
('6bd3e60c36544633', 'Unable to integrate Zoom with our learning management system', '2024-07-02', '7234b354d73a4baf'),
('f22c3e2ad1114b1d', 'Compatibility problems with our employees'' older devices', '2024-07-20', 'bb7cab43dc6a4c5f'),
('93071053eb7d47f2', 'Zoom doesn''t offer native integration with our preferred file sharing service', '2024-07-29', '38ddd1357038423b'),
('fe6320c4ed7640a9', 'Difficulty setting up Single Sign-On (SSO) with our identity provider', '2024-07-18', 'b9738725f6824607'),
('01cc2e9eb4604f9a', 'Can''t integrate Zoom chat with our team''s Slack workspace', '2024-07-09', 'fe2cb15bdfd24253'),
('8b159c6a6f414546', 'Incompatibility with our company''s VoIP phone system', '2024-07-13', 'f8c090de2e664466'),
('31da58b5c5c54946', 'Zoom''s Salesforce integration doesn''t meet our specific requirements', '2024-07-08', '8526d22ceb4d483b'),
('aac28dc5b423436a', 'Problems connecting Zoom Rooms with our smart office setup', '2024-07-12', '7ea4bebe213d4a5b'),
('177dc3ac765642b5', 'Unable to integrate Zoom with our customer support ticketing system', '2024-07-09', '943d991dc3854e9a'),
('225ed3c44c0e43b7', 'Compatibility issues with our preferred webinar marketing tools', '2024-07-05', '058c02c48d564bf9'),
('04722daeddad4af7', 'Zoom doesn''t work well with our company''s bandwidth limitations', '2024-07-22', '8dce74918ad641dd'),
('a661aeca04b64893', 'Difficulty integrating Zoom analytics with our business intelligence tools', '2024-07-20', '2fa0e128df3545cb'),
('6c78be4119e54e90', 'Can''t seamlessly use Zoom with our virtual event platform', '2024-07-16', '311797e851d54578'),
('7f9f0e6feda04fff', 'Incompatibility with our company''s mobile device management (MDM) solution', '2024-07-20', 'a05824a2c53a4d6d'),
('7174e5a4f6314b0e', 'Zoom doesn''t integrate well with our HR onboarding software', '2024-07-11', '54f3d106fa844e9c'),
('28c0fc2dacde46ce', 'Issues connecting Zoom to our network-attached storage (NAS) for recordings', '2024-07-15', '8f7b4b05f2cd4fa1'),
('bd3128b742da4135', 'Unable to integrate Zoom with our company''s intranet portal', '2024-07-13', '92b1d89b93f74083'),
('e255057d73e04125', 'Compatibility problems with our custom browser extensions', '2024-07-16', '68be5c1ebb2d4974'),
('a8da9a3d4be2461a', 'Zoom''s LTI integration doesn''t work well with our e-learning platform', '2024-07-16', 'e19d82c1ff4b4de3'),
('eadb14a01944405f', 'Difficulty syncing Zoom user accounts with our Active Directory', '2024-07-03', '392cba7d383c4694'),
('3c63614c5f864d6b', 'Can''t integrate Zoom webinars with our marketing automation software', '2024-07-24', '3e76023175bb4bfe'),
('aa432230d52140fc', 'Incompatibility issues with our company''s proxy server', '2024-07-20', '688975b3c2e74c1e'),
('b87f8ee8ca154258', 'Zoom doesn''t offer a native integration with our team''s wiki platform', '2024-07-24', '34c3ce3504b14176'),
('bd3d629b570f4043', 'Problems integrating Zoom with our virtual receptionist software', '2024-07-23', 'f2f5cbc0658243ae'),
('902d9846071543df', 'Unable to connect Zoom to our digital signage system for meeting room displays', '2024-07-26', 'ac885cdb92604f53'),
('3a1280808df844e2', 'Compatibility issues with our company''s antivirus software', '2024-07-28', '2475195348674822'),
('c9e6c902029e42b1', 'Zoom''s API doesn''t allow for the level of customization we need', '2024-07-15', '60828337054b4630'),
('d0197757ee354d49', 'Difficulty integrating Zoom with our employee time tracking software', '2024-07-05', 'd4a104d3a86f486e'),
('a04febd703d9431a', 'Can''t seamlessly use Zoom with our preferred live streaming platform', '2024-07-24', 'ae546395f1504870'),