-
Notifications
You must be signed in to change notification settings - Fork 0
/
csvData.js
1554 lines (1552 loc) · 55.9 KB
/
csvData.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
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
// data source: https://www.cbinsights.com/research-unicorn-companies
var csvData = {
countryCategories: [
[1,'Australia','Collaboration & Project Management'],
[2,'Brazil','Fintech'],
[1,'Canada','Social'],
[1,'China','Adtech'],
[1,'China','AI / Facial Recognition'],
[5,'China','AutoTech'],
[1,'China','Chips & Semiconductors'],
[2,'China','Clothing & Accessories'],
[3.84,'China','Computer Vision/ AI'],
[1,'China','Cybersecurity'],
[11,'China','Digital Media'],
[57.25,'China','eCommerce/Marketplace'],
[5.5,'China','Ed Tech'],
[1,'China','Facilities'],
[22.56,'China','Fintech'],
[2.8,'China','Food & Grocery'],
[63.58,'China','Hardware'],
[7.5,'China','Healthcare'],
[1,'China','HR & Workforce Management'],
[1.51,'China','Internet Software & Services'],
[5 ,'China','Internet Software & Services'],
[1,'China','Mobile Software & Services'],
[69.1,'China','On-Demand'],
[4.1,'China','Real Estate'],
[5.7,'China','Retail'],
[1,'China','Robotics'],
[5,'China','Social'],
[1,'China','Supplychain/ logistics'],
[1.15,'Colombia','Business Products & Services'],
[1,'Czech Republic','Cybersecurity'],
[1.1,'France','Big Data'],
[1.6,'France','On-Demand'],
[3.54,'Germany','eCommerce/Marketplace'],
[5.15,'Germany','Healthcare'],
[2.2,'Germany','Management & Strategy Consulting'],
[1,'India','Adtech'],
[20.7,'India','eCommerce/Marketplace'],
[2,'India','Energy & Utilities'],
[5.7,'India','Fintech'],
[3.65,'India','On-demand'],
[2.4,'India','Social'],
[1.8,'Indonesia','On-Demand'],
[2,'Indonesia','TravelTech'],
[1,'Israel','Consumer Electronics'],
[1.6,'Israel','Hardware'],
[1.5,'Israel','Mobile Software & Services'],
[1,'Japan','eCommerce/Marketplace'],
[1.1,'Luxembourg','eCommerce/Marketplace'],
[2.5,'Malta','On-demand'],
[1,'Netherlands','eCommerce/Marketplace'],
[2.3,'Netherlands','Fintech'],
[1.04,'Nigeria','eCommerce/Marketplace'],
[6,'Singapore','On-Demand'],
[1.58,'South Africa','Food and Beverage'],
[1,'South Africa','Telecommunications'],
[1.78,'South Korea','Beauty & grooming'],
[5,'South Korea','eCommerce/Marketplace'],
[4,'South Korea','Mobile Software & Services'],
[2.5,'Sweden','Fintech'],
[8.53,'Sweden','Internet Software & Services'],
[1.01,'Switzerland','Fintech'],
[1,'Switzerland','VR/AR'],
[1.2,'United Arab Emirates','On Demand'],
[1,'United Kingdom','AR/VR'],
[6.02,'United Kingdom','Computer Hardware & Services'],
[4.75,'United Kingdom','eCommerce/Marketplace'],
[6.8,'United Kingdom','Fintech'],
[1.15,'United Kingdom','Food & Beverages'],
[2.55,'United Kingdom','Healthcare'],
[1.07,'United Kingdom','Internet Software & Services'],
[2,'United Kingdom','On-demand'],
[1,'United States','3D Printing'],
[2.6,'United States','Adtech'],
[3.14,'United States','Auto Tech'],
[31.9,'United States','Big Data'],
[2.4,'United States','Biotechnology'],
[1,'United States','Cannabis'],
[1,'United States','Cleantech'],
[2,'United States','Clothing & Accessories'],
[2,'United States','Construction Tech'],
[10.92,'United States','Cybsersecurity'],
[1.19,'United States','Digital Health'],
[1,'United States','Digital Media'],
[46.4,'United States','eCommerce/Marketplace'],
[1,'United States','Ed Tech'],
[1.5,'United States','Entertainment'],
[20,'United States','Facilities'],
[38.69,'United States','Fintech'],
[1.3,'United States','Fitness'],
[1.4,'United States','Food Delivery'],
[2.6,'United States','Gaming'],
[2.46,'United States','Genomics'],
[2.7,'United States','Greentech'],
[1.7,'United States','Hardware'],
[24,'United States','Healthcare'],
[56.3,'United States','Internet Software & Services'],
[1.4,'United States','IoT'],
[8.4,'United States','Media'],
[83.7,'United States','On-Demand'],
[21.5,'United States','Other Transportation'],
[3.2,'United States','Real Estate'],
[1.1,'United States','Robotic Process Automation'],
[16.7,'United States','Social'],
[1,'United States','SpaceTech'],
[1.5,'United States','TravelTech'],
[4.98,'United States','VR/AR']
],
data: { Australia:
[ { name: 'Canva',
val: '1.00',
date: '1/8/18',
country: 'Australia',
category: 'Collaboration & Project Management',
investors: '"Sequoia Capital China, Blackbird Ventures, Matrix Partners"' } ],
Brazil:
[ { name: 'Nubank',
val: '2.00',
date: '3/1/18',
country: 'Brazil',
category: 'Fintech',
investors: '"Sequoia Capital, Redpoint e.ventures, Kaszek Ventures"' } ],
Canada:
[ { name: 'Kik Interactive',
val: '1.00',
date: '8/18/15',
country: 'Canada',
category: 'Social',
investors: '"Union Square Ventures, RRE Ventures, Spark Capital"' } ],
China:
[ { name: 'Panshi',
val: '1.00',
date: '5/5/15',
country: 'China',
category: 'Adtech',
investors: '"WI Harper Group, Fang Fund Partners, NewMarging Ventures"' },
{ name: 'Face++ (Megvii)',
val: '1.00',
date: '10/31/17',
country: 'China',
category: 'AI / Facial Recognition',
investors: '"Ant Financial Services Group, Russia-China Investment Fund, Foxconn Technology Company"' },
{ name: 'NIO',
val: '5.00',
date: '3/15/17',
country: 'China',
category: 'AutoTech',
investors: '"Baidu Venture Capital, Capital Today, GIC"' },
{ name: 'Cambricon',
val: '1.00',
date: '8/18/17',
country: 'China',
category: 'Chips & Semiconductors',
investors: '"Alibaba Entrepreneurs Fund, CAS Investment Management Co., Lenovo Ventures Group"' },
{ name: 'Trendy Group International',
val: '2.00',
date: '2/13/12',
country: 'China',
category: 'Clothing & Accessories',
investors: 'L Capital Partners' },
{ name: 'YITU Technology',
val: '2.37',
date: '3/8/18',
country: 'China',
category: 'Computer Vision',
investors: '"Sequoia Capital China, Banyan Capital"' },
{ name: 'SenseTime',
val: '1.47',
date: '7/11/17',
country: 'China',
category: 'Computer Vision/ AI',
investors: '"Star VC, IDG Capital, Infore Capital"' },
{ name: 'Tongdun Technology',
val: '1.00',
date: '10/10/17',
country: 'China',
category: 'Cybersecurity',
investors: '"Advantech Capital, Temasek Holdings Ltd., Tiantu Capital Co."' },
{ name: 'Toutiao',
val: '11.00',
date: '4/7/17',
country: 'China',
category: 'Digital Media',
investors: '"Sequoia Capital China, SIG Asia Investments, Sina Weibo"' },
{ name: 'Pindouduo',
val: '1.50',
date: '7/20/16',
country: 'China',
category: 'eCommerce',
investors: '"Tencent Holdings, Banyan Capital, Cathay Innovation"' },
{ name: 'Dada',
val: '1.00',
date: '12/31/15',
country: 'China',
category: 'eCommerce',
investors: '"Sequoia Capital China, DST, Greenwoods Asset Management"' },
{ name: 'China Internet Plus Holding (Meituan Dianping)',
val: '30.00',
date: '12/22/15',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"DST Global, Trustbridge Partners, Capital Today"' },
{ name: 'Lianjia',
val: '5.80',
date: '4/8/16',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"Tencent, Baidu, Huasheng Capital"' },
{ name: 'Maoyan-Weiying',
val: '3.00',
date: '11/10/17',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"Tencent Holdings, Enlight Media Group"' },
{ name: 'VANCL',
val: '3.00',
date: '12/14/10',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"Ceyuan Ventures, QiMing Venture Partners, Temasek Holdings"' },
{ name: 'Weiying',
val: '2.00',
date: '11/17/15',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"Tencent, iDreamSky Technology, GGV Capital"' },
{ name: 'Tujia',
val: '1.50',
date: '6/17/15',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"GGV Capital, QiMing Venture Partnersl"' },
{ name: 'Koudai Gouwu',
val: '1.40',
date: '10/23/14',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"New Enterprise Associates, Tiger Global management, Tencent"' },
{ name: 'Jiuxian',
val: '1.05',
date: '7/30/15',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"Sequoia Capital China, Rich Land Capital, Merrysunny Wealth"' },
{ name: 'Fanli',
val: '1.00',
date: '4/20/15',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"QiMing Venture Partners, Steam boat Ventures"' },
{ name: 'BeiBei',
val: '1.00',
date: '1/22/15',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"Banyan Capital, New Horizon Capital, IDG Capital Partners"' },
{ name: 'Zhaogang',
val: '1.00',
date: '6/29/17',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"K2 Ventures, Matrix Partners China, IDG Capital"' },
{ name: 'Mia.com',
val: '1.00',
date: '9/8/15',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"Sequoia Capital China, ZhenFund, K2 Ventures"' },
{ name: 'Xiaohongshu',
val: '1.00',
date: '3/31/16',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"GGV Capital, ZhenFund, Tencent"' },
{ name: 'Guazi',
val: '1.00',
date: '3/12/16',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"Sequoia Capital China, GX Capital"' },
{ name: 'XiaoZhu',
val: '1.00',
date: '11/1/17',
country: 'China',
category: 'eCommerce/Marketplace',
investors: '"Morningside Ventures, Capital Today, JOY Capital"' },
{ name: 'iTutorGroup',
val: '1.00',
date: '11/18/15',
country: 'China',
category: 'Ed Tech',
investors: '"QiMing Venture Partners, Temasek Holdings, Silverlink Capital"' },
{ name: 'Vipkid',
val: '1.50',
date: '8/23/17',
country: 'China',
category: 'Edtech',
investors: '"Sequoia Capital China, Tencent Holdings, Sinovation Ventures"' },
{ name: 'Yuanfudao',
val: '1.00',
date: '5/31/17',
country: 'China',
category: 'Edtech',
investors: '"Tencent Holdings, Warbug Pincus, IDG Capital"' },
{ name: 'HuJiang',
val: '1.00',
date: '10/29/15',
country: 'China',
category: 'Edtech',
investors: '"China Minsheng Investment, Baidu, Wanxin Media"' },
{ name: '17zuoye',
val: '1.00',
date: '3/7/18',
country: 'China',
category: 'EdTech',
investors: '"DST Global, Temasek Holdings"' },
{ name: 'Mofang Gongyu',
val: '1.00',
date: '4/13/16',
country: 'China',
category: 'Facilities',
investors: '"Warburg Pincus, Aviation Industry Corporation of China"' },
{ name: 'Lu.com',
val: '18.50',
date: '12/26/14',
country: 'China',
category: 'Fintech',
investors: '"Ping An Insurance CDH Investments, Bank of China"' },
{ name: 'LaKala',
val: '1.60',
date: '6/23/15',
country: 'China',
category: 'Fintech',
investors: '"China Continent Property & Casualty Insurance, China Renaissance Capital Investment, China Taiping Life Insurance"' },
{ name: 'Tuandaiwang',
val: '1.46',
date: '5/30/17',
country: 'China',
category: 'Fintech',
investors: '"Beihai Hongtai Investment, China Minsheng Investment, Yisheng Innovation"' },
{ name: '51Xinyongka',
val: '1.00',
date: '9/21/16',
country: 'China',
category: 'Fintech',
investors: '"GGV Capital, JD.com, Meridian Capital China"' },
{ name: 'Meicai',
val: '2.80',
date: '1/11/18',
country: 'China',
category: 'Food & Grocery',
investors: '"Tiger Global Management, Blue Lake Capital, ZhenFund"' },
{ name: 'Xiaomi',
val: '46.00',
date: '12/21/11',
country: 'China',
category: 'Hardware',
investors: '"Digital Sky Technologies, QiMing Venture Partners, Qualcomm Ventures"' },
{ name: 'DJI Innovations',
val: '10.00',
date: '5/6/15',
country: 'China',
category: 'Hardware',
investors: '"Accel Partners, Sequoia Capital"' },
{ name: 'Meizu Technology',
val: '4.58',
date: '7/23/14',
country: 'China',
category: 'Hardware',
investors: '"Telling Telecommunication Holding Co., Alibaba Group"' },
{ name: 'Royole Corporation',
val: '3.00',
date: '11/4/16',
country: 'China',
category: 'Hardware',
investors: '"Warmsun Holding, IDG Capital Partners"' },
{ name: 'United Imaging Healthcare',
val: '5.00',
date: '9/14/17',
country: 'China',
category: 'Healthcare',
investors: '"China Life Insurance, China Development Bank Capital, CITIC Securities International"' },
{ name: 'GuaHao',
val: '1.50',
date: '9/22/15',
country: 'China',
category: 'Healthcare',
investors: '"Tencent, Morningside Group"' },
{ name: 'iCarbonX',
val: '1.00',
date: '4/12/16',
country: 'China',
category: 'Healthcare',
investors: '"Tencent, Vcanbio"' },
{ name: 'Liepin',
val: '1.00',
date: '6/28/16',
country: 'China',
category: 'HR & Workforce Management',
investors: '"China Mobile, Matrix Partners China, Warbug Pincus"' },
{ name: 'DouyuTV',
val: '1.51',
date: '11/20/17',
country: 'China',
category: 'Internet Software & Services',
investors: '"CMB International Capital, Nanshan Capital, Tencent Holdings"' },
{ name: 'NetEase Cloud Music',
val: '1.16',
date: '4/11/17',
country: 'China',
category: 'Internet Software & Services',
investors: '"China International Capital Corporation, Hunan TV & Broadcast Intermediary, Shanghai Media Group"' },
{ name: 'Dt Dream',
val: '1.00',
date: '6/8/17',
country: 'China',
category: 'Internet Software & Services',
investors: '"Alibaba Group, China Everbright Investment Management, Yinxinggu Capital"' },
{ name: 'Zhihu',
val: '1.00',
date: '1/12/17',
country: 'China',
category: 'Internet Software & Services',
investors: '"Tencent Holdings, Sinovation Ventures, Qiming Venture Partners"' },
{ name: 'Apus Group',
val: '1.00',
date: '1/16/15',
country: 'China',
category: 'Mobile Software & Services',
investors: '"Redpoint Ventures, QiMing Venture Partners, Chengwei Capital"' },
{ name: 'CAOCAO',
val: '1.60',
date: '1/17/18',
country: 'China',
category: 'On Demand',
investors: '"People Electrical Appliance Group China, Zhongrong International Trust"' },
{ name: 'Ofo',
val: '1.00',
date: '3/1/17',
country: 'China',
category: 'On Demand',
investors: '"GSR Ventures, Matrix Partners China, Didi Chuxing"' },
{ name: 'Didi Chuxing',
val: '56.00',
date: '12/31/14',
country: 'China',
category: 'On-Demand',
investors: '"Matrix Partners, Tiger Global Management, Softbank Corp., "' },
{ name: 'Ele.me',
val: '5.50',
date: '8/28/15',
country: 'China',
category: 'On-Demand',
investors: '"Sequoia Capital China, Alibaba Group, Horizons Ventures"' },
{ name: 'Mobike',
val: '3.00',
date: '6/16/17',
country: 'China',
category: 'On-Demand',
investors: '"Tencent Holdings, Sequoia Capital China, TPG Capital"' },
{ name: 'Huimin',
val: '2.00',
date: '9/5/16',
country: 'China',
category: 'On-Demand',
investors: '"Zheshang Venture Capital, GP Capital, Western Capital Management"' },
{ name: 'e-shang Redwood',
val: '2.80',
date: '7/26/17',
country: 'China',
category: 'Real Estate',
investors: '"SK Group, GF Investments, China Minsheng Banking Corp."' },
{ name: 'URWork',
val: '1.30',
date: '1/18/17',
country: 'China',
category: 'Real Estate',
investors: '"Ant Financial Services Group, Dahong Group, Sequoia Capital China"' },
{ name: 'EasyHome',
val: '5.70',
date: '2/12/18',
country: 'China',
category: 'Retail',
investors: '"Alibaba Group, Boyu Capital, Borui Capital"' },
{ name: 'UBTECH Robotics',
val: '1.00',
date: '7/26/16',
country: 'China',
category: 'Robotics',
investors: '"CDH Investments, Goldstone Investments, Qiming Venture Partners"' },
{ name: 'Kuaishou',
val: '3.00',
date: '1/1/15',
country: 'China',
category: 'Social',
investors: '"Morningside Venture Capital, Sequoia Capital, Baidu"' },
{ name: 'Yixia',
val: '1.00',
date: '11/24/15',
country: 'China',
category: 'Social',
investors: '"Sequoia Capital China, Sina Weibo, Kleiner Perkins Caufield & Byers, Redpoint Ventures"' },
{ name: 'Mogujie',
val: '1.00',
date: '6/6/14',
country: 'China',
category: 'Social',
investors: '"IDG Capital Partners, QiMing Venture Partners, Banyan Capital"' },
{ name: 'YH Global',
val: '1.00',
date: '9/21/17',
country: 'China',
category: 'Supplychain/ logistics',
investors: '"Co-Energy Finance, Grandland"' } ],
Colombia:
[ { name: 'LIfeMiles',
val: '1.15',
date: '7/13/15',
country: 'Colombia',
category: 'Business Products & Services',
investors: 'Advent International' } ],
'Czech Republic':
[ { name: 'AVAST Software',
val: '1.00',
date: '2/5/14',
country: 'Czech Republic',
category: 'Cybersecurity',
investors: '"Summit Partners, CVC Capital Partners"' } ],
France:
[ { name: 'OVH',
val: '1.10',
date: '7/3/15',
country: 'France',
category: 'Big Data',
investors: '"Kohlberg Kravis Roberts & Co., TowerBrook Capital Partners"' },
{ name: 'BlaBlaCar',
val: '1.60',
date: '9/16/15',
country: 'France',
category: 'On-Demand',
investors: '"Accel Partners, Index Ventures, Insight Venture Partners"' } ],
Germany:
[ { name: 'Auto1 Group',
val: '3.54',
date: '8/3/15',
country: 'Germany',
category: 'eCommerce/Marketplace',
investors: '"Digital Sky Technologies, Piton Capital, DN Capital, SoftBank Group"' },
{ name: 'Otto Bock HealthCare',
val: '3.50',
date: '6/24/17',
country: 'Germany',
category: 'Healthcare',
investors: 'EQT Partners' },
{ name: 'CureVac',
val: '1.65',
date: '3/5/15',
country: 'Germany',
category: 'Healthcare',
investors: '"Northview Ventures, dievini Hopp BioTech Holding & Co.m Baillie Gifford & Co."' },
{ name: 'NuCom Group',
val: '2.20',
date: '2/22/18',
country: 'Germany',
category: 'Management & Strategy Consulting',
investors: 'General Atlantic' } ],
India:
[ { name: 'InMobi',
val: '1.00',
date: '12/2/14',
country: 'India',
category: 'Adtech',
investors: '"Kleiner Perkins Caufield & Byers, Softbank Corp., Sherpalo Ventures"' },
{ name: 'Flipkart',
val: '11.60',
date: '8/6/12',
country: 'India',
category: 'eCommerce/Marketplace',
investors: '"Accel Partners, SoftBank Group, Iconiq Capital"' },
{ name: 'Snapdeal',
val: '7.00',
date: '5/21/14',
country: 'India',
category: 'eCommerce/Marketplace',
investors: '"SoftBankGroup, Blackrock, Alibaba Group"' },
{ name: 'Shopclues',
val: '1.10',
date: '1/12/16',
country: 'India',
category: 'eCommerce/Marketplace',
investors: '"Nexus Venture Partners, GIC Special Investments, Tiger Global Management"' },
{ name: 'Quikr',
val: '1.00',
date: '4/7/15',
country: 'India',
category: 'eCommerce/Marketplace',
investors: '"Brand Capital, Tiger Global Management, Kinnevik"' },
{ name: 'ReNew Power Ventures',
val: '2.00',
date: '2/14/17',
country: 'India',
category: 'Energy & Utilities',
investors: '"Goldman Sachs, JERA, Asian Development Bank"' },
{ name: 'One97 Communications (operates Paytm)',
val: '5.70',
date: '5/12/15',
country: 'India',
category: 'Fintech',
investors: '"Intel Capital, Sapphire Ventures, Alibaba Group"' },
{ name: 'Olacabs',
val: '3.65',
date: '10/27/14',
country: 'India',
category: 'On-demand',
investors: '"Accel Partners, SoftBank Group, Sequoia Capital"' },
{ name: 'Hike',
val: '1.40',
date: '8/16/16',
country: 'India',
category: 'Social',
investors: '"Foxconn, Tiger Global management, Tencent"' },
{ name: 'Zomato Media',
val: '1.00',
date: '4/10/15',
country: 'India',
category: 'Social',
investors: '"Sequoia Capital, VY Capital"' } ],
Indonesia:
[ { name: 'Go-Jek',
val: '1.80',
date: '8/4/16',
country: 'Indonesia',
category: 'On-Demand',
investors: '"Formation Group, Sequoia Capital India, Warburg Pincus"' },
{ name: 'Traveloka',
val: '2.00',
date: '7/28/17',
country: 'Indonesia',
category: 'TravelTech',
investors: '"Global Founders Capital, East Ventures, Expedia Inc."' } ],
Israel:
[ { name: 'OrCam Technologies',
val: '1.00',
date: '2/21/18',
country: 'Israel',
category: 'Consumer Electronics',
investors: '"Intel Capital, Aviv Venture Capital"' },
{ name: 'Infinidat',
val: '1.60',
date: '4/29/15',
country: 'Israel',
category: 'Hardware',
investors: '"TPG Growth, Goldman Sachs"' },
{ name: 'ironSource',
val: '1.50',
date: '8/11/14',
country: 'Israel',
category: 'Mobile Software & Services',
investors: '"Access Industries, Clal Industries and Investments"' } ],
Japan:
[ { name: 'Mercari',
val: '1.00',
date: '3/2/16',
country: 'Japan',
category: 'eCommerce/Marketplace',
investors: '"East Ventures, Global Brain Corporation, ITOCHU Technology Ventures"' } ],
Luxembourg:
[ { name: 'Global Fashion Group',
val: '1.10',
date: '4/8/15',
country: 'Luxembourg',
category: 'eCommerce/Marketplace',
investors: '"Access Industries, Rocket Internet, Tengelmann Ventures"' } ],
Malta:
[ { name: 'VistaJet',
val: '2.50',
date: '8/23/17',
country: 'Malta',
category: 'On-demand',
investors: 'Rhone Capital' } ],
Netherlands:
[ { name: 'letgo',
val: '1.00',
date: '9/28/17',
country: 'Netherlands',
category: 'eCommerce/Marketplace',
investors: '"Accel Partners, FJ Labs, Insight Venture Partners"' },
{ name: 'Adyen',
val: '2.30',
date: '12/16/14',
country: 'Netherlands',
category: 'Fintech',
investors: '"Felicis Ventures, Index Ventures, Temasek Holdings"' } ],
Nigeria:
[ { name: 'Africa Internet Group',
val: '1.04',
date: '2/8/16',
country: 'Nigeria',
category: 'eCommerce/Marketplace',
investors: 'AXA' } ],
Singapore:
[ { name: 'GrabTaxi',
val: '6.00',
date: '12/4/14',
country: 'Singapore',
category: 'On-Demand',
investors: '"GGV Capital, Vertex Venture Holdings, Softbank Group"' } ],
'South Africa':
[ { name: 'Promasidor Holdings',
val: '1.58',
date: '11/8/16',
country: 'South Africa',
category: 'Food and Beverage',
investors: '"IFC, Ajinomoto"' },
{ name: 'Cell C',
val: '1.00',
date: '8/8/17',
country: 'South Africa',
category: 'Telecommunications',
investors: '"Blue Label Telecoms, Net1 UEPS Technologies"' } ],
'South Korea':
[ { name: 'L&P Cosmetic',
val: '1.78',
date: '4/28/17',
country: 'South Korea',
category: 'Beauty & grooming',
investors: 'CDIB Capital' },
{ name: 'Coupang',
val: '5.00',
date: '5/28/14',
country: 'South Korea',
category: 'eCommerce/Marketplace',
investors: '"Sequoia Capital, Founder Collective, Wellington Management"' },
{ name: 'Yello Mobile',
val: '4.00',
date: '11/11/14',
country: 'South Korea',
category: 'Mobile Software & Services',
investors: 'Formation 8' } ],
Sweden:
[ { name: 'Klarna',
val: '2.50',
date: '12/12/11',
country: 'Sweden',
category: 'Fintech',
investors: '"Institutional Venture Partners, Sequoia Capital, General Atlantic"' },
{ name: 'Spotify',
val: '8.53',
date: '6/17/11',
country: 'Sweden',
category: 'Internet Software & Services',
investors: '"Horizons Ventures, Norwest Venture Partners, Technology Crossover Ventures"' } ],
Switzerland:
[ { name: 'Avaloq Group',
val: '1.01',
date: '3/22/17',
country: 'Switzerland',
category: 'Fintech',
investors: 'Warbug Pincus' },
{ name: 'MindMaze',
val: '1.00',
date: '2/17/16',
country: 'Switzerland',
category: 'VR/AR',
investors: 'Hinduja Group' } ],
'United Arab Emirates':
[ { name: 'Careem Networks',
val: '1.20',
date: '12/18/16',
country: 'United Arab Emirates',
category: 'On Demand',
investors: '"STC Ventures, Al Tayyar Travel Group, Wamda Capital"' } ],
'United Kingdom':
[ { name: 'Improbable',
val: '1.00',
date: '5/12/17',
country: 'United Kingdom',
category: 'AR/VR',
investors: '"Andreessen Horowitz, SoftBank Group, Temasek Holdings"' },
{ name: 'Global Switch',
val: '6.02',
date: '12/22/16',
country: 'United Kingdom',
category: 'Computer Hardware & Services',
investors: '"Aviation Industry Corporation of China, Essence Financial, Jiangsu Sha Steel Group"' },
{ name: 'The Hut Group',
val: '3.25',
date: '8/13/17',
country: 'United Kingdom',
category: 'eCommerce',
investors: '"Kohlberg Kravis Roberts & Co., Old Mutual Global Investors, Artemis Investment Management"' },
{ name: 'Farfetch',
val: '1.50',
date: '3/4/15',
country: 'United Kingdom',
category: 'eCommerce/Marketplace',
investors: '"Advent Venture Partners, Index Ventures, e.ventures"' },
{ name: 'BGL Group',
val: '3.00',
date: '11/24/17',
country: 'United Kingdom',
category: 'Fintech',
investors: 'CPP Investment Board' },
{ name: 'TransferWise',
val: '1.60',
date: '1/26/15',
country: 'United Kingdom',
category: 'Fintech',
investors: '"IA Ventures, Index Ventures, SV Angel"' },
{ name: 'ACORN OakNorth',
val: '1.20',
date: '10/12/17',
country: 'United Kingdom',
category: 'Fintech',
investors: '"Clermont Group, Coltrane Asset Management, Toscafund Asset Management"' },
{ name: 'Funding Circle',
val: '1.00',
date: '4/23/15',
country: 'United Kingdom',
category: 'Fintech',
investors: '"Accel Partners, Index Ventures, Ribbit Capital"' },
{ name: 'BrewDog',
val: '1.15',
date: '4/10/17',
country: 'United Kingdom',
category: 'Food & Beverages',
investors: '"TSG Consumer Partners, Crowdcube"' },
{ name: 'Oxford Nanopore Technologies',
val: '1.55',
date: '7/21/15',
country: 'United Kingdom',
category: 'Healthcare',
investors: '"Illumina, Invesco Perpetual, IP Group"' },
{ name: 'benevolent.ai',
val: '1.00',
date: '6/2/15',
country: 'United Kingdom',
category: 'Healthcare',
investors: 'Woodford Investment Management' },
{ name: 'Radius Payments Solutions',
val: '1.07',
date: '11/27/17',
country: 'United Kingdom',
category: 'Internet Software & Services',
investors: 'Inflexion Private Equity' },
{ name: 'Deliveroo',
val: '2.00',
date: '9/25/17',
country: 'United Kingdom',
category: 'On-demand',
investors: '"Accel Partners, General Catalyst, Index Ventures"' } ],
'United States':
[ { name: 'Desktop Metal',
val: '1.00',
date: '7/17/17',
country: 'United States',
category: '3D Printing',
investors: '"Australian Future Fund, GE Ventures, Data Collective"' },
{ name: 'AppLovin',
val: '1.40',
date: '1/1/17',
country: 'United States',
category: 'Adtech',
investors: '"Orient Hontai Capital, Webb Investment Network"' },
{ name: 'Appnexus',
val: '1.20',
date: '8/18/14',
country: 'United States',
category: 'Adtech',
investors: '"Khosla Ventures, Technology Crossover Ventures, Tribeca Venture Partners"' },
{ name: 'Quanergy Systems',
val: '1.59',
date: '8/24/16',
country: 'United States',
category: 'Auto Tech',
investors: '"Delphi Automotive, Samsung Ventures, Motus Ventures"' },
{ name: 'Zoox',
val: '1.55',
date: '5/27/16',
country: 'United States',
category: 'Auto Tech',
investors: '"AID Partners, Draper Fisher Jurvetson"' },
{ name: 'Palantir Technologies',
val: '20.00',
date: '5/5/11',
country: 'United States',
category: 'Big Data',
investors: '"RRE Ventures, Founders Fund, In-Q-Tel"' },
{ name: 'Qualtrics',
val: '2.50',
date: '9/24/14',
country: 'United States',
category: 'Big Data',
investors: '"Accel Partners, Insight Venture Partners, Sequoia Capital"' },
{ name: 'Uptake',
val: '2.30',
date: '10/27/15',
country: 'United States',
category: 'Big Data',
investors: '"Revolution, New Enterprise Associates, Caterpillar"' },
{ name: 'Domo Technologies',
val: '2.00',
date: '4/8/15',
country: 'United States',
category: 'Big Data',
investors: '"Institutional Venture Partners, Benchmark Capital, Founders Fund"' },
{ name: 'Insidesales.com',
val: '1.50',
date: '4/28/14',
country: 'United States',
category: 'Big Data',
investors: '"Microsoft Ventures, US Venture Partners, Kleiner Perkins Caufield & Byers"' },
{ name: 'Mu Sigma',
val: '1.50',
date: '2/7/13',
country: 'United States',
category: 'Big Data',
investors: '"Sequoia Capital, General Atlantic"' },
{ name: 'Actifio',
val: '1.10',
date: '3/24/14',
country: 'United States',
category: 'Big Data',
investors: '"Greylock Partners, North Bridge Venture Partners, Technology Crossover Ventures"' },
{ name: 'MarkLogic',
val: '1.00',
date: '5/12/15',
country: 'United States',
category: 'Big Data',
investors: '"Sequoia Capital, Tenaya Capital, Northgate Capital"' },
{ name: 'Indigo Agriculture',
val: '1.40',
date: '9/26/17',
country: 'United States',
category: 'Biotech',
investors: '"Activant Capital Group, Alaska Permanent Fund, Baillie Gifford & Co."' },
{ name: 'Ginkgo BioWorks',
val: '1.00',
date: '12/14/17',
country: 'United States',
category: 'Biotechnology',
investors: '"Y Combinator, Data Collective, MassVentures"' },
{ name: 'MedMen',
val: '1.00',
date: '2/6/18',
country: 'United States',
category: 'Cannabis',
investors: '"Captor Capital, N Squared Management"' },
{ name: 'Rubicon Global',
val: '1.00',
date: '8/25/17',
country: 'United States',
category: 'Cleantech',
investors: '"Goldman Sachs, Leonardo DiCaprio, Promecap"' },
{ name: 'Kendra Scott Jewelry',
val: '1.00',
date: '12/21/16',
country: 'United States',
category: 'Clothing & Accessories',
investors: '"Berkshire Partners, Norwest Venture Partners"' },
{ name: 'Supreme',
val: '1.00',
date: '10/9/17',
country: 'United States',
category: 'Clothing & Accessories',
investors: 'The Carlyle Group' },
{ name: 'Katerra',
val: '1.00',
date: '4/13/17',
country: 'United States',
category: 'Construction Tech',
investors: '"Foxconn Technology Company, Khosla Ventures, Moore Capital Management"' },
{ name: 'Procore Technologies',
val: '1.00',
date: '12/8/16',
country: 'United States',
category: 'Construction Tech',
investors: '"Bessemer Venture Partners, O\'Connor Ventures, Iconiq Capital"' },
{ name: 'Tanium',
val: '3.75',
date: '3/31/15',
country: 'United States',
category: 'Cybersecurity',
investors: '"Andreessen Horowitz, Nor-Cal Invest, TPG Growth"' },
{ name: 'CloudFlare',
val: '1.00',
date: '12/1/12',
country: 'United States',
category: 'Cybersecurity',
investors: '"New Enterprise Associates, Pelion Venture Partners, Union Square Ventures"' },
{ name: 'Lookout',
val: '1.00',
date: '8/13/14',
country: 'United States',
category: 'Cybersecurity',
investors: '"Accel Partners, Greylock Partners, Lowercase Capital"' },
{ name: 'Illumio',