-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.csv
We can't make this file beautiful and searchable because it's too large.
1019 lines (1019 loc) · 807 KB
/
data.csv
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
id,title,location,sub_category,avatar,description,details,provider,distance,ages,price,campus,camp_type,topics,category,relevance,affordability
0,KidzToPros,Multiple Locations,Hip Hop Online Course Free Activities,https://images.activityhero.com/provider_photo/145594/tile/c45b1cae-48bc-496a-bf7c-c00a6aaea2aa.jpg,"From coding in scratch and python to LEGO Masters, graphic design, art skills, sports and more, KidzToPros takes fun and enrichment to the next level! Our…read more >",https://www.activityhero.com/biz/kidztopros,https://images.activityhero.com/59989/crop/bfc8ad6c-a2f5-48fd-b5e0-bdbbea11be47.png,7,"5, 17",140,m,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Computer Science,59.33,69.99
1,Petits Pas,Multiple Locations,Crafts Dance Yoga,https://images.activityhero.com/provider_photo/105608/tile/483c5dbb-f1b9-4220-be70-51c9d72af2f1.jpg,"By combining a variety of classes (Yoga, Ballet, Barre au sol & Modern jazz), Petits Pas celebrates our senses and teaches us to express ourselves through…read more >",https://www.activityhero.com/biz/petits-pas,https://images.activityhero.com/58965/crop/3998e0d4-85e2-4018-bd86-86747e6ff3b4.png,12.9,"5, 17",0,f,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,88.07,94.98
2,Crissy Field Center Summer Camp,"Crissy Field Center - San Francisco, CA",Nature Programs Backpacking Adventure/Outdoors,https://images.activityhero.com/provider_photo/141838/tile/338673f0-3944-4deb-afb0-6d493bfb4426.JPG,"About Crissy Field CenterThe Crissy Field Center’s mission is to encourage new generations to become bold leaders for thriving parks, healthy communities,…read more >",https://www.activityhero.com/biz/2575-crissy-field-center-summer-camp-san-francisco-ca,https://images.activityhero.com/2179/crop/de986391-d511-4d13-8488-0906c029cf89.gif,23.9,",18",100,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,86.96,43.99
3,Early Childhood Matters,Multiple Locations,Family Mindfulness Preschool,https://images.activityhero.com/provider_photo/93766/tile/0c6e86b1-993e-4110-89d9-6fb36f0a8b15.jpg,Supporting Families on the Road to Connected and Effective ParentingEarly Childhood Matters focuses on the early years (0-5) where the most crucial brain…read more >,https://www.activityhero.com/biz/early-childhood-matters,https://images.activityhero.com/57089/crop/9894cba6-28ae-4a9e-a04d-ed14005c0d05.jpg,24.6,"5,18",45,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,32,44.13
4,Art School of SF Bay,Multiple Locations,Cartooning Visual Arts Drawing and Painting,https://images.activityhero.com/provider_photo/112974/tile/38a9ea2d-5ec0-4ba3-b6fc-25d445402224.JPG,"We teach classical art - in a modern way. Our classes are fun and effective, our methods creative and our students’ results are spectacular!We teach our…read more >",https://www.activityhero.com/biz/art-school-of-sf-bay,https://images.activityhero.com/10531/crop/1505266_502789629835885_1383645892_n.jpg,25,"5, 17",110,"m,f",STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,92.51,79.88
5,Quantum Martial Arts,Multiple Locations,Tumbling Martial Arts Sports,https://images.activityhero.com/provider_photo/101551/tile/d4a69829-8ffc-49bf-b3b0-40eb0771d065.jpg,Quantum Martial Arts is a nonprofit community dojo in the heart of San Francisco's Mission District. We teach non-competitive Tae Kwon Do to our kids…read more >,https://www.activityhero.com/biz/quantum-martial-arts,https://images.activityhero.com/59627/crop/a3b9a02c-3b11-4aa6-988b-c93a194db5d7.png,27.2,",18",320,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,58.05,81.62
6,Geary Dance Center,Multiple Locations,Dance Jazz Performing Arts,https://images.activityhero.com/provider_photo/96357/tile/498bc0e3-a4f5-424a-a023-73e4c9afb6a4.jpg,"Welcome to Geary Dance Center, the San Francisco Richmond District's newest center for dance excellence! We offer a wide variety of dance classes for…read more >",https://www.activityhero.com/biz/geary-dance-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"12,19",540,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,41.24,99.59
7,It's Yoga Kids,Multiple Locations,Online Course Fitness Yoga,https://images.activityhero.com/provider_photo/95949/tile/bffefba9-dd87-4417-9e55-6d9308f214e4.jpg,Yoga matters NOW more than ever! Be YOUR Best with evidence-based mindset and movement practices that build healthy sustainable habits for happy…read more >,https://www.activityhero.com/biz/1058-it-s-yoga-kids-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"5,18",2999,"m,f",STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Computer Science,92.11,50.34
8,San Francisco Botanical Garden,"SF Botanical Garden - San Francisco, CA",Preschool Nature Programs Play/Outdoor,https://images.activityhero.com/provider_photo/139816/tile/8341c7e3-d96b-4802-9618-3ba2a93a9eab.jpg,Garden Camp registration is tentatively closed as we work to re-configure our summer sessions to meet San Francisco Health Order and Summer Camp Directive…read more >,https://www.activityhero.com/biz/san-francisco-botanical-garden-society,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,25",190,"m,f",STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,96.71,50.84
9,DogCamp for Kids,"Golden Gate Park - San Francisco, CA",Animals Adventure/Outdoors Mindfulness,https://images.activityhero.com/provider_photo/6219/tile/beach_tire_083.JPG,"DogCamp for Kids, 9am-3pm, brings children and dogs together in a natural setting. Drop Off/ Pick Up in Golden Gate Park, near Polo Fields. Based on our…read more >",https://www.activityhero.com/biz/19576-dogcamp-for-kids-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5,17",25,m,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,47.05,73.42
10,San Francisco Sabre Fencing,"Main Location - San Francisco, CA",Fencing Sports After School Care,https://images.activityhero.com/provider_photo/110206/tile/5819660f-7ba7-4a55-9984-258bafb6290d.jpg,Fencing is a sport that has maintained its popularity over centuries. It is one of the original sports of the modern Olympic Games and is gaining in…read more >,https://www.activityhero.com/biz/san-francisco-sabre-fencing,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,17",12,m,Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,86.48,36.72
11,Aventuras,Multiple Locations,Flexible Booking Science & Technology Spanish Visual Arts,https://images.activityhero.com/provider_photo/135213/tile/f57d7d17-ef93-4721-97dd-7d9a42a8b245.jpg,"Our Spanish Immersion programs are creative, interactive, and fun! At Aventuras, we know that kids are natural learners. We strive to inspire them and…read more >",https://www.activityhero.com/biz/aventuras,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"5,17",16,f,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,75.32,46.46
12,Moving Arts Academy of Dance,Multiple Locations,Flexible Booking Dance Ballet Online Course,https://images.activityhero.com/provider_photo/123573/tile/1cad8e5b-4252-4a04-ad3c-7fd4baa70064.jpeg,Moving Arts Academy of Dance provides a nurturing environment for students to excel technically and artistically. We are located in the Mission Terrace…read more >,https://www.activityhero.com/biz/moving-arts-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"5,17",8,f,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,79.07,41.7
13,"Wheel Kids Bicycle Club, Inc.",Multiple Locations,Best of ActivityHero 2019 Best of ActivityHero 2015 Best of ActivityHero 2016 Fitness Adventure/Outdoors Play/Outdoor,https://images.activityhero.com/provider_photo/4484/tile/WKBC-08.jpg,"Wheel Kids is an adventure and exploration bike camp that uses bicycling as a means of transportation, personal development and fun.With locations in San…read more >",https://www.activityhero.com/biz/wheel-kids-bicycle-club-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5, 18",120,m,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,49.36,43.11
14,Dance Mission Youth Program,Multiple Locations,Best of ActivityHero 2015 Best of ActivityHero 2016 Contemporary Hip Hop Dance,https://images.activityhero.com/provider_photo/6674/tile/Dance_Brigade_2013_-_0147.jpg,"Dance Brigade’s Youth Program provides high-quality dance classes to the youth of San Francisco in a noncompetitive, socially aware environment. We…read more >",https://www.activityhero.com/biz/2591-dance-mission-youth-program-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5, 18",1999,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,48.62,92.76
15,Tech Rocks!,Multiple Locations,Best of ActivityHero 2015 Best of ActivityHero 2016 Science & Technology Programming Computers,https://images.activityhero.com/provider_photo/32949/tile/33dc5bff-c8a2-4eef-a62d-62ac7579413c.JPG,"At Tech Rocks!, we make tech fun!
We engage our students with technology and show them how they can be a part of what's to come. In our experience,…read more >",https://www.activityhero.com/biz/tech-rocks,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,",19",25,m,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Computer Science,38.95,88.89
16,Always Learning and Growing,Multiple Locations,Nature Programs Hiking Adventure/Outdoors,https://images.activityhero.com/provider_photo/135063/tile/d6eff59c-8ec1-4c0a-9d2e-0a956f10f9ad.jpeg,Always Learning and Growing provides outdoor camps and classes for children and families with the goal of giving children the developmental benefits of a…read more >,https://www.activityhero.com/biz/always-learning-and-growing,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,19",12,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,54.62,11.54
17,Maker Studio SF,Multiple Locations,Coding Building Programming,https://images.activityhero.com/provider_photo/100859/tile/25e52bcd-f2d2-42af-a9a0-3fae69a7e839.jpg,Founded in 2017 by a group of designers and engineers with a single mission to get more kids into STEM through creativity first. We started with our Fashion…read more >,https://www.activityhero.com/biz/maker-studio-sf-58963,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5, 18",16,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,82.78,67.22
18,Chaparral Ranch,Multiple Locations,Adventure/Outdoors Horseback Riding Animals,https://images.activityhero.com/provider_photo/7017/tile/download_(1).png,"The spirit of the West meets Silicon Valley at Chaparral Ranch. Surrounded by natural trails and open space preserves, the ranch overlooks stunning Bay…read more >",https://www.activityhero.com/biz/chaparral-ranch,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,",19",8,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,99.84,85.3
19,3 O'Clock Rock,Multiple Locations,History Hip Hop Music,https://images.activityhero.com/provider_photo/108408/tile/6c9e0a8f-5d60-4925-ac1b-a03b2bbab344.jpg,Three O’Clock Rock is an after-school and Summer music program for kids and adults. The program offers a unique approach to teaching music and their own…read more >,https://www.activityhero.com/biz/16700-three-o-clock-rock-oakland-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"12,20",120,f,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,30.59,38.8
20,Sweet Arts Kid Studio,Multiple Locations,Drawing and Painting Online Course Clay,https://images.activityhero.com/provider_photo/126473/tile/eef9a0ec-fc08-4ed2-a1d0-361250b6ee5b.JPG,Updated for COVID-19smaller camp size - 10 kids maximumSan Francisco Department of Public Health requires all summer camps to be a minimum of 3-week…read more >,https://www.activityhero.com/biz/sweet-arts-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,19",3999,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,82.08,52.48
21,Golden Gate Skateboarding,Multiple Locations,Skateboarding Yoga,https://images.activityhero.com/provider_photo/135056/tile/e67c5aa8-9378-4263-988e-cfdfdab8af6c.jpg,"Wesley has over 10 years of professional skateboarding instruction experience. Starting out teaching with SF Park& Rec. ""Shred and Butter"" program, and has…read more >",https://www.activityhero.com/biz/golden-gate-skateboarding,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,26",5999,"m,f",STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,38.65,6.78
22,San Francisco Rock Project,Multiple Locations,Best of ActivityHero 2015 Online Course Music Performing Arts,https://images.activityhero.com/provider_photo/114664/tile/f8abe8cd-fdf3-431e-8832-2ab04f5454fb.jpg,"The San Francisco Rock Project is a nonprofit school of rock for kids ages 7–17. All year round, students have one-on-one lessons on guitar, bass, drums,…read more >",https://www.activityhero.com/biz/13305-san-francisco-rock-project-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,18",141,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,57.59,77.83
23,Creative IQ Art Studio,"Creative IQ - San Francisco, CA",Best of ActivityHero 2019 Crafts Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/109155/tile/3989815f-852d-4ab8-8f1d-7e55cc36f11f.jpg,"Creative IQ Art Studio offers art classes, camps, parties and workshops for kids, teens and adults!With an emphasis on drawing and painting, our programs…read more >",https://www.activityhero.com/biz/56653-creative-iq-art-studio-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,18",1,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,47.39,79.84
24,STEMful,"Main Location - San Francisco, CA",Engineering Math Science & Technology,https://images.activityhero.com/provider_photo/100850/tile/d3eee2f3-d7ab-4c6d-8bfd-dde5773c87ed.jpg,"STEMful is dedicated to cultivating a profound interest in science, technology, engineering and math (STEM) in children at a young age. We offer classes and…read more >",https://www.activityhero.com/biz/stemful-58754,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,18",101,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,64.13,67.32
25,Secret Agent Squad by Brain-Bounce,Multiple Locations,Best of ActivityHero 2017 Academics Martial Arts Sports,https://images.activityhero.com/provider_photo/28298/tile/0b900b01-ba8f-4f64-80b4-4d8d9ad59cca.jpg,Science specialists guide the agents as they explore fingerprinting and the fun elements of forensic and GPS tracking technology used to catch real…read more >,https://www.activityhero.com/biz/52796-secret-agent-squad-by-brain-bounce-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,18",46,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,96,67.88
26,MoonSchool at 42nd Street Moon,Multiple Locations,Music Performing Arts Drama/Theater,https://images.activityhero.com/provider_photo/121830/tile/798aaecf-6d8a-4ef5-ac37-a7a8ea14ddf5.jpg,MoonSchool at 42nd Street Moon offers year-round technique and performance-based classes for youth! Whether your student is brand new to theatre and looking…read more >,https://www.activityhero.com/biz/moonschool-at-42nd-street-moon,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5, 19",111,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,52.02,70.57
27,Camp Brainy Bunch,Multiple Locations,Leadership Public Speaking Science & Technology,https://images.activityhero.com/provider_photo/102029/tile/63094476-0226-4410-bd59-6f2b1f5e20f8.jpg,Camp Brainy Bunch is part of the larger Education Unlimited Inc. family of academic summer programs devoted to giving you the best options for summer…read more >,https://www.activityhero.com/biz/camp-brainy-bunch,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5, 19",321,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,85.73,66.74
28,Planet Bee Foundation,Multiple Locations,Biology Science & Technology Environmental,https://images.activityhero.com/provider_photo/108835/tile/7aecdf40-761d-4603-89ce-136ca904c06c.jpg,"Planet Bee Foundation is dedicated to creating environmental stewards of all ages, who will go on to have a positive impact on our interconnected world.We…read more >",https://www.activityhero.com/biz/planet-bee-foundation,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,",20",541,m,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,62.4,8.83
29,Girls Leading Girls,Multiple Locations,Girls Only Leadership Soccer,https://images.activityhero.com/provider_photo/101537/tile/eb8b77dd-8893-4dee-89e3-58c45b31a003.JPG,Girls Leading Girls is a San Francisco based nonprofit organization that trains young women in leadership and life skills through soccer. Our programs focus…read more >,https://www.activityhero.com/biz/girls-leading-girls,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,20",3000,f,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,89.09,78.49
30,Chris Babcock Art,Multiple Locations,Drop-off Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/111711/tile/bd5939a8-49dc-496a-8daf-269f87dc6b5f.png,"Our Mission at Chris Babcock Art:1) Instruct art campers how to develop creative and technical drawing and painting skills through playful projects and fun,…read more >",https://www.activityhero.com/biz/chris-babcock-art,,7,"5, 19",191,f,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,32.51,22.01
31,Code For Fun,Multiple Locations,Online Course Free Activities Programming,https://images.activityhero.com/provider_photo/100913/tile/7ba17299-1989-416c-a165-16ab6d186075.JPG,"Code for Fun is a non-profit organization committed to exposing all students, especially girls, to computer science at an early stage, to help grow the next…read more >",https://www.activityhero.com/biz/67313-code-for-fun,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,",20",26,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,85.4,68
32,Mister Lemur's Adventures in Writing,Multiple Locations,Academics Academic Writing Visual Arts,https://images.activityhero.com/provider_photo/98110/tile/181b4652-dff6-4fd9-8363-01bc77af25c4.jpg,Adventures in Writing Camp was created by Stanford-educated authors Hans and Jen Hartvickson in partnership with Doctor Alison DeMark and teacher Jonny D.…read more >,https://www.activityhero.com/biz/mister-lemur-s-adventures-in-writing-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,"12,21",13,m,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,51.94,39.19
33,Nine Studio/New Intelligence Next Education,"New intelligence next education - San Francisco, CA",Crafts Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/133898/tile/12fa58b2-f5c6-405e-b89c-170f1eb7f5d2.JPG,"All children are full of creativity and imagination, and we are responsible for helping them to reach their full potentials.We are an art studio who believe…read more >",https://www.activityhero.com/biz/nine-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"5,20",17,m,Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,46,9.17
34,SF Quest Kids LLC,Multiple Locations,Adventure/Outdoors Nature Programs Play/Outdoor,https://images.activityhero.com/provider_photo/111974/tile/abcb83c3-bec0-457e-ab80-458575a779ed.jpeg,SF Quest Kids is a mobile kids camp dedicated to exposing city youth to the natural beauty of the Bay Area and the fun of learning and playing outdoors!! …read more >,https://www.activityhero.com/biz/9458-sf-quest-kids-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5,27",9,m,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,41.45,43.57
35,SF Tots - Soccer & Basketball,Multiple Locations,Baseball Basketball Soccer,https://images.activityhero.com/provider_photo/4176/tile/soccer_tots.jpg,SF Tots is a soccer and basketball program for young children. The SF Tots soccer program was created for children 18 months up to 6 years. The goal is to…read more >,https://www.activityhero.com/biz/sf-tots,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5,19",121,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,57.76,84.95
36,ActivityHero Scholarships,Multiple Locations,Science & Technology Academics Sports,https://images.activityhero.com/provider_photo/111900/tile/ac18440c-a289-4268-af5a-adac31c90033.png,"ActivityHero is pleased to partner with over 150 camps and classes to offer over 1,500 scholarship spots. Additional scholarship spots are available for…read more >",https://www.activityhero.com/biz/activityhero-scholarship,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"5,19",2000,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Math & Logic,72,39.29
37,San Francisco Community Music Center,Multiple Locations,Performing Arts Music Wind,https://images.activityhero.com/provider_photo/4491/tile/courtyardview.jpg,San Francisco Community Music Center makes music accessible to all people regardless of their financial means. Children from 8-18 years of age can make…read more >,https://www.activityhero.com/biz/san-francisco-community-music-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"5,19",26,f,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,30.4,56.02
38,SoccerInsight,"Paul Goode Field - San Francisco, CA",Play/Outdoor Soccer Sports,https://images.activityhero.com/provider_photo/3652/tile/SoccerInsight.jpg,We offer a variety of camps and clinics throughout the year for all ages! We encourage participants of all ages and skill levels to come out and join us! We…read more >,https://www.activityhero.com/biz/soccerinsight,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,19",13,"m,f",STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,91.34,65.67
39,Peekadoodle Academy,Multiple Locations,Play/Outdoor Preschool General Recreation,https://images.activityhero.com/provider_photo/111211/tile/8f7a8692-c7a6-4244-b182-08aafda04148.jpg,Peekadoodle Academy is a licensed preschool program founded on a balanced approach to learning. The Academy centers its curriculum on the whole child…read more >,https://www.activityhero.com/biz/4718-peekadoodle-kidsclub-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5, 20",17,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,96.89,72.49
40,Sky Kids,Multiple Locations,Flexible Booking Computers Cartooning Visual Arts,https://images.activityhero.com/provider_photo/98193/tile/001fe138-2879-4b5b-be7a-4d667d0772af.JPG,Sky Kids is an international program that promotes project-based learning and cultural exchange. We offer fun and engaging camps and enrichment programs for…read more >,https://www.activityhero.com/biz/sky-kids-international-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5, 20",9,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Math & Logic,52.58,17.86
41,Bay Jiu-Jitsu,Multiple Locations,Fitness Martial Arts Play/Outdoor,https://images.activityhero.com/provider_photo/95113/tile/ae3e596f-2d8e-4027-af00-4bcaa419d91b.jpg,Bay Jiu-Jitsu Kids Summer Camps will keep your children active and help them build friendships with other campers. Kids have a great time learning…read more >,https://www.activityhero.com/biz/bay-jiu-jitsu,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,",21",121,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,45.51,5.36
42,Bay Area Shakespeare Camp,Multiple Locations,Performing Arts Drama/Theater Acting,https://images.activityhero.com/provider_photo/72825/tile/d2914eae-abed-47f9-9374-1323ab4f4a54.jpg,2020 marks the 28th season of 'kids getting in the act' with this fun and enriching program! Shakespeare Camps provide training in: •Shakespeare’s rich…read more >,https://www.activityhero.com/biz/bay-area-shakespeare-camp-3528,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"5,21",4000,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,88.98,99.92
43,Environmental Traveling Companions,"San Francisco - San Francisco, CA",Girls Only Overnight/Residential Adventure/Outdoors,https://images.activityhero.com/provider_photo/65393/tile/cba51640-21d4-49bf-8d6b-28a767e39e7e.jpg,"ETC's Youth LEAD offers life changing outdoor experiences for diverse groups of youths, ages 14-18.As ETC’s students travel along a California watershed,…read more >",https://www.activityhero.com/biz/56144-environmental-traveling-companions-etc-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5, 20",6000,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,64.58,94.89
44,Young Women's Choral Projects,"San Francisco - San Francisco, CA",Voice Music Performing Arts,https://images.activityhero.com/provider_photo/93828/tile/ef453ad8-9b42-4438-bed3-9419a55d727f.jpeg,"The Young Women’s Choral Projects of San Francisco transforms the lives of young women through exceptional artistry in choral performance, and brings the…read more >",https://www.activityhero.com/biz/56079-young-women-s-choral-projects-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,",21",142,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,57.7,22.94
45,Curious Jane,Multiple Locations,Crafts Girls Only Science,https://images.activityhero.com/provider_photo/143338/tile/1fb3b0a2-3c72-4236-8142-bbaaffc90ae9.jpg,"Curious Jane is a day camp for rising 3rd-6th grade girls, and for 1st-2nd grade girls, we offer CJ Junior. We run multiple weekly sessions at beautiful…read more >",https://www.activityhero.com/biz/curious-jane,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"12,22",2,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,36.71,7.54
46,San Francisco Soccer Camp,"Negoesco Field at USF - San Francisco, CA",Fitness Soccer Sports,https://images.activityhero.com/provider_photo/139569/tile/0fbcdcb1-a4f8-4b7a-931e-04774ab9bb24.jpeg,The San Francisco Soccer Camp is excited to announce its boys' 2020 summer camp schedule! There are summer camp offerings in order to support all levels…read more >,https://www.activityhero.com/biz/griffin-premier-soccer-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,21",102,m,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,82.08,58.77
47,Sprouts Cooking Club,Multiple Locations,Cooking,https://images.activityhero.com/provider_photo/5817/tile/DSC_0142.JPG,Sprouts is a nonprofit that teaches youth from all socioeconomic backgrounds what REAL food is all about. We do this through hands-on cooking with REAL…read more >,https://www.activityhero.com/biz/sprouts-cooking-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,28",47,f,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,39.01,56.42
48,SF Spanish,Multiple Locations,Spanish Crafts Language,https://images.activityhero.com/provider_photo/105181/tile/63c8a2ca-fd8e-4e76-98e4-99d130fc4235.jpg,SF Spanish is a unique group of Spanish teachers who are passionate about fostering fun and creative language learning opportunities for students of all…read more >,https://www.activityhero.com/biz/sf-spanish,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,20",112,f,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,88.54,40.07
49,San Francisco Conservatory of Music: Summer Programs,Multiple Locations,Creative Writing Music Performing Arts,https://images.activityhero.com/provider_photo/16908/tile/8f9d390b-4e00-491c-9ad1-8218de13081f.jpg,"San Francisco Conservatory of Music offers two summer training workshops. Gilbert & Sullivan Scenes, for young stage performers age 10- 18 years old, offers…read more >",https://www.activityhero.com/biz/4336-san-francisco-conservatory-of-music-summer-programs-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,20",322,m,STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,36.69,84.68
50,Legarza Sports,Multiple Locations,Flexible Booking General Recreation Sports Basketball,https://images.activityhero.com/provider_photo/99338/tile/1224c838-547c-4c51-906a-2200dfbcc9a1.jpg,"Voted ""Bay Area's Best Camp"" by Bay Area Parent Magazine. Our camp provides a service that everyone in our community can afford. Our goal is for all campers…read more >",https://www.activityhero.com/biz/legarza-basketball-camps-and-classes,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,20",542,m,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Math & Logic,77.09,79.2
51,CodeREV Kids,Multiple Locations,Online Course Gaming Programming,https://images.activityhero.com/provider_photo/97461/tile/853342b4-79a3-4cfb-b075-e9275789daf9.jpg,CodeREV Kids Tech Camps provide a one-of-a kind camp experience for campers. Our camps are a wonderful way for campers to spend a week or several weeks out…read more >,https://www.activityhero.com/biz/56210-coderev-kids-santa-monica-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,20",3001,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,78.79,49.99
52,The Little Studio,"Congregation Beth Sholom - San Francisco, CA",Drawing and Painting Visual Arts Girls Only,https://images.activityhero.com/provider_photo/140514/tile/00457e10-3950-49dc-841f-9fdc4c3b6bf4.JPG,The Little Studio offers art camps for girls entering Kindergarten-3rd grade. The Little Studio provides a warm and nurturing small-group setting that…read more >,https://www.activityhero.com/biz/the-little-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5, 21",192,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,47.88,39.82
53,Destination Science,Multiple Locations,Virtual Camp Fair Flexible Booking Best of ActivityHero 2015 Engineering Science Science & Technology,https://images.activityhero.com/provider_photo/99595/tile/7a1009d8-f9fe-4dae-8025-8b24d6f19ae4.jpg,"SCIENCE! SCIENCE! & MORE SCIENCE!STEM (science, technology, engineering and math) learning is more important than ever before. It has become a national…read more >",https://www.activityhero.com/biz/destination-science,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 21",27,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,37.33,18.21
54,SF Children's Art Center,"San Francisco Children's Art Center - San Francisco, CA",Sculpture Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/99009/tile/31074382-05b2-45f3-aedb-a910534626b1.jpg,"Established in 1978, The San Francisco Children’s Art Center (SFCAC) is a 501(c)(3) non-profit, child-centered community art organization that values the…read more >",https://www.activityhero.com/biz/4749-san-francisco-children-s-art-center-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,",22",14,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,37.76,72.81
55,TechKnowHow Summer Tech Camps,Multiple Locations,Flexible Booking Online Course Engineering Lego,https://images.activityhero.com/provider_photo/107690/tile/2c99b4f0-942a-4255-b70e-3ffc300ea243.jpg,"Join us for our week-long Summer LEGO Robotics and Coding Camps featuring unique STEM projects with LEGO elements, Minecarft adventures, Python and Java…read more >",https://www.activityhero.com/biz/techknowhow-lego-and-technology-summer-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,22",18,f,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,94.87,48.1
56,Blue Bear School of Music,Multiple Locations,Voice Music Bass Guitar,https://images.activityhero.com/provider_photo/219/tile/open-uri20130516-2-gl78cd,"Hey fellow parents! Do you want your kid to have fun and rock out this summer?
You choose! Give them the joy of rocking out in a band in our Rock U series…read more >",https://www.activityhero.com/biz/blue-bear-school-of-music,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5, 21",10,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,85.88,50.27
57,Ms. Marian's Dance Garden,"Ms. Marian's Dance Garden - San Francisco, CA",Best of ActivityHero 2018 Best of ActivityHero 2015 Dance Sewing Visual Arts,https://images.activityhero.com/provider_photo/6901/tile/120a9ad8-8d45-40bb-97b5-44c665c04360.jpg,"Ms Marian’s Dance Garden …. Movement classes for all ages! Since opening in 2013, the Dance Garden has focused on creating confident, skilled movers…read more >",https://www.activityhero.com/biz/15920-ms-marian-s-dance-garden-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,",22",122,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,95.4,15.53
58,Kahlon Family Services School,"Main Location - San Francisco, CA",Best of ActivityHero 2019 Special Needs Adventure/Outdoors Academics,https://images.activityhero.com/provider_photo/112530/tile/bcf64c84-6626-4f5b-b901-343e8c8778dc.JPG,"The Kahlon Family Services and School was founded in 2016, a non-profit organization serving exceptional children in San Francisco and the Bay Area…read more >",https://www.activityhero.com/biz/kahlon-family-services-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"12,23",2001,"m,f",STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,85.25,1.12
59,Steppin' Out Dance Studio,Multiple Locations,Best of ActivityHero 2017 Online Course Drama/Theater Dance,https://images.activityhero.com/provider_photo/94524/tile/08496610-326c-48ec-ad29-13a7870d7144.png,"Steppin’ Out Dance Studio began in 1995, evolving out of the historic Betty May Dance Studios which served the children of the Mission District since the…read more >",https://www.activityhero.com/biz/66172-steppin-out-dance-studio-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,22",27,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,49.4,92.26
60,San Francisco Maritime,"Maritime Learning Center - San Francisco, CA",Best of ActivityHero 2015 Adventure/Outdoors History Field Trips,https://images.activityhero.com/provider_photo/4907/tile/VicPark_Balclutha.jpg,San Francisco Maritime is the nonprofit partner to the Maritime National Park. We bring maritime history to life for children throughout the Bay Area with…read more >,https://www.activityhero.com/biz/18851-san-francisco-maritime-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5,29",14,"m,f",STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,56.83,82.27
61,Code With Us,Multiple Locations,Coding Online Course Programming,https://images.activityhero.com/provider_photo/111557/tile/8d8c798d-ab60-4f5e-8e4a-b2232cb25e75.jpg,"About Code With Us:Code With Us is a venture-backed technology education organization founded in 2016 in Silicon Valley, CA. We teach students a variety…read more >",https://www.activityhero.com/biz/code-with-us,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,"5,21",18,"m,f",STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,79.81,13.47
62,Galileo Learning,Multiple Locations,Science Visual Arts Adventure/Outdoors,https://images.activityhero.com/provider_photo/27489/tile/77c9fa1e-0a91-445d-8bc2-a512e0cb703c.jpg,"At Galileo, we mix the fun of traditional day camp with thoughtfully crafted, hands-on projects in fields from science and engineering to the visual and…read more >",https://www.activityhero.com/biz/camp-galileo,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,"5,21",10,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Computer Science,31.78,3.03
63,Wang Qi Art Institute,"Main Location - San Francisco, CA",Sculpture Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/110100/tile/65280075-6c5a-4d69-8616-f2153f33094b.jpg,"At Wang Qi Art Institute, our uniquely designed courses focus on the establishment of fundamental art techniques and the inner artistic potentials of…read more >",https://www.activityhero.com/biz/wang-qi-art-institute,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"5,21",122,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,59.44,14.25
64,Bricks 4 Kidz SF,"STEMful-SF - San Francisco, CA",Lego Science Engineering,https://images.activityhero.com/provider_photo/6790/tile/picstitch.jpg,"As parents, we strive to provide our children with every opportunity for a future in STEM fields. Girls (and boys) are more likely to pursue a STEM career…read more >",https://www.activityhero.com/biz/bricks-4-kidz-sf,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5,21",4001,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,42.61,69.8
65,The Culinary Dude,Multiple Locations,Cooking Visual Arts Date Night,https://images.activityhero.com/provider_photo/101357/tile/e126a0c0-84f8-4328-9cc1-5de81d0df53c.jpg,"We are a business focused on hands-on culinary education, fun, health, safety, nutrition and teamwork in and outside the kitchen. Our background in both…read more >",https://www.activityhero.com/biz/the-culinary-dude,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5, 22",6001,f,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,68.72,55.64
66,Little Light Warriors,Multiple Locations,Mindfulness Yoga Play/Outdoor,https://images.activityhero.com/provider_photo/122141/tile/79c1e928-ae53-40d5-9a7d-3f8f0caaaebd.jpg,Little Light Warrior is not your ordinary yoga class!We understand that we are dynamic creatures. There's room for calmness and calamity! Our program is…read more >,https://www.activityhero.com/biz/little-light-warriors,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"5, 22",143,f,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,57.4,68.17
67,Team NorCal Lacrosse,Multiple Locations,Adventure/Outdoors Sports Lacrosse,https://images.activityhero.com/provider_photo/142546/tile/b9792d3d-ff02-4892-b74b-452c133a453a.png,"Team NorCal is the oldest, largest and most successful lacrosse development program in the San Francisco Bay Area. We offer travel teams, camps, and…read more >",https://www.activityhero.com/biz/team-norcal-lacrosse,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,",23",3,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,32.78,64.73
68,Integem Inc.,Multiple Locations,Programming Nature Programs Science & Technology,https://images.activityhero.com/provider_photo/110981/tile/5f147b2b-e7fd-4750-a917-ed6f65d11c40.png,Holographic Augmented Reality (Holographic AR) is the future as smartphone is now. Integem Holographic AR camp is the #1 AR Camp and enable every student to…read more >,https://www.activityhero.com/biz/integem-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,23",103,m,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Math & Logic,93.17,32.15
69,Little Opera at Grace,Multiple Locations,Best of ActivityHero 2015 Drama/Theater Music Visual Arts,https://images.activityhero.com/provider_photo/117050/tile/7e29776a-ed60-40eb-bdd3-bb785506b2a0.JPG,"At Little Opera at Grace, we make operas with kids. In this year-long after-school program, kids in K-8th grade work with our team of artists to WRITE,…read more >",https://www.activityhero.com/biz/little-opera,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5, 22",48,m,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,85.35,41.27
70,TechSmart Academy - Tech Camps,Multiple Locations,Programming Gaming Science & Technology,https://images.activityhero.com/provider_photo/101626/tile/c823743a-cca9-4102-8b3e-cf3af883fea4.JPG,"At TechSmart Academy, coding is fun..and the learning just happens! We offer coding camps during summers and school breaks at community centers, schools and…read more >",https://www.activityhero.com/biz/techsmart-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,",23",113,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,64.22,73.49
71,JCCSF Camps and Classes,Multiple Locations,Leadership Community Service Jewish,https://images.activityhero.com/provider_photo/133004/tile/bffc6f39-59d8-4e79-a4e6-cc3f49f3923f.jpg,"The JCCSF offers programs for youth of all ages and backgrounds that engages them socially, physically, mentally and culturally. Our summer and vacation…read more >",https://www.activityhero.com/biz/jccsf-camps-and-classes,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"12,24",323,"m,f",Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,86.65,92.43
72,Wise Forest Preschool,"Forest Gate - San Francisco, CA",Play/Outdoor Nature Programs Adventure/Outdoors,https://images.activityhero.com/provider_photo/6233/tile/freeimage-6455195-high_copy.jpg,Wise Forest Preschool is a child centered outdoor preschool where the classroom is the wooded area of San Francisco Golden Gate Park. This play based…read more >,https://www.activityhero.com/biz/19625-wise-forest-preschool-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"5,23",543,m,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,80.99,84.09
73,Marin GreenPlay Camp,Multiple Locations,Water Sports Swimming Adventure/Outdoors,https://images.activityhero.com/provider_photo/109190/tile/ec5a858d-eea3-4070-ae83-207f1218b84c.jpg,"Marin GreenPlay Camp, voted Best Summer Camp in 2017 and 2018 by Marin IJ Readers, is an innovative and place-based nature awareness camp now celebrating…read more >",https://www.activityhero.com/biz/16731-marin-greenplay-camp-mill-valley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,30",3002,f,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Math & Logic,94.41,11.61
74,Create & Learn,Multiple Locations,Coding Online Course Science & Technology,https://images.activityhero.com/provider_photo/102275/tile/57a3d930-3bfe-4acb-b9f7-12534c22d606.png,"Experience a brand new way of learning STEM - from the convenience of your home, in small classes with no more than 6 students, and with an outstanding STEM…read more >",https://www.activityhero.com/biz/create-learn,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,22",193,"m,f",STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,61.99,49.46
75,Presidio Dance Theatre,Multiple Locations,Visual Arts Dance Tap,https://images.activityhero.com/provider_photo/94729/tile/84783b5b-1877-4d34-bce6-cd8fb83c358a.jpg,"Presidio Dance Theatre is a non-profit dance company with a performance-based school dedicated to rigorous ballet, folk and character dance training. PDT…read more >",https://www.activityhero.com/biz/2090-presidio-dance-theatre-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,22",28,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,44.17,70.68
76,Engineering for Kids SF,Multiple Locations,Engineering Science & Technology,https://images.activityhero.com/provider_photo/96406/tile/74f232b0-7fee-461f-ae2c-e2230a0889ae.jpg,"Engineering For Kids brings science, technology, engineering, and math (STEM), to kids ages 4 to 14 in a fun and challenging way through classes, camps,…read more >",https://www.activityhero.com/biz/engineering-for-kids-sf,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,22",15,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,77.58,99.05
77,Go Girls! Oakland/Go Girls! Camp & Productions,Multiple Locations,Girls Only Drama/Theater Visual Arts,https://images.activityhero.com/provider_photo/139344/tile/6a24b1d8-97e8-48e7-8c0e-a1bc2eac2c37.jpeg,"Go Girls!™️ is a girl empowerment program - winter, spring, summer day camps and after-school clubs - just for elementary and middle school-aged girls &…read more >",https://www.activityhero.com/biz/go-girls-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,22",19,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,89.94,42.76
78,HiTech Yeti,Multiple Locations,Computers Programming Online Course,https://images.activityhero.com/provider_photo/145350/tile/1a9fff18-778b-44ca-bbf1-484fae0de482.png,"We believe that learning through play and experimentation is the most effective way to master new skills. We offer Live Online Classes in Programming,…read more >",https://www.activityhero.com/biz/hitechyeti-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5, 23",11,"m,f",STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Computer Science,71.36,93.77
79,JAMaROO Kids,Multiple Locations,Dance Music Visual Arts,https://images.activityhero.com/provider_photo/107013/tile/0a299cbc-2b36-44a7-ac0e-9efb81720703.jpg,We are a company that provides quality developmentally appropriate enrichment and entertainment services for young children. We not only provide great…read more >,https://www.activityhero.com/biz/9170-jamaroo-kids-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5, 23",123,"m,f",Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,99.8,19.22
80,Rainbow Chefs,Multiple Locations,Cooking After School Care Crafts,https://images.activityhero.com/provider_photo/90632/tile/182c1b08-eea6-4770-9505-72053f3d2272.jpg,"Rainbow Chefs empowers aspiring chefs to develop healthy eating habits, explore their creativity, and enjoy cooking in the kitchen! Our curriculum based…read more >",https://www.activityhero.com/biz/rainbow-chefs,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,",24",2002,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,55.35,42.86
81,Infinite Martial Arts,Multiple Locations,Martial Arts Play/Outdoor,https://images.activityhero.com/provider_photo/95071/tile/5b166a9d-8c20-4b08-b646-accab043b8d6.jpg,"We are a family focused studio based in Marina teaching children, young adults and adults the fundamentals of martial arts, self-defense and stranger danger…read more >",https://www.activityhero.com/biz/infinite-martial-arts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,24",28,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,68.56,10.36
82,Spark Arts,"Main Location - San Francisco, CA",Gardening Hip Hop Crafts,https://images.activityhero.com/provider_photo/94435/tile/e695fefa-dbba-4d9f-a8f0-fb4be0de7f9e.jpg,"As the “creative soil” for arts and culture, spark arts™ welcomes the opportunity to enrich the lives of the Castro community through art, dance, music…read more >",https://www.activityhero.com/biz/65729-spark-arts-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5, 23",15,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,71.12,68.02
83,Xian Yun Academy of the Arts,"Xian Yun Academy of the Arts California - San Francisco, CA",Dance Ballet Tumbling,https://images.activityhero.com/provider_photo/2804/tile/Jessica_profile.jpg,Xian Yun Academy of the Arts is a fully accredited arts high school. Our mission is to provide young people with a curriculum that features training in…read more >,https://www.activityhero.com/biz/6132-fei-tian-academy-of-the-arts-california-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,",24",19,f,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,30.24,48.56
84,Shan-Yee Poon Ballet School,"San Francisco - San Francisco, CA",Ballet Dance,https://images.activityhero.com/provider_photo/96231/tile/3943db3a-3153-4360-9285-967de4319126.jpg,Join us for an exciting and fun-filled summer with dance! Shan-Yee Poon School of Performing Arts has some of the best summer dance camps in San…read more >,https://www.activityhero.com/biz/56760-shan-yee-ballet-school-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"12,25",11,f,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,49.46,82.87
85,Creative Canopy,"Creative Canopy - San Francisco, CA",Sewing Crafts Visual Arts,https://images.activityhero.com/provider_photo/100707/tile/da3cc120-5dea-4e39-a57e-f1c3a3ea541e.PNG,"Creative Canopy is a community art studio offering a welcoming, interactive environment for people of all ages. You will find talented instructors that…read more >",https://www.activityhero.com/biz/20043-creative-canopy-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,24",123,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,50.08,53.77
86,The Rabbit Hole Theater Company,"The Rabbit Hole - San Francisco, CA",Birthday Parties Performing Arts Building,https://images.activityhero.com/provider_photo/94413/tile/7051a5ab-4b7c-47b7-9a6c-fd7a8e44d990.jpeg,"We provide kids a magical home where they can fall in love with the performing arts! Our classes & camps engage imaginations and creativity.
The Rabbit…read more >",https://www.activityhero.com/biz/19624-the-rabbit-hole-theater-company-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,31",4002,m,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,85.63,42.99
87,Performance Singing,Multiple Locations,Drama/Theater Voice Audition skills,https://images.activityhero.com/provider_photo/96437/tile/4e1213d6-9c86-4c0a-92e4-7b4ebf66a5eb.jpg,"Performance Singing is a voice studio run by accomplished teaching artist and professional Broadway singer/actor, Pierce Peter Brandt. Pierce teaches…read more >",https://www.activityhero.com/biz/performance-singing,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,23",6002,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,56.26,5.15
88,Cucu's PlayHouse,Multiple Locations,Spanish Music Language,https://images.activityhero.com/provider_photo/122952/tile/8acb845b-9886-4221-b7c3-e0667b8d00a0.jpeg,"Cucu's PlayHouse is the newest Bay Area space for Music classes, Spanish immersion and Open play for babies, toddlers and preschoolers. They are located…read more >",https://www.activityhero.com/biz/cucus-play-house,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,23",144,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,68.99,52.78
89,Killing My Lobster/The Lobster Theater Project,Multiple Locations,Creative Writing Comedy,https://images.activityhero.com/provider_photo/109955/tile/36821e1e-365d-4bda-8df1-3aebeac3522c.jpg,"Killing My Lobster creates fast, smart, fearless sketch comedy that makes people laugh. Our vision is a world in which San Francisco is known worldwide…read more >",https://www.activityhero.com/biz/killing-my-lobster,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,23",4,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,51.74,20.45
90,Booker T. Washington CSC,"Booker T. Washington Community Service Center - San Francisco, CA",Acting Academics Basketball,https://images.activityhero.com/provider_photo/107138/tile/0e647043-eb26-412c-9b17-9f147815ec29.jpg,"BOOKER T. AFTER SCHOOL SUCCESS ACADEMYBooker T. offers out of school programming for students K- 12, during the school year and summer. All school aged…read more >",https://www.activityhero.com/biz/66371-booker-t-washington-csc-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5,23",104,m,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Math & Logic,89.94,25.15
91,Kickit4kids - Soccer Camps & Clinics,Multiple Locations,Soccer General Recreation Sports,https://images.activityhero.com/provider_photo/5658/tile/portada_5.JPG,"Kickit for Kids has a wide range of camps and clinics for boys aged 4-18 and for girls aged 4-14. We pride ourselves on offering a safe, fun and…read more >",https://www.activityhero.com/biz/kickit4kids-soccer-camps-clinics,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,"5, 24",49,f,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,44.89,49.46
92,Camp Gan Israel SF,"Main - San Francisco, CA",Sports Music Field Trips,https://images.activityhero.com/provider_photo/70700/tile/31a1ccfc-6e44-48fc-af77-a2dbf51b9161.JPG,Gan Israel SF is part of the largest and fastest growing network of Jewish day camps in the world. Gan Israel enjoys a well-earned reputation as a trend…read more >,https://www.activityhero.com/biz/56223-camp-gan-israel-sf-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,"5, 24",114,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,46.23,68.85
93,Jamestown Community Center,Multiple Locations,Digital Media Music Sports,https://images.activityhero.com/provider_photo/31931/tile/708b3a01-8e0a-49ee-9143-fdf9413cbb05.jpg,"For over 45 years, Jamestown has been creating safe havens for youth and their families to learn, play and develop outside of the traditional school day.…read more >",https://www.activityhero.com/biz/jamestown-community-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,",25",324,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Computer Science,59.26,59.57
94,SOH Learning,Multiple Locations,Online Course Test Prep Academics,https://images.activityhero.com/provider_photo/144384/tile/f230418b-cc78-4dae-9a58-f0bca477dfdd.jpg,SOH learning online tutoring is the ultimate educational support any child can have. Not only is it the most effective way for your child to achieve subject…read more >,https://www.activityhero.com/biz/soh-learning,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5,25",544,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,93.86,70.91
95,Downey's Sports Camp,Multiple Locations,Play/Outdoor Basketball Soccer,https://images.activityhero.com/provider_photo/99102/tile/d4c7f5f2-36ef-415d-bca2-ec079096f6f6.JPG,"Downey's Sports Camp is located at St. Matthew's Catholic School, San Mateo and takes place in the new state-of-the-art gymnasium.The camp offers a wide…read more >",https://www.activityhero.com/biz/downey-s-sports-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5, 24",3003,"m,f",Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,83.32,1.33
96,coding4youth,Multiple Locations,Online Course Programming Science & Technology,https://images.activityhero.com/provider_photo/110542/tile/6684ff2a-f30a-457b-9597-a54c5b7a3653.JPG,"At Coding4Youth.org, kids can learn coding online from a real person. All of our lessons are 100% face-2-face instructions through video conferencing…read more >",https://www.activityhero.com/biz/coding4youth,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,",25",194,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,60.11,72.57
97,Renegades Kids Tinkering Club,Multiple Locations,Engineering Math Science & Technology,https://images.activityhero.com/provider_photo/96029/tile/a6762907-8224-4a06-90ae-745285e9b677.jpg,The Renegade Girls Tinkering Club run girls only and coed summer camps and after school programs in San Francisco for kids ages 5-11 years old. From the…read more >,https://www.activityhero.com/biz/the-renegades-girls-tinkering-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"12,26",29,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,33.57,19.52
98,SKETCHBOOK STUDIO,"Main Location - San Francisco, CA",Drop-off Visual Arts Crafts,https://images.activityhero.com/provider_photo/100476/tile/7f4e20cb-0e96-4281-a8c3-514f3f74d5aa.jpg,"Here at Sketchbook Studio, we welcome artists of all ages. Sketchbook was started in 2017 by Angie Kim and Stephanie Benetua as an outlet for their…read more >",https://www.activityhero.com/biz/sketchbook-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,25",16,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,32.08,22.2
99,Rapinoe SC,Multiple Locations,Soccer,https://images.activityhero.com/provider_photo/97175/tile/2c1dd427-a9fc-41e7-81ee-9092712011ef.JPG,We teach the beautiful game of soccer through the passionate lens of Rapinoe SC. Our vision is to enable people of all ages and backgrounds to be the best…read more >,https://www.activityhero.com/biz/66380-megan-rapinoe-soccer-camps-long-beach-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5,32",20,m,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,61.62,34.41
100,Adventures in Writing,Multiple Locations,Visual Arts Academic Writing Academics,https://images.activityhero.com/provider_photo/98138/tile/6dcaa81b-27b5-4393-a720-7bcf0effb1d1.JPG,Adventures in Writing Camp was created by Stanford-educated authors Hans and Jen Hartvickson in partnership with Doctor Alison DeMark and teacher Jonny D.…read more >,https://www.activityhero.com/biz/adventures-in-writing,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,24",12,m,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,39.15,3
101,Northern California Music & Art Culture Center,Multiple Locations,Music Drawing and Painting Voice,https://images.activityhero.com/provider_photo/94010/tile/54abcb56-a01c-4313-b883-2a66a8c011d6.jpg,Northern California Music and Art Culture Center strive to spread the love of music to many generations by teaching with patience and passions. Private…read more >,https://www.activityhero.com/biz/northern-california-music-art-culture-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"5,24",124,f,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,60.21,5.38
102,TechShop - San Francisco,"San Francisco - San Francisco, CA",Science & Technology Robotics Industrial Arts,https://images.activityhero.com/provider_photo/94241/tile/e10ffb17-6a19-44f2-8e51-08b692416004.jpg,"TechShop San Francisco is located at 926 Howard Street, just one block from the Moscone Center, three blocks from the Powell Street BART station and six…read more >",https://www.activityhero.com/biz/57140-techshop-san-francisco-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"5,24",2003,f,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,92.13,58.39
103,Au P'tit Monde French Preschool,Multiple Locations,French Visual Arts Play/Outdoor,https://images.activityhero.com/provider_photo/4782/tile/postcard_front.png,"The children at Au P'tit Monde come from many different cultures and backgrounds. Through stories, songs and games children learn to understand and express…read more >",https://www.activityhero.com/biz/au-p-tit-monde-french-preschool,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,24",29,m,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,60.54,91.17
104,"Higgins Tennis, Inc.",Multiple Locations,Tennis Adventure/Outdoors Play/Outdoor,https://images.activityhero.com/provider_photo/15639/tile/905a3d66-879d-4250-a44f-8c3c02993eee.,Higgins Tennis offers private and group lessons for adults and children. We also specialize in developing community tennis programs for municipal recreation…read more >,https://www.activityhero.com/biz/higgins-tennis-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5, 25",16,m,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,77.7,68.99
105,"Terra Marin K-8, Terra Mandarin Preschool & Terra Marin Camp",Multiple Locations,Chinese Academics Language,https://images.activityhero.com/provider_photo/119134/tile/da2524c2-30e5-44c3-8667-e12d02952db0.jpg,The Terra Schools - Terra Marin K-8 School & Terra Mandarin Preschool - are dedicated to honoring the gifts of its students while providing a safe and…read more >,https://www.activityhero.com/biz/terra-marin-school-63038,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5, 25",20,m,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,30.25,1.39
106,San Francisco Math Circle,Multiple Locations,Best of ActivityHero 2019 Best of ActivityHero 2018 Math Drop-off Academics,https://images.activityhero.com/provider_photo/118228/tile/1e8ef3d0-b20a-4fe0-83ed-432ebb4897d9.jpg,"At the San Francisco Math Circle, we explore the fun side of math! The SF Math Circle is an extracurricular math enrichment program that gives students an…read more >",https://www.activityhero.com/biz/55831-san-francisco-math-circle-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,",26",12,m,STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,55.3,90.65
107,Adventure Camps,Multiple Locations,Best of ActivityHero 2017 Best of ActivityHero 2016 Best of ActivityHero 2015 General Recreation Play/Outdoor Adventure/Outdoors,https://images.activityhero.com/provider_photo/3462/tile/Adventure_Camp_spring_break.jpg,Celebrating our 49th year! Adventure Camps is the Bay Area's only completely-mobile day camp since 1971. We know all the best places for children ages 4 to…read more >,https://www.activityhero.com/biz/adventure-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,26",124,"m,f",Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,69.12,9.93
108,Avid4 Adventure,Multiple Locations,Virtual Camp Fair Flexible Booking Best of ActivityHero 2016 Drawing and Painting Music Yoga,https://images.activityhero.com/provider_photo/101193/tile/79b0d863-2429-47f4-bd55-2fa03ddabb95.jpg,"Authentic outdoor adventure, 100% screen free.These days a lot of kids grow up surrounded by screens,disconnected from the natural world. At Avid4 Adventure…read more >",https://www.activityhero.com/biz/avid4-adventure,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5, 25",4003,m,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,63.47,10.96
109,Mariposa Kids Community Project,"James Rolph Clubhouse - San Francisco, CA",Best of ActivityHero 2015 General Recreation Field Trips Adventure/Outdoors,https://images.activityhero.com/provider_photo/30262/tile/5bfebdae-73c1-4bdc-abce-ffaf609ce5f0.jpg,"We are a group of education professionals offering a variety of child, youth, and family activities in San Francisco's Mission District. Take a look…read more >",https://www.activityhero.com/biz/53130-mariposa-kids-community-project-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,",26",6003,f,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,71.86,59.62
110,Celsius and Beyond,Multiple Locations,Woodworking Building Jewelry Making,https://images.activityhero.com/provider_photo/3508/tile/925959b2-0381-4959-9a65-a6d53a35773f.jpg,"Celsius and Beyond is a hands-on science enrichment program for children to learn about chemistry, physics, math and cell biology. Scientists and…read more >",https://www.activityhero.com/biz/celsius-and-beyond,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"12,27",145,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,34.27,38.12
111,ActivityHero Live,Multiple Locations,Visual Arts Free Activities Drawing and Painting,https://images.activityhero.com/provider_photo/145155/tile/629168bd-e425-4352-96fd-b5aedf0fd198.png,"Every day while school is out, kids and families can join our online class from any web browser. Our special guests will teach kids about art, medicine,…read more >",https://www.activityhero.com/biz/activityhero-live,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,26",5,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,84.63,7.5
112,BrainVyne - LEGO® & Money Camps,Multiple Locations,Best of ActivityHero 2015 Best of ActivityHero 2016 Best of ActivityHero 2017 Computer Animation Online Course Science & Technology,https://images.activityhero.com/provider_photo/97399/tile/c30f47d1-8ce8-48d8-8dba-5952d55f8dc1.JPG,"Entertaining and enriching LEGO® summer, spring & school break camps and LEGO® birthday parties for children ages 4 to 12 years old in the San Francisco…read more >",https://www.activityhero.com/biz/brainvyne-providers-of-lego-education,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,33",105,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,78.55,63.38
113,Camp EDMO,Multiple Locations,Flexible Booking Online Course Mindfulness Crafts,https://images.activityhero.com/provider_photo/94717/tile/146d7963-0c27-4f24-b3e7-dd3443583e85.jpg,"Since 2004 more than 100,000 kids have experienced the EDMO Method® at our summer camp for the whole kid. At Camp EDMO® they’re inspired to develop their…read more >",https://www.activityhero.com/biz/camp-edmo,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,25",50,"m,f",STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,36.45,52.48
114,Music Together of San Francisco,Multiple Locations,Music Family Dance,https://images.activityhero.com/provider_photo/94514/tile/3416e2d1-2ebc-41cd-a7a9-4a9f5601f525.jpg,"The Music Together® program encourages your child's innate ability to sing in tune, create rhythms and participate in music making with joy and confidence.…read more >",https://www.activityhero.com/biz/music-together-of-san-francisco,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,25",115,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,88.45,53.96
115,Wee Scotty Fashion School,Multiple Locations,Sewing Fashion Design Crafts,https://images.activityhero.com/provider_photo/12634/tile/open-uri20141206-9-q9ttpv,"Wee Scotty is a fashion school, boutique, design house, and so much more. Over twenty years down the road Wee Scotty has built a reputation as a center…read more >",https://www.activityhero.com/biz/119-wee-scotty-fashion-school-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,25",325,"m,f",STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,40.38,56.93
116,SiliconValley4u,Multiple Locations,Coding Programming Science & Technology,https://images.activityhero.com/provider_photo/109340/tile/c77e9cb8-0ba5-45a3-b2e9-9c7a23edd258.jpg,"The road of American ingenuity runs through Silicon Valley, where the tech experts and thought leaders of today shape the future of the nation's tomorrow.…read more >",https://www.activityhero.com/biz/ecolt-sytems-inc-dba-siliconvalley4u,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,25",545,"m,f",STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Computer Science,99.52,72.95
117,Super Soccer Stars - Bay Area,Multiple Locations,Sports Online Course Soccer,https://images.activityhero.com/provider_photo/47575/tile/4976251f-037b-4e98-8a75-b8b4f77029e4.jpg,"Super Soccer Stars- Bay Area have camps based on age specific curricula created by a combination of early childhood, soccer, and behavioral specialists to…read more >",https://www.activityhero.com/biz/super-soccer-stars-bay-area,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5, 26",3004,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,66.72,96.88
118,San Francisco Fencers Club,Multiple Locations,Fencing Sports,https://images.activityhero.com/provider_photo/99162/tile/69d3a5db-f6fe-4199-b1ba-8b793d738566.jpg,"The Olympic sport of fencing has a tradition of encouraging excellence, from fitness and self-confidence to competitive success and admission to the…read more >",https://www.activityhero.com/biz/san-francisco-fencers-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5, 26",195,m,Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,77.02,63.49
119,Camp Doodles,Multiple Locations,Drawing and Painting Visual Arts Building,https://images.activityhero.com/provider_photo/98035/tile/1e864c93-20d5-4ec1-adea-f4fb971399c1.jpg,"Why Doodle?
We’re not like anyone else and that’s on purpose!
Our program is progressive and our curriculum is intentional. It has been designed by…read more >",https://www.activityhero.com/biz/camp-doodle,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,",27",30,f,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,46.98,90.47
120,Asian Arts School,Multiple Locations,Online Course Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/100749/tile/cf1bc163-b942-4fd5-ae51-fc561cdbe01d.JPG,"At Asian Arts Studio students have the opportunity to not only learn about creating works of art, but also Mandarin language and they are immersed in the…read more >",https://www.activityhero.com/biz/9168-asian-arts-studio-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5,27",17,f,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,70.96,19.26
121,Smithsonian Museum Day,Multiple Locations,Weekend Events Free Activities Science & Technology Visual Arts,https://images.activityhero.com/provider_photo/106422/tile/750416fb-82c0-4313-a194-62234e4a3891.jpg,Museum Day is an annual celebration of boundless curiosity hosted by Smithsonian magazine. Participating museums and cultural institutions across the…read more >,https://www.activityhero.com/biz/smithsonian-museum-day,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,"5, 26",21,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,97.06,56.28
122,Startup Wonder,Multiple Locations,Journalism Sports Play/Outdoor,https://images.activityhero.com/provider_photo/4545/tile/boy_taking_geometry_test.jpg,"Build a Summer Startup to Learn!K-12 Maker, Coder, Entrepreneur Summer Camps held at multiple locations Weeklong day camps with AM, Full-day and Extended…read more >",https://www.activityhero.com/biz/youth-startup,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,",27",13,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,56.28,5.31
123,Dragonfly Designs,Multiple Locations,Do-Together Cartooning Crafts,https://images.activityhero.com/provider_photo/96765/tile/2ed4baff-688c-4516-ba66-8286ece5147d.jpg,"Since 2005, Dragonfly Designs has been sharing the joy of art and jewelry making with our community in the San Francisco Bay Area & San Diego. The aim of…read more >",https://www.activityhero.com/biz/dragonfly-designs-jewelry-making-camps-and-classes,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"12,28",125,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,40.05,29
124,SpyCamp,"Adventurous Sports - San Francisco, CA",Birthday Parties Play/Outdoor Skiing and snowboarding,https://images.activityhero.com/provider_photo/5019/tile/db9478c9-8094-4544-b27d-71d655d3c6fa.gif,"Spy Camp uses the fun & excitement of espionage to teach our Cadets teamwork, creativity and science. Real missions, tracking clues, tailing operatives…read more >",https://www.activityhero.com/biz/13547-spy-camp-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5,27",2004,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,99.35,99.67
125,Play Rugby USA,Multiple Locations,Rugby Sports College Preparation/Counseling,https://images.activityhero.com/provider_photo/100117/tile/eb0312a7-5f71-4132-a05b-1ac50010dafe.jpg,"Our Mission is to use the unique power of rugby to empower and inspire youth, primarily from underserved communities, to go forward and realize their true…read more >",https://www.activityhero.com/biz/play-rugby-usa,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5,34",30,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,67.36,82.32
126,Third Haus,Multiple Locations,Online Course Language Building,https://images.activityhero.com/provider_photo/110727/tile/24bdd5bc-37a8-4330-9b6f-c460be8591a9.png,"A space for kids to both realize and release their passions through curiosity, commitment, and patience.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"5,26",17,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,51.13,33.53
127,The X Kids Tech Camp,Multiple Locations,Coding Gaming Science & Technology,https://images.activityhero.com/provider_photo/43250/tile/ffd0fb24-46e1-4a76-baf4-bf203b9cd0ba.jpg,"Robotics, Coding, Chess, and Minecraft/Starwars Club
The X Kids Tech Camp empowers youth through organic hands on learning. Our curriculum covers…read more >",https://www.activityhero.com/biz/18656-the-x-kids-tech-camp-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"5,26",21,f,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Computer Science,91.29,44.68
128,Next Level Sports,Multiple Locations,Sports Flag Football Basketball,https://images.activityhero.com/provider_photo/97257/tile/bd30be64-78ea-4398-97dd-11fb3993ee48.jpg,"Open to boys and girls from K - 7th grade. Football experience is NOT REQUIRED! No tryouts or combines.
Over 13 locations throughout the Bay Area and…read more >",https://www.activityhero.com/biz/next-level-flag-football,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,26",13,"m,f",STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,47.99,29.98
129,Alliance Francaise of San Francisco,"Main Location - San Francisco, CA",Science French Crafts,https://images.activityhero.com/provider_photo/112468/tile/4bec6577-47eb-4714-9d6c-003f0f0e8257.jpg,"Our mission is to promote knowledge and appreciation of the French language and Francophone cultures, and to encourage friendship and collaboration with the…read more >",https://www.activityhero.com/biz/alliance-francaise-of-san-francisco,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5,26",125,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,75.21,64.09
130,Eskabo Daan Filipino Martial Arts,Multiple Locations,Best of ActivityHero 2019 Fitness Martial Arts Sports,https://images.activityhero.com/provider_photo/110213/tile/7e7fdb62-40e0-4083-9c29-c1f8c7e5bf9e.jpg,"Eskabo Daan offers martial arts classes for kids and adults. In Daly City, SF, Hercules and Oakland. Our Filipino Martial Arts classes for children are…read more >",https://www.activityhero.com/biz/eskabo-daan,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5, 27",4004,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,30.4,27.33
131,Bay Area Disc Association,Multiple Locations,Frisbee Play/Outdoor Sports,https://images.activityhero.com/provider_photo/102176/tile/61996385-574e-4bb6-883d-65513d3276b3.jpg,Bay Area Disc Association’s mission is to strengthen local communities and foster sportsmanship by providing diverse opportunities for youth and adults of…read more >,https://www.activityhero.com/biz/bay-area-disc-association,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"5, 27",6004,"m,f",Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,70.18,61.23
132,"Creation Station, SAN FRANCISCO ONLY",Multiple Locations,Engineering Science & Technology Visual Arts,https://images.activityhero.com/provider_photo/142682/tile/145edf9a-5972-468c-b535-6050d7c29303.JPG,"We are currently offering VIRTUAL SUMMER PROGRAMMING for Summer 2020.Creation Station is a Science, Technology, Engineering, Arts, and Math (STEAM)…read more >",https://www.activityhero.com/biz/urban-services-ymca,,92.1,",28",146,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,81.24,22.71
133,San Francisco Art & Film for Teenagers,"Main Location - San Francisco, CA",Photography and Video Digital Media,https://images.activityhero.com/provider_photo/138490/tile/98d92476-e2f1-44bb-a752-b895cc25617b.jpeg,San Francisco Art & Film for Teenagers was established in 1993 to make the arts a constant and inspiring presence in young people's lives. Our motto is…read more >,https://www.activityhero.com/biz/san-francisco-art-film-for-teenagers,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,28",6,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,35.2,7.27
134,Firecracker Math,Multiple Locations,Academics Science Math,https://images.activityhero.com/provider_photo/145077/tile/55bd3e95-a2ef-4c8f-ba9a-29b7c82ea4ad.jpg,"Firecracker Math is for curious and challenges loving kids from 6 to 16. In our math classes, we will show your child that math can be incredibly…read more >",https://www.activityhero.com/biz/Firecracker-math,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5, 27",106,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,52.66,67.06
135,Angelinas Day Care,"Main Location - San Francisco, CA",Preschool Academics,https://images.activityhero.com/provider_photo/116018/tile/eeb9f187-5052-4e42-9867-a3ffecff7db8.jpg,"Angelinas Day Care is located in San Francisco, California and is offering classes and Day Care to Preschool kids. We are small by design, which allows…read more >",https://www.activityhero.com/biz/angelinas-day-care,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,",28",51,m,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,31.56,81.33
136,Giarratano Baseball Camp,"Main Location - San Francisco, CA",Baseball Sports,https://images.activityhero.com/provider_photo/112148/tile/30be1d86-692e-4e90-9933-2762592f2e27.jpg,Giarratano Baseball Camps at the University of San Francisco would like to invite all baseball players 6-13 years old to our Giarratano Baseball Camps All…read more >,https://www.activityhero.com/biz/giarratano-baseball-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"12,29",116,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,63.34,76.06
137,Camp Grigio,"Salesian Boys and Girls Club - San Francisco, CA",Gardening Academics Cooking,https://images.activityhero.com/provider_photo/140458/tile/5b2bc667-d793-4390-a5de-eabeaf3d3a32.JPG,"Located in the heart of North Beach, Camp Grigio is open to all children entering Pre-Kindergarten through the 3rd grade (3 to 8 years old and must be fully…read more >",https://www.activityhero.com/biz/4064-salesian-summer-day-camp-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,28",326,f,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,84.29,76.27
138,NerdLevels,Multiple Locations,Programming Gaming Computers,https://images.activityhero.com/provider_photo/112717/tile/29cf1c5d-3648-4bb6-9f83-2aff21422ed6.jpg,We teach teenagers how to build video games and websites using industry-level programing languages and their own designs to create releasable…read more >,https://www.activityhero.com/biz/nerdlevels,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,35",546,f,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,69.07,97.72
139,No Limits Day Camp,Multiple Locations,Biking Adventure/Outdoors Sports,https://images.activityhero.com/provider_photo/109692/tile/a2c41c1b-96a6-447f-aca2-20d5ef3a9af4.JPG,"At No Limits, we imagine a world where our kids are nurtured and encouraged to follow their hearts, to find their passions, to create a life of happiness.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,27",3005,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,38.96,87.04
140,National Parks Service,Multiple Locations,Free Activities Nature Programs Play/Outdoor,https://images.activityhero.com/provider_photo/107464/tile/7b7a0d20-a0c5-492c-b56d-cab163452795.JPG,"The National Park Service preserves unimpaired the natural and cultural resources and values of the National Park System for the enjoyment, education,…read more >",https://www.activityhero.com/biz/national-parks-service,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,27",196,m,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,64.71,80.16
141,Revolution Math from Revolution Prep,Multiple Locations,Online Course Math Tutoring,https://images.activityhero.com/provider_photo/107061/tile/977613ca-0920-42f0-a6a3-4276634b6524.png,"At Revolution Math, we’re passionate about elementary mathematics education. This shows up in everything from our program design to how we hire and train…read more >",https://www.activityhero.com/biz/revolution-prep-math-tutoring,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,27",31,m,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,33.24,48.46
142,Mana Kids,"McLaren Park, San Francisco - San Francisco, CA",Mindfulness Family Adventure/Outdoors,https://images.activityhero.com/provider_photo/106894/tile/1515e0b4-0177-4d7b-9600-e73a1f9c1349.JPG,We offer classes in the morning and afternoon for young children. We meet at local parks to play and engage our natural curiosity to learn and connect…read more >,https://www.activityhero.com/biz/mana-kids,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,27",18,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,82.29,86.67
143,SF MOMA,"SFMOMA - San Francisco, CA",Family Visual Arts,https://images.activityhero.com/provider_photo/106779/tile/1a9e1d89-ccd9-405c-a005-eee94e385aba.jpg,Welcome to San Francisco Museum of Modern Art (SFMOMA)! Plan an unforgettable visit with friends and family to one of the largest museums of modern and…read more >,https://www.activityhero.com/biz/san-francisco-museum-of-modern-art-sf-moma,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 28",22,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,75.58,91.59
144,"Korean Center, Inc.","Main Location - San Francisco, CA",Dance Korean Visual Arts,https://images.activityhero.com/provider_photo/102339/tile/8331e7d2-c720-45f3-b9dd-d32507ad29f1.jpg,"Korean Center, Inc. (KCI), founded in 1974, is a non-profit organization dedicated to serving the community by providing informational, educational, and…read more >",https://www.activityhero.com/biz/korean-center-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 28",14,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,41.92,23.16
145,Enrich Play Learn,"Main Location - San Francisco, CA",Gymnastics Visual Arts Lego,https://images.activityhero.com/provider_photo/101872/tile/4fae12d4-ae80-40fe-9d3f-114f97a4bd36.jpg,"Enrich Play Learn is a trimester based multi-enrichment program and summer camp. Kids, ages 2 to 8, experience six foundational learning modules including…read more >",https://www.activityhero.com/biz/enrich-play-learn,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,",29",126,f,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,74.27,61.72
146,All Stars Mandarin Center,Multiple Locations,Field Trips Chinese Language,https://images.activityhero.com/provider_photo/101779/tile/8e299dbb-f42a-4d01-986c-483eabce86a0.JPG,All-Stars Mandarin Center (ASMC) is a before and after-school Chinese program that was produced firstly out of need and has developed into a passion.,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,29",2005,"m,f",Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,84.87,33.81
147,RobinHood Adventures,Multiple Locations,Skateboarding Surfing General Recreation,https://images.activityhero.com/provider_photo/103689/tile/e2dbb878-2a57-40f8-aa2b-026925546826.jpg,UNWIND FROM THE DAY & CONNECT WITH THE OCEAN! BOYS AND GIRLS WILL DEVELOP THE SKILLS AND CONFIDENCE TO BECOME LIFELONG SURFERS.HOW WE GOT OUR…read more >,https://www.activityhero.com/biz/robinhood-adventures,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5, 28",31,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,82.76,82.26
148,Photosprouts LLC,"Main Location - San Francisco, CA",Photography and Video Digital Media Visual Arts,https://images.activityhero.com/provider_photo/101173/tile/4fe95ee9-f4b8-4e1b-ab40-bb5d357587a1.jpg,Photosprouts LLC is a photography education company based in San Francisco. We provide equipment for beginners.,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,",29",18,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,53.82,76.7
149,La Scuola International School,"Main Location - San Francisco, CA",Italian Puppetry Sewing,https://images.activityhero.com/provider_photo/100837/tile/84de4460-1e1e-458b-83bb-d10d8790669c.jpg,"La Scuola International School, the first Reggio Emilia – IB - Italian Immersion school in the world, will be running a unique Summer Camp for children ages…read more >",https://www.activityhero.com/biz/la-scuola-international-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"12,30",22,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,85.19,47.16
150,BlockSchool,Multiple Locations,Online Course Programming Computers,https://images.activityhero.com/provider_photo/100763/tile/c572c036-412f-4732-9640-d489c0966c7c.jpg,BlockSchool is the premier online coding school for kids ages 6-13. We host live classes over video chat between computer-science tutors from top schools…read more >,https://www.activityhero.com/biz/blockschool,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5,29",14,"m,f",STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,84.35,1.62
151,ActivityHero Gift Cards,Multiple Locations,Visual Arts Sports Science & Technology,https://images.activityhero.com/provider_photo/100375/tile/cfb34884-d081-4acf-9b18-022ef0eed665.png,"ActivityHero is the simple way to shop for kids summer camps, classes, and workshops. With ActivityHero, you can:See activities from hundreds of different…read more >",https://www.activityhero.com/biz/13475-activityhero-emeryville-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,"5,36",126,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,67.18,80.87
152,Community Events,Multiple Locations,Free Activities Online Course Drawing and Painting,https://images.activityhero.com/provider_photo/32326/tile/3fb3d451-e6e8-4eab-ab09-45d96abb4962.jpg,"Fun, local community events for the family.",,,23.9,"5,28",4005,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Computer Science,72.18,70.24
153,VRV3 Studios,"Main Location - San Francisco, CA",Acrobatics Aerial Dance,https://images.activityhero.com/provider_photo/99490/tile/ecee42eb-ebcb-42da-975a-6e989e5f4d9b.jpg,Our studio is committed to cultivating a safe and accepting fitness and dance community. We aim to erase the stigma of pole dance by fostering a creative…read more >,https://www.activityhero.com/biz/vrv3-studios,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"5,28",6005,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,83.46,4.65
154,Alonzo King LINES Ballet,Multiple Locations,Contemporary Ballet Dance,https://images.activityhero.com/provider_photo/101350/tile/40b31033-3105-43fe-aab2-00e31a4efee0.jpg,"Discover, dance and grow with Alonzo King LINES Ballet Kids @LINES Summer Dance Camps. Young movers and dancers experience the joy of dance in this unique…read more >",https://www.activityhero.com/biz/alonzo-king-lines-ballet,,25,"5,28",147,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,98.54,45.62
155,Lycée Français de San Francisco,Multiple Locations,Adventure/Outdoors French Language,https://images.activityhero.com/provider_photo/101535/tile/9b177d97-5096-44af-b4a6-7537521bb92c.JPG,"The Lycée Français de San Francisco (LFSF) boasts a diverse, international community of students, families, faculty/staff, and Board members, providing a…read more >",https://www.activityhero.com/biz/47979-lycee-francais-la-la-perouse-french-summer-camp-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5,28",7,f,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,81.64,98.21
156,Booth Lacrosse Camps and Classes,Multiple Locations,Adventure/Outdoors Sports Lacrosse,https://images.activityhero.com/provider_photo/111410/tile/69f09c2d-9b0a-437c-8069-e64ae84a8a7a.png,What sets Booth lacrosse camps apart?Coaching styleWe focus and the kids having fun while giving them all of the details of what it takes to become a…read more >,https://www.activityhero.com/biz/booth-lacrosse-camps-and-classes,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"5, 29",107,f,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,97.13,54
157,First Steps Song Studios,Multiple Locations,Preschool Family Music,https://images.activityhero.com/provider_photo/115209/tile/6660ced6-0655-4b17-927f-866613358b99.jpg,"First Steps Song Studios is located in San Francisco, California and is offering Kindermusik classes for babies and children, from newborns to…read more >",https://www.activityhero.com/biz/first-steps-song-studios,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"5, 29",52,m,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,90.64,33.84
158,Purusha,"Main Location - San Francisco, CA",Fitness Mindfulness Yoga,https://images.activityhero.com/provider_photo/123520/tile/1b346618-a3c7-4743-8004-2098630e7a1f.jpg,"Purusha provides yoga lessons for teens and adults of all ages in San Francisco California. We provide a yoga class specifically for teens: breath work,…read more >",https://www.activityhero.com/biz/purusha,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,",30",117,m,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Computer Science,99.82,99.01
159,Athens Debate,Multiple Locations,Leadership Academics Public Speaking,https://images.activityhero.com/provider_photo/122945/tile/5d233bf2-790f-4817-93b9-77a63c49ac85.jpg,Athens Debate is the most successful private speech and debate academy in the Bay Area. The Athens Debate program teaches students how to become confident…read more >,https://www.activityhero.com/biz/athens-debate-67481,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5,30",327,m,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,65.23,54.23
160,Yoga Phamily,"Main Location - San Francisco, CA",Family Yoga Sports,https://images.activityhero.com/provider_photo/119373/tile/39423bcd-86af-455e-bc40-649097132d0b.jpg,Yoga Phamily offers various yoga classes for kids and family in San Fransisco California. We strive to make yoga accessible to everyone and offer a…read more >,https://www.activityhero.com/biz/yoga-phamily,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5, 29",547,m,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Math & Logic,76.6,19.12
161,WorldWideWomen Foundation,Multiple Locations,Business Family,https://images.activityhero.com/provider_photo/114982/tile/79f25ed7-1190-4be6-a897-c288d8c8d753.jpg,"The WorldWideWomen Foundation's mission is to connect girls and women with organizations, programs, and services--both locally and around the world--that…read more >",https://www.activityhero.com/biz/worldwidewomen-foundation,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,",30",3006,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,58.11,86.97
162,BACCC Bay Area (Bay Area Community College Consortium),Multiple Locations,Free Activities Programming Computers,https://images.activityhero.com/provider_photo/112428/tile/499123c4-3ba5-4665-9e8a-f4adb9eaac59.png,BACCC Bay Area (Bay Area Community College Consortium) offers a Summer Camp program built to educate students to the fundamentals of Cybersecurity and…read more >,https://www.activityhero.com/biz/baccc-bay-area-bay-area-community-college-consortium,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"12,31",197,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,48.7,65.53
163,Celia Lobo Academy of Voice (CLAV),Multiple Locations,Acting Drama/Theater Performing Arts,https://images.activityhero.com/provider_photo/109487/tile/ab29fc66-9eca-4111-ad37-108a2c751817.JPG,"OVERVIEW OF CLAV and ITS PROGRAMS CLAV develops students holistically and not just artistically. We do this by teaching students values, and treating fellow…read more >",https://www.activityhero.com/biz/celia-lobo-academy-of-voice-clav,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,30",32,f,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,31.28,75.45
164,Embark Arts,Multiple Locations,Photography and Video Ceramics Drawing and Painting,https://images.activityhero.com/provider_photo/98992/tile/35b5c45d-b667-46d4-ac37-40405219b612.jpg,"Embark Arts is a nonprofit arts organization whose mission is to provide a space for an engaged community of artists, curators and scholars. We aim to…read more >",https://www.activityhero.com/biz/embark-arts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,37",19,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,32.05,77.96
165,Silicon Valley Kids,"White House SF - San Francisco, CA",Engineering Woodworking Sculpture,https://images.activityhero.com/provider_photo/96049/tile/9eec8e4b-cfc3-4afa-8d56-86ef929d8c0e.png,"Not only did we gather together seasoned professionals, but they are also parents who are passionate about sharing their knowledge with children to make…read more >",https://www.activityhero.com/biz/global-innovation-access-usa-inc,,24.9,"5,29",23,"m,f",STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Computer Science,92.6,1.67
166,FrameArt Studio,"Main Location - San Francisco, CA",Digital Media Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/96418/tile/219c742f-ceb6-4563-bc7a-e14f7ce45ba7.jpg,"In our Kids Art Classes we explore a variety of different art media while teaching technical skills in drawing, painting, printmaking, and collage. Lisa…read more >",https://www.activityhero.com/biz/frameart-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,29",15,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,47.46,28.92
167,IntegrArte SF,"Main Location - San Francisco, CA",Language Spanish,https://images.activityhero.com/provider_photo/94704/tile/64e8af4e-0254-4f8a-9ff5-a820943b3af0.jpg,"We are a collective of professionals and Latin American parents, dedicated to promote love and appreciation for our culture and language, as well as love…read more >",https://www.activityhero.com/biz/66288-integrarte-sf-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,29",127,"m,f",Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,73.98,67.79
168,International Art Museum of America,"Main Location - San Francisco, CA",Free Activities Crafts Drawing and Painting,https://images.activityhero.com/provider_photo/130874/tile/dff06690-5478-4f94-b515-56154891ab98.jpg,Our mission is to engage the local community with the greater world. To offer our space as a place of reflection and exchange. To provide an inclusive space…read more >,https://www.activityhero.com/biz/65355-international-art-museum-of-america-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,29",2006,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,85.34,90.29
169,Girls Make Games,Multiple Locations,Girls Only Science & Technology Computers,https://images.activityhero.com/provider_photo/96011/tile/53586e6f-642b-4f88-8486-a83639c6253e.jpg,"Girls Make Games is a series of international summer camps, workshops and game jams designed to inspire the next generation of designers, creators, and…read more >",https://www.activityhero.com/biz/girls-make-games,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5, 30",32,"m,f",STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Math & Logic,45.41,15.63
170,Ivy Goal,Multiple Locations,Online Course Tutoring Math,https://images.activityhero.com/provider_photo/113230/tile/25f880a9-889b-4c8c-a071-7ce3c61df3b1.jpg,IvyGoal’s individualized tutoring is the ultimate educational support any child can have. Not only is it the most effective way for your child to achieve…read more >,https://www.activityhero.com/biz/23649-ivy-goal-san-mateo-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5, 30",19,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,80.64,63.82
171,Young Actors' Theatre Camp,Multiple Locations,Acting Performing Arts Audition skills,https://images.activityhero.com/provider_photo/38960/tile/cf68b69d-1fd4-43d7-b818-e0b113b451f7.jpg,Young Actors’ Theatre Camp (YATC) has a multi-award winning programs focus on discovering and developing each individual student’s talents in all the…read more >,https://www.activityhero.com/biz/young-actors-theatre-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,",31",23,m,STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Math & Logic,62.38,71.14
172,Screenagers Movie,Multiple Locations,Mindfulness Family Free Activities,https://images.activityhero.com/provider_photo/130872/tile/3a278711-7989-49bb-b956-1b24efef8bbb.jpg,"Are you watching kids scroll through life, with their rapid-fire thumbs and a six-second attention span? Physician and filmmaker Delaney Ruston saw that…read more >",https://www.activityhero.com/biz/screenagers,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,31",15,m,STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Math & Logic,75.94,76.7
173,Krav Maga San Francisco,"Main Location - San Francisco, CA",Fitness Martial Arts Adventure/Outdoors,https://images.activityhero.com/provider_photo/112573/tile/7ef88725-6cea-41f5-8e78-2cccabb24963.jpg,"KMSF presents Defenders of the Arts Kids Camps!In this week-long camp, your child will learn a blend of Krav Maga self-defense, Jiu Jitsu, music, dance,…read more >",https://www.activityhero.com/biz/krav-maga-san-francisco,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 30",127,f,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,98.23,24.82
174,Free Online Classes,Multiple Locations,Online Course Free Activities Christian,https://images.activityhero.com/provider_photo/143944/tile/fad07357-ecfc-44e8-8dc6-c6afb7322a96.jpg,You can find a variety of free online classes available for different age groups. These are live sessions conducted by people at specific dates and times.…read more >,https://www.activityhero.com/biz/free-online-classes,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,",31",4006,f,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,90.74,62.93
175,ViBO Music,Multiple Locations,Performing Arts Music,https://images.activityhero.com/provider_photo/109741/tile/1d5518b3-380f-4928-b594-bfc6f90a36b6.jpg,"Besides traditional private lessons, what makes ViBO Music unique is a variety of programs, such as ensembles, bands, concerts, music camps, dance…read more >",https://www.activityhero.com/biz/vibo-music,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"12,32",6006,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,54.34,94.82
176,Wind Over Water,"Main Location - San Francisco, CA",Water Sports Adventure/Outdoors,https://assets.activityhero.com/images/featured/tile/placeholder-1.jpg,"Wind Over Water Surf Shop is the premier kite boarding & surfing school in the Bay Area. WOW caters to adventure-seeking, fun-loving water enthusiasts of…read more >",https://www.activityhero.com/biz/wind-over-water,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,31",148,m,STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,57.63,16.48
177,Ming-Hai Wu School of Ballet,"Main Location - San Francisco, CA",Dance Ballet Performing Arts,https://images.activityhero.com/provider_photo/108407/tile/57505a18-3e7b-4d2f-ba55-4b700fb5ec0e.jpg,Mr Wu established the Ming-Hai School of ballet to help cultivate an appreciation of dance in the next generation of his chosen community.,,,14.9,"5,38",8,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,73.87,59.2
178,Creative Bug Preschool,"Main Location - San Francisco, CA",Preschool Adventure/Outdoors Yoga,https://images.activityhero.com/provider_photo/125310/tile/1bd36e24-672b-4524-a396-90da5bbf31fc.jpg,"Creative Bug Preschool is a private forest school for children between the ages of two and six, focused on providing exceptional individualized care for…read more >",https://www.activityhero.com/biz/creative-bug-preschool,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,30",108,m,Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,43.3,34.72
179,Indian Classical Dance - Bharatanatyam Classes,Multiple Locations,Dance Indian Classical Performing Arts,https://images.activityhero.com/provider_photo/111819/tile/7046a344-d743-40c6-b013-80bc7dd6c102.JPG,Bharatanatyam is one of the Indian Classical Dance forms originated from Tamil Nadu a state in South India. It is practiced and performed in all over the…read more >,https://www.activityhero.com/biz/indian-classical-dance-classes,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,30",53,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,70.85,52.42
180,San Francisco Ballet,"Main Location - San Francisco, CA",Dance Music Performing Arts,https://images.activityhero.com/provider_photo/111577/tile/16c23536-f0a5-432c-9e14-56c12afc7a4d.jpg,"K-12 Programs: Dance in Schools and Communities (DISC) residency program in SFUSD schools, Professional Development Workshops for teachers and educators,…read more >",https://www.activityhero.com/biz/san-francisco-ballet,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,30",118,m,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,68.13,38.53
181,San Francisco Lacrosse Club,Multiple Locations,Lacrosse Sports,https://images.activityhero.com/provider_photo/111491/tile/ce45eb3b-1652-4c14-ae89-dbef9a1a6672.png,"Riptide Lacrosse is a non-profit club serving boys and girls across San Francisco. We are a volunteer run and are always looking for coaches, referees…read more >",https://www.activityhero.com/biz/san-francisco-lacrosse-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,30",328,f,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,61.95,16.32
182,Bluebell Kids Daycare,"Main Location - San Francisco, CA",Preschool Russian,https://images.activityhero.com/provider_photo/111488/tile/9fd3ef4e-5e88-4c5f-a8cc-5c90b2eab838.jpg,"Bluebell Kids Daycare, Preschool in the Marina is a parent education program serving families with children ages birth through five years. The program is…read more >",https://www.activityhero.com/biz/bluebell-kids-daycare,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5, 31",548,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,75.91,67.15
183,University of San Francisco Koret Center,"Koret Health & Recreation Center - San Francisco, CA",Adventure/Outdoors Multisport Visual Arts,https://images.activityhero.com/provider_photo/111150/tile/96f75e67-1c2e-475c-b907-74b658c57dae.png,"Our mission is to provide desired recreational sports activities, programs, and services to USF students, faculty, staff, alumni, and limited neighborhood…read more >",https://www.activityhero.com/biz/university-of-san-francisco-koret-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5, 31",3007,"m,f",Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,90.82,24.02
184,Wah Mei School,"Main Location - San Francisco, CA",Chinese Math Visual Arts,https://images.activityhero.com/provider_photo/110049/tile/21c79150-6983-44aa-94a9-104776de8575.png,Our mission for our Chinese program at Wah Mei is to provide an interactive learning experience for children. And we transform the “boring” Chinese…read more >,https://www.activityhero.com/biz/wah-mei-school-63299,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,",32",198,"m,f",STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,68.5,2.93
185,Golden Gate Mothers Group,"SFF Soccer Field - San Francisco, CA",General Recreation,https://images.activityhero.com/provider_photo/107341/tile/99298347-91df-4282-b2a4-101cb384c951.jpg,GGMG was founded in 1996 by a group of San Francisco moms. We are a completely volunteer-run organization (we are all moms too!) who work hard to support…read more >,https://www.activityhero.com/biz/golden-gate-mothers-group,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,32",33,"m,f",STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,80.42,73.74
186,Bay Area Science Festival,Multiple Locations,Engineering Free Activities Science & Technology,https://images.activityhero.com/provider_photo/106827/tile/37e73011-3e86-484e-9257-26646d478440.jpg,"Celebrate the Bay Area’s scientific wonders, resources, and opportunities. Explore the role of science, engineering, and technology locally & in the…read more >",https://www.activityhero.com/biz/bay-area-science-festival,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5, 31",20,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,56.32,26.4
187,Alexander Tutoring,"Main Location - San Francisco, CA",Academics Math Science,https://images.activityhero.com/provider_photo/101878/tile/52db8528-efe9-41b3-94cf-4fcb0bb211cc.jpg,Alexander Tutoring is a unique tutoring organization that offers Math and Physics tutoring for Middle School/High School and adult students. We provide…read more >,https://www.activityhero.com/biz/alexander-tutoring,,48.4,",32",24,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,33.5,75.47
188,Two Rivers Soccer Camp,Multiple Locations,General Recreation Overnight/Residential Soccer,https://images.activityhero.com/provider_photo/109464/tile/a260cec3-506f-454a-9510-82e77b47f5a0.jpg,"Two Rivers Soccer Camp is located in Graeagle, California (approximately one hour from North Lake Tahoe and/or Reno, NV) nestled in the majestic Sierra with…read more >",https://www.activityhero.com/biz/24663-two-rivers-soccer-camp-graeagle-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"12,33",16,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,97.52,86.04
189,Cello Rock Camp,Multiple Locations,Rock Cello Music,https://images.activityhero.com/provider_photo/101588/tile/624e1a6d-9cdf-4de9-b2dc-070c68bd3025.jpg,Cello Rock Camp is a chance for young cellists to step away from classical repertoire to learn some rock and roll elements and apply it to their instrument.…read more >,https://www.activityhero.com/biz/cello-rock-camp,,67.3,"5,32",128,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,43.64,12.95
190,Camp Headlands,Multiple Locations,Overnight/Residential Mindfulness Adventure/Outdoors,https://images.activityhero.com/provider_photo/101373/tile/aa519a05-ac21-45d9-98ec-03de3a26ec0d.png,"Experience ADVENTURE inside out at Camp Headlands! Within our fun, safe, loving, supportive and growth-oriented COMMUNITY of open-minded campers and staff,…read more >",https://www.activityhero.com/biz/camp-headlands,,63.3,"5,39",2007,m,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,71.59,76.53
191,Gakko,Multiple Locations,Overnight/Residential International Studies Academics,https://images.activityhero.com/provider_photo/100623/tile/0541a7ab-806b-4d74-9772-a77653c4e3ba.jpg,Gakko Camps bring together driven & empathetic individuals from around the world to design and participate in two-week summer camps. Our team of camp…read more >,https://www.activityhero.com/biz/gakko,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,31",33,f,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,49.12,88.84
192,Zaccho's Center for Dance and Aerial Arts,"Main Location - San Francisco, CA",,https://images.activityhero.com/provider_photo/99669/tile/45e48291-67ac-4212-aee6-b14d727e46be.JPG,"ZACCHO'S CENTER FOR DANCE AND AERIAL ARTS (CDAA) offers after-school, evening and weekend classes that specialize in aerial dance technical training,…read more >",https://www.activityhero.com/biz/zaccho-s-center-for-dance-and-aerial-arts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,31",20,f,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,82.13,14.2
193,California Academy of Sciences,"Main Location - San Francisco, CA",Free Activities Science Marine Science,https://images.activityhero.com/provider_photo/119139/tile/afca9b85-bc7b-49a7-80ce-71bd2b5a6bae.jpg,"The California Academy of Sciences is a renowned scientific and educational institution dedicated to exploring, explaining, and sustaining life on Earth.…read more >",https://www.activityhero.com/biz/66220-california-academy-of-sciences-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,31",24,m,STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Math & Logic,98.67,13
194,Dr. Carol,Multiple Locations,Online Course Leadership Reading,https://images.activityhero.com/provider_photo/145962/tile/50f39ea4-6fea-4048-b699-5ed9ef686dcc.jpg,"As a trained therapist and researcher, my primary work has been with teen girls. In 2014, I wrote a book called, Girl Talk: Boys, Bullies, and Body Image…read more >",https://www.activityhero.com/biz/dr-carol,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,31",16,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,96.2,87.66
195,Best in Class Education Center SF,Multiple Locations,Online Course Academics Academic Writing,https://images.activityhero.com/provider_photo/145925/tile/97269f93-e65c-4f51-804e-f07ec4207e16.jpg,"We help students develop the skills and knowledge they need for a bright future. Best in Class students benefit from individual attention, active…read more >",https://www.activityhero.com/biz/best-in-class-education-center-74078,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5, 32",128,m,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Math & Logic,55.82,66.86
196,Marc Yu Music,Multiple Locations,Music Theory Piano Music,https://images.activityhero.com/provider_photo/145802/tile/8cf7fedf-a362-42d3-845f-64eafe3c6b53.jpg,"In your one-hour Zoom lessons, we will break down what it is YOU want to learn musically and work through the steps together. Whether it's beginner-level…read more >",https://www.activityhero.com/biz/marc-yu-music,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5, 32",4007,m,STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,80.21,41.23
197,Mission Graduates,"Main Location - San Francisco, CA",Spanish Academics After School Care,https://images.activityhero.com/provider_photo/146058/tile/b07c2831-e8d8-4f96-8cc3-d742a5b649eb.jpg,"Through a wide range of afterschool, in-school, and summer programs, Mission Graduates is creating a college-going culture right here in the Mission…read more >",https://www.activityhero.com/biz/mission-graduates,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,",33",6007,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,88.68,70.75
198,The Paradox Lab,Multiple Locations,Social Skills Science Performing Arts,https://images.activityhero.com/provider_photo/144924/tile/adc6cc61-ecdf-491e-b129-37fdcde6391f.png,"Have you ever wondered if colors look the same to other people, or if strawberries taste the same to other animals, or if a robot could ever feel pain? Have…read more >",https://www.activityhero.com/biz/the-paradox-lab,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,33",149,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,99.32,54.07
199,Little Meetings,Multiple Locations,Online Course Preschool Chinese,https://images.activityhero.com/provider_photo/144691/tile/a75cee9d-9962-483e-abe8-35c86e8ec7fe.jpg,Little meetings is a online learning platform for preschoolers to learn Mandarin.,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5, 32",9,f,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,75.31,95.83
200,Local Food Adventures,Multiple Locations,History Family Do-Together,https://images.activityhero.com/provider_photo/112708/tile/0a4fb260-dffd-46e7-a67a-f1defb6f284e.jpg,"Local Food Adventures is located in Oakland, California. We offer summer camp for kids of all ages. Give your East Bay summer camp kids a new field trip…read more >",https://www.activityhero.com/biz/local-food-adventures,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,",33",109,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,80.02,48.53
201,Mission Arts Center,"Main Location - San Francisco, CA",Crafts Visual Arts,https://images.activityhero.com/provider_photo/129753/tile/044ba4c0-8d93-400a-9ace-b70e22dff0ed.jpg,Mission Arts Center is a San Francisco Recreation and Parks Facility located in heart of San Francisco’s Mission District. Located on Treat Avenue and 21st…read more >,https://www.activityhero.com/biz/mission-arts-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"12,34",54,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Math & Logic,95.02,61.25
202,MemberDeals,Multiple Locations,Drama/Theater Performing Arts Family,https://images.activityhero.com/provider_photo/127845/tile/0383459a-8955-4c59-be71-5dcae72c2e7f.png,"Find Exclusive Discounts for ActivityHero Families! Special member discounts & exclusive entertainment offers! Save up to 60% on theme parks, Broadway…read more >",https://www.activityhero.com/biz/memberdeals,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,33",119,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,96.56,62.72
203,Jai Kids,"Main Location - San Francisco, CA",Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/114823/tile/5dd6e6e6-87b2-4754-a39c-3fcaa09da646.png,"The three classical branches of art are painting, sculpture and architecture. Music, theatre, film, dance, and other performing arts, as well as…read more >",https://www.activityhero.com/biz/jai-kids,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,40",329,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,79.45,36.39
204,San Francisco Chinese Foursquare Church,Multiple Locations,Christian Adventure/Outdoors Chinese,https://images.activityhero.com/provider_photo/111956/tile/eb7cc249-aaf8-4da3-8c8c-3c5aeceb38be.jpg,"Each day participants explore new themes through a wide variety of activities including field trips and outdoor games, crafts and academic practices,…read more >",https://www.activityhero.com/biz/san-francisco-chinese-foursquare-church,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,32",549,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,72.86,23
205,Harmonic Mosaic Music,Multiple Locations,Online Course Music Guitar,https://images.activityhero.com/provider_photo/64666/tile/df8cb237-3d2a-4bad-bb8a-05123b00c793.,"Harmonic Mosaic was created on St. Patricks day in the year 2000 The classes are given for individual and or public and private, one on one or group…read more >",https://www.activityhero.com/biz/42994-harmonic-mosaic-music-beaverton-or,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5,32",3008,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,92.53,68.87
206,PUSH Dance Company,"Main Location - San Francisco, CA",Modern Hip Hop Dance,https://images.activityhero.com/provider_photo/100025/tile/e2d6eeb7-a777-458c-88ab-7cb402fabbd1.jpg,PUSH Outreach intends to provide year round dance training by succinctly featuring African American culture for low-income youth in afterschool programs.…read more >,https://www.activityhero.com/biz/push-dance-company,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,32",199,"m,f",STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,94.78,31.72
207,Seeds of Awareness,Multiple Locations,Mindfulness Nature Programs Adventure/Outdoors,https://images.activityhero.com/provider_photo/99145/tile/c91a255d-b106-4576-a6ab-666cad98924b.JPG,Seeds of Awareness offers wrap around support to schools and communities utilizing our mindfulness-based methodologies. We are changing the world we live…read more >,https://www.activityhero.com/biz/seeds-of-awareness,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,32",34,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,85.61,37.54
208,Robotics Tech Club,Multiple Locations,Virtual Camp Fair Engineering Robotics Science & Technology,https://images.activityhero.com/provider_photo/132741/tile/c806a45a-52b3-4402-a6d3-d8893f026112.jpg,"Robotics Tech Club offers after school year-round Robotics and Technology classes for kids grades K-8. We Build Robots. We offer classes in Dash and Dot,…read more >",https://www.activityhero.com/biz/robotics-tech-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5, 33",21,m,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Math & Logic,70.01,44.6
209,BrasArte,"Casa de Cultura - Berkeley, CA",Free Activities Dance Performing Arts,https://images.activityhero.com/provider_photo/103337/tile/b5cf752b-59bf-4744-b74e-2e300ea44a21.jpg,BrasArte is one of the few arts and cultural organizations in the Bay Area with a focus specifically on preserving the traditional dances and music of…read more >,https://www.activityhero.com/biz/13353-brasarte-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5, 33",25,f,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,77.55,99.26
210,Coach Max Camps and Alameda Vipers,Multiple Locations,Basketball Drop-off,https://images.activityhero.com/provider_photo/132372/tile/94e6c04f-cf93-461f-993e-8fb7c50be054.jpg,"The Alameda Vipers Basketball Club is based in the City of Alameda in Alameda County, CA and offers basketball camps for children during the school…read more >",https://www.activityhero.com/biz/alameda-vipers-63905,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,",34",17,f,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,97.41,99.77
211,Brushstrokes Studio,Multiple Locations,Best of ActivityHero 2015 Best of ActivityHero 2016 Best of ActivityHero 2017 Clay Pottery Drawing and Painting,https://images.activityhero.com/provider_photo/98411/tile/6d97dd88-c058-465d-9f51-32b367b4d533.jpg,"What will your child make? This summer, we'll be painting pottery, sculpting with wet clay, fusing glass, making mosaics, and doing tons of drawing and…read more >",https://www.activityhero.com/biz/4415-brushstrokes-studio-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,34",129,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,68.28,81.47
212,SUGAR N SPICE,"Main Location - Daly City, CA",Ceramics Cooking Visual Arts,https://images.activityhero.com/provider_photo/100629/tile/72cd04f5-c99e-496f-aab0-e8edc17d9314.jpg,Kidz Culinary has been a part of Sugar N Spice since 2000. We were the Pioneer in the SF Bay Area to launch a Children's Culinary Baking Program. We…read more >,https://www.activityhero.com/biz/sugar-n-spice,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5, 33",2008,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,37.57,68.04
213,Performance Tennis w/ Dan Hiddleson,Multiple Locations,Sports Tennis Play/Outdoor,https://images.activityhero.com/provider_photo/110037/tile/40c649c8-0869-4608-b1d3-4648006a78d5.jpeg,"Former top-ranked Northern California junior, Cal-Berkeley PAC-10 scholarship tennis player, ATP touring pro & and current 5.5 tennis player & USPTA…read more >",https://www.activityhero.com/biz/performance-tennis-w-dan-hiddleson,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,",34",34,m,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,97.22,64.76
214,Bright Side Camp,Multiple Locations,Field Trips Play/Outdoor Water Sports,https://images.activityhero.com/provider_photo/111876/tile/dfcbd5a5-4ad0-4dab-a569-77969332975d.jpg,Bright Side Camp came to play this summer! We are a summer day camp located in the East Bay and we are excited to begin our SUMMER ADVENTURE together! Our…read more >,https://www.activityhero.com/biz/bright-side-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"12,35",21,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,65.01,96.04
215,Triple Threat Academy,Multiple Locations,Basketball Sports Soccer,https://images.activityhero.com/provider_photo/3531/tile/Triple_threat_2.jpg,Triple Threat Academy is a year round basketball skill development program. Our focus is building the fundamentals necessary to succeed at whatever level…read more >,https://www.activityhero.com/biz/triple-threat-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,34",25,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,33.73,39.9
216,Kids Gym Berkeley,"Main Location - Berkeley, CA",General Recreation Crafts Science,https://images.activityhero.com/provider_photo/112249/tile/5f4f9e03-23c7-4b78-a1ae-1b9021e0cc17.jpg,"We provide a super fun, safe, therapeutic and educational place for all kids. A full inclusion multi sensory activity center.
At Kids Gym Berkeley, we…read more >",https://www.activityhero.com/biz/we-rock-the-spectrum-berkeley,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,41",17,m,Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,82.43,19.73
217,La Peña Cultural Center,"Main Location - Berkeley, CA",Spanish Dance Music,https://images.activityhero.com/provider_photo/101542/tile/5e145d1e-0eef-4feb-ab24-3293cb2a797a.jpg,"La Peña Cultural Center offers a place of solidarity, community, and intercultural understanding by presenting weekly cultural events and classes, rooted in…read more >",https://www.activityhero.com/biz/la-pena-cultural-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,33",129,f,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Computer Science,96.23,73.77
218,SF State Community Youth Sailing and Paddling Program,"Lake Merced, San Francisco, CA - San Francisco, CA",Adventure/Outdoors Play/Outdoor Kayaking,https://images.activityhero.com/provider_photo/70925/tile/6ca369b8-958d-4664-8dd8-f46fd8ebe10a.jpg,"The SF State Summer Youth Sailing and Paddling Program is a sailing, kayaking and standup paddle boarding safety, science and environmental education…read more >",https://www.activityhero.com/biz/2849-sf-state-community-youth-sailing-and-paddling-program-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,33",4008,"m,f",STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Computer Science,53.91,45.96
219,Studio 505 Dance and Movement Arts,"Main Location - San Francisco, CA",Ballet Hip Hop Dance,https://images.activityhero.com/provider_photo/119131/tile/542778d6-d76b-4612-840b-6b506d71beb1.jpeg,"Studio 505 offers quality dance, fitness, and martial arts instruction in a supportive, inclusive environment. No matter which class you choose, you'll…read more >",https://www.activityhero.com/biz/studio-505-dance-and-movement-arts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,33",6008,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,97.63,96.47
220,Aloha Mind Math of Walnut Creek and Oakland,Multiple Locations,Online Course Academics Math,https://images.activityhero.com/provider_photo/101204/tile/1f66a9af-a3a4-4177-9072-fc419d181a4f.jpeg,"At ALOHA, we are passionate about visual math and inspiring kids to develop confidence and agility in math.Did you know math is rooted in our visual neural…read more >",https://www.activityhero.com/biz/66858-aloha-mind-math-walnut-creek-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,33",150,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,58.57,12.83
221,Kids 'N' Clay Pottery Studio,"Main Location - Berkeley, CA",Birthday Parties Visual Arts Ceramics,https://images.activityhero.com/provider_photo/130602/tile/ad411a67-c53d-47a5-b55b-308612347687.jpg,"Kids N' Clay is a children's ceramic studio based in Berkeley, California, offering nationally recognized wet clay programs for kids ages 3 – 18. Our…read more >",https://www.activityhero.com/biz/8804-kids-n-clay-pottery-studio-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 34",10,"m,f",STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Computer Science,68.75,58.6
222,Little Theater Company,Multiple Locations,Drawing and Painting Drama/Theater Performing Arts,https://images.activityhero.com/provider_photo/107031/tile/94362403-44bf-48c6-b3fc-72434548745a.JPG,Introducing the very first theater company for kids by kids! At The Little Theater Company we believe in bringing the joy of theater to kids of ages 5-11 in…read more >,https://www.activityhero.com/biz/little-theater-company,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5, 34",110,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,70.58,91.02
223,Little Medical School - California,Multiple Locations,Academics Science Online Course,https://images.activityhero.com/provider_photo/109979/tile/33458cc0-6abd-40d8-a98c-7f491edd1253.png,IGNITE YOUR CHILD'S PASSION TODAY!Little Medical School is an academic enrichment program that helps students from K-5th grade explore the world of…read more >,https://www.activityhero.com/biz/67376-little-medical-school-los-altos-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,",35",55,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Math & Logic,97.8,58.63
224,Downtown Oakland YMCA,"Main Location - Oakland, CA",Computers Adventure/Outdoors Crafts,https://images.activityhero.com/provider_photo/104604/tile/514e4abf-7aa2-411f-930e-6cdf17536862.JPG,"The Downtown Oakland YMCA is a full-service fitness facility and pool. Our state-of-the-art equipment, movement studios and aquatics center are matched by a…read more >",https://www.activityhero.com/biz/downtown-oakland-ymca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,35",120,"m,f",Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,69.27,39.69
225,Oakland Glee Summer Camp,"Oakland Glee Program Business Address - Oakland, CA",Performing Arts,https://images.activityhero.com/provider_photo/4757/tile/glee_rose_garden.JPG,Oakland Glee Camp is a youth performance arts camp specifically designed for ages 9-14. Our camp mission is to inspire young performers and enrich their…read more >,https://www.activityhero.com/biz/17203-oakland-glee-summer-camp-oakland-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5, 34",330,m,STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Math & Logic,89.48,17.83
226,ABSC - Albany Berkeley Soccer Club,Multiple Locations,Soccer,https://images.activityhero.com/provider_photo/95858/tile/e8a539bb-0ed6-4515-b0ee-050b69335009.jpg,The Albany-Berkeley Soccer Club (ABSC) is a year-round soccer club with over 2000 players. We are a non-profit organization dedicated to providing…read more >,https://www.activityhero.com/biz/absc-albany-berkeley-soccer-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,",35",550,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,42.24,67.52
227,Cooking Round The World,Multiple Locations,International Studies Cooking,https://images.activityhero.com/provider_photo/102238/tile/fe24008e-1387-407e-99bb-dac95b7b3ca2.JPG,Cooking Round the World is the juncture where cultural exploration meets culinary arts! We invite children from ages 6-13 to be a part of our exciting…read more >,https://www.activityhero.com/biz/cooking-round-the-world,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"12,36",3009,f,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,60.6,45.57
228,Blaster Camp,Multiple Locations,Fitness Sports,https://images.activityhero.com/provider_photo/109364/tile/5ea3e86d-cd38-424f-a811-ac492100ee21.jpeg,"BLASTER CAMP IS SAFE, FUN & EXCITING NERF BLASTER GAMES & BATTLES THAT HELP YOUR CHILD DEVELOP SPEED, QUICKNESS, ENDURANCE, AND AGILITY. The perfect way…read more >",https://www.activityhero.com/biz/66456-marin-blaster-camp-sausalito-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,35",200,f,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,48.81,6.4
229,Aspiring Entrepreneurs' Engineering Institute,Multiple Locations,Finance Business Leadership,https://images.activityhero.com/provider_photo/96856/tile/26a0fc10-fe23-4f2a-bed2-8a94692921b4.JPG,"Founded in Silicon Valley, the Aspiring Entrepreneurs’ Engineering Institute was created for the youth ages 12-17 to instill an entrepreneurial mindset…read more >",https://www.activityhero.com/biz/aspiring-engineers-entrepreneurship-program,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5,42",35,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,40.03,39.78
230,Encore Lacrosse,Multiple Locations,Lacrosse Sports,https://images.activityhero.com/provider_photo/447/tile/open-uri20130516-2-woko82,Currently we offer Team Competition Events. Reach out and let us know if you are interested in learning more.Encore Brand Lacrosse provides the…read more >,https://www.activityhero.com/biz/encore-lacrosse,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5,34",22,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,95.43,75.49
231,Emeryville Martial Arts,Multiple Locations,Martial Arts Online Course Sports,https://images.activityhero.com/provider_photo/116178/tile/5b1335e4-cc56-4c6d-baa8-2963e8cb9471.jpg,"Camp will include karate, judo and aikido techniques as well as yoga, aerobic fitness and self defense. Swim and enjoy a field trip each week, related…read more >",https://www.activityhero.com/biz/emeryville-martial-arts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,34",26,m,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,96.26,43.04
232,Honey Art Studio,Multiple Locations,Crafts Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/112978/tile/2efcdbae-d708-434f-ba9c-322162a7f535.JPG,"Honey Art Studio is an art company that features exciting, vivid and creative art activities including: painting, drawing, re-purposed art and fashion,…read more >",https://www.activityhero.com/biz/honey-art-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,34",18,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,86.23,9.72
233,Shredders Skate Camp,Multiple Locations,Skateboarding Adventure/Outdoors After School Care,https://images.activityhero.com/provider_photo/75797/tile/2440860c-0eb0-4815-ae0f-04b4bea6830b.jpg,About Chris von Blohn:Our goal at Shredders is to show and teach Campers how to enjoy skateboarding the way we enjoy it ourselves. I appreciate the…read more >,https://www.activityhero.com/biz/56841-shredders-skate-camp-mill-valley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,34",130,"m,f",Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,70.42,29.37
234,Camp Perigee,Multiple Locations,Science & Technology Play/Outdoor Lego,https://images.activityhero.com/provider_photo/102755/tile/08688507-f9c7-4fd8-85f5-0ea961bcc3b8.jpeg,"Play + build + create + move + inquire... dream!At The Perigee we provide children the space to grow their creativity, critical thinking skills, and…read more >",https://www.activityhero.com/biz/the-perigee-collective,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5, 35",2009,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,95.62,38.72
235,uCamps,Multiple Locations,Best of ActivityHero 2015 Best of ActivityHero 2016 Overnight/Travel Music Performing Arts,https://images.activityhero.com/provider_photo/6905/tile/1_Closing_Ceremony.jpg,"The uCamps mission is to bring happiness to campers, grades 2-12, by providing fun, educational, arts, leadership and outdoor enrichment programs. Our…read more >",https://www.activityhero.com/biz/ucamps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5, 35",35,f,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,58.99,92.92
236,Peek-a-Boo Factory,"Daly City - Daly City, CA",Visual Arts Music Crafts,https://images.activityhero.com/provider_photo/95316/tile/6bca6c6e-5686-444f-9062-27c6986f3b12.jpg,"Peek-a-Boo Factory is a premier indoor playground and party place designed for parents to allow their children to socialize, learn and play by creating an…read more >",https://www.activityhero.com/biz/20346-peek-a-boo-factory-san-francisco-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,",36",22,"m,f",Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,58.22,88.13
237,The Home Depot,Multiple Locations,Free Activities Visual Arts Crafts,https://images.activityhero.com/provider_photo/99948/tile/e0fad870-8ac4-4006-a5e0-3322a90af997.jpg,"HANDS-ON LEARNING, EXPERT ADVICE.....Join a Home Depot workshop at your nearest store this week!Kids workshops provide a lively environment mixing…read more >",https://www.activityhero.com/biz/home-depot,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,36",26,"m,f",Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,85.2,83.04
238,Bliss Belly Kitchen,Multiple Locations,Mindfulness Yoga Cooking,https://images.activityhero.com/provider_photo/96851/tile/78318621-c28d-4477-ae6d-57867cdbd494.JPG,Chef Neelam utilizes healthy locally sourced organic ingredients to teach your children about the basic principles and fundamentals of healthy cooking and…read more >,https://www.activityhero.com/biz/68273-bliss-belly-kitchen-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5, 35",18,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,45.73,64.54
239,Euro School of Tennis,Multiple Locations,Sports Swimming Tennis,https://images.activityhero.com/provider_photo/107833/tile/0d32dd62-92ee-417c-8dc5-b468b8e28a9e.jpg,"Enjoy the benefits of playing tennis with Euro School of Tennis, located in the beautiful San Francisco Bay Area. We offer a full array of tennis programs…read more >",https://www.activityhero.com/biz/euro-school-of-tennis,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,",36",130,"m,f",Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,81.87,9.21
240,Bladium Alameda,"Main Location - Alameda, CA",General Recreation Sports Soccer,https://assets.activityhero.com/images/featured/tile/placeholder-2.jpg,"Bladium Sports & Fitness Club’s 175,000 square foot facility includes a complete fitness center, group exercise classes, CrossFit, mixed martial arts, adult…read more >",https://www.activityhero.com/biz/bladium,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"12,37",4009,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,75.78,3.65
241,Challenger Sports Soccer Camps,Multiple Locations,Sports Soccer Rugby,https://images.activityhero.com/provider_photo/140373/tile/34b9212b-7759-4d7e-b99d-3bba74e27595.JPG,"Challenger Sports, the largest soccer camp company in North America will run over 2,000 camps this summer and utilize over 30 years of coaching…read more >",https://www.activityhero.com/biz/challenger-sports-soccer-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,36",6009,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,68.97,95.82
242,JCPenney Kid Zone,Multiple Locations,Free Activities Visual Arts,https://images.activityhero.com/provider_photo/112614/tile/232713d5-3416-4448-a59a-836c1c3d401f.jpg,"JCPenney's Kid Zone offers FREE classes on the second Saturday of every month! Kids get a FUN craft project, ID Badge, a lanyard, collectors pins. If…read more >",https://www.activityhero.com/biz/jcpenney,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,43",151,"m,f",Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,91.38,15.92
243,Everyday Mandarin,"Main Location - Daly City, CA",General Recreation Chinese Language,https://images.activityhero.com/provider_photo/102139/tile/cac4ae25-46e9-482f-8e39-29f69246bf67.jpg,Everyday Mandarin focuses on the immersion style of instruction while using Western teaching methodologies. The goal is to excite students to learn Mandarin…read more >,https://www.activityhero.com/biz/everyday-mandarin,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,35",11,m,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,60.13,27.01
244,Kala Art Institute,"Main Location - Berkeley, CA",Clay Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/109110/tile/d57afab3-ea4a-45a9-bc97-bb836e2230f5.jpg,"Kala’s education programs are at the heart of our work. As a community-oriented organization, Kala Art Institute is firmly committed to quality art…read more >",https://www.activityhero.com/biz/66666-kala-art-institute-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,35",111,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,40.58,50.07
245,Swings and Wings,"Main Location - Alameda, CA",Play/Outdoor Drawing and Painting Academic Writing,https://images.activityhero.com/provider_photo/143446/tile/103fb3fd-c603-4f60-a7de-429e3568a42f.jpg,"Swings and Wings is a indoor sensory-based play place, designed and owned by an Occupational Therapist.What this simply means is that your child will have…read more >",https://www.activityhero.com/biz/swings-and-wings,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,35",56,f,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,36.12,28.35
246,East Bay Fencers Gym,"East Bay Fencers Gym - Oakland, CA",Fencing Sports,https://images.activityhero.com/provider_photo/142539/tile/5c4da0ad-f7ba-4328-bb09-2f85fdd355c1.jpg,The East Bay Fencers Gym (EBFG) is dedicated to the art and sport of fencing. We focus on both technical skill and physical fitness. We offer advanced…read more >,https://www.activityhero.com/biz/east-bay-fencers-gym,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,35",121,f,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,51.27,17.36
247,Cantare Con Vivo,Multiple Locations,Music Performing Arts,https://images.activityhero.com/provider_photo/111449/tile/8c82567d-54b5-4b09-84dd-e7d8d9bed512.png,"Cantare Con Vivo offers camps to kids, during the Spring and Fall breaks in Oakland, California. Our programs provides choral music performance…read more >",https://www.activityhero.com/biz/cantare-con-vivo,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5, 36",331,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,83.63,31.54
248,West Wind Schools,Multiple Locations,Fitness Martial Arts Sports,https://images.activityhero.com/provider_photo/111397/tile/3e100e51-ef19-4132-a460-d592895f88bd.jpg,"West Wind Schools offers camps to kids, teens, and adults, during the summer break in Berkeley, California. We provide classes in Karate, Kung-Fu style…read more >",https://www.activityhero.com/biz/west-wind-schools,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5, 36",551,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,77.75,80.76
249,Building on the Best - Words in the Wild Camp,Multiple Locations,Academic Writing Play/Outdoor Reading,https://images.activityhero.com/provider_photo/110130/tile/536bab13-a28d-44b2-836d-aac72f7965b2.jpeg,"Words in the Wild provides an academic boost AND exciting enrichment in our adventurous outdoor classrooms in Fairyland, the Gardens at Lake Merritt, and…read more >",https://www.activityhero.com/biz/building-on-the-best,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,",37",3010,m,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,87.63,34.81
250,DanceCool Studios,Multiple Locations,Online Course Ballroom Dance,https://images.activityhero.com/provider_photo/110611/tile/c7a8263b-49d8-4399-bb06-0c52ecf57f44.jpg,At DanceCool Studios we specialize in teaching ballroom dancing to kids starting from age of 2 and welcome adults for private sessions. We have unique…read more >,https://www.activityhero.com/biz/dancecool-studios,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,37",201,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,58.93,27.69
251,Bay Area Seminoles Football,"Main Location - Oakland, CA",Football Sports Cheerleading,https://images.activityhero.com/provider_photo/110467/tile/cb2ca0b5-6ed3-4f05-8d5a-87e646221a63.png,"In 2010 We Lead Ours (WELO) was founded in Oakland California by Dwayne Aikens Jr., Lamont Robinson Jr., and Trestin George. Our mission is to provide…read more >",https://www.activityhero.com/biz/bay-area-seminoles-football,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 36",36,"m,f",STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Math & Logic,39.18,87.43
252,BANDALOOP,"Main Location - Oakland, CA",Aerial Climbing Visual Arts,https://images.activityhero.com/provider_photo/109751/tile/81a382d4-7ce4-44e5-bbf6-d9295d28fd2c.jpg,"BANDALOOP in Oakland, California offers camps and workshops for children. During our program, our students will develop safety awareness, athletic…read more >",https://www.activityhero.com/biz/bandaloop,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,",37",23,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,62.52,82.83
253,"Bay Area Festivals, Inc.",Multiple Locations,General Recreation Academics Science,https://images.activityhero.com/provider_photo/106105/tile/e5dfb462-617a-407e-9e76-10cac91d0013.JPG,"The Silicon Valley, Marin and East Bay Camp Fairs have been postponed due to COVID-10 event restrictions. Stay tuned for new dates.Bay Area Festivals…read more >",https://www.activityhero.com/biz/bay-area-festivals-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"12,38",27,f,Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,83.09,3.07
254,Farm Camp,Multiple Locations,Overnight/Residential Farm Horseback Riding,https://images.activityhero.com/provider_photo/108531/tile/a8faa19e-6c77-440d-aac5-c06a2248f243.png,Farm Camp offers a traditional summer camp experience on a real working farm. We work to create a fun and safe environment that encourages independence…read more >,https://www.activityhero.com/biz/farm-camp-62436,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,37",19,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Computer Science,80.33,35.25
255,Young Gates,Multiple Locations,Online Course Homeschool Gaming,https://images.activityhero.com/provider_photo/94294/tile/b0df5430-289b-407d-a3e8-ff4df298dc4f.jpg,"“Animation”, “Drawing”, “Games”, “Interactive Art”, “Math”, “Music” , “Simulation” and much more…Programming helps in :Creative ThinkingReason…read more >",https://www.activityhero.com/biz/65941-scratch-python-programming-step-by-step-fremont-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,44",131,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,36.81,79.05
256,Mike's Paddle Kids SUP Summer Camp!,"Main Location - Alameda, CA",Fitness Yoga Water Sports,https://images.activityhero.com/provider_photo/105826/tile/3a41a5d3-a3f5-41a7-ba20-ee634c50662b.JPG,"Walk on water at Mike's Paddle Kids SUP Summer Camp! Explore beautiful Ballena Bay, Alameda while we learn to stand up paddle board. Breathtaking views of…read more >",https://www.activityhero.com/biz/mike-s-paddle-kids-sup-summer-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,36",2010,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Math & Logic,57.05,80.87
257,EastBay Badminton Association,"Main Location - Emeryville, CA",Badminton,https://images.activityhero.com/provider_photo/136223/tile/74a83b6b-0ca1-4fc6-91e4-1d4603e64aa6.JPG,Eastbay Badminton Association is a full service facility with 8 Olympic standard courts dedicated entirely to the sport of badminton that is open to the…read more >,https://www.activityhero.com/biz/eastbay-badminton-association,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5,36",36,"m,f",Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,38.17,79.06
258,Coding Dojo,Multiple Locations,Programming Computers Science & Technology,https://images.activityhero.com/provider_photo/103349/tile/1ab17670-3fb0-41cd-9276-9bd287c79007.jpg,"Coding Dojo's 4 week Summer Bootcamp provides an accelerated, all day learning experience for ambitious, high potential students who are seriously…read more >",https://www.activityhero.com/biz/coding-dojo,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,36",23,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Math & Logic,60.76,30.91
259,Bay Area Ballet Conservatory,"Main Location - South San Francisco, CA",Dance Ballet,https://images.activityhero.com/provider_photo/110479/tile/64194bf3-b48d-49f0-905a-9fa4f35fe68a.jpg,"Bay Area Ballet Conservatory offers premier classical ballet training to ages 2 to adult, as well as an array of other dance disciplines such as hip-hop,…read more >",https://www.activityhero.com/biz/bay-area-ballet-conservatory,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5,36",27,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,42.09,70.61
260,Art in the Park,Multiple Locations,Nature Programs Drawing and Painting Visual Arts,https://assets.activityhero.com/images/featured/tile/placeholder-1.jpg,"Create, Discover, Grow! Art in the Park is a weekly summer camp that explores creativity through daily art projects and outdoor activities. Campers will…read more >",https://www.activityhero.com/biz/art-in-the-park-summer-camp-create-discover-grow,,49.4,"5, 37",19,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,59.94,98.46
261,Alameda Community Sailing Center,"Main Location - Alameda, CA",Sailing Sports Science,https://images.activityhero.com/provider_photo/100761/tile/8b88f04d-64d0-4219-a161-2735dbbbb3ff.jpg,Alameda Community Sailing Center is a volunteer led non-profit dedicated to getting residents of the East Bay to see San Francisco Bay as a playground…read more >,https://www.activityhero.com/biz/alameda-community-sailing-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5, 37",131,m,STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Computer Science,45.09,92.19
262,Spaulding Marine Center,"Main Location - Sausalito, CA",Science & Technology Adventure/Outdoors Sailing,https://images.activityhero.com/provider_photo/100333/tile/865a55b1-a76a-4e7f-b655-464308841354.jpg,"Spaulding offers summer camps, after school programs, and smaller workshops that teach hands-on, practical maritime arts and tool skills.The Spaulding…read more >",https://www.activityhero.com/biz/spaulding-marine-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,",38",4010,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,97.16,19.17
263,Barnes & Noble,Multiple Locations,Free Activities Lego Building,https://images.activityhero.com/provider_photo/100277/tile/59f6e869-df0a-43a9-83cf-c2fe03d5d016.jpg,"Barnes & Noble is the world’s largest bookseller and a leading retailer of content, digital media and educational products. Our Chidren's Department…read more >",https://www.activityhero.com/biz/barnes-noble,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,38",6010,f,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,89.05,13.33
264,Pacific Boychoir Academy,"Main Location - Oakland, CA",Music Theory Field Trips Music,https://images.activityhero.com/provider_photo/99819/tile/c619cd93-9bf9-41a1-ac68-e41c078bf131.jpg,"Pacific Boychoir Academy develops confident, engaged young men who are capable of achieving extraordinary outcomes through personal discipline and…read more >",https://www.activityhero.com/biz/pacific-boychoir-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5, 37",152,f,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Computer Science,60.27,59.97
265,Berkeley Youth Alternatives,"Main Location - Berkeley, CA",Basketball Family Fitness,https://images.activityhero.com/provider_photo/112743/tile/d713cc12-535f-4c40-9f01-8c331d37e361.JPG,"Berkeley Youth Alternatives is a community based organization. Our vision is to provide a secure and nurturing environment for all the children, youth,…read more >",https://www.activityhero.com/biz/berkeley-youth-alternatives,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,",38",12,m,STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Computer Science,91.84,25.23
266,Gaia Girls Passages,Multiple Locations,Overnight/Residential Girls Only Nature Programs,https://images.activityhero.com/provider_photo/95171/tile/09bef30a-6840-45c8-9635-036f2b80c3f1.jpg,Gaia Girls Passages is dedicated to supporting girls through the transition from childhood into adolescence and from adolescence into their teenage years…read more >,https://www.activityhero.com/biz/66627-gaia-girls-passages-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"12,39",112,m,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,49.55,74.56
267,Head Over Heels Athletic Arts,"Head Over Heels - Emeryville, CA",Gymnastics Sports Visual Arts,https://images.activityhero.com/provider_photo/103695/tile/de416bb1-bece-485b-b6ee-85d23c7eaa5b.jpg,HOH camp is more than just a place to learn gymnastics. Our mission is to step beyond basic skill attainment and holistically examine what it takes to be…read more >,https://www.activityhero.com/biz/4466-head-over-heels-athletic-arts-emeryville-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,38",57,m,Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,48.36,83.83
268,Mindful Schools,Multiple Locations,Online Course Social Skills Mindfulness,https://images.activityhero.com/provider_photo/144883/tile/d80b4490-ad2f-4a13-b9a5-febc7378cb4a.png,"Mindful Schools is a 501(c)(3) nonprofit organization. We have trained more than 50,000 teachers, school leaders, and education professionals to prepare…read more >",https://www.activityhero.com/biz/mindful-schools,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5,45",122,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,94.03,99.9
269,WingChun Berkeley,"Main Location - Berkeley, CA",Martial Arts,https://images.activityhero.com/provider_photo/138324/tile/8d36ec93-6603-4b49-9282-38264c0913c2.jpg,"In WingChun, strength, and efficacy become less correlated to your body size, ages, and genders. Rather than that, training quality, consistency,…read more >",https://www.activityhero.com/biz/wingchun-berkeley,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5,37",332,"m,f",STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,89.5,98.17
270,School of Martial Arts & Hip Hop,"Main Location - South San Francisco, CA",Fitness Hip Hop Martial Arts,https://images.activityhero.com/provider_photo/136079/tile/85174669-78f3-4c10-a89a-a00d3ef50cba.png,School Of Martial Arts and Hip Hop is an after-school training program designed to develop character and empower students through strong mentorship. Our…read more >,https://www.activityhero.com/biz/school-of-martial-arts-hip-hop,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,37",552,m,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Math & Logic,42.71,25.59
271,Impact Through Debate,Multiple Locations,Academics Academic Writing Public Speaking,https://images.activityhero.com/provider_photo/112677/tile/4c421878-47b8-4154-ada9-a1165c3f0239.jpg,Impact Through Debate is a non-profit organization that provides support to speech and debate programs at middle and high schools. We support nearly 100…read more >,https://www.activityhero.com/biz/impact-through-debate,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,37",3011,f,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,85.88,83.56
272,Alameda Aikikai,"Main Location - Alameda, CA",Japanese Fitness Martial Arts,https://images.activityhero.com/provider_photo/113935/tile/29713191-d582-4df3-a2b4-27de5ffbf8c7.jpeg,"Alameda Aikikai offers beginning through advanced classes for all ages in Aikido, weapons, Iaido, as well as Zazen meditation.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,37",202,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,81.74,48.21
273,Global Dance Camps,Multiple Locations,Dance Performing Arts Visual Arts,https://images.activityhero.com/provider_photo/111794/tile/4e3a8ae0-d95a-4ed8-bc5c-78af5a18bd82.jpg,"Global Dance Camp for Youth offers an amazingly fun, well-structured, and cultural performing arts day camp for youth in Oakland, CA and surrounding Bay…read more >",https://www.activityhero.com/biz/global-dance-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5, 38",37,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,89.84,11.75
274,Capoeira Arts Foundation,"Main Location - Berkeley, CA",Acrobatics Dance Martial Arts,https://images.activityhero.com/provider_photo/98977/tile/fe35bad7-1b02-4745-8067-118661e0436b.jpg,"The Capoeira Arts Foundation, Inc. is a California based, 501(c)(3) not for profit organization. It reflects the vision of Mestre Acordeon (Ubirajara G.…read more >",https://www.activityhero.com/biz/capoeira-arts-foundation,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5, 38",24,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,96.83,86.08
275,Joy Kids Center,"Summer Camp Location - Alameda, CA",Science & Technology Academics Chinese,https://images.activityhero.com/provider_photo/98787/tile/52538822-41c3-45ff-8900-68117c89b7d8.png,We provide fun learning and fantastic facilities with dedicated staff and proven curricula. Established with the goal of making learning enjoyable for…read more >,https://www.activityhero.com/biz/joy-kids-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,",39",28,"m,f",Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,84.06,18.99
276,The Artory Summer Theatre Experience,"Shotgun Players Rehearsal Studios - Berkeley, CA",Performing Arts Drama/Theater,https://images.activityhero.com/provider_photo/96028/tile/436ab3e5-93cb-4a87-bdbf-9afbbd92c34e.jpg,"Taught by the Bay Area’s leading professional artists and educators, The Artory Summer Theatre Experience offers dynamic theatre training for grades 1-8. …read more >",https://www.activityhero.com/biz/67383-the-artory-summer-theatre-intensive-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,39",20,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,80.3,5.52
277,Goju Karate,"Goju Karate - Oakland, CA",Martial Arts Mindfulness Fitness,https://images.activityhero.com/provider_photo/6706/tile/Goju-Karate-dojo.jpg,"Become Better.Whatever Better means to you, this is the place to study and train for it.Strong. Smart. Focused. Balanced. Flexible. Aware. Disciplined.…read more >",https://www.activityhero.com/biz/20002-goju-karate-san-rafael-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5, 38",132,"m,f",Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,60.24,1.86
278,Museum of Children's Arts,"MOCHA - Oakland, CA",Birthday Parties Visual Arts Sculpture,https://images.activityhero.com/provider_photo/3093/tile/ReinaParty.jpg,"MOCHA provides hands-on arts learning experiences for children and their families in our museum, in schools and preschools, and in public venues.
MOCHA…read more >",https://www.activityhero.com/biz/13179-museum-of-children-s-arts-oakland-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,",39",2011,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,99,21.72
279,Two Decades Academy,Multiple Locations,International Studies Academics Public Speaking,https://images.activityhero.com/provider_photo/142035/tile/dd5de93d-fd5f-4c13-9395-c0ec62409687.jpg,Two Decades Academy is an Educational Organization created for high-impact Middle and High School students to amplify their skills in political…read more >,https://www.activityhero.com/biz/two-decades-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"12,40",37,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,81.9,93.42
280,Pacifica Archery,"Main Location - Daly City, CA",Archery,https://images.activityhero.com/provider_photo/108895/tile/3da54210-bb8f-4570-a3dc-497faaf3cc35.jpg,"Pacifica Archery serves as an all-purpose shop for shooters of any age. Now, the pair stays busy supervising 15 lanes, scheduling lessons for various…read more >",https://www.activityhero.com/biz/pacifica-archery,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,39",24,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,48.89,74.29
281,Bayganda,Multiple Locations,Flexible Booking Mindfulness Sewing Fashion Design,https://images.activityhero.com/provider_photo/140326/tile/2fcf63ae-b8c7-46a6-a297-609a5952ca6c.jpeg,The Bayganda Foundation uses the art of sewing to empower young girls (and a few boys) ages 8-15 to use their creativity and education not only as a…read more >,https://www.activityhero.com/biz/bayganda,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,46",28,f,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,68.67,15.8
282,Aztec Tennis Club,Multiple Locations,Tennis Sports,https://images.activityhero.com/provider_photo/111591/tile/b9df99fe-40a4-4e34-8f07-98a52a5a57d7.png,"Aztec Tennis Club offers camp and classes to children ages 5 to 16 and adults, during the Summer in Berkeley, California. Our camp delivers effective…read more >",https://www.activityhero.com/biz/aztec-tennis-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,38",20,f,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,87.42,68.03
283,Camp Reel Stories,Multiple Locations,Girls Only Photography and Video Visual Arts,https://images.activityhero.com/provider_photo/111572/tile/f8a086bd-f206-4ea1-9fb1-a974c3a49a82.jpg,"Reel Stories is a film program for girls and non-binary youth based in Oakland, CA. Reel Stories offers women and non-binary people of all ages an…read more >",https://www.activityhero.com/biz/camp-reel-stories-64061,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,38",132,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,94.75,92.2
284,Maya Carina,"Main Location - Oakland, CA",Creative Writing Voice Music,https://images.activityhero.com/provider_photo/110807/tile/42ef2866-0194-45b2-ae9f-661689b7b3f9.JPG,"Maya Carina offers music camps, workshops and classes in Oakland, California. First we discuss empowering subjects then we write in a stream of conscious…read more >",https://www.activityhero.com/biz/maya-carina-63599,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,38",4011,m,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,42.92,24.63
285,Calm & Colorful,Multiple Locations,Online Course Mindfulness Crafts,https://images.activityhero.com/provider_photo/107242/tile/8a9b99b2-7d9e-48a7-8b79-b5f208375fa7.jpg,"I am Jessica Brittani, founder of Calm & Colorful.At Calm & Colorful we guide children to be mindful of the present moment while building and enhancing life…read more >",https://www.activityhero.com/biz/calm-colorful,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,38",6011,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,61.48,42.95
286,ITK Culinary,"Main Location - Emeryville, CA",Building Family Cooking,https://images.activityhero.com/provider_photo/103157/tile/9cef7b8a-860c-490e-b233-2d79f66b6b15.JPG,ITK Culinary has been offering superior cooking classes since 2008. Our classes are designed for non-professional chefs who are looking for authentic…read more >,https://www.activityhero.com/biz/itk-culinary,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5, 39",153,m,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,85.6,57.66
287,Camp Common Ground,Multiple Locations,Overnight/Residential Adventure/Outdoors Leadership,https://images.activityhero.com/provider_photo/103019/tile/00ce8cf6-c69c-43a6-b678-272faf254484.jpeg,Camp Common Ground is an overnight camp and year-round leadership program that brings together 6th-8th graders from different socioeconomic and racial…read more >,https://www.activityhero.com/biz/camp-common-ground,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5, 39",13,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,55.82,46.04
288,Rob Skate Academy,"Main Location - Oakland, CA",Social Skills Skateboarding Sports,https://images.activityhero.com/provider_photo/106796/tile/ff85dad9-8458-4a87-ae4e-80e1e73c2d7d.JPG,"Ensuring Enjoyable ExperiencesThe Rob Skate Academy has been around for over 10 years serving the San Francisco, Bay Area and many other places across the…read more >",https://www.activityhero.com/biz/rob-skate-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,",40",113,m,Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,89.33,8.84
289,Bay Area Teen Science (B.A.T.S.),Multiple Locations,,https://images.activityhero.com/provider_photo/101493/tile/20dcc480-6bb4-4260-b13a-ee9c2a3410d5.jpg,"Bay Area Teen Science (B.A.T.S.) is a portal to Science, Technology, Engineering, and Math (STEM) opportunities for all San Francisco Bay Area teens. It’s…read more >",https://www.activityhero.com/biz/bay-area-teen-science-b-a-t-s,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5,40",58,f,STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Math & Logic,99.74,5.19
290,Athletic Playground,Multiple Locations,Circus Fitness Martial Arts,https://images.activityhero.com/provider_photo/145487/tile/b92d493a-456a-494c-9485-674f36c4bd10.jpg,"Athletic Playground is a playful training space for all movers, founded in 2008. We (normally) offer over 100 classes every week across a wide range of…read more >",https://www.activityhero.com/biz/athletic-playground,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5, 39",123,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,71.61,76.4
291,Piano Everyone,Multiple Locations,Piano Music Performing Arts,https://images.activityhero.com/provider_photo/145028/tile/0e9dbc67-d7e0-4a7c-b3ed-4c18bcf57e4c.png,"We teach group and private lessons online for adults and children ages 6-7, 8-15 and 16 and up. The Piano Everyone approach... 1. Piano will be the first…read more >",https://www.activityhero.com/biz/piano-everyone,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,",40",333,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,69.68,7.96
292,PPAS Studio,Multiple Locations,Online Course Drama/Theater Performing Arts,https://images.activityhero.com/provider_photo/144997/tile/e42489da-f34f-4278-bab9-3f34326beb8e.jpg,We teach adults and children how to develop self-confidence and self esteem through creativity within the performing arts-ONLINE. We are committed to…read more >,https://www.activityhero.com/biz/ppas-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"12,41",553,"m,f",STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,65.36,88.52
293,San Francisco Early Music Society,Multiple Locations,History Dance Music,https://images.activityhero.com/provider_photo/109417/tile/cd8069b4-2f2c-4b28-834a-08fcb1e22d9b.png,"SFEMS produces one of the longest running early music chamber music series in the nation. Annually, we produce at least six sets of major chamber concerts…read more >",https://www.activityhero.com/biz/san-francisco-early-music-society,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,40",3012,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,38.27,60.12
294,Bay-Made,"Main Location - Oakland, CA",Clay Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/112682/tile/447e6794-a7f5-49a5-b3ad-2473f69bbe60.jpg,Three day camp sessions will be for ages 6-9 yrs (Junior Crafters) and 10 and up (Tween/Teen Crafters). Each session will have a new theme with different…read more >,https://www.activityhero.com/biz/bay-made,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,47",203,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,54.24,63.95
295,Black Oak Wilderness School,Multiple Locations,Backpacking Adventure/Outdoors Archery,https://images.activityhero.com/provider_photo/112734/tile/66627ab8-eb24-426a-b483-77e3e873b042.jpg,"Black Oak Wilderness School offers summer camp for students in Oakland, California. Camping classes are two nights long starting on a Friday evening and…read more >",https://www.activityhero.com/biz/black-oak-wilderness-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5,39",38,"m,f",STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,90.91,99.61
296,Happy Picasso,"Main Location - Daly City, CA",,https://images.activityhero.com/provider_photo/108487/tile/c9bbf949-25b1-4a67-aacf-425b7b78094c.jpg,"Happy Picasso in Daly City, California offers art classes for kids. Our aim is to create awareness of and arouse interest in the arts among children of…read more >",https://www.activityhero.com/biz/happy-picasso,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,39",25,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,31.87,67.56
297,Once Upon Your Mind,"Main Location - Oakland, CA",Comedy Drama/Theater Performing Arts,https://images.activityhero.com/provider_photo/100107/tile/edcf1d0c-d8dc-4fd1-8411-b56267de1620.png,"Once Upon Your Mind provides interactive storytelling for the whole family. We offer classes in theater and improv. Through creative games and exercises,…read more >",https://www.activityhero.com/biz/once-upon-your-mind,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,39",29,m,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,63.08,15.55
298,Junior Center of Art and Science,"Main Location - Oakland, CA",Carpentry Science Visual Arts,https://images.activityhero.com/provider_photo/99201/tile/a4385677-e420-45d0-bab3-13d09cbf06ca.jpg,The Junior Center of Arts and Science provides hands on multi-disciplinary programming to children aged 5-17 years through our after school enrichment and…read more >,https://www.activityhero.com/biz/junior-center-of-art-and-science,,26.9,"5,39",21,m,Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,50.99,70.98
299,Oakland Strokes Summer Camp,Multiple Locations,Rowing,https://images.activityhero.com/provider_photo/99153/tile/be86848d-1460-4f0e-8b11-3b5aadb71c03.jpg,"Established in 1974, the Oakland Strokes rowing club welcomes middle and high school students from across the Bay Area to our youth rowing club on the…read more >",https://www.activityhero.com/biz/oakland-strokes-summer-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5, 40",133,f,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,98.36,61.03
300,The Joy of Dance Ballet School,"Main Location - Sausalito, CA",Pointe Dance Ballet,https://images.activityhero.com/provider_photo/109583/tile/06875cd8-ca51-4f39-8588-68331d257fb4.jpg,"Here at The Joy of Dance Ballet School, we offer ballet classes for children, toddlers, and adults, teaching time-honored classical ballet technique with…read more >",https://www.activityhero.com/biz/the-joy-of-dance-ballet-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5, 40",2012,f,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,31.69,98.74
301,Camp Chrysalis,"Camp Chrysalis - Berkeley, CA",Overnight/Travel Adventure/Outdoors Wilderness,https://images.activityhero.com/provider_photo/3653/tile/chrysallis2.JPG,"Now in its 38th year, Camp Chrysalis has developed a distinctive approach to environmental education, offering children rich experiences that combine…read more >",https://www.activityhero.com/biz/4237-camp-chrysalis-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,",41",38,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,95.61,10.62
302,Clay House Art,"Main Location - Burlingame, CA",Chinese Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/140651/tile/2ec104f0-526c-4f6c-bd16-4be9f39eac21.jpg,"Clay House Art was created on a bold belief that artistic expression could make the world a better place. In 2017, co-founders Angie Chi and Philip Chun…read more >",https://www.activityhero.com/biz/clay-house-art-72171,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,"5,41",25,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Computer Science,73.24,26.55
303,CAM Educational Services,Multiple Locations,Online Course Chinese Academics,https://images.activityhero.com/provider_photo/101302/tile/d5fd288c-ba56-4afe-9bd8-4118977ba53b.JPG,"CAM Educational Services is a learning institution that offers Math, English, and Chinese enhancement courses as well as homework help for Pre-K through…read more >",https://www.activityhero.com/biz/cam-educational-services-59550,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"5, 40",29,m,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,64.26,42.2
304,Seele Stars,Multiple Locations,Best of ActivityHero 2019 Drama/Theater Dance Performing Arts,https://images.activityhero.com/provider_photo/140529/tile/fd6b775a-9068-4015-99af-bcb92a0cf21c.JPG,"Seele Stars offers camps to kids, during the Summer and Spring breaks in Berkeley, California. Our programs are performance-based and emphasize many…read more >",https://www.activityhero.com/biz/seele-stars,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,",41",21,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,30.41,11.53
305,Yes for Chess,Multiple Locations,Academics Chess After School Care,https://images.activityhero.com/provider_photo/144900/tile/2dbd096a-56b7-4165-8f43-3d0df4aa919e.jpg,"Yes for Chess takes a unique approach to teaching chess to children. We develop critical thinking, creative problem-solving, concentration and patience.…read more >",https://www.activityhero.com/biz/yes-for-chess,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"12,42",133,"m,f",Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,93.78,81.63
306,One Big Love Studio,"Main Location - Oakland, CA",Ceramics Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/98213/tile/085696bd-41f4-4c0b-900f-c2f52270bb0a.JPG,Oakland artist Iranshid Ghadimi and one big love studio invite kids ages 6-10 to think and feel like an artist. These safe and fun workshops are designed to…read more >,https://www.activityhero.com/biz/obl-summer-art-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"5,41",4012,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,85.06,99.66
307,Grandma's House,Multiple Locations,Mindfulness Sewing Cooking,https://images.activityhero.com/provider_photo/112074/tile/20b42b6c-a07f-4256-9432-8c7337674d73.jpeg,"We know that you're looking for a camp that will be entertaining during your camper's holiday. The problem is, you're not sure where to send them! The…read more >",https://www.activityhero.com/biz/grandma-s-house,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"5,48",6012,f,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,37.07,76.14
308,Gymworld,Multiple Locations,Online Course Gymnastics Sports,https://images.activityhero.com/provider_photo/94556/tile/a821a862-9faa-4490-9c1d-4fb38d2317e6.jpg,"Gymworld was created to pass on the knowledge and beauty of gymnastics to all children. Founded by Mexican National competitor, Lourdes Esquivel, and…read more >",https://www.activityhero.com/biz/8772-gymworld-san-rafael-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,40",154,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,39.26,87.56
309,Adventure Kids Summer Camp,Multiple Locations,Field Trips Adventure/Outdoors Skateboarding,https://images.activityhero.com/provider_photo/101566/tile/75133182-1dc3-4d87-bc06-1e82812617e2.jpg,"Adventure Kids is an exclusively mobile, excursion/field trip type adventure camp with daily activities that include Six Flags, Waterworld, Mini Golf, Laser…read more >",https://www.activityhero.com/biz/adventure-kid,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5,40",14,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,80.95,31.66
310,Su Yun's Chinese Learning Center,"Main Location - Albany, CA",Science & Technology Chinese Lego,https://images.activityhero.com/provider_photo/102780/tile/2e0de38a-aa2d-44fb-b1db-7f4be25bb21c.JPG,"At Su Yun’s Chinese Learning Center, our mission is to blend the teaching of Chinese heritage with a touch of modern innovation through a project-based,…read more >",https://www.activityhero.com/biz/su-yun-s-chinese-learning-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,40",114,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,70.98,71.3
311,Wizbots,Multiple Locations,Best of ActivityHero 2019 Coding Academics Math,https://images.activityhero.com/provider_photo/109379/tile/17aa1ae5-266f-4244-b400-3f2589638711.jpg,"Wizbots combines LEGO robotics, Java coding, and lots of imagination to provide a unique STEM learning experience for kids ages 8-14 all around the San…read more >",https://www.activityhero.com/biz/wizbots-robotics,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"5,40",59,"m,f",STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,74.96,77.68
312,One Village Sports - Classes & Camps,Multiple Locations,Online Course Soccer Sports,https://images.activityhero.com/provider_photo/112818/tile/e828cea0-9f3f-4c7e-ac62-341980968dfd.JPG,"One Village Sports is dedicated to providing a positive sports experience for athletes. We focus on building players' confidence, self-esteem and love…read more >",https://www.activityhero.com/biz/one-village-sports,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"5, 41",124,"m,f",STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,59.8,36
313,TeeterPal,Multiple Locations,Online Course Math Drawing and Painting,https://images.activityhero.com/provider_photo/112186/tile/b224d44e-a457-49c6-9c8c-9357f181cd4f.png,"TeeterPal is one of the largest family focused community group located in the SF bay area. We are a young dynamic group serving more than 50,000 families in…read more >",https://www.activityhero.com/biz/teeterpal,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5, 41",334,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,88.3,22.35
314,Skyhawks Sports,Multiple Locations,Basketball Science & Technology Multisport,https://images.activityhero.com/provider_photo/94917/tile/4de50d22-67d8-492c-a6d1-3cb0b9771683.jpg,"Skyhawks provides a wide variety of fun, safe and positive programs that emphasize critical lessons in sports and life, such as teamwork, respect and…read more >",https://www.activityhero.com/biz/skyhawks-sports,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,",42",554,"m,f",Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,31.83,88.06
315,Epworth Children's Programs,"Epworth United Methodist Church - Berkeley, CA",Sculpture Play/Outdoor Creative Writing,https://images.activityhero.com/provider_photo/98119/tile/cd0af817-5774-4c05-95ec-3a4537ce061c.jpg,"Epworth United Methodist Church is the meeting place for dozens of community programs - from after-school German language classes, to children's musical…read more >",https://www.activityhero.com/biz/65016-epworth-children-s-programs-berkeley-ca,,24.9,"5,42",3013,m,Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,95.27,18.39
316,Cole Creativity Camp: Doug's Drama + Cole Dance,Multiple Locations,Music Drama/Theater Dance,https://images.activityhero.com/provider_photo/145898/tile/f79a739c-d221-47aa-931e-800ee7660b27.png,"Cole Creativity Camp is a collaboration of Doug's Drama & Cole Dance designed for our new reality online. Camps guides kids through music, dance,…read more >",https://www.activityhero.com/biz/doug-s-drama-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5, 41",204,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,50.37,0.27
317,Urban Adventure Camps,Multiple Locations,Visual Arts Biology Science & Technology,https://images.activityhero.com/provider_photo/3064/tile/445b59f9-09ad-4f3e-a22a-1b6f378374ef.JPG,Urban Adventure Camps was founded on the belief that summer camp should be a unique and meaningful experience in the growth of a child. The UAC experience…read more >,https://www.activityhero.com/biz/4539-urban-adventure-camps-oakland-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,",42",39,f,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,57.26,4.55
318,Costa Rica Youth Exchange,Multiple Locations,Spanish Overnight/Residential Adventure/Outdoors,https://images.activityhero.com/provider_photo/109112/tile/398e5ccf-d716-4c22-b844-a1ae01a8735e.JPG,"We are committed to the needs of our visiting students, so they feel comfortable, cared for, and engaged in our community. A true immersion experience is…read more >",https://www.activityhero.com/biz/costa-rica-youth-exchange,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"12,43",26,f,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,45.37,22.33
319,Jefferson PTA Enrichment Classes,"Jefferson Elementary - Berkeley, CA",Spanish Language Sports,https://images.activityhero.com/provider_photo/96933/tile/7e162ad5-324d-4f19-9993-8000308b1477.jpg,The Jefferson PTA Enrichment Classes provide opportunities for students to explore additional interests after School hours – to learn and have fun! The…read more >,https://www.activityhero.com/biz/66048-jefferson-pta-enrichment-classes-berkeley-ca,,32.1,"5,42",30,m,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,37.27,48.55
320,Future Star Baseball,Multiple Locations,Sports Baseball Basketball,https://images.activityhero.com/provider_photo/2546/tile/future_stars_baseball.jpg,Future Star Baseball is dedicated to improving individual performance in baseball. We believe that better player skills bring greater enjoyment to the game…read more >,https://www.activityhero.com/biz/future-star-baseball,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,49",22,m,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Math & Logic,85.28,8.26
321,X-Fit Training,Multiple Locations,Adventure/Outdoors Sports Fitness,https://images.activityhero.com/provider_photo/100300/tile/05fc87cd-37d1-4442-aeea-27975529f66a.jpg,Does your child want to be the next American Ninja Warrior?X-Fit’s new Lil’ Ninja Warrior training is designed for all ages and athletic levels. This is a…read more >,https://www.activityhero.com/biz/x-fit-training,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,41",134,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,66.75,19.96
322,Lakeshore Learning,Multiple Locations,Free Activities Crafts Visual Arts,https://images.activityhero.com/provider_photo/100350/tile/e1b7279e-d055-425e-93c0-69d18c12d88a.jpg,"FREE Crafts for Kids Activities!Lakeshore is dedicated to creating innovative educational materials that spark young imaginations, instill a sense of wonder…read more >",https://www.activityhero.com/biz/lakeshore-learning,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,41",2013,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,51.6,9.92
323,The Kid Effect,"Main Location - El Cerrito, CA",Science & Technology Visual Arts Building,https://images.activityhero.com/provider_photo/95450/tile/dcdddeb4-273d-44da-928d-7f1204eae0a5.png,Kid Effect is dedicated to educating the whole child with a variety of lessons and activities that combine STEM curriculum with the arts. Lessons are…read more >,https://www.activityhero.com/biz/67328-the-kid-effect-el-cerrito-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,41",39,"m,f",STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,48.43,87.33
324,Cragmont Elementary School,"Cragmont Elementary School - Berkeley, CA",Tennis Science & Technology Lego,https://images.activityhero.com/provider_photo/97032/tile/f482caf8-947f-41b1-9922-4bb3ba58e2f9.jpg,The Cragmont PTA coordinates a number of Afterschool Enrichment Classes. These classes provide opportunities for students to explore additional interests…read more >,https://www.activityhero.com/biz/65859-cragmont-elementary-school-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,41",26,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Math & Logic,79.1,24.94
325,Crestmont Summer Camp,"Crestmont Summer Camp - Richmond, CA",Play/Outdoor Multisport Nature Programs,https://images.activityhero.com/provider_photo/101080/tile/7fcbffd6-db02-4ce2-812a-82ed9d6e3d06.jpg,"Crestmont will offer four different week-long camps this summer. Crestmont Summer Camp is open to all children, not just those who attend the school. …read more >",https://www.activityhero.com/biz/53095-crestmont-summer-camp-richmond-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5, 42",30,f,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,38.89,72.99
326,Glenview Strings,"Glenview Strings - Oakland, CA",Performing Arts,https://images.activityhero.com/provider_photo/5850/tile/-60.jpg,"We're a string program that offers chamber music to people of all ages, year round!
We have a string camp each summer, for kids beginner to…read more >",https://www.activityhero.com/biz/19394-glenview-strings-oakland-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5, 42",22,"m,f",STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,34.82,70.82
327,QuantumCamp,Multiple Locations,Academics Science Math,https://images.activityhero.com/provider_photo/94920/tile/cbb230ae-9e37-4226-ae1b-6a0f455a949c.jpg,"We were founded in 2009 on the simple idea that humans love to learn, and intentionally design an educational experience that supports this in our…read more >",https://www.activityhero.com/biz/quantumcamp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,",43",134,"m,f",STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,90.82,62.83
328,Hello Stitch,"Main Location - Berkeley, CA",Sewing Visual Arts Crafts,https://images.activityhero.com/provider_photo/99168/tile/92eee51b-0175-429b-a3e8-fc39f0c606ca.jpg,Hello Stitch is a fully provisioned sewing and quilting studio with all the tools and support you need to create a masterpiece. We offer classes for…read more >,https://www.activityhero.com/biz/hello-stitch,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,43",4013,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,71.28,43.06
329,Learn2Code.Live,Multiple Locations,Coding Online Course Computers,https://images.activityhero.com/provider_photo/110464/tile/c6522fcd-abb5-4d16-825f-456f2099537d.png,Learn2Code.Live enables easy access to structured high quality beginner to advanced level coding lessons for elementary to high school students. In…read more >,https://www.activityhero.com/biz/learn2code-live,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5, 42",6013,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Math & Logic,62.39,62.36
330,I Don't Wanna Grow Up,Multiple Locations,Do-Together Acting Gaming,https://images.activityhero.com/provider_photo/103331/tile/98e6977d-fbe0-4ab0-8ba5-723e19c7a124.jpg,I Don't Wanna Grow Up Kids Camp is all about kids being free to play in the outdoors. We will take them to some of the most beautiful locations on the…read more >,https://www.activityhero.com/biz/i-don-t-wanna-grow-up,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,",43",155,"m,f",Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,56.19,60.06
331,AYSO Soccer Camps & Training,Multiple Locations,Best of ActivityHero 2016 Sports Soccer,https://images.activityhero.com/provider_photo/95592/tile/3a770139-e328-455d-bae4-e45bb5940969.jpg,"With more than 40 years of youth soccer and educational experience, AYSO is the nation’s leading youth soccer program. AYSO’s goal is to provide world class…read more >",https://www.activityhero.com/biz/ayso-soccer-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,"12,44",15,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Computer Science,97.46,43.44
332,Hanabi Judo,Multiple Locations,Free Activities Martial Arts Sports,https://images.activityhero.com/provider_photo/2991/tile/new_belt.JPG,"Hanabi means ""Fireworks"" in Japanese and its energy, brightness and excitement truly express the spirit of our judo. For almost half a century we have…read more >",https://www.activityhero.com/biz/12696-hanabi-judo-albany-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,"5,43",115,"m,f",STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,42.72,30.8
333,Yogapalooza - Mela.Yoga Teen Program,"Main Location - San Mateo, CA",Visual Arts Mindfulness Yoga,https://images.activityhero.com/provider_photo/97404/tile/5a2579e0-18e9-4f87-b974-af7c859302a2.jpg,"Mela Yoga's Teen Yoga Tribe offers middle and high school students a space to develop inner clarity and confidence, to reduce stress & anxiety and to create…read more >",https://www.activityhero.com/biz/mela-yoga,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"5,50",60,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Math & Logic,51.36,75.69
334,Oakland ZooCamp,"Oakland Zoo Camp - Oakland, CA",Nature Programs Animals Play/Outdoor,https://images.activityhero.com/provider_photo/2266/tile/open-uri20130516-2-6mdlfv,"The Oakland Zoo invites campers for an exciting week of nature discovery, animal adventures, and fun! Camp activities include stories, puppet play, games,…read more >",https://www.activityhero.com/biz/2790-oakland-zoocamp-oakland-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5,42",125,m,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,76.87,31.45
335,Camp ANV...the BEST place to BE!,Multiple Locations,Gardening Adventure/Outdoors Cooking,https://images.activityhero.com/provider_photo/111325/tile/86f85f45-8b6a-4e93-bc61-b41a8627a012.jpg,Acta Non Verba: Youth Urban Farm Project (ANV) elevates life in the inner city by challenging oppressive dynamics and environments through urban…read more >,https://www.activityhero.com/biz/acta-non-verba-youth-urban-farm-project,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5,42",335,f,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,84.23,56.62
336,Camp Fiddle ‘N Fun,"Main Location - Oakland, CA",Fiddle Violin Music,https://images.activityhero.com/provider_photo/110172/tile/0cdad567-2cbd-4e39-a8e8-0674e2591498.jpg,"Briana Di Mara offers music and violin lessons for kids. Each summer, Briana and her wonderful staff hold a week long camp for string players ages 5-15 in…read more >",https://www.activityhero.com/biz/briana-di-mara,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"5,42",555,f,STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,62.33,84.47
337,one generation camp,Multiple Locations,Adventure/Outdoors Dance Music,https://images.activityhero.com/provider_photo/109135/tile/8bb89f77-0e19-4884-b092-a7bcad013a69.jpg,"We are a small outdoor cultural music and dance camp. Through music and dance, our children learn kindness, community and culture. Featuring some of the…read more >",https://www.activityhero.com/biz/one-generation-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"5,42",3014,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,79.81,41.59
338,Friendship Explorations,"Main Location - Mill Valley, CA",Developmental Disabilities Special Needs Adventure/Outdoors,https://images.activityhero.com/provider_photo/110860/tile/67a438f3-3e9d-4c37-8f24-fb2b26f141f3.JPG,Friendship Explorations is an outdoor therapeutic summer camp. Our goal is to provide a playful summer camp experience for children who may have trouble…read more >,https://www.activityhero.com/biz/corry-wagner-ot-bay-area-speechworks,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5, 43",205,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,53.67,15.53
339,Imagination Kids with Lucy Ames,"Imagination Kids - El Cerrito, CA",Crafts Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/102590/tile/64da69e6-e44b-4102-9b75-f72d0a66ec4d.jpg,"Imagination Kids has been inspiring children and teens since 1995. As one parent stated, ""Imagination Kids is a fabulous artistic environment and it is…read more >",https://www.activityhero.com/biz/3066-imagination-kids-art-camp-el-cerrito-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5, 43",40,m,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Math & Logic,94.17,88.35
340,Camp ANV,"Main Location - Oakland, CA",Farm Adventure/Outdoors Cooking,https://images.activityhero.com/provider_photo/110124/tile/86078a03-7fab-49ea-a126-5393599bbabd.jpg,Acta Non Verba: Youth Urban Farm Project (ANV) elevates life in Oakland and beyond by challenging oppressive dynamics and environments through urban…read more >,https://www.activityhero.com/biz/camp-anv,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,",44",27,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,39.9,46.46
341,Back to Earth,Multiple Locations,Wilderness Backpacking Adventure/Outdoors,https://images.activityhero.com/provider_photo/109984/tile/c5174470-0d51-41a4-abf3-44fb3b7fcc2a.jpg,"Wilderness Immersion and Leadership Development (W.I.L.D.) is a skill-building, ceremony-based program for teenage boys in Yosemite National Park…read more >",https://www.activityhero.com/biz/back-to-earth,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"5,44",31,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,37.8,77.96
342,Oaktown Ballers,"Main Location - Oakland, CA",Girls Only Softball Sports,https://images.activityhero.com/provider_photo/109706/tile/062141b7-945b-4ee8-b12c-11331ba86778.png,"Oaktown Ballers is a nonprofit based in Oakland, California offering high level softball training by professional coaches. It is the goal of Oaktown…read more >",https://www.activityhero.com/biz/oaktown-ballers,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"5, 43",23,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,84.46,79.95
343,Josh Bernstein Tennis,"Main Location - Oakland, CA",Swimming Tennis Sports,https://images.activityhero.com/provider_photo/109686/tile/0482a1d3-c1b7-43e2-9c27-c8f566cdfcd6.jpg,Josh Bernstein Tennis offers a variety of classes for different athletic levels and sports needs. Josh teaches all levels and ages from…read more >,https://www.activityhero.com/biz/josh-bernstein-tennis,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,",44",135,f,Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,66.04,5.26
344,United Studios of Self Defense,"Main Location - Burlingame, CA",Mindfulness Fitness Martial Arts,https://images.activityhero.com/provider_photo/108520/tile/fb23900d-1ca7-4d61-8625-57c1424977a0.jpg,"United Studios of Self Defense in Burlingame, California offers martial arts classes for kids and adults. At United Studios of Self Defense, every student…read more >",https://www.activityhero.com/biz/united-studios-of-self-defense-62430,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"12,45",2014,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,63.31,92.89
345,San Leandro Youth Soccer Leagues,"Main Location - San Leandro, CA",General Recreation Soccer Sports,https://images.activityhero.com/provider_photo/108654/tile/05d3c164-e9ce-41a2-a85b-9ace47cdd01e.jpg,"San Leandro Youth Soccer League (SLYSL) & San Leandro Sporting United Soccer Club serve the community of San Leandro, CA. Our purpose is to develop,…read more >",https://www.activityhero.com/biz/san-leandro-youth-soccer-leagues,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,44",40,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,61.83,79.54
346,Sylvia Mendez Elementary School,"Sylvia Mendez Elementary School - Berkeley, CA",Engineering After School Care Math,https://images.activityhero.com/provider_photo/106074/tile/705b9c5e-0769-4ac7-9032-cab1346966bf.jpg,The Sylvia Mendez PTA after school enrichment is a session of fee-based classes that provide diverse opportunities for students to explore their…read more >,https://www.activityhero.com/biz/Sylvia-Mendez-Elementary-School,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,51",27,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,61.55,57.41
347,The Kids' Club at Claremont Club & Spa,"Main Location - Berkeley, CA",Swimming General Recreation Play/Outdoor,https://images.activityhero.com/provider_photo/106059/tile/35a3e5cb-515a-4658-bcb1-5c3621003296.JPG,The Kids' Club at Claremont Club & Spa is fun for kids of all ages and allows parents to take advantage of all of the great amenities available at…read more >,https://www.activityhero.com/biz/the-kids-club-at-claremont-club-spa,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,43",31,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,88,73.52
348,HANDS-ON! invent. create. discover.,"Main Location - Berkeley, CA",Science & Technology Crafts Drawing and Painting,https://images.activityhero.com/provider_photo/102443/tile/f9ae3618-d29d-44bf-a81d-8c155687e749.jpg,"We are a kids STEAM lab, offering hands-on science, technology, engineering, art and math activitiesWe are a makerspace, a collaborative learning…read more >",https://www.activityhero.com/biz/hands-on-invent-create-discover,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,43",23,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,45.51,48.18
349,Berkeley Rose Waldorf School,"Berkeley Rose Waldorf School - Berkeley, CA",Do-Together Play/Outdoor For Grown-Ups,https://images.activityhero.com/provider_photo/120020/tile/5432ba64-ed34-4819-b5e8-b0694697dfa2.JPG,"Now in our 9th year, We offer preschool through sixth grade (in 2018) on two campuses, adding a grade per year to 8th grade in 2020. Math, science, and…read more >",https://www.activityhero.com/biz/berkeley-rose-waldorf-school-59332,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,43",135,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,56.87,90.07
350,Mr. Peters Golf Camp,Multiple Locations,Golf Drop-off,https://images.activityhero.com/provider_photo/96791/tile/06a01da3-89ab-484e-ba3c-700eca99996e.jpg,"Mr. Peter’s Golf Camp runs all year. Mon-Fri all summer, and weekends during the school year. Separate camps for kids 4-7 and 8-15. For the more serious…read more >",https://www.activityhero.com/biz/53395-mr-peters-golf-camp-san-bruno-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,43",4014,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,68.18,19.65
351,Musically Minded Academy,Multiple Locations,Drama/Theater Music Performing Arts,https://images.activityhero.com/provider_photo/138840/tile/b710ffe1-c950-4c3d-b9bf-7199114b1a37.jpeg,"Musically Minded Academy, a California 501c3 non-profit organization, offers private, semi-private and group music lessons for all ages. We also host…read more >",https://www.activityhero.com/biz/20102-musically-minded-academy-oakland-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5, 44",6014,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,82.58,65.54
352,Tiny Treks,Multiple Locations,Science Cooking Adventure/Outdoors,https://images.activityhero.com/provider_photo/3883/tile/5ee5cb12-018e-40c8-b506-5ade91c8fbc7.JPG,Tiny Treks is an innovative program for families who want to teach their children about the world through exploration of their natural surroundings. We…read more >,https://www.activityhero.com/biz/tiny-treks-8257,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5, 44",156,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,82.39,59.31
353,Phoenix Rising Volleyball Club,Multiple Locations,Volleyball Sports,https://images.activityhero.com/provider_photo/116241/tile/f1451ad7-4781-408b-addd-5e46030f7f8d.jpg,"PRVC is a youth volleyball club based throughout San Mateo County, CA. We focus on players who love the sport and want to develop their skills. All…read more >",https://www.activityhero.com/biz/phoenix-rising-volleyball-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,",45",16,f,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,50.03,84.77
354,Elite Naach Academy,"Main Location - Corte Madera, CA",Dance Bollywood,https://images.activityhero.com/provider_photo/115139/tile/d70f0699-98da-4e0f-87b3-bbd72973429d.jpg,"Elite Naach Academy was founded by Enakshi Vyas to create a space where all dancers, despite age and level, can gain exposure to a variety of styles. Our…read more >",https://www.activityhero.com/biz/elite-naach-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,45",116,f,STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,91.12,14.92
355,Galeria Beso Maya,"Main Location - Oakland, CA",Classical guitar Guitar Music,https://images.activityhero.com/provider_photo/114315/tile/c2245e6c-b1c6-4206-96fa-aa77c13e7444.jpg,"Join us all week or drop in on any day of our Spanish Immersion Summer Art & Music Workshop Program for kids 7 – 14 years old, at Galeria Beso Maya, a…read more >",https://www.activityhero.com/biz/galeria-beso-maya,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5, 44",61,m,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,38.57,19.41
356,East Bay BALL Summer Camp,"Caldecott Field - Oakland, CA",Baseball Sports,https://images.activityhero.com/provider_photo/98776/tile/3c76d3ee-005b-4ecc-b348-52c10b630ffd.jpg,East Bay BALL Summer Camp is an ideal summer option for kids ages 6-12 who love baseball and outdoor playtime! The camp is dedicated to improving the…read more >,https://www.activityhero.com/biz/3539-ball-summer-camp-piedmont-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,",45",126,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,65.28,90.13
357,Computing Innovation Center,"Fred T. Korematsu Middle School - El Cerrito, CA",Science & Technology Programming Lego,https://images.activityhero.com/provider_photo/95877/tile/506bf37e-8825-4863-b986-3603f628023b.jpg,"Are your kids into designing, making, building, and coding? The Computing Innovation Center offers exciting and unique opportunities for kids and teens ages…read more >",https://www.activityhero.com/biz/68291-learnable-computing-innovation-center-el-cerrito-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"12,46",336,m,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Math & Logic,96.26,66.34
358,2023 Place Summer Learning Studios,"Main Location - Corte Madera, CA",Preschool Clay Crafts,https://images.activityhero.com/provider_photo/95458/tile/f5df6e51-7a4b-42fa-a6b8-d8e724de6565.jpg,"2023 Place is Marin's newest academic, STEM based, after school and summer camp program. Visit our website for toddler, elementary and middle school…read more >",https://www.activityhero.com/biz/67365-2023-place-summer-learning-studios-corte-madera-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,45",556,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,43.61,53.48
359,Girls Go Figure - A Summer Math Academy for Girls,"United States - Berkeley, CA",Math,https://images.activityhero.com/provider_photo/35680/tile/c5bae1c7-f17a-4600-8b4b-a87e426393f8.jpg,"I am not your typical math teacher.
I help you to find the answers for yourself so that learning becomes part of you. You tell me why and how you got your…read more >",https://www.activityhero.com/biz/53385-girls-go-figure-a-summer-math-academy-for-girls-ages-9-to-13-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,52",3015,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,50.91,37.09
360,Oakland Feather River Camp,"Oakland - Oakland, CA",Horseback Riding Adventure/Outdoors Leadership,https://images.activityhero.com/provider_photo/25159/tile/af03282b-32e0-4c81-a157-4171a24f786b.,"We are Camps in Common (CIC), the operators of Oakland Feather River Camp, which has been a vacation destination for families, children and adults seeking…read more >",https://www.activityhero.com/biz/47925-oakland-feather-river-camp-oakland-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5,44",206,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,60.13,27.34
361,Singers Marin,"Main Location - Mill Valley, CA",Voice Music Performing Arts,https://images.activityhero.com/provider_photo/108812/tile/bfa030cf-65ee-4592-bb87-35e9ffbb123f.jpg,"Singers Marin will fulfill its mission through Artistry, Access, and Service Artistry Creating choral music of exceptional artistic quality. Presenting…read more >",https://www.activityhero.com/biz/singers-marin,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,"5,44",41,f,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,79.58,21.96
362,Summer Art Camp with Dianne Stockler,"Elmwood Studio - Berkeley, CA",Clay Visual Arts Ceramics,https://images.activityhero.com/provider_photo/98822/tile/a864b9ee-dcad-4043-8a69-f1c01e948119.jpg,"Kids love clay! It's a magical medium with endless possibilities. Now in its 21st year, this engaging summer program provides a great opportunity to spend a…read more >",https://www.activityhero.com/biz/64925-summer-art-camp-with-dianne-stockler-berkeley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,"5,44",28,"m,f",Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,36.34,46.84
363,Palette of Expressions,"Main Location - Oakland, CA",Visual Arts Leadership Academics,https://images.activityhero.com/provider_photo/110027/tile/99631639-f26a-4502-91e9-a5890289dd4a.jpg,MISSION: To educate participants about what makes a great leader and how to use leadership skills to create opportunities for their lives and economic…read more >,https://www.activityhero.com/biz/palette-of-expressions,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"5,44",32,"m,f",STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Computer Science,31.13,93.71
364,Spindrift School of Performing Arts,Multiple Locations,Acting Drama/Theater Music,https://images.activityhero.com/provider_photo/146036/tile/4f155a5f-323e-40c9-aa8c-fd2dba1d01ff.jpg,"Our Mission Statement: To train and inspire students of all ages in the performing arts while instilling the qualities of confidence, self-discipline,…read more >",https://www.activityhero.com/biz/spindrift-school-of-performing-arts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5, 45",24,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,53.49,74.53
365,East Bay Flag Football,"Main Location - Oakland, CA",Football Sports Flag Football,https://images.activityhero.com/provider_photo/94207/tile/5d06c79f-5bd9-4b26-bd8d-401f3e5e6ef2.JPG,"NFL FLAG is a fast paced, fun filled game of 5 on 5 flag football where every player is eligible to receive the ball. There is no contact and no…read more >",https://www.activityhero.com/biz/65614-east-bay-flag-football-oakland-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5, 45",136,"m,f",Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,46.79,10.98
366,Cole Creative Dance,Multiple Locations,Online Course Free Activities Dance,https://images.activityhero.com/provider_photo/144260/tile/578ff051-0131-49da-ad91-771fc268eaed.jpg,"Andre Cole is committed to cultivating kids natural creativity by engaging them in a fun, positive and inspiring kinesthetic and musical experience.…read more >",https://www.activityhero.com/biz/cole-creative-dance-73151,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,",46",2015,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Computer Science,31.74,11.52
367,Trips for Kids of Marin,Multiple Locations,Building Fitness Biking,https://images.activityhero.com/provider_photo/103653/tile/d5d1e4b3-09ce-458f-adbf-9935aa6099bd.png,"Trips for Kids Marin is a registered chapter of the national Trips for Kids® 501(c)(3) nonprofit based in San Rafael, California. Our mission is to…read more >",https://www.activityhero.com/biz/trips-for-kids,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"5,46",41,"m,f",STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Computer Science,73.12,20.14
368,Summer Springboard,Multiple Locations,College Preparation/Counseling Leadership Academics,https://images.activityhero.com/provider_photo/110624/tile/7800eb42-ac46-4cfe-9c79-00aa956374c2.png,Summer Springboard’s innovative 2-week summer programs for high school students combine self-discovery with hands-on learning and college preparation. Our…read more >,https://www.activityhero.com/biz/summer-springboard,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5, 45",28,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,33.48,67.94
369,For the Love of Basketball,Multiple Locations,Basketball,https://images.activityhero.com/provider_photo/110501/tile/ffa77c8e-101c-423e-a746-62990e765246.jpg,"For the love of Basketball in Oakland, California offers basketball clinics to young girls ages 7 - 16 during summer breaks. Our clinic teaches students…read more >",https://www.activityhero.com/biz/for-the-love-of-basketball,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,",46",32,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,62.16,55.78
370,Tutu School Burlingame,"Main Location - Burlingame, CA",Crafts Dance Ballet,https://images.activityhero.com/provider_photo/110476/tile/9d818c6c-8a3a-44b2-9138-972362261373.png,Tutu School is a whimsical boutique ballet school for toddlers and children. Tutu School teaches children age-appropriate motor skills and the fundamental…read more >,https://www.activityhero.com/biz/tutu-school-burligname,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"12,47",24,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,99.7,72.23
371,Tutu School Berkeley,"Main Location - Berkeley, CA",Ballet Dance,https://images.activityhero.com/provider_photo/102819/tile/ae8789fd-e7a1-43e1-a5db-c8e0d22b2fe8.jpg,We offer creative dance education and ballet classes for children 18 months to 8 years old! During the summer we also do a special week of ballet camp…read more >,https://www.activityhero.com/biz/tutu-school-berkeley,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"5,46",136,f,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,74.85,82.56
372,rec room creative,"Main Location - Burlingame, CA",Building Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/102333/tile/b42fb62a-2fe0-4b98-b3b1-213e7ede1df8.JPG,"rec room creative is an indoor play space for families with littles that provides open-ended, collaborative and tinkering type play, with a focus on…read more >",https://www.activityhero.com/biz/rec-room-creative,,92.1,"5,53",4015,f,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,62.57,28.08
373,Sylvan Learning,Multiple Locations,Coding Programming Computers,https://images.activityhero.com/provider_photo/146002/tile/3adbe0c9-2b42-4a50-a9e6-afcda6c04181.png,We believe that every student can learn. We are the only tutoring and enrichment company that measures our academic achievement in a systematic manner…read more >,https://www.activityhero.com/biz/sylvan-learning-74108,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,45",6015,m,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,94.65,85.01
374,Cooking Round the World,Multiple Locations,Cooking,https://images.activityhero.com/provider_photo/145919/tile/5050da18-1fe5-4420-ab0c-728a5b23932b.JPG,"Cooking Round the World is delighted to be able to offer your children engaging, fun and delicious online classes.An online class includes map education,…read more >",https://www.activityhero.com/biz/cooking-round-the-world-74076,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,45",157,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,62.16,19.51
375,Quantum Physics for Kids,Multiple Locations,Science Science & Technology Academics,https://images.activityhero.com/provider_photo/145442/tile/fb101306-54ff-4b8c-9b30-646758239b88.jpg,"Quantum Physics for Kids offers engaging quantum physics and invention classes to get kids excited about STEM! Our classes use dynamic demos,…read more >",https://www.activityhero.com/biz/quantum-physics-for-kids-teens,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,45",17,m,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Computer Science,51.36,17.02
376,Chiquiticos,Multiple Locations,Online Course Autism Spanish,https://images.activityhero.com/provider_photo/145259/tile/89e59313-813d-4471-ba4f-b7c8154d9a77.png,"We are an early development organization with the goal of promoting the integral development of children. Music and playful learning, our core educational…read more >",https://www.activityhero.com/biz/chiquiticos,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,45",117,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,35.41,38.19
377,Lelu,Multiple Locations,Spanish Academics Language,https://images.activityhero.com/provider_photo/144752/tile/f5fc840e-6ae5-453c-aa85-e99043913196.jpeg,"We exist to help your family LOVE language learning. At Lelu, we're passionate about language learning. I learned Spanish at home, English in Elementary,…read more >",https://www.activityhero.com/biz/lelu,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5, 46",62,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,31.32,94.91
378,ivyGoal Burlingame,Multiple Locations,Online Course Tutoring Math,https://images.activityhero.com/provider_photo/144688/tile/2d025ac9-6e5a-4eda-a2bc-0e19f43cdd8f.PNG,"Nick Ni and Yuki Yu are local educational specialists. Nick majored in math education in China, then obtained M.S. in Computer Science and B.S. in…read more >",https://www.activityhero.com/biz/ivy-tutoring-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5, 46",127,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,52.33,75.47
379,Melita Music,Multiple Locations,Online Course Dance Music,https://images.activityhero.com/provider_photo/144258/tile/902eb683-acf5-478a-b93e-cb349491c239.jpg,"The founding member of renowned Bay Area band for kids Octopretzel, Melita has been performing and teaching music to kids for over 15 years.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,",47",337,f,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,69.23,30.43
380,Gathering Wizards,Multiple Locations,Social Skills Mindfulness Gaming,https://images.activityhero.com/provider_photo/131019/tile/a44d102e-e1c9-48ac-8337-fc2a1432b0b3.jpg,"A space for young wizards to play with one another in a supervised environment that emphasizes the importance of inclusiveness, friendship and…read more >",https://www.activityhero.com/biz/gathering-wizards,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,47",557,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,70.46,73.21
381,PlanetXone,"Main Location - Hillsborough, CA",Play/Outdoor Birthday Parties Sports,https://images.activityhero.com/provider_photo/130550/tile/2f602235-b704-4b6e-8fbf-414e359e937d.png,The San Francisco Bay area's premiere Bubble Soccer & Nerf Dart Tag gaming company! We bring the gaming to you with our mobile gaming arenas! Let us manage…read more >,https://www.activityhero.com/biz/planetxone,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5, 46",3016,"m,f",Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,72.9,21.94
382,CreativeCave,"Main Location - Mill Valley, CA",Computer Animation Fashion Design Cartooning,https://images.activityhero.com/provider_photo/127291/tile/2d60e5d6-7aa9-49b5-9982-27339a286508.jpeg,"CreativeCave is a Design Thinking Studio for school age kids. From illustrative design to animatronics of the future, CreativeCaveoffers classes that…read more >",https://www.activityhero.com/biz/creativecave,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,",47",207,"m,f",STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,58.24,35.1
383,TCB Camps,Multiple Locations,Overnight/Residential Sports Basketball,https://images.activityhero.com/provider_photo/112710/tile/42343a45-fae3-47ed-9955-3ecdab13d5b2.jpg,TCB Camps is located in California. We offer summer camps for kids age 7-18 years old in the Los Angeles and San Francisco Bay Area.After this experience…read more >,https://www.activityhero.com/biz/tcb-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"12,48",42,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,66.8,37.9
384,First Presbyterian Church of San Leandro,"Main Location - San Leandro, CA",Presbyterian,https://images.activityhero.com/provider_photo/113361/tile/553632a6-53b2-4efc-971f-c0a96843b0b8.JPG,"The Wonders on Wednesday (WOW) program is for children in Kindergarten through the 8th grade. Program begins at 4:30 pm, includes dinner, Bible study,…read more >",https://www.activityhero.com/biz/first-presbyterian-church-of-san-leandro-65072,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,47",29,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,38.29,7.66
385,Trips For Kids Marin,"Main Location - San Rafael, CA",Adventure/Outdoors Biking Sports,https://images.activityhero.com/provider_photo/111842/tile/fe8e991b-819a-476c-9ad1-1f37728f8c59.jpg,"Trips for Kids Marin (TFKM) is a 501(c)(3) that offers cycling programs for low-income youth in six Bay Area counties (Contra Costa, San Francisco, Alameda,…read more >",https://www.activityhero.com/biz/trips-for-kids-marin,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,54",33,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,34.74,39.67
386,LIONROCK EDUCATION,"Main Location - Burlingame, CA",Public Speaking,https://images.activityhero.com/provider_photo/99475/tile/09ef3e5a-7cd0-4135-848a-e4b4250d6cb2.jpg,"LIONROCK EDUCATION is a forward-thinking and student-centered education advising company. We offer a youthful, hybrid approach to advising: evidence-based…read more >",https://www.activityhero.com/biz/lionrock-education,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,46",25,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,95.55,1.72
387,John Muir Elementary School,"Main Location - Berkeley, CA",,https://images.activityhero.com/provider_photo/143555/tile/ce5baf3e-eb6a-4d7d-aae5-7b720eecbffb.jpg,"John Muir, the smallest elementary school in Berkeley, offers the ideal learning environment. The historic Tudor-style building sits nestled among redwood…read more >",https://www.activityhero.com/biz/john-muir-elementary-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,46",137,m,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,86.98,31.94
388,Kids Connection,Multiple Locations,General Recreation Play/Outdoor Academics,https://images.activityhero.com/provider_photo/101598/tile/f33099c1-0a50-4359-b230-a89c417e7af1.jpg,"Kids Connection Elementary is an academically challenging, well-rounded kindergarten through 5th grade school that inspires our students to become their…read more >",https://www.activityhero.com/biz/kids-connection,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,46",2016,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,70.51,84.48
389,Maker Brigade,Multiple Locations,Building Science & Technology Engineering,https://images.activityhero.com/provider_photo/140636/tile/dc860688-b597-4e36-9e4f-023f655a0061.png,It is with great disappointment that we must announce the cancellation of this summer’s programming. After carefully following Gov. Newsom’s education…read more >,https://www.activityhero.com/biz/maker-brigade,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,46",42,f,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Math & Logic,87.83,79.55
390,Cool Coyote Kids Camp,Multiple Locations,Flexible Booking Best of ActivityHero 2015 Best of ActivityHero 2016 Nature Programs Adventure/Outdoors Play/Outdoor,https://images.activityhero.com/provider_photo/131605/tile/981c4fc9-c1ba-4e9d-b9ec-b554d44c35b7.jpg,Cool Coyotes Kids Camp is a 100% mobile outdoor adventure camp that takes kids to different nature preserves to hike and explore.Each day we explore a…read more >,https://www.activityhero.com/biz/cool-coyote-kids-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5, 47",29,f,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,33.8,24.13
391,Myriad Music School and Dance Academy,Multiple Locations,Music Dance Rock,https://images.activityhero.com/provider_photo/118950/tile/dbf584f3-fe5a-467b-aa1f-42074794d582.jpg,"If you are looking for music lessons, music classes or dance classes on the Peninsula, you have come to the right place. The Myriad Music School has…read more >",https://www.activityhero.com/biz/19295-myriad-music-school-and-dance-academy-san-mateo-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,"5, 47",33,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,71.88,76.41
392,"Create, Mix and Mingle Art Camps and Classes",Multiple Locations,Drawing and Painting Visual Arts Online Course,https://images.activityhero.com/provider_photo/57276/tile/7b82f210-d86d-4cb8-a214-b43fc5a05798.jpg,Create your very own masterpiece! Explore your creative side while learning the fundamentals of acrylic painting and exploring the world of pop and graffiti…read more >,https://www.activityhero.com/biz/16225-create-mix-and-mingle-art-camps-and-classes-san-mateo-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,",48",25,m,STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Math & Logic,63.05,74.79
393,Chronos Academy,Multiple Locations,Visual Arts Science & Technology Math,https://images.activityhero.com/provider_photo/123630/tile/11dbe08d-8f12-4e07-974f-c4e9eb9b2cda.png,Chronos Academy is an innovative K-8th grade micro-school that anchors all classes to a timeline of human history. We offer creative after school classes…read more >,https://www.activityhero.com/biz/4447-golden-gate-learning-center-san-anselmo-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"5,48",137,m,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,40.5,62.12
394,Artist Center,Multiple Locations,Visual Arts Homeschool Drawing and Painting,https://images.activityhero.com/provider_photo/100712/tile/74c53129-db90-4692-9b41-ae04a84c127a.jpg,"Whether you're a beginner or intermediate artist, or no matter what your age...The Artist Center has an art education for you!Our students receive quality…read more >",https://www.activityhero.com/biz/artist-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5, 47",4016,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,57.79,61.73
395,Global Art Castro Valley,"Main Location - Castro Valley, CA",Crafts Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/142206/tile/3c2cc4ec-7276-4ed5-bfb2-83744119272a.jpg,"Welcome to globalart Castro Valley!Here at Global Art & Creative, we believe art enhances creativity, and are the building blocks of child development. We…read more >",https://www.activityhero.com/biz/global-art-us-cv,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,",48",6016,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,88.27,93.08
396,Digital Monkey School,"Main Location - Belmont, CA",Gaming Computer Animation Computers,https://images.activityhero.com/provider_photo/132876/tile/6cd37aa4-7ddd-4e14-a1d2-d864129c9727.jpg,"Digital Monkey School's mission is innovative art education, promotion of art and independent development of video games and animation. We offer digital art…read more >",https://www.activityhero.com/biz/digital-monkey-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"12,49",158,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,37.53,75.14
397,Kidizens,Multiple Locations,Best of ActivityHero 2019 Best of ActivityHero 2018 Best of ActivityHero 2015 Public Speaking Online Course Lego,https://images.activityhero.com/provider_photo/95014/tile/095d0c22-4072-432c-a2bd-98b9b1f9c960.jpg,Would you like to leverage your love of LEGOs to learn critical real-life lessons and strategies? Kidizens inspires students to become good citizens and…read more >,https://www.activityhero.com/biz/kidizens,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"5,48",18,f,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,44.1,65.27
398,Lascaux Academy,Multiple Locations,Best of ActivityHero 2016 Best of ActivityHero 2017 Online Course Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/93704/tile/3e1ad3aa-6fef-484d-825c-5960a94b4dcf.jpg,"Lascaux Academy has been offering fun and innovative art, language, and technology classes since 2005. We also provide seasonal art camps for children from…read more >",https://www.activityhero.com/biz/6193-lascaux-art-academy-belmont-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,55",118,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,63.83,46.74
399,The Camp Couture,Multiple Locations,Visual Arts Fashion Design Sewing,https://images.activityhero.com/provider_photo/97138/tile/dd826b1c-77f1-4514-aa97-f005005a4e18.jpg,"Camp Couture is a professional fashion studio in San Mateo that provides instruction, and or assistance in making a creative vision come to life. We…read more >",https://www.activityhero.com/biz/67390-the-camp-couture-san-mateo-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5,47",63,"m,f",STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,66.4,28.36
400,Peninsula Dance Academy,Multiple Locations,Ballet Online Course Hip Hop,https://images.activityhero.com/provider_photo/4455/tile/July_8_2013.png,"We are a Vaganova ballet studio that offers other genres as well: Tap, Contemporary, Competition. Students learn discipline, concentration, and what it…read more >",https://www.activityhero.com/biz/16800-peninsula-dance-academy-foster-city-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,47",128,"m,f",STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,55.83,17.75
401,"Twin Dragon Kung Fu Academy, Inc.","San Carlos - San Carlos, CA",Sports General Recreation Martial Arts,https://images.activityhero.com/provider_photo/98141/tile/1798db4f-f35a-4ffc-9a92-89364ff62a90.jpg,Twin Dragon Kung Fu Academy has been teaching martial arts and self-defense to children and adults since 2001. We offer age appropriate martial arts…read more >,https://www.activityhero.com/biz/52565-twin-dragon-kung-fu-academy-san-carlos-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"5,47",338,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,38.06,79.09
402,Tommy Tsunami Surf School,"Surfers Beach: Half Moon Bay - Half Moon Bay, CA",Water Sports Adventure/Outdoors Surfing,https://images.activityhero.com/provider_photo/113939/tile/48a39120-7563-48ae-b696-d956c5300932.jpeg,"Tommy Tsunami Surf School is located in Half Moon Bay, California and is offering summer surfing camp for kids age 5 and up. Give your child the excitement…read more >",https://www.activityhero.com/biz/tommy-tsunami-surf-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"5,47",558,"m,f",STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Math & Logic,85.82,80.85
403,EDNova Academy,Multiple Locations,Computers Biology Science & Technology,https://images.activityhero.com/provider_photo/96606/tile/e32af2c2-3f66-40cf-b6a2-9886a9bf934e.jpg,"Learning in the 21st Century
Our Mission
EDNova Academy aims to inspire, guide, and nurture next generation STEM leaders in the development of their…read more >",https://www.activityhero.com/biz/ednova-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5, 48",3017,"m,f",STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,77.81,76.29
404,wisen space,Multiple Locations,Programming Computers Science & Technology,https://images.activityhero.com/provider_photo/110559/tile/baf3200a-b3d0-4fe9-b1cc-9c373e2b1f02.jpg,We are now called Applied Computing Foundation. See our new listing. ---------------------Wisen Space’s purpose is to empower students to use code to…read more >,https://www.activityhero.com/biz/wisen-space,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5, 48",208,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,62.76,99.18
405,Applied Computing Foundation,Multiple Locations,Coding Programming Science & Technology,https://images.activityhero.com/provider_photo/100382/tile/b51fc554-6b7c-43a9-a0fe-00454eff14ed.jpg,"Applied Computing Foundation has been exciting and empowering students and communities with coding, we’re bringing coding to the non-geek level. Daily…read more >",https://www.activityhero.com/biz/Applied-Computing-Foundation,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,",49",43,m,STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,98.06,37.07
406,Gigamind Explorer,Multiple Locations,Robotics Math Preschool,https://images.activityhero.com/provider_photo/96724/tile/63097f2f-8698-4bdb-8af4-b4908d6592dd.jpg,"Gigamind Explorer Education is founded by a group of professionals in the Education, Psychology and STEM fields (science, technology, engineering and…read more >",https://www.activityhero.com/biz/gigamind-explorer,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,49",30,m,STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,53.16,95.16
407,JCC Maccabi Sports Camp,Multiple Locations,Volleyball Sports Tennis,https://images.activityhero.com/provider_photo/94203/tile/a1a989ff-388b-475d-a948-c20dde06b3cd.jpg,The best Jewish overnight sports camp on the West Coast! JCC Maccabi Sports Camp is an overnight Jewish sports summer camp located just outside of San…read more >,https://www.activityhero.com/biz/16709-jcc-maccabi-sports-camp-atherton-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5, 48",34,f,Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,90.41,51.27
408,NutriEnergy Works,"Main Location - Castro Valley, CA",Mindfulness General Recreation Yoga,https://images.activityhero.com/provider_photo/94536/tile/1a70e724-c953-472f-b638-144bc539a329.jpeg,My passion is to help people in gaining awareness and skill for self-care through nutrition and mindfulness. Over the 16 years of counseling people as a…read more >,https://www.activityhero.com/biz/66183-nutrienergy-works-castro-valley-ca,,28.2,",49",26,f,Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,60.34,86.4
409,TechyKids,Multiple Locations,Online Course Free Activities Robotics,https://images.activityhero.com/provider_photo/145670/tile/a8300526-7761-4fb1-9954-c58d5c8d7839.png,"Techykids is a hub for kids to be inspired with a blend of robotics, creativity, technology, and invention. We are he US distributor for the Thymio…read more >",https://www.activityhero.com/biz/techykids,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"12,50",138,m,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Computer Science,60.13,32.46
410,Color Dot Art Space,Multiple Locations,Visual Arts Chinese Sculpture,https://images.activityhero.com/provider_photo/99899/tile/cd745590-2efa-492f-8814-7a79d66ade33.JPG,"Color Dot is an artist own, community-based art space. We welcome all art enthusiasts in all age and as well as the entire community. Our studio fosters the…read more >",https://www.activityhero.com/biz/color-dot-art-space,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,49",2017,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,50.31,43.01
411,Futures Academy,Multiple Locations,Online Course Language Math,https://images.activityhero.com/provider_photo/100550/tile/a4f1127f-ded0-45c2-952b-da954149e9c8.jpg,"Welcome to a better way to learn! In response to COVID-19, we are now providing 100% LIVE ONLINE 1:1 INSTRUCTION so students can receive our top-notch…read more >",https://www.activityhero.com/biz/futures-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,56",43,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Computer Science,57.94,30.67
412,KidzJet Outdoor Science Adventures,Multiple Locations,Adventure/Outdoors Hiking Science,https://images.activityhero.com/provider_photo/4329/tile/IMG_8082.JPG,"KidzJet’s unique outdoor science program is designed for your child to explore life through exploration. Our program, created by instructors who…read more >",https://www.activityhero.com/biz/kidzjet-outdoor-science-adventures,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,48",30,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,59.96,26.24
413,ArtSmart / KidSmart Academy,"KidSmart Academy/ArtSmart - San Mateo, CA",Chess Robotics Drawing and Painting,https://images.activityhero.com/provider_photo/99589/tile/1dfd2b4e-14bf-419b-b5cb-c21bada7efcd.JPG,"We were voted 'Best camp' of 2016, and 2014. Also, we are among the 35 camps in USA, which were voted to be exceptional camps.
All seasonal camps, art…read more >",https://www.activityhero.com/biz/14382-art-smart-studios-san-mateo-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,48",34,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,93.97,50.8
414,Follow the Child,Multiple Locations,Creative Writing Marine Science Science,https://images.activityhero.com/provider_photo/98840/tile/8148145c-d637-490e-99c4-595c8c011d67.jpg,"Follow The Child is a discovery of the outdoors, where students explore nature through both art and science. FTC offers outdoor programs throughout the…read more >",https://www.activityhero.com/biz/follow-the-child,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,48",26,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,72.07,88.11
415,Marco Nascimento BJJ,"Main Location - San Mateo, CA",General Recreation Fitness Martial Arts,https://images.activityhero.com/provider_photo/109210/tile/02cf11e4-9613-431f-aa21-a34bd7098c65.JPG,"Marco Nascimento BJJ (formerly Peninsula BJJ) is a friendly, family-oriented Brazilian Jiu Jitsu academy. We strive to offer the highest quality BJJ…read more >",https://www.activityhero.com/biz/marco-nascimento-bjj,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,48",138,f,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,75.04,0.71
416,Seriously Addictive Mathematics (S.A.M) Singapore Math Belmont,Multiple Locations,Math Academics Tutoring,https://images.activityhero.com/provider_photo/115709/tile/ee8d28be-3c1e-4504-9cda-6fb2198e97c3.jpg,"Welcome to our new S.A.M Singapore Math Center in Belmont! S.A.M, or Seriously Addictive Mathematics, is a Mathematics Learning Program from Singapore, with…read more >",https://www.activityhero.com/biz/seriously-addictive-mathematics-s-a-m-singapore-math,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5, 49",4017,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,75.71,8.83
417,Woodroe Woods School,"Main Location - San Leandro, CA",Social Skills General Recreation Play/Outdoor,https://images.activityhero.com/provider_photo/142851/tile/541ce9f3-5f6e-4f11-9267-7380f9e9d1f9.jfif,"Woodroe Woods School is located in San Leandro, California and is offering Preschool for children 2.5 to 5, Kindergarten, Elementary School, and Summer Camp…read more >",https://www.activityhero.com/biz/woodroe-woods-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5, 49",6017,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,89.38,17.14
418,Ace Kids Golf,"Main Location - Oakland, CA",Fitness Golf,https://images.activityhero.com/provider_photo/112805/tile/178dde28-fa55-4d95-8a9e-e338359a59b3.jpg,"Lead by Ace Kids Golf team members, The Ace Kids Golf Program works to help youth from underserved populations. By empowering participants to recognize…read more >",https://www.activityhero.com/biz/ace-kids-golf,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,",50",159,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Computer Science,95.71,56.78
419,Mathnasium of Hayward,"Main Location - Hayward, CA",Academics Tutoring Math,https://images.activityhero.com/provider_photo/111509/tile/4665924d-3588-43c0-9c31-895109c16b16.jpg,"When math makes sense, kids leap way ahead – whether they started out far behind or already ahead in math. Our formula for teaching kids math,…read more >",https://www.activityhero.com/biz/mathnasium-of-hayward,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,50",19,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Math & Logic,63.67,10.26
420,Evolution Academic Speaking Excellence,Multiple Locations,Science & Technology Academic Writing Public Speaking,https://images.activityhero.com/provider_photo/109707/tile/447ed656-e57b-4410-8abb-aad89e4caba4.JPG,"Evolution Academic Speaking Excellence in Redwood City, California offers public speaking classes for kids during school holiday breaks. We are an…read more >",https://www.activityhero.com/biz/evolution-academic-speaking-excellence,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5, 49",119,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,74.96,51.49
421,Modern Tone Studios,"Main Location - Lafayette, CA",Bass Guitar Guitar Music,https://images.activityhero.com/provider_photo/109272/tile/0808a880-fb69-4412-ba67-0e979f4344fe.jpg,"Modern Tone Studios in Lafayette, California offers private music lessons for all playing levels, ages 6 and up. Whether you are a complete beginner, an…read more >",https://www.activityhero.com/biz/modern-tone-studios,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,",50",64,"m,f",STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Math & Logic,31.69,76.16
422,The Coder School - San Mateo,Multiple Locations,Programming Computers Science & Technology,https://images.activityhero.com/provider_photo/106665/tile/89174d91-31b1-41bb-b5b4-76b3c635d190.jpg,"Coder School is a new kind of after school coding program that focuses on the individuality of each student, customizing our teachings depending on their…read more >",https://www.activityhero.com/biz/the-coder-school-san-mateo-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,"12,51",129,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,39.36,9.47
423,Peninsula Gymnastics San Mateo,"Peninsula Gymnastics San Mateo - San Mateo, CA",Crafts Visual Arts Gymnastics,https://images.activityhero.com/provider_photo/101014/tile/8609fc87-152a-4b69-9a73-e7cb1e0d5d86.jpg,"We strive to promote healthy lifestyles in children and youth through the sport of gymnastics by making gymnastics fun, using gymnastics to increase…read more >",https://www.activityhero.com/biz/59648-peninsula-gymnastics-san-mateo-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"5,50",339,m,Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,64.41,7.67
424,Mindful Youth,Multiple Locations,Academics Mindfulness Family,https://images.activityhero.com/provider_photo/5225/tile/FotoFlexer_PhotokidssitMYbiz.jpg,Ellen is a Mindfulness and Education Specialist who has led secular family mindfulness workshops throughout the San Francisco Bay Area since 2011. A…read more >,https://www.activityhero.com/biz/mindful-youth,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5,57",559,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,55.62,35.89
425,Skyhawks Sports - Contra Costa Central,Multiple Locations,Fitness Multisport Sports,https://images.activityhero.com/provider_photo/110337/tile/d2aa6d4e-a0a1-4612-bdd9-220dc13c5198.jpg,"Skyhawks Sports in Contra Costa provides sports programs where children can discover and develop athletic skills and social values, such as teamwork,…read more >",https://www.activityhero.com/biz/skyhawks-sports-contra-costa-central,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5,49",3018,f,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,51.02,64.94
426,UCA Hayward Capoeira,"UCA Hayward - Hayward, CA",Dance Music Martial Arts,https://images.activityhero.com/provider_photo/112461/tile/19a20b6d-78f8-4f7b-823c-ca97d0b4ec3b.jpg,"Capoeira is a dynamic expression of Afro-Brazilian culture. The game of capoeira derived from a variety of ceremonial dances and ritualized forms of combat,…read more >",https://www.activityhero.com/biz/uca-hawyard,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"5,49",209,f,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,76.54,55.03
427,Peninsula Performing Art Academy,"Main Location - San Carlos, CA",Chinese Dance Performing Arts,https://images.activityhero.com/provider_photo/112576/tile/51e92310-d02e-49f1-960f-20c3678fd432.JPG,"Peninsula Performing Art Academy offers after school and summer camp programs that are rich in content, including Chinese, dance, piano, painting,…read more >",https://www.activityhero.com/biz/peninsula-performing-art-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"5,49",44,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,80.05,86.36
428,Academy of Design,"Main Location - Belmont, CA",Sewing Fashion Design Visual Arts,https://images.activityhero.com/provider_photo/112215/tile/268a62e2-a511-41a3-b7dd-d77babc70a2b.jpeg,"At Academy of Design, we teach creativity. Students learn to design and illustrate fashion, sew and create wearable clothing and accessories in our…read more >",https://www.activityhero.com/biz/academy-of-design,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,49",31,m,STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Computer Science,50.02,61.61
429,Hummingbird Music School,Multiple Locations,Rock Guitar Music,https://images.activityhero.com/provider_photo/98918/tile/e5866176-2080-403b-b2cd-d63f948bfe01.jpg,"Whether in private or semi-private lessons, group after-school music classes, or summer Rock Band Camp, with Hummingbird Music School students are given a…read more >",https://www.activityhero.com/biz/hummingbird-music-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5, 50",35,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,48.3,36.14
430,Dandan Performing Arts Center,"Main Location - San Lorenzo, CA",Drop-off Mindfulness Performing Arts,https://images.activityhero.com/provider_photo/98637/tile/ca6a2fc2-f725-4337-a144-f041a82975a4.jpg,Dandan Performing Arts Center (DPAC) is a 501(c)(3) nonprofit program that provides high quality music education from babies to 12th graders in…read more >,https://www.activityhero.com/biz/dandan-performing-arts-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5, 50",27,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,39.58,60.66
431,Aces Junior Golf Club,Multiple Locations,Golf,https://images.activityhero.com/provider_photo/96903/tile/ca6c403c-03d0-40de-bc4f-b8032b8a5806.png,"Aces Junior Golf Club's mission is to grow junior participation at local facilities by engaging youth with safe, affordable junior instruction. Aces teaches…read more >",https://www.activityhero.com/biz/aces-junior-golf-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,",51",139,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Computer Science,90.67,35.96
432,Cyber Garage,"Main Location - San Anselmo, CA",Programming Robotics Gaming,https://images.activityhero.com/provider_photo/99567/tile/02bb9e27-dab4-42a0-9575-0fa7000236da.jpg,"Cyber Garage is a non-profit community Makerspace, Robotics, Computer Programming and Game Design Lab where kids in Kindergarten through 12th grade can come…read more >",https://www.activityhero.com/biz/cyber-garage,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"5,51",2018,m,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Math & Logic,72.52,38.31
433,One Milestone Inc,"Main Location - Belmont, CA",Programming Computers Science & Technology,https://images.activityhero.com/provider_photo/97428/tile/701f9f29-7086-4ea1-ab7c-5e0d81ce489e.jpg,"At One Milestone we are taking first step towards preparing kids for a tech led future by teaching them how to code like professionals.
Our programs…read more >",https://www.activityhero.com/biz/one-milestone-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5, 50",44,f,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,31.97,32.42
434,North Bay Diving,"Main Location - San Anselmo, CA",Swimming Water Sports,https://images.activityhero.com/provider_photo/96528/tile/c8868580-87bf-4032-b098-2ce7e9906593.jpeg,"Coached by Sir Francis Drake Diving’s head diving coach, Miranda Maas, the Camp is designed to accommodate both a first introduction to the sport of…read more >",https://www.activityhero.com/biz/north-bay-diving,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,",51",31,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,93.14,79.01
435,Gloria Dei Lutheran Church and School,"Gloria Dei Campus - Belmont, CA",Religious Free Activities Lutheran,https://images.activityhero.com/provider_photo/97976/tile/57f907f7-a21e-4ce4-b5b3-781c35c05d80.jpg,"For its entire history, Gloria Dei has made the education of our children and the children of our community one of the highest priorities. Jesus said that…read more >",https://www.activityhero.com/biz/64949-gloria-dei-lutheran-church-and-school-belmont-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"12,52",35,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,69.46,9.75
436,Footsteps Child Care,Multiple Locations,Hiking Field Trips Adventure/Outdoors,https://images.activityhero.com/provider_photo/496/tile/open-uri20130516-2-1clqidw,"Footsteps Child Care (formerly Cipriani After-School Care) provides infants, children, youth and their families with quality programs in a safe, nurturing…read more >",https://www.activityhero.com/biz/footsteps-child-care-formerly-cipriani-after-school-care,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,51",27,"m,f",Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,99.12,78.51
437,Pallen's Martial Arts,"San Leandro - San Leandro, CA",Martial Arts Fitness After School Care,https://images.activityhero.com/provider_photo/11360/tile/open-uri20141205-10-rp63r4,"Pallen’s Martial Arts began in Oakland, CA in 1968. As we celebrated over 40 years, we look back and saw a karate school which not only grew, but evolved as…read more >",https://www.activityhero.com/biz/23400-pallen-s-martial-arts-san-leandro-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,58",139,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Computer Science,98.51,49.24
438,Chef Koochooloo,Multiple Locations,Cooking Math Science,https://images.activityhero.com/provider_photo/70210/tile/7f1b2c85-8259-4c9b-b711-61e71eced44f.jpg,Chef Koochooloo’s international educational program blends humanity’s oldest means of socialization—cooking and eating together—with its most modern…read more >,https://www.activityhero.com/biz/chef-koochooloo,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,50",4018,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Math & Logic,60.61,14.44
439,United Youth Rugby,Multiple Locations,Sports Rugby,https://images.activityhero.com/provider_photo/94296/tile/70387ab7-03c8-4544-9fbd-a8baaca02737.jpg,We are a family-oriented organization dedicated to giving your kids a fun experience playing a truly international sport. We not only want your kids to…read more >,https://www.activityhero.com/biz/united-youth-rugby,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,50",6018,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,64.01,33.69
440,TechKnowHow San Diego,Multiple Locations,Best of ActivityHero 2015 Best of ActivityHero 2016 Gaming Science & Technology Lego,https://images.activityhero.com/provider_photo/97554/tile/411024cf-4bae-481e-a6d8-60f1505e7a60.jpg,TechKnowHow® has been providing technology-focused classes for students since 1994 and we have loved every moment of it. Our offerings include summer and…read more >,https://www.activityhero.com/biz/techknowhow-san-diego,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,50",160,"m,f",STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Computer Science,54.37,24.35
441,Kelly Coding and Creation Camps,Multiple Locations,Digital Media Computer Animation Programming,https://images.activityhero.com/provider_photo/83084/tile/49fff0a9-d9da-40e6-85e1-12489ebf9c62.png,"Where can incoming 4th-6th graders learn to code, design and print 3D objects, create and play with VR, AND use a variety of multimedia tools AND make a…read more >",https://www.activityhero.com/biz/19294-kelly-coding-and-creation-camps-menlo-park-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,50",20,m,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,82.78,69.36
442,Asian-American Youth Soccer Academy,Multiple Locations,Online Course Free Activities Soccer,https://images.activityhero.com/provider_photo/144438/tile/b139303d-a8b8-443c-8757-8d316d4019a5.JPG,Asian - American Youth Soccer Academy is a 501 (c) (3) non-profit organization. AAYSA was founded by Coach Yang Zhou in 2019 and started from Asian-American…read more >,https://www.activityhero.com/biz/asian-american-youth-soccer-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5, 51",120,m,STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Computer Science,75.68,26.55
443,Busy Bee Yoga with Jess,"Laurelwood Park - San Mateo, CA",Mindfulness Family Yoga,https://images.activityhero.com/provider_photo/133457/tile/6e4d29f2-a26d-4cc7-9ac0-ff9b6ffe9d11.jpg,"Busy Bee Yoga offers fun, energetic yoga classes, workshops, camps, and birthday parties to children in the SF Bay Area. Each class focuses on…read more >",https://www.activityhero.com/biz/busy-bee-yoga-with-jess,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 51",65,f,Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,32.59,82.49
444,Notre Dame Elementary,"Main Location - Belmont, CA",Spanish Academics Sports,https://images.activityhero.com/provider_photo/111439/tile/ea93c48e-46d0-498f-9441-25feeea5e78e.jpg,Notre Dame Elementary School is a private co‐ed Catholic school for K‐8 governed by the Sisters of Notre Dame de Namur. For over 90 years we have…read more >,https://www.activityhero.com/biz/notre-dame-elementary,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,",52",130,f,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,30.99,6.15
445,Marin Girls Chorus,Multiple Locations,Girls Only Music,https://images.activityhero.com/provider_photo/110635/tile/0fcda49d-d8ae-4d95-b4af-1994da94d7e7.jpeg,Marin Girls Chorus empowers girls to find and use their voices through exceptional music education and the joy of collaborative singing. By creating an…read more >,https://www.activityhero.com/biz/marin-girls-chorus-63621,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,52",340,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,90.61,34.87
446,Camp Ramah,Multiple Locations,Overnight/Residential Adventure/Outdoors Water Sports,https://images.activityhero.com/provider_photo/109850/tile/1405a7db-9067-44db-af91-3cac8165af5c.jpg,"Camp Ramah in Foster City, California offers summer camps and classes for children.Our Adventure Sports program gives our campers the opportunities to build…read more >",https://www.activityhero.com/biz/camp-ramah,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5, 51",560,m,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,41.67,35.68
447,Terra Linda Recreation Swim Team,Multiple Locations,Fitness Swimming Sports,https://images.activityhero.com/provider_photo/108900/tile/7f52849b-b33e-43e8-92e8-60ff3d2445ca.jpg,"The Terra Linda Orcas Swim Team is a recreational swim club that teaches boys and girls, ages 6 to 18 how to swim competitively with the emphasis on…read more >",https://www.activityhero.com/biz/terra-linda-recreation-swim-team,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,",52",3019,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,88.6,29.83
448,Tieni Duro Cycling,Multiple Locations,Sports Biking,https://images.activityhero.com/provider_photo/108899/tile/b8ffdca2-02a6-41b1-ad33-7ae0ddd68c04.jpg,"Tieni Duro is a Lafayette, California based Junior Cycling Development Team founded in 2000 with the goal of getting as many kids on bikes as possible and…read more >",https://www.activityhero.com/biz/tieni-duro-cycling,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"12,53",210,m,STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Math & Logic,48.37,67.95
449,Half Moon Bay Kayak Co.,"Main Location - Half Moon Bay, CA",Adventure/Outdoors Kayaking Water Sports,https://images.activityhero.com/provider_photo/103777/tile/0ba140a9-347e-4949-bcfa-d75cc26b5e30.jpg,"Discover the world of sea kayaking, paddle boarding and biking in Half Moon Bay.Paddle among seals, birds, and other marine life in protected Pillar Point…read more >",https://www.activityhero.com/biz/half-moon-bay-kayak-co,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,52",45,"m,f",STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Computer Science,64.75,51.84
450,Argonaut,Multiple Locations,Social Skills Mindfulness Leadership,https://images.activityhero.com/provider_photo/145975/tile/f3a9a8cf-8d0e-4136-8a70-4fad368270f4.jpg,"Adolescents need challenge, adventure, and belonging. Argonaut is a series of personal, hands-on adventures, designed for current & entering…read more >",https://www.activityhero.com/biz/argonaut,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5,59",32,m,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,97.8,36.89
451,Young Rembrandts East Bay and Tri-valley,Multiple Locations,Drawing and Painting Cartooning Visual Arts,https://images.activityhero.com/provider_photo/132491/tile/c29fd35f-a90a-4570-9564-fc2f2688cfd4.jpg,A Recognized Leader in Art EducationResearch says what Young Rembrandts has always delivered. There is a correlation between involvement in the arts and…read more >,https://www.activityhero.com/biz/young-rembrandts-east-bay-and-tri-valley,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,"5,51",36,f,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,32.13,67.2
452,Wishing Well Daycare,"Main Location - Hayward, CA",Preschool Homeschool After School Care,https://images.activityhero.com/provider_photo/140379/tile/e13d7d03-64a2-43a7-a1eb-59aa6c0ccfd3.jpeg,"Wishing Well Daycare is located in Hayward, California and is offering after school program for kids age 6-12 years old. Our school age programs offer…read more >",https://www.activityhero.com/biz/wishing-well-daycare,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,"5,51",28,"m,f",STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Math & Logic,61.84,8.9
453,America Offline,Multiple Locations,Social Skills Mindfulness Adventure/Outdoors,https://images.activityhero.com/provider_photo/135295/tile/d84205f9-94af-4ce1-8dba-e7177521c8b0.jpg,"America Offline offers actionable tech-life balance tools to reduce stress and live more mindful lives for teens, families, and young adults. Since 2018, …read more >",https://www.activityhero.com/biz/america-offline,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"5,51",140,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,49.88,99.45
454,Castro Valley School Of Music,"CV School of Music - Castro Valley, CA",Engineering Lego Music,https://images.activityhero.com/provider_photo/106384/tile/83550644-e78c-4fa7-89d5-11ffc6f08088.JPG,Registration for the Summer CAMP and FALL Classes and Lessons now on-going!!! The Castro Valley School of Music is the leading place for music education…read more >,https://www.activityhero.com/biz/castro-valley-school-of-music-61645,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5,51",2019,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,99.12,0.81
455,Carlmont DECA,"Main Location - Belmont, CA",Computers Business Public Speaking,https://images.activityhero.com/provider_photo/112596/tile/0eff482a-59ff-4d8d-a959-3fe7b318e9a2.jpg,Business and Tech Camp is led by students from Carlmont High School's DECA chapter. DECA is an international organization of school clubs that prepares…read more >,https://www.activityhero.com/biz/carlmont-deca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5, 52",45,"m,f",STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Computer Science,89.74,91.08
456,GES International Education Group,Multiple Locations,Programming Computers Science & Technology,https://images.activityhero.com/provider_photo/112379/tile/9b32184d-259f-4f15-a0d9-accdf99ffb55.png,GES International Culture Exchange is an education company registered in California in 2013 that provides comprehensive educational products and services.We…read more >,https://www.activityhero.com/biz/ges-international-education-group,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"5, 52",32,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,83.86,78.21
457,Silicon Valley Elite,"Main Location - San Mateo, CA",Tumbling Cheerleading Gymnastics,https://images.activityhero.com/provider_photo/99623/tile/68082ace-3820-46d6-8845-024de3a72483.PNG,Silicon Valley Elite is a coed cheerleading gym that offers classes and teams for boys and girls ages 4 and up. We accept all athletes and strive to make…read more >,https://www.activityhero.com/biz/silicon-valley-elite,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,",53",36,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,81.62,27.66
458,Starfire Education,Multiple Locations,Engineering Programming Math,https://images.activityhero.com/provider_photo/99565/tile/49cbbb9e-ff41-4d40-9803-04edcc148066.jpg,"Provider of S.T.E.A.M. after-school enrichment programs, summer camps and tutoring.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,53",28,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,46.41,4.66
459,Hiller Aviation Museum,Multiple Locations,General Recreation Science & Technology Family,https://images.activityhero.com/provider_photo/97626/tile/df679d5e-a5b6-4021-9d26-e15801dc3752.jpg,"Boy Scout Merit Badge Programs are intensive, all-day programs for Boy Scouts Grades 5 and up that allow the Scout to complete all requirements for the…read more >",https://www.activityhero.com/biz/hiller-aviation-museum,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5, 52",140,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,55.41,68.44
460,Ingenium Enrichment,"Roosevelt Center - Redwood City, CA",Building Cooking Visual Arts,https://images.activityhero.com/provider_photo/101164/tile/4c8c2dad-bf48-4710-93a4-17e2c2726aee.jpeg,"Ingenium Kids Daily Activities include Science, Music, Cooking, Drama, Movement, Mindfulness, Art and more!Ingenium Enrichment is a Modern Kids Learning…read more >",https://www.activityhero.com/biz/ingenium-enrichment,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,",53",4019,m,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,77.43,97.23
461,Math Enrichment Summer Program,Multiple Locations,Academics Academic Writing Math,https://images.activityhero.com/provider_photo/28066/tile/f4f00d44-b986-4cff-b766-57f4cc422011.,Math Enrichment is a high quality summer program that provides a challenging but fun educational environment to all students. Math Enrichment is a WASC…read more >,https://www.activityhero.com/biz/math-enrichment-summer-program,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"12,54",6019,f,STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,47.28,35.12
462,Castle Rock Arabians,"Walnut Creek - Walnut Creek, CA",Adventure/Outdoors Play/Outdoor Horseback Riding,https://images.activityhero.com/provider_photo/104182/tile/9b55e1c6-864e-498f-8c85-c6a4150b0e15.jpg,"At Castle Rock Arabians, we welcome all beginning riders, regardless of age. We will ensure that with just a few basic lessons (about five) you can…read more >",https://www.activityhero.com/biz/57893-castle-rock-arabians-walnut-creek-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"5,53",161,f,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,95.82,63.38
463,BEan IN NATURE,Multiple Locations,Nature Programs Animals Adventure/Outdoors,https://images.activityhero.com/provider_photo/107870/tile/50fd455d-c49f-4c51-a570-d3ecf3d75dc2.jpg,"At BEan In Nature, our mentors facilitate activities that lead kids to love, care and connect with nature. We do this not by using a ‘teach at the child’…read more >",https://www.activityhero.com/biz/bean-in-nature,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,60",21,m,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,36.09,78.29
464,North Gait Equestrian Center,"Walnut Creek - Walnut Creek, CA",Adventure/Outdoors Horseback Riding General Recreation,https://images.activityhero.com/provider_photo/100280/tile/72c16f0a-48a2-4623-9a21-c89cb6cfc9a2.jpg,"We have been told hundreds of times that North Gait is a most special place, a reminder of a bygone era, where adults and children learn about horses in a…read more >",https://www.activityhero.com/biz/57851-north-gait-equestrian-center-walnut-creek-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,52",121,m,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,84.71,50.6
465,Aviation Camp,"The Hiller Aviation Museum - San Carlos, CA",Best of ActivityHero 2015 Science Engineering Science & Technology,https://images.activityhero.com/provider_photo/4230/tile/hiller_helicopter.jpg,"Aviation Camp is an immersive, hands-on aerospace adventure for campers entering grades K–8. All programs are held at the Hiller Aviation Museum in San…read more >",https://www.activityhero.com/biz/4509-aviation-camp-san-carlos-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,52",66,m,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,62.11,4.61
466,GrowFit,Multiple Locations,Flexible Booking Best of ActivityHero 2017 Sports Multisport Soccer,https://images.activityhero.com/provider_photo/100361/tile/ef115d87-3f2e-4918-a7db-f2b09f9e7a84.jpg,"In a time where parents know the drawbacks of too much screen time, GrowFit provides a home for the active spirit. Nurturing the playfulness within us,…read more >",https://www.activityhero.com/biz/66746-growfit-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,52",131,m,STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,49.5,59.51
467,King's Camps and Fitness,"Main Location - San Carlos, CA",Birthday Parties General Recreation Multisport,https://images.activityhero.com/provider_photo/112258/tile/3fe1808d-aa15-4221-a31b-94dc6551b84e.jpg,Looking for a place (other than your couch!) for your kids to get out their summer vacation energy? Bring them to our Young Warriors Summer Camp where…read more >,https://www.activityhero.com/biz/king-s-camp-and-fitness,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,52",341,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,68.46,77.75
468,Redwood City Youth Theatre,Multiple Locations,Online Course Drama/Theater Acting,https://images.activityhero.com/provider_photo/99620/tile/a81e8583-81ad-47e0-92f8-6e7b59a7d2de.jpg,"Redwood City Youth Theatre is brought to you by Dragon Theatre. Dragon’s mission is to produce professional theatre that is uncommon, intimate, and…read more >",https://www.activityhero.com/biz/dragon-productions-theatre-company,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5, 53",561,m,Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,97.76,9.41
469,Silicon Valley Tennis Academy,Multiple Locations,Sports Tennis,https://images.activityhero.com/provider_photo/95352/tile/96a09350-e8b5-46c8-ba92-4bb75e0db85b.jpg,Want to be a top-level tennis player? We'll turn you into one!Silicon Valley Tennis Academy is THE tennis school for junior players of any age or experience…read more >,https://www.activityhero.com/biz/silicon-valley-tennis-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5, 53",3020,f,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,48.77,23.91
470,Social Circle,Multiple Locations,Social Skills Learning Disabilities Special Needs,https://images.activityhero.com/provider_photo/114678/tile/af749214-ae33-452e-920c-16f33dc41c05.JPG,We are an East Bay company located in Downtown Walnut Creek that organizes social outings for kids who struggle with social interactions. We are licensed…read more >,https://www.activityhero.com/biz/social-circle,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,",54",211,"m,f",Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,31.97,16.48
471,PONGPLANET Table Tennis,"Main Location - San Carlos, CA",Table Tennis Sports Birthday Parties,https://images.activityhero.com/provider_photo/95083/tile/e433f148-981f-4122-980d-2ab87cc1583e.jpg,"PongPlanet is a full-time Table Tennis Club. We offer the highest quality courts, equipment and instruction in the area, along with a variety of…read more >",https://www.activityhero.com/biz/65577-pongplanet-table-tennis-san-carlos-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,54",46,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,64.51,79.88
472,One Heart Music,Multiple Locations,Best of ActivityHero 2016 Best of ActivityHero 2017 Online Course Do-Together Music,https://images.activityhero.com/provider_photo/94503/tile/aab1d399-8af9-400d-b0d0-f1a5e54da0fa.jpg,"One Heart Music Family Mixtape classes are weekly 45 minute fun filled, educational adventures through the wonderful world of music!In this parent and child…read more >",https://www.activityhero.com/biz/one-heart-music,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5, 53",33,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Computer Science,48.53,80.52
473,Science Nature Labs!,Multiple Locations,Flexible Booking Virtual Camp Fair Online Course Biology Academics,https://images.activityhero.com/provider_photo/100595/tile/34cc38e7-965f-41d1-b674-e8f1f8584527.JPG,"We are Driven by Science and Inspired by Nature!Science Nature Labs!, was born when our founder observed that kids are very curious, absorb information like…read more >",https://www.activityhero.com/biz/sciencenaturelabs-com,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,",54",37,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,85.32,39.01
474,Gorilla Play Day,Multiple Locations,Background checked Best of ActivityHero 2015 Best of ActivityHero 2016 General Recreation Play/Outdoor Sports,https://images.activityhero.com/provider_photo/97297/tile/dfbc668e-afb6-4137-9e22-da2c405f92eb.jpg,Gorilla Play Day is a fun and engaging play day with a strong core of fitness (disguised as fun). We offer after school programs on the Peninsula within the…read more >,https://www.activityhero.com/biz/gorilla-play-day,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"12,55",29,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,53.22,84.96
475,My Gym Peninsula,Multiple Locations,Sports,https://images.activityhero.com/provider_photo/97737/tile/8f81ebac-a595-43f2-be16-66b7c5870758.jpg,"Why My Gym Palo Alto?
We are the experts in children’s fitness.My Gym has developed an extraordinary program and facility devised to help children 6…read more >",https://www.activityhero.com/biz/my-gym-palo-alto,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,54",141,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,67.53,45.18
476,Kuk Sool Won Martial Arts of Redwood City,"Redwood City - Redwood City, CA",Martial Arts Birthday Parties Acrobatics,https://images.activityhero.com/provider_photo/23790/tile/602283a1-ffcc-4f8b-9f5f-58f31d3ddf15.,We teach Kuk Sool Won System of Self defense and fitness t ages 3 1/2 and older. Our classes are grouped by age and rank.We are a family martial Arts Center…read more >,https://www.activityhero.com/biz/42832-kuk-sool-won-of-redwood-city-redwood-city-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,61",2020,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,69.82,23.52
477,San Carlos Children's Theater,Multiple Locations,Online Course Acting Performing Arts,https://images.activityhero.com/provider_photo/97649/tile/7b6e795d-38b9-413b-9fb0-768928b949ca.jpg,"Celebrating creative enrichment & outstanding service since 1990.San Carlos Children’s Theater offers theater classes, camps, custom programs and full-stage…read more >",https://www.activityhero.com/biz/9235-san-carlos-children-s-theater-san-carlos-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,53",46,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,47.33,67.86
478,Maker Lab Extreme,Multiple Locations,Engineering Building Crafts,https://images.activityhero.com/provider_photo/101366/tile/560cafbe-4f53-4ab8-ad00-dc23e7d06f5f.jpeg,"Walnut Creek's maker space just for kids! Where science and engineering meet art and design! Indoor/outdoor 900' lab you'll find: paint-opia, mega…read more >",https://www.activityhero.com/biz/maker-lab-extreme,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,53",33,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,89.24,68.02
479,Poison Apple Productions,"Main Location - Martinez, CA",Acting Drama/Theater Performing Arts,https://images.activityhero.com/provider_photo/102733/tile/666537b1-b22f-4e89-8c81-99f05c9ba044.jpg,OUR MISSION is to promote increased participation and understanding of live theater by providing affordable performing arts education and enrichment…read more >,https://www.activityhero.com/biz/poison-apple-productions,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,53",37,f,Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,97.35,79.92
480,NextGen Tech Learning - Coding & Tech School,Multiple Locations,Coding Programming Computers,https://images.activityhero.com/provider_photo/109846/tile/5f10e767-3a00-4f27-ba83-6f3bd3c9499b.JPG,"NextGen Tech Learning is technology-learning center for Kids & Teens from 3rd to 12th Grade, offering Computer Programming, Robotics and Tech Courses.…read more >",https://www.activityhero.com/biz/19002-nextgen-tech-learning-camps-and-weekly-classes-san-ramon-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5,53",29,f,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Computer Science,95.69,74.9
481,Lemon Blossoms Creations,"Main Location - Walnut Creek, CA",Drop-off Crafts Drawing and Painting,https://images.activityhero.com/provider_photo/132357/tile/cf037797-12cc-49f4-bfb9-43af4eec8d7a.jpeg,Welcome to Lemon Blossom Creations! We recently opened a children's open art studio located next to the Starbucks in the Palos Verdes Mall in Walnut…read more >,https://www.activityhero.com/biz/lemon-blossoms-creation,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",12.9,"5, 54",141,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,66.61,34.09
482,Ascend Aerial Arts at Impact! Kickboxing Fitness,"Primary Location - San Carlos, CA",Girls Only Fitness Martial Arts,https://images.activityhero.com/provider_photo/110459/tile/c00a962f-7acc-4fbb-a5dd-af0d2ec3daed.JPG,"Ascend Aerial Arts at Impact! Kickboxing Fitness offers kickboxing fitness, aerial silks and aerial straps recreational classes for students 14 and up.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,"5, 54",4020,m,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,31.86,58.5
483,Brain-O-Magic Pleasanton,Multiple Locations,Computers Academics Creative Writing,https://images.activityhero.com/provider_photo/99082/tile/f303c03a-7058-40dd-9735-0268c89f2dc6.jpg,Our mission is to unleash the true potential of your child using mental math as a tool. We strive to prepare your children for success in all walks of…read more >,https://www.activityhero.com/biz/19282-brain-o-magic-pleasanton-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,",55",6020,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,35.82,64.53
484,INVENT-A-BOT,Multiple Locations,Robotics Programming Lego,https://images.activityhero.com/provider_photo/99558/tile/30416d15-95d8-46fa-85dc-00cbe5823abe.jpg,Invent-a-Bot is focused on providing high quality hands-on and structured approach to STEM education through Robotics and programming. We aim to create…read more >,https://www.activityhero.com/biz/invent-a-bot-learning-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5,55",162,m,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Computer Science,43.52,70.35
485,Hi-Five Sports Silicon Valley,Multiple Locations,Multisport Baseball Basketball,https://images.activityhero.com/provider_photo/109105/tile/3eb7a3b7-57f0-4d0d-b50c-3a7fc738ebcd.JPG,"Hi-Five Sports clubs offers programming for children PreK-8th grade,including classes, leagues and of course, camps!! At Hi-Five, FUN is thename of the…read more >",https://www.activityhero.com/biz/hi-five-sports-silicon-valley,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5, 54",22,"m,f",STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Math & Logic,48.4,76.98
486,Lekha Writing Center,Multiple Locations,Creative Writing Academics Academic Writing,https://images.activityhero.com/provider_photo/4677/tile/SAM_0050-800x600.jpg,"Lekha holds several kinds of classes during the year. During the school year, we are holding our regular Creative and Academic writing classes during…read more >",https://www.activityhero.com/biz/lekha-writing-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,",55",122,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,93.33,38.14
487,LearningPlay,Multiple Locations,Visual Arts Science & Technology Math,https://images.activityhero.com/provider_photo/110367/tile/5133a67b-e0ec-4744-b6f6-b09c201b192f.jpg,"LearningPlayTM is a comprehensive education program developed by Chaia May to transfer, in a playful way, the joys of learning — particularly music — to…read more >",https://www.activityhero.com/biz/learningplay-63188,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"12,56",67,f,Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,58.98,57.8
488,the Coder School Redwood City,"Main Location - Redwood City, CA",Programming Gaming Computers,https://images.activityhero.com/provider_photo/111169/tile/bd554307-bee8-4d66-a5d0-a6a9fcd91a57.png,What is theCoderSchool? We are an after-school drop-off program for kids learning to code - a coding school! There's after-school kung fu. There's…read more >,https://www.activityhero.com/biz/the-coder-school-redwood-city,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,55",132,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,51.78,93.34
489,Elevate Basketball & Performance Training,"Main Location - Concord, CA",Basketball Multisport Sports,https://images.activityhero.com/provider_photo/105476/tile/f34fcfe5-4c83-47d4-98dd-e780dca8f298.JPG,"Elevate Basketball and Performance Training is THE place to meet all of your fitness and training needs. With a spacious facility, top notch staff and…read more >",https://www.activityhero.com/biz/elevate-basketball-performance-training,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5,62",342,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,78.24,68.27
490,Peninsula Gymnastics San Carlos,"Peninsula Gymnastics San Carlos - San Carlos, CA",Tumbling Acrobatics Gymnastics,https://images.activityhero.com/provider_photo/100998/tile/001e047b-b7c8-4b6d-b287-8f000b53808c.jpg,"We strive to promote healthy lifestyles in children and youth through the sport of gymnastics by making gymnastics fun, using gymnastics to increase…read more >",https://www.activityhero.com/biz/2489-peninsula-gymnastics-san-carlos-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,54",562,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,85.47,9.32
491,Riekes Center for Human Enhancement,Multiple Locations,Nature Programs Adventure/Outdoors Play/Outdoor,https://images.activityhero.com/provider_photo/28081/tile/7ee36645-0122-4923-8a21-d296278e1d94.,The Riekes Center exists for the enhancement of the individual student. Our mission is to provide each student with the best possible opportunity to…read more >,https://www.activityhero.com/biz/52682-riekes-center-for-human-enhancement-menlo-park-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"5,54",3021,"m,f",STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Computer Science,87.64,84.62
492,Martial Arts America - San Ramon,"San Ramon - San Ramon, CA",Martial Arts,https://images.activityhero.com/provider_photo/11317/tile/open-uri20141205-10-w8hx7k,Welcome to Martial Arts America - home of the award winning program Karate 4 Kids. Our proven teaching methods are designed to provide a positive…read more >,https://www.activityhero.com/biz/23351-martial-arts-america-san-ramon-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,"5,54",212,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,56.75,9.52
493,AR Workshop Danville,"Main Location - Danville, CA",Woodworking Crafts Drawing and Painting,https://images.activityhero.com/provider_photo/136376/tile/a9414cc6-0d9d-4ea9-a4ff-8c2dc06fa26d.jpg,"AR Workshop is a boutique DIY creative studio offering hands-on classes to create charming custom wood signs, pillows, home decor and more!Join us at AR…read more >",https://www.activityhero.com/biz/ar-workshop-danville,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,54",47,"m,f",STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,48.06,45.44
494,Gaming Together,Multiple Locations,Social Skills Gaming,https://images.activityhero.com/provider_photo/116454/tile/6176210c-8590-4ac8-8003-d84aa1fbcf3a.jpg,"Gaming Together offers after-school gaming groups, summer camps, and school break camps. Dungeons & Dragons is our main activity: kids each play a…read more >",https://www.activityhero.com/biz/gaming-together-65862,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5, 55",34,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,85.17,53.17
495,J ACE J Music,"Main Location - Redwood City, CA",Music Music Theory Piano,https://images.activityhero.com/provider_photo/95557/tile/82935210-45bd-4405-b72b-67fe5a61a5bd.jpg,"We are a music community center in Redwood City since 2006. We specialize in instrument and voice lessons, band classes, rehearsal rooms, and music…read more >",https://www.activityhero.com/biz/67551-j-ace-j-music-redwood-city-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5, 55",38,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,38.93,56.9
496,Tal's Patisserie,"Main Location - Danville, CA",Cooking,https://images.activityhero.com/provider_photo/108665/tile/b00e44ac-2366-4a97-ad69-de388822bf54.jpg,"Tal's Patisserie is an all natural neighborhood bake shop, specializing in sweet and savory European baked goods. We use organic flours and locally grown…read more >",https://www.activityhero.com/biz/tal-s-patisserie,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,",56",30,m,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,33.12,74.97
497,Bryerly Farms,"Main Location - Walnut Creek, CA",Nature Programs Gardening Horseback Riding,https://images.activityhero.com/provider_photo/114384/tile/8db5375a-fe5a-4208-a088-1b8658c6f5e0.JPG,"Bryerly Farms is a permaculture-inspired farm located in Walnut Creek, one block from beautiful Mt. Diablo State Park. We use organic farming methods,…read more >",https://www.activityhero.com/biz/bryerly-farms,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,56",142,f,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,87.2,96.91
498,Excel Basketball Camp,"Main Location - Walnut Creek, CA",Basketball Sports,https://images.activityhero.com/provider_photo/107993/tile/f81874a0-cb61-4334-b5d0-8ae39a7cb579.jpeg,"At Excel Basketball Camp you can rest assured knowing that your child is going to enjoy a great camp experience. Established in 1981, Excel is one of the…read more >",https://www.activityhero.com/biz/excel-basketball-camp-62234,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5, 55",2021,f,STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Computer Science,43.49,51.02
499,CrossFit San Ramon,"Main Location - San Ramon, CA",Fitness,https://images.activityhero.com/provider_photo/110068/tile/4a1264d5-1871-4eb1-bc7e-7e01456ade35.jpg,CrossFit San Ramon- Forging Elite Fitness one workout at a time. Offering great programs for any age and any fitness level including Youth CrossFit and…read more >,https://www.activityhero.com/biz/crossfit-san-ramon,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,",56",47,m,STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Math & Logic,40.08,79.88
500,Broadway Babies & Kids,Multiple Locations,Fitness Yoga Dance,https://images.activityhero.com/provider_photo/111898/tile/d355ff0a-dbc0-44fa-82d1-dfb85773e75c.jpg,"At Broadway Babies & Kids, we train and entertain your budding performing! From music, rhythm and song & dance classes for out littlest performers…read more >",https://www.activityhero.com/biz/broadway-kids,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"12,57",34,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,36.93,8.26
501,I Can Do That Theatre Company,"Main Location - Danville, CA",Acting Drama/Theater Dance,https://images.activityhero.com/provider_photo/102896/tile/a372d2ac-5058-4f89-af3b-e90ea0e36583.jpg,"I Can Do That is a non-profit youth theatre company dedicated to creating professional, full-scale musicals by combining quality training with…read more >",https://www.activityhero.com/biz/i-can-do-that-theatre-company,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,56",38,m,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Math & Logic,85.52,17.67
502,Art Studio,"Main Location - Fremont, CA",Crafts Printmaking Visual Arts,https://images.activityhero.com/provider_photo/101934/tile/f4739a70-fda8-4907-b2d0-320b3f9dfa8e.jpg,"ATT art academy teaches about techniques of print-making. Our classes are fun and effective, methods are creative and an outcome is spectacular!",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,63",30,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,96.26,17.19
503,Axis Learning Company- Home of Aloha Mind Math,Multiple Locations,Science & Technology Academics Math,https://images.activityhero.com/provider_photo/101851/tile/894c570f-043f-4d07-a982-2d6532ddb0b1.png,"Overview:Did you know math is rooted in our visual neural networks? This STEM program will present math in a hands-on, engaging and fun environment! Your…read more >",https://www.activityhero.com/biz/aloha-mind-math,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,55",142,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,42.68,26.8
504,Pro Soccer Camp,Multiple Locations,Fitness Soccer Sports,https://images.activityhero.com/provider_photo/101638/tile/0ba38fee-be24-404e-a221-88457308a7f3.png,"Our Soccer Camps provide a great place for any soccer player who is looking to improve their skills, work hard and have fun! Our mission is to provide…read more >",https://www.activityhero.com/biz/pro-soccer-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,55",4021,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,60.23,52.44
505,Running Camp,Multiple Locations,,https://images.activityhero.com/provider_photo/99641/tile/3a0c8049-7633-495c-aa89-6d8ff142a262.jpg,I am devoted to helping both runners and athletes get better at running technique as well as training them to get in better shape during the off season of…read more >,https://www.activityhero.com/biz/running-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,55",6021,f,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,43.87,31.62
506,Pinta Libre,"Main Location - Benicia, CA",Crafts Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/141523/tile/2242f057-5d16-4fbf-ac53-f9472b1be88d.jpg,"Painting classes available for all levels and ages starting 5 years old. Watercolor, Acrylic, Oils, Mix media, Drawing and more.Watercolor: When choosing…read more >",https://www.activityhero.com/biz/pinta-libre,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,55",163,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,52.04,71.7
507,Sewing Lessons in Redwood City,"Main Location - Redwood City, CA",Sewing Fashion Design Crafts,https://images.activityhero.com/provider_photo/136400/tile/2904a8f0-ee5b-4234-b748-357c6fd8688e.jpeg,"Group classes can be very discouraging. You may feel left behind. You may become frustrated because your instructor goes over things you already know, in…read more >",https://www.activityhero.com/biz/sewing-lessons-in-redwood-city,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5, 56",23,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Math & Logic,51.6,36.04
508,Wherry Academy,"Main Location - Redwood City, CA",Creative Writing Tutoring Math,https://images.activityhero.com/provider_photo/118077/tile/0056ccf3-12b5-4b83-bf27-91f91cd6f90d.jpg,"Wherry Academy is located in Redwood City, California and is offering summer camps for kids age 5-18 years old. Wherry Academy prepares each student with…read more >",https://www.activityhero.com/biz/wherry-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5, 56",123,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,56.13,69.72
509,Functional Soccer Academy,Multiple Locations,Soccer,https://images.activityhero.com/provider_photo/110681/tile/3ee4453a-a12c-409a-a437-f4d26c758283.jpg,"Functional Soccer Academy in Concord, California offers summer camps to he youth during the spring break. We provide training for beginners and skill…read more >",https://www.activityhero.com/biz/functional-soccer-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,",57",68,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,88.43,88.48
510,Messy Nessie's Studio,"Main Location - Crockett, CA",Homeschool Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/115291/tile/e8573531-e7e7-41c9-b6cb-deafd05e2fc7.jpg,Messy Nessie's is an arts and crafts studio with programming for all ages. Our studio offers mini-summer camps for ages 4-12! During our Summer…read more >,https://www.activityhero.com/biz/messy-nessie-s-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",7,"5,57",133,"m,f",STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,86.43,20.33
511,Warriors Jr. Jam Squad,"Ultimate Fieldhouse - Walnut Creek, CA",Basketball Dance,https://images.activityhero.com/provider_photo/99898/tile/a196c1ec-68a0-48f4-8abb-9cb2e741956e.jpg,The Warriors Jr. Jam Squad is made up of dancers ages 6-14. They perform in front of Warriors fans during home games.,,,12.9,"5, 56",343,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,77.66,52.93
512,Broadway By The Bay's Theatre Arts Academy,"Fox Theatre - Redwood City, CA",Acting Drama/Theater Performing Arts,https://images.activityhero.com/provider_photo/111800/tile/22b34cfa-594c-4c3e-8c3d-cf92c18203aa.png,"Broadway By the Bay is excited to present the Theatre Arts Academy, an innovative summer program taking musical theatre training to a whole new…read more >",https://www.activityhero.com/biz/theatre-arts-academy-59061,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",23.9,",57",563,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,58.19,10.03
513,Studio View ~ Cintra Harbach,"Main Location - Crockett, CA",Drawing and Painting Visual Arts Sewing,https://images.activityhero.com/provider_photo/99580/tile/5cfeff1c-ad36-4067-b558-47acada923e8.jpg,"Studio View is in Crockett, CA, North of Berkeley. Cintra Harbach, the Instructor teaches Art & Writing for children, teens, & adults year round.Our…read more >",https://www.activityhero.com/biz/studio-view,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.6,"12,58",3022,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,59.61,3.74
514,Esface Hoop Camp,Multiple Locations,Basketball Sports Girls Only,https://images.activityhero.com/provider_photo/40851/tile/29ebf481-6ffa-4244-8fb6-b99a8bcaab70.jpg,"Team Esface Summer Hoop Camps take you to the next level with a summer experience for boys and girls of all ages and skill level through:
- fun and…read more >",https://www.activityhero.com/biz/53577-esface-hoop-camp-redwood-city-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25,"5,57",213,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,44.57,32.58
515,TechShop - MidPeninsula,"Main Location - Redwood City, CA",,https://images.activityhero.com/provider_photo/98163/tile/c05f602d-7c10-4b7b-a3f5-632c21a9dfe8.jpg,"Conveniently located in Redwood City, TechShop Mid-Peninsula is just off US 101 and almost exactly halfway between our San Jose and San Francisco…read more >",https://www.activityhero.com/biz/techshop-midpenisula,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.2,"5,64",48,f,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,95.38,54.83
516,Synergy Badminton Academy,"Main - Menlo Park, CA",Sports Badminton,https://images.activityhero.com/provider_photo/95983/tile/c38714fc-e89d-4f0f-8df0-81c8a8f646fb.jpeg,"Here at Synergy Badminton Academy, we pride ourselves on our expert instructors, quality equipment, and high-end facilities. Together, we create a…read more >",https://www.activityhero.com/biz/synergy-badminton-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",31.1,"5,56",35,f,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Math & Logic,37.28,30.39
517,Ohlone for Kids and Teens,Multiple Locations,Programming Science American Sign Language,https://images.activityhero.com/provider_photo/95618/tile/428a8042-351d-4fff-9858-5e4968b4d0f7.jpg,"Ohlone for Kids and Teens offers classes that are designed to provide enrichment for children during the summer through an interactive, facilitative…read more >",https://www.activityhero.com/biz/ohlone-for-kids-and-teens,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",47.4,"5,56",39,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,95.48,11.1
518,Barbara Davies Art Studio,"Danville - Danville, CA",Crafts Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/81139/tile/03102b31-01ca-4e81-9f63-8fddacd3cdf5.,"Barbara Davies teaches art classes in Danville, CA in her studio ""Art On The Lane"" for students of all ages.Barbara holds three CA teaching credentials: K -…read more >",https://www.activityhero.com/biz/57268-barbara-davies-art-studio-danville-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5,56",31,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,56.5,86.23
519,Project Ember,Multiple Locations,Best of ActivityHero 2018 Grant winner 2018 Overnight/Residential Engineering Building,https://images.activityhero.com/provider_photo/109764/tile/57fcf349-2fe5-40d5-bc0e-1fe200338c80.jpeg,Project Ember is a maker camp where kids come together to tackle outrageous challenges and create their own larger-than-life solutions. Every week: We…read more >,https://www.activityhero.com/biz/project-ember,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",66.3,"5,56",143,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,38.98,0.56
520,Tale Tree,Multiple Locations,Creative Writing Crafts Drawing and Painting,https://images.activityhero.com/provider_photo/145743/tile/56c3fb6d-c8b9-4640-8fa9-05b6175ab159.png,"Our mission at Tale Tree is to change the way kids experience and expand their creativity. In this ever-changing world, Tale Tree provides a nurturing space…read more >",https://www.activityhero.com/biz/tale-tree,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",62.3,"5, 57",2022,m,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,48.08,14.47
521,Globetrotters Summer Camp,"Main Location - Fremont, CA",Do-Together Crafts Visual Arts,https://images.activityhero.com/provider_photo/112801/tile/ce2c4cfe-935b-4db4-910c-65d8579e680b.jpg,"A fascinating camp, that will take you on a journey around the world. Our thought behind this theme is to help children understand, and appreciate the…read more >",https://www.activityhero.com/biz/globetrotters-summer-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",74,"5, 57",48,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,66.1,34.36
522,Steam Camp Live,Multiple Locations,Robotics Science & Technology Science,https://images.activityhero.com/provider_photo/145947/tile/dfb57af0-0645-497e-abae-1e0a33522848.jpg,Steam Camp Live! is an interactive online camp dedicated to facilitating lifelong learning through project-based instruction. With three camps to choose…read more >,https://www.activityhero.com/biz/steam-camp-live,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",92.1,",58",35,m,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Math & Logic,42.81,36.92
523,Roly Poly Music and More,Multiple Locations,Family Dance Music,https://images.activityhero.com/provider_photo/134623/tile/7ee3a95f-1af1-4970-934a-56df8f8a1ffa.png,"The Music and Movement class is 45 min and it has two parts. First, circle time where child learn rhythmic pattern and singing simple interactive songs…read more >",https://www.activityhero.com/biz/roly-poly-music-and-more,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,58",39,f,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,69.37,60.79
524,Angel Academy of the Arts,"Main Location - San Ramon, CA",Saxophone Clarinet Flute,https://images.activityhero.com/provider_photo/107507/tile/4492be96-cf70-4f3d-9f34-4f3d09630995.JPG,"The Angel Academy of the Arts was founded in 2008 with a staff of renowned artists, musicians, and educators. It now serves all ages in the San Ramon valley…read more >",https://www.activityhero.com/biz/angel-academy-of-the-arts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5, 57",31,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,76.66,4.72
525,Electivity Kids,Multiple Locations,Mindfulness Birthday Parties Cooking,https://images.activityhero.com/provider_photo/114662/tile/2b275c3e-6ffe-497d-992d-e10ef41b22f8.jpeg,Electivity collaborates with schools and skilled instructors to offer a full spectrum of enrichment programs.,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,",58",143,"m,f",Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,37.51,48.73
526,Camp Carondelet,Multiple Locations,Robotics Photography and Video Soccer,https://images.activityhero.com/provider_photo/141939/tile/73c0512b-a747-4e99-b56a-7ed60e499619.jpg,"Camp Carondelet, an entity of Carondelet High School, is a fun, enriching co-ed, non-denominational summer camp where kids can explore a balance between…read more >",https://www.activityhero.com/biz/camp-carondelet,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"12,59",4022,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Computer Science,65.48,75.75
527,Martial Arts America - Walnut Creek,"Walnut Creek - Walnut Creek, CA",Martial Arts,https://images.activityhero.com/provider_photo/126122/tile/048282ea-7881-4864-bcb7-30331ab636f0.jpg,Welcome to Martial Arts America - home of the award winning program Karate 4 Kids. Our proven teaching methods are designed to provide a positive…read more >,https://www.activityhero.com/biz/martial-arts-america-walnut-creek,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,58",6022,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,33.55,53.59
528,Rancho Saguaro,"Main Location - Martinez, CA",Horseback Riding,https://images.activityhero.com/provider_photo/111741/tile/2ddb072c-e7fe-4f4b-928a-1d0edcd37e2d.tif,"We have taught for over 30 years, at several facilities, including our own where we also boarded and trained horses. We focus now mainly on riding lessons…read more >",https://www.activityhero.com/biz/rancho-saguaro,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,65",164,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,41.4,16.63
529,Golden Hill Equestrian,"Main Location - Walnut Creek, CA",Farm Adventure/Outdoors Horseback Riding,https://images.activityhero.com/provider_photo/111674/tile/fe6c4169-4ac8-46f3-9f15-a88eccf9c83c.jpg,We offer one on one equestrian training in a relaxing and stress-free environment. It is perfect for those wanting to step foot into the equestrian world or…read more >,https://www.activityhero.com/biz/golden-hill-equestrian,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,57",24,"m,f",STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,81.13,75.49
530,ElitePrepSanRamon,"Main Location - San Ramon, CA",Creative Writing Academics Math,https://images.activityhero.com/provider_photo/111239/tile/60c76880-6c02-45f7-9cff-04cf9c740785.jpg,"ElitePrep San Ramon is to provide students with a challenging academic environment that promotes personal growth and discipline, develops the knowledge…read more >",https://www.activityhero.com/biz/eliteprepsanramon,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,57",124,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,62.45,34.59
531,Coastside Baseball Academy,Multiple Locations,Baseball,https://images.activityhero.com/provider_photo/110884/tile/1e0dd98e-31d6-437a-a8c0-6c4ac13619b0.png,"Coastside Baseball Academy offers baseball camp to the youth during the summer and school holiday breaks in San Ramon, California. We have lessons in…read more >",https://www.activityhero.com/biz/coastside-baseball-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,57",69,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,95.21,44.97
532,Beyond Academy,Multiple Locations,Social Skills Free Activities Leadership,https://images.activityhero.com/provider_photo/108297/tile/29147ab7-640e-4c25-8c07-435cbf52a88a.jpeg,"BeYond Academy is a non-profit organization serving communities and families in San Ramon, California. We summer camps in robotics, academics, and chess. In…read more >",https://www.activityhero.com/biz/beyond-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,57",134,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,33.49,22.41
533,Drama Kids of West Silicon Valley,Multiple Locations,Drama/Theater Dance Performing Arts,https://images.activityhero.com/provider_photo/103204/tile/35224f49-88fd-4d07-b008-bc170e4595e5.jpg,"Drama Kids teaches life skills as kids have FUN! Learning to speak clearly and confidently as they put on little shows, projecting their voices, leading…read more >",https://www.activityhero.com/biz/drama-kids-of-west-silicon-valley,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 58",344,f,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,85.47,27.88
534,Dance Connection Performing Arts Centre,"Concord - Concord, CA",Acting Dance Performing Arts,https://images.activityhero.com/provider_photo/114824/tile/f17e11ec-54cc-4581-9e87-6e1c7756c529.JPG,"The most established, recognized and professional - dance training, voice and piano - arts center in the East Bay! Qualified, Caring Instructors - Our…read more >",https://www.activityhero.com/biz/57844-dance-connection-concord-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 58",564,f,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,77.19,61.27
535,Peopleologie,Multiple Locations,Online Course Science & Technology Visual Arts,https://images.activityhero.com/provider_photo/145797/tile/874f9a95-fc6e-4606-94a5-a936b37952d8.jpg,"Peopleologie's popular hands-on workshops seamlessly blend culture, math, the humanities, and sciences with hand craft. Virtual field trips include…read more >",https://www.activityhero.com/biz/peopleologie,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,",59",3023,m,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Computer Science,60.44,77.24
536,Mindful Movement with Maggie,Multiple Locations,Dance Yoga Mindfulness,https://images.activityhero.com/provider_photo/144734/tile/3f7409d0-da7a-4ace-94a2-915f39e1304d.jpg,This is for the whole family! Mindful Movement with Maggie is an online fitness platform designed to inspire you to move and feel good in your body.…read more >,https://www.activityhero.com/biz/mindful-movement-with-maggie,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,59",214,m,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Math & Logic,84.17,45.23
537,The Swann School of Protocol-Tisa Thompson,Multiple Locations,Online Course Mindfulness Academics,https://images.activityhero.com/provider_photo/145058/tile/139edfc3-3477-4bc2-9241-1d56783fdb02.jpg,"Etiquette training can help children feel empowered, build their confidence, and give them a sense of stability in being able to handle themselves in…read more >",https://www.activityhero.com/biz/the-swann-school-of-protocol-tisa-thompson,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5, 58",49,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,63.63,91.84
538,Global Art San Ramon,"Main Location - San Ramon, CA",Clay Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/143302/tile/b7212458-0582-404f-934c-51f9d7ca23bf.JPG,"Since 1999, Global Art has been promoting art & creativity to our young learners to explore and develop their artistic skills and creative thinking. Our…read more >",https://www.activityhero.com/biz/global-art-san-ramon,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,",59",36,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,72.14,48.3
539,Bots and Coding,Multiple Locations,Robotics Programming Computer Animation,https://images.activityhero.com/provider_photo/139735/tile/bde2374d-429f-4ecd-bd8a-06213df5a950.png,"We offer Enrichment classes, Creative workshops and classroom projects to nurture this generation kids- Animation coding- Lego Robotics- Coding - Python…read more >",https://www.activityhero.com/biz/bots-and-coding,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"12,60",40,"m,f",Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,77.02,83.94
540,Tot Recess,"Main Location - Walnut Creek, CA",Do-Together Family Drawing and Painting,https://images.activityhero.com/provider_photo/132748/tile/5b735c4f-e4ba-4d45-9f51-822e6fe98598.jpeg,"Join us for Tot Recess Paint & Play !A pop up preschool experience for your tots and toddlers where they can play, learn and make friends! We have…read more >",https://www.activityhero.com/biz/tot-recess,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,59",32,m,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,89.33,6
541,Baby Recess,"Main Location - Walnut Creek, CA",Social Skills Do-Together Family,https://images.activityhero.com/provider_photo/131025/tile/98623c1f-6d43-4fdc-a3b0-d6bd1d13675d.jpeg,"Come play, learn and make friends at Baby Recess 🧸We have a sensory work out for various development stages between newborn to toddling! There are numerous…read more >",https://www.activityhero.com/biz/baby-recess,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,66",144,f,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,34.32,67.46
542,Lucid Vitality,"Main Location - Martinez, CA",Mindfulness Fitness Martial Arts,https://images.activityhero.com/provider_photo/112560/tile/9eb08b38-e10a-41bd-a103-8056adaf5420.jpeg,We are a fitness and meditation studio based in downtown Martinez. We focus on approachable wellness programs for adults and children because our goal is to…read more >,https://www.activityhero.com/biz/lucid-vitality,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,58",2023,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,31.18,18.53
543,Stanford Rowing Camps,"Main Location - Redwood City, CA",Rowing,https://images.activityhero.com/provider_photo/109594/tile/cf56ffd7-8323-4862-9037-cd1840d10640.jpg,"Every summer we open the doors of the Stanford Boathouse to the community and to rowers around the country. We strive to not only teach technique, but…read more >",https://www.activityhero.com/biz/stanford-rowing-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,58",49,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,95.03,34.53
544,Vision Tech Camps,"Main Location - Danville, CA",Robotics Programming,https://images.activityhero.com/provider_photo/98894/tile/dccba718-2f14-4c33-9ab4-10a66743f119.jpg,"Vision Tech Camps is a Bay Area company offering summer computer camps and after-school activities, teaching students between the ages of 7-17 at Vision…read more >",https://www.activityhero.com/biz/vision-tech-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,58",36,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,70.08,36.28
545,The Fit Kids Foundation & Wender Weis Foundation for Children,Multiple Locations,Sports,https://images.activityhero.com/provider_photo/99158/tile/0d3d6645-0652-416d-94ed-ce3b5e42b242.jpeg,"Fit Kids' mission is to promote a healthy, active lifestyle among children in underserved communities through high quality youth fitness and nutrition…read more >",https://www.activityhero.com/biz/the-fit-kids-foundation,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,58",40,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,47.78,55.03
546,Summer Camp Online,Multiple Locations,Online Course General Recreation Photography and Video,https://images.activityhero.com/provider_photo/145785/tile/5e95d2d0-b9dc-4f38-8a51-5517cbcf604b.png,"Incredible online classes taught live, starting now! Engage in instructor led classes from the safety of your home!",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5, 59",32,"m,f",STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Computer Science,45.89,25.23
547,Snapology (Manhattan & Long Island City),Multiple Locations,Virtual Camp Fair Engineering Science & Technology Lego,https://images.activityhero.com/provider_photo/113738/tile/42dea889-f5c2-457a-9ddd-8936ae4591dd.jpg,"Snapology is a new learning concept that combines play with education. We provide a fun, interactive environment for children to learn science, technology,…read more >",https://www.activityhero.com/biz/snapology-65170,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5, 59",144,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,82.77,71.72
548,Pacific Art League,Multiple Locations,Cartooning Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/112345/tile/84389cae-89ab-4954-b452-bb299d693eab.JPG,The Pacific Art League of Palo Alto was founded in 1921 as the Palo Alto Art Club by a widely talented group of people who recognized a need to meet other…read more >,https://www.activityhero.com/biz/2798-pacific-art-league-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,",60",4023,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,99.88,94.14
549,Young Art,Multiple Locations,Cartooning Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/145648/tile/0b3b8213-4373-4049-82e3-0a731176dc5c.jpg,"At Young Art we believe in passion, creativity, and the power of education. Our team is committed to inspiring the next generation of young inventors,…read more >",https://www.activityhero.com/biz/young-art-73940,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,60",6023,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,99.28,75.37
550,Discover Science Center,Multiple Locations,Best of ActivityHero 2017 Science Biology Online Course,https://images.activityhero.com/provider_photo/96905/tile/395d2bb6-cd9e-491f-8150-5d5224a235bb.jpg,"Fun, informal, hands-on education. Discover Science Center is an informal science education enrichment lab whose purpose is to supplement the…read more >",https://www.activityhero.com/biz/discover-science-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5, 59",165,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,36.7,61.61
551,Choreography by Rae,Multiple Locations,Acting Dance Performing Arts,https://images.activityhero.com/provider_photo/144627/tile/e3daee57-eb3b-42d8-966d-5bb838c2ddbb.jpg,"Choreography by Rae has been providing performing arts education in New York City since 2015. Our motto is anyone can dance, even if you have 2 left feet.…read more >",https://www.activityhero.com/biz/choreography-by-rae-73300,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,",60",25,f,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,67.42,67.55
552,Math Plus Academy,Multiple Locations,Online Course Academics Math,https://images.activityhero.com/provider_photo/4774/tile/IGNITE_Powell_-_152.jpg,COVID-19 Update:We are currently offering online camps throughout the entire summer. In-person camps will be offered in July and August. Should we have to…read more >,https://www.activityhero.com/biz/math-plus-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"12,61",125,f,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,52.92,78.91
553,Walnut Hill School for the Arts Community Academy,Multiple Locations,Music College Preparation/Counseling Photography and Video,https://images.activityhero.com/provider_photo/145945/tile/3d205b37-b475-46f5-a028-4f5b88491c7a.jpg,"The Community Academy at Walnut Hill School for the Arts provides school year and summer session enrichment opportunities in dance, music, visual and…read more >",https://www.activityhero.com/biz/walnut-hill-school-for-the-arts-community-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,60",70,m,STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,62.1,87.96
554,Speakitaly NYC,Multiple Locations,Online Course Italian History,https://images.activityhero.com/provider_photo/144267/tile/f5a99958-f090-49cc-838a-8cba43796c86.jpg,Speakitaly NYC's kids' lessons are stimulating and entertaining. Why? Children have fun while learning because they feel at ease with their teacher.Their…read more >,https://www.activityhero.com/biz/speak-italy-nyc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,67",135,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,50.4,97.77
555,Digital Dragon,Multiple Locations,Programming Gaming Computers,https://images.activityhero.com/provider_photo/108664/tile/6c415ed3-fa36-429a-be68-82731679d773.jpg,"Amazing ONLINE week-long and daily technology camp for kids aged 8-18 interested in designing 3D video games, advancing their computer programming skills,…read more >",https://www.activityhero.com/biz/20074-digital-dragon-santa-monica-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,59",345,m,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Math & Logic,56.88,62.23
556,Snapology of Los Gatos,Multiple Locations,Online Course Science & Technology Lego,https://images.activityhero.com/provider_photo/145988/tile/68d76372-937f-46d7-8c2d-d3ba37880a04.jpg,"Snapology is a new learning concept that combines play with education. We provide a fun, interactive environment for children to learn science, technology,…read more >",https://www.activityhero.com/biz/snapology-of-los-gatos,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,59",565,m,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,77.15,81.31
557,Camp Captivate (Science Smart Kids Inc.),Multiple Locations,Science Girls Only Science & Technology,https://images.activityhero.com/provider_photo/108999/tile/e0cc8470-053b-4454-b673-2687df79db31.JPG,"Camp Captivate is leading the way in robust, hands-on Virtual Camps due to COVID-19 in the summer of 2020. These virtual camps provide the opportunity for…read more >",https://www.activityhero.com/biz/camp-captivate,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5,59",3024,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,32.32,64.91
558,Communication Academy,Multiple Locations,Flexible Booking Creative Writing Academic Writing Online Course,https://images.activityhero.com/provider_photo/97152/tile/c794653a-3c2b-4508-aa1b-cb116204c64d.jpg,"Since 2002, Communication Academy offers specialized enrichment courses in the San Francisco Bay Area. We offer Public Speaking, Debate, Writing, Reading…read more >",https://www.activityhero.com/biz/47937-communication-academy-cupertino-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,59",215,m,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,70.47,82.71
559,Silver Creek Academy,Multiple Locations,Test Prep Academics Reading,https://images.activityhero.com/provider_photo/101077/tile/4cd516da-f963-4dfc-91a5-df1467eb70d6.jpg,Silver Creek Academy is an award-winning tutoring and education center for students in kindergarten through high school. We offer small-group courses in…read more >,https://www.activityhero.com/biz/1429-silver-creek-academy-san-jose-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5, 60",50,f,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,84.12,34.99
560,MathGymUSA,Multiple Locations,Online Course Academics Math,https://images.activityhero.com/provider_photo/94256/tile/e97b8066-bd70-4694-988d-3b5e13abb30a.png,We have taken many years to first develop our courses and curriculum before brigning them to our students. We take pride in not simply hiring people to…read more >,https://www.activityhero.com/biz/mathgymusa,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5, 60",37,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,69.44,91.74
561,Cupertino Virtual Institute,Multiple Locations,Online Course Robotics Science & Technology,https://images.activityhero.com/provider_photo/145478/tile/27207817-c472-4e47-a854-d8887b77e25c.png,Cupertino Virtual Institute is a video call based summer camp created to keep kids safe during the crisis our community is facing at the moment. We hope…read more >,https://www.activityhero.com/biz/cupertino-virtual-institute-73840,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,",61",41,"m,f",STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Math & Logic,95.2,99.61
562,Pro Dance L.A.,Multiple Locations,Online Course Latin Dance,https://images.activityhero.com/provider_photo/133809/tile/f3949bb7-65c2-4800-90e3-639656a96432.jpeg,ONLINE CLASSES AVAILABLE. Welcome to Pro Dance Studio a one of a kind studio in the greater LA area dedicated to kids who may pursue a career in…read more >,https://www.activityhero.com/biz/pro-dance-l-a,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,61",33,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,59.17,80.19
563,Kid Power Academy,Multiple Locations,Virtual Camp Fair Online Course Creative Writing Public Speaking,https://images.activityhero.com/provider_photo/109935/tile/d3253710-46c1-4499-9948-27a2e5699e2b.jpg,"In today's busy world kids need a special place where they can learn, practice and develop the leadership skills needed for a successful life. We…read more >",https://www.activityhero.com/biz/kid-power-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5, 60",145,"m,f",STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Computer Science,54.1,58.51
564,Actors Technique New York,Multiple Locations,Acting Drama/Theater Performing Arts,https://images.activityhero.com/provider_photo/145854/tile/b8adac60-dab3-4c0d-a6bf-ba4e105ede4a.jpg,ATNY Kids & Teens is one of NYC's top schools for acting & industry networking. We have top acting classes in NY for Kids & Teens who want to hone their…read more >,https://www.activityhero.com/biz/6562-actors-technique-ny-new-york-ny,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,",61",2024,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,81.8,55.55
565,Firefly Dance,Multiple Locations,Modern Contemporary Dance,https://images.activityhero.com/provider_photo/145042/tile/b849440b-e0df-4821-9b6a-6e6631a75137.jpg,"At Firefly Dance, we’re always grooving! There's such an inherent joy in moving, one children can easily tap into. I strive to highlight that joy through…read more >",https://www.activityhero.com/biz/firefly-dance,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"12,62",50,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,55.87,85.36
566,Achievers,Multiple Locations,Building Science & Technology Academics,https://images.activityhero.com/provider_photo/101484/tile/90d60702-e978-46bd-8fb3-bfdc19e5420b.jpg,"Achievers is a comprehensive after-school enrichment program with a commitment to optimise teaching and learning, and facilitate a child’s holistic…read more >",https://www.activityhero.com/biz/achievers,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,61",37,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,71.93,62.39
567,Mathletes,Multiple Locations,Best of ActivityHero 2019 Best of ActivityHero 2015 Best of ActivityHero 2016 Online Course Academics Math,https://images.activityhero.com/provider_photo/6602/tile/Big_Logo_Rect_II.png,Our programs focus on creative problem solving in Mathematics. Students will tackle fun problems and participate in both formal and informal math…read more >,https://www.activityhero.com/biz/mathletes,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,68",41,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,52.32,30.46
568,Little House Of Science,Multiple Locations,Science & Technology Academics Science,https://images.activityhero.com/provider_photo/145991/tile/79252015-c02b-4fef-9342-bbd2ff1c1e50.jpg,"Little House of Science provides science clubs where little and young Scientists can experiment, explore, learn and play!At Little House of Science, we…read more >",https://www.activityhero.com/biz/little-house-of-science,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5,60",33,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,55.11,41.07
569,ivyGoal Fremont,Multiple Locations,Online Course Academics Math,https://images.activityhero.com/provider_photo/144880/tile/07e6a10c-9827-4524-8861-0a13729c35c3.png,"ivyGoal, an innovative company, was founded to improve the quality of education worldwide in 2012 by Nick Ni - a highly acclaimed California educator.…read more >",https://www.activityhero.com/biz/ivygoal-fremont,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5,60",145,f,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,76.09,48.32
570,Polygon Academy,Multiple Locations,Academics Biology Science,https://images.activityhero.com/provider_photo/112668/tile/92232d73-889e-4b7b-b9f3-d8c89350bd8b.jpg,"Polygon Academy. We have been serving the community for the last 9 years, and since our inception, have been excellent standing. We are known for the…read more >",https://www.activityhero.com/biz/polygon-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,60",4024,f,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,44.86,73.07
571,Drama Kids of Loudoun,Multiple Locations,Online Course Acting Drama/Theater,https://images.activityhero.com/provider_photo/145242/tile/03ac79ea-6ea9-449f-8f0b-71dbb241b6e8.jpg,"The Drama Kids program provides a rich, high-quality dramatic arts curriculum for children. We offer programs for children of all ages and experience…read more >",https://www.activityhero.com/biz/drama-kids-63510,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,60",6024,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,74.3,68.96
572,"AK Martial Arts & Fitness, Inc.",Multiple Locations,Best of ActivityHero 2018 Fitness Martial Arts Sports,https://images.activityhero.com/provider_photo/102527/tile/2044bfaa-caca-4e5e-b4fa-a8224849bb09.jpg,"AK Martial Arts and Fitness is located in the RealFit4Life Building in Bressi Ranch Carlsbad. We provide themed camps, martial arts, agility, tournament…read more >",https://www.activityhero.com/biz/ak-martial-arts-fitness-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5, 61",166,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,64.85,11.32
573,"The Geek House, LLC.",Multiple Locations,Science & Technology Science Math,https://images.activityhero.com/provider_photo/113730/tile/1f7dbf76-85c9-4d2c-bef8-8b181c1622cd.JPG,The Geek House is an ed-tech company offering comprehensive solutions to STEAM Education in schools and after-school programs. We also provide in-class…read more >,https://www.activityhero.com/biz/the-geek-house-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5, 61",26,m,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,62.33,46.84
574,"Camelot Academy Arts, Science & Technology",Multiple Locations,Programming Computers Science,https://images.activityhero.com/provider_photo/143545/tile/9c47cf96-1963-48d8-a1e8-f9139d402e75.jpg,"Camelot Academy of Arts, Science & Technology is a nonsectarian private education institution; offering a blend of the classical education model with…read more >",https://www.activityhero.com/biz/camelot-academy-arts-science-technology,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,",62",126,m,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Math & Logic,74.61,26.57
575,Strategic Kids,Multiple Locations,Lego Academics Chess,https://images.activityhero.com/provider_photo/107673/tile/2c64f1de-2504-4ca2-93ed-ce5068b7450d.jpg,The mission of Strategic Kids is to be a positive impact on our community by teaching life strategies through games.We strive to make learning fun and…read more >,https://www.activityhero.com/biz/strategic-kids,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,62",71,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,31.6,15.35
576,Robothink Sussex,Multiple Locations,Coding Online Course Academics,https://images.activityhero.com/provider_photo/145017/tile/3a10c674-4a43-4210-b48e-8f5cf454a1ea.JPG,"At Robothink Sussex, we believe that early exposure to STEM education is critically important to prepare children for a fast changing, digital world. We…read more >",https://www.activityhero.com/biz/robothink-sussex,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5, 61",136,m,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Computer Science,60.15,15.63
577,Coding With Kids,"Online - Palo Alto, CA",Coding Computer Animation Science & Technology,https://images.activityhero.com/provider_photo/102094/tile/e98d4c4a-55dc-47a4-8d10-2822eec94c7e.jpg,"Computer programming courses for ages 5-18! Learn to code your first games, build mods and create advanced programs!Coding with Kids programs are designed…read more >",https://www.activityhero.com/biz/19261-coding-with-kids-redmond-wa,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,",62",346,f,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,46.57,62.27
578,Exploration Kids! Enrichment,Multiple Locations,Crafts Drama/Theater Reading,https://images.activityhero.com/provider_photo/145871/tile/138145fe-1bfa-41c8-b788-7124ef88970c.png,Exploration Kids! Enrichment provides in-school Performing Arts Classes during before school or after school hours. Since 2008 (under the name Dance…read more >,https://www.activityhero.com/biz/exploration-kids-enrichment,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"12,63",566,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,80.17,15.38
579,Wiz Kid Coding,Multiple Locations,Coding Gaming Computer Animation,https://images.activityhero.com/provider_photo/145656/tile/bac7c8cc-0886-4c27-8e85-e0efcea0a6ad.png,Wiz Kid Coding is Canada's leading Coding and STEM education company focused exclusively on creating and delivering innovative coding and digital literacy…read more >,https://www.activityhero.com/biz/wiz-kid-coding-73877,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,62",3025,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,62.94,71.22
580,Dance with Joy Studios,Multiple Locations,Modern Contemporary Dance,https://images.activityhero.com/provider_photo/145110/tile/b3878a24-f2ec-41e5-96af-1188533a78e0.jpg,"Dance with Joy Studios is an art and activity wellness center offering daily fitness, dance and wellness activities, for students of all ages! We are…read more >",https://www.activityhero.com/biz/dance-with-joy-studios,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,69",216,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,69.41,56.85
581,National Academy of Athletics,Multiple Locations,Multisport Sports Softball,https://images.activityhero.com/provider_photo/98869/tile/7d604bce-6b2d-4ea2-b8d2-c3bec8f6c4d1.jpg,"National Academy of Athletics is the fastest growing youth sports program company. MISSION STATEMENT Using inspiration, motivation and perspiration, the…read more >",https://www.activityhero.com/biz/national-academy-of-athletics,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,61",51,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,32.04,19.05
582,Toc Toc Spanish,Multiple Locations,Online Course Spanish Music,https://images.activityhero.com/provider_photo/132323/tile/f87adfe1-e953-4ba1-bdca-142b2ce8bb07.jpg,"In Toc Toc we believe in learning Spanish the way we learn our first language: through games, music, having fun and getting fascinated by the sound of…read more >",https://www.activityhero.com/biz/toc-toc-spanish,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,61",38,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,57.55,86.58
583,Children's Innovation Center,Multiple Locations,Coding Online Course Programming,https://images.activityhero.com/provider_photo/109123/tile/bb720704-c343-4330-a0b7-008059006e68.JPG,About Children's Innovation CenterChildren’s Innovation Center is a non-profit organization which brings transformative education and experience to K-12…read more >,https://www.activityhero.com/biz/children-s-innovation-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,61",42,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Math & Logic,63.75,6.47
584,Shoreline Lake,"Shoreline Lake - Mountain View, CA",Canoeing Kayaking Water Sports,https://images.activityhero.com/provider_photo/101655/tile/f1e31027-cd31-4d75-8606-e75db63cf6a4.jpg,"Shoreline Lake is one of the few places that offers a true respite in Silicon Valley. Well worth visiting, it's the perfect place for a break from the…read more >",https://www.activityhero.com/biz/5729-sailing-windsurfing-aquatic-sports-camps-and-classes-mountain-view-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,61",34,"m,f",Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,92.79,40.7
585,Dan Marcus,Multiple Locations,Online Course Academics Math,https://images.activityhero.com/provider_photo/145872/tile/25f09e5a-3b4d-4f82-9342-d35fb466d199.png,"After 40 plus years of public and private school teaching in Colorado, I am thrilled to now be an ActivityHero teacher! My teaching philosophy is to see my…read more >",https://www.activityhero.com/biz/dan-marcus,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5, 62",146,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,98.72,47.66
586,Rachna’s Art & Academic Club,Multiple Locations,Online Course Academics Science,https://images.activityhero.com/provider_photo/145700/tile/c8efc2ac-a7e0-47c3-88d8-d70ae2ae870e.jpeg,Rachna’s Art & Academic Club provides entertaining personalized strategies to help students of all ages excel in their academic studies. I started this…read more >,https://www.activityhero.com/biz/rachna-s-art-academic-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5, 62",2025,m,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,60.76,84.07
587,Soaring Minds Education,Multiple Locations,Photography and Video Digital Media History,https://images.activityhero.com/provider_photo/109788/tile/73d0ebb5-d545-43a1-9678-4ebec247552a.jpg,* Soaring Minds Education was created by a local homeschooling family * Provides opportunities for homeschool students to meet weekly* High quality…read more >,https://www.activityhero.com/biz/soaring-minds-education,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,",63",51,f,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,78.31,79.62
588,"Dr. Chen's AI, Robotics & Programming",Multiple Locations,Coding Programming Computers,https://images.activityhero.com/provider_photo/108738/tile/b2f33137-9cac-4a2d-bfed-f05cac8a58fd.jpg,The inspiration for my classes comes from my extremely rewarding experience of teaching AI for Robots at Stanford Pre-Collegiate Studies as well as…read more >,https://www.activityhero.com/biz/dr-chen-s-ai-robotics-programming,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,63",38,f,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,58.1,77.44
589,Amazing Day Academy,Multiple Locations,Creative Writing Academic Writing Science & Technology,https://images.activityhero.com/provider_photo/145979/tile/37e2bad0-78b5-43b5-8879-fc674f080412.png,Just imagine for a moment your child going about their daily routine and then spontaneously bursting out with a poem. . .or pages and pages of poems. Can…read more >,https://www.activityhero.com/biz/amazing-day-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5, 62",42,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,52.01,92.77
590,AB Fine Arts Studio,Multiple Locations,Online Course Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/93870/tile/e481ae83-bfc7-49e3-bc8b-f42edecc45f3.jpg,"At AB Fine Art studio, we believe that art is the gateway to a broader education, stronger community and culture, and the cornerstone to a well-rounded…read more >",https://www.activityhero.com/biz/ab-fine-arts-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,",63",34,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,75.59,77.63
591,Palo Alto Speech and Debate Camp,Multiple Locations,Public Speaking,https://images.activityhero.com/provider_photo/100515/tile/acacf145-f384-4919-9ec9-c3d91b8e2151.jpg,"Palo Alto Speech and Debate Camp improves middle school students' critical thinking ability, public speaking, research skills, and self-confidence year…read more >",https://www.activityhero.com/biz/13438-palo-alto-speech-and-debate-camp-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"12,64",146,m,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,42.43,63.52
592,Discover Camp Garland,Multiple Locations,Social Skills Homeschool Field Trips,https://images.activityhero.com/provider_photo/143014/tile/2a3a588b-6bd3-4def-a3f8-1c4c2645a362.jpg,"Discover Camp Garland provides specialty camps over the Summer, Spring and Winter. We also offer After School Services.Discover Camp Garland was created…read more >",https://www.activityhero.com/biz/discover-camp-garland,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,63",4025,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,31.77,60.52
593,Innovation for Youth,Multiple Locations,Online Course Crafts Visual Arts,https://images.activityhero.com/provider_photo/145405/tile/b9a071fe-edb0-4f52-b6a6-393f41afea42.png,We hope that everybody is finding whatever positivity and blessings to be had in this trying and unique time. Though it is very unfortunate that because of…read more >,https://www.activityhero.com/biz/innovation-for-youth-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,70",6025,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,63.11,33.65
594,Pintsize Fitness & Sports,Multiple Locations,Soccer Sports Multisport,https://images.activityhero.com/provider_photo/144078/tile/52bf0f4f-e7a8-4c76-b403-74990c6b9e10.png,"Pintsize Fitness & Sports was developed in order to introduce children to exercise in a positive, fun environment where they will gain the skills to build…read more >",https://www.activityhero.com/biz/pintsize-fitness-sports,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,62",167,m,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Math & Logic,79.23,72.34
595,Tutoring Support Services,Multiple Locations,Creative Writing Academic Writing Reading,https://images.activityhero.com/provider_photo/145261/tile/693dc405-b7d1-40d4-a42d-cb5071bdef9d.jpeg,Hi students and parents my name is Teacher Dominique and I am an online reading teacher with a Masters in Education and Human Development I've been a…read more >,https://www.activityhero.com/biz/tutoring-support-services,,94.1,"5,62",27,f,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,67.05,46.72
596,Engineering for Kids of Kern,Multiple Locations,Online Course Science & Technology Coding,https://images.activityhero.com/provider_photo/145552/tile/0d65484c-c556-4c7e-91c3-1e3a619bf4c8.png,"Engineering for Kids franchise has been a team that's been offering classes and workshops to schools and parents for over 10 years, Engineering for Kids…read more >",https://www.activityhero.com/biz/kern-county-engineering-for-kids,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,62",127,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,42.79,84.6
597,Little Champs Learning Center,Multiple Locations,Play/Outdoor Ice Skating Sports,https://images.activityhero.com/provider_photo/99232/tile/e442c787-8da7-457c-8d58-8d86343f244e.jpg,"Little Champs is STEAM focused After School and Fun Summer program that provides children with safe, supportive learning environment that enables them to…read more >",https://www.activityhero.com/biz/little-champs-58933,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,62",72,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,51.81,18.89
598,Wealthy Habits,Multiple Locations,Best of ActivityHero 2015 Finance Academics Business,https://images.activityhero.com/provider_photo/111708/tile/b3160524-a3fa-414f-9a37-ded2f5bdc345.JPG,"Using interactive games and activities, we teach kids (ages 11-19) to be great money managers while making friends and having fun. Financial habits are…read more >",https://www.activityhero.com/biz/wealthy-habits,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5, 63",137,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,40.73,82.47
599,CD's Art Studio,Multiple Locations,Best of ActivityHero 2019 Best of ActivityHero 2018 Best of ActivityHero 2015 Ceramics Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/97092/tile/e02162d6-879b-4cb8-a762-64db173b5c69.jpg,"Instructor CD Hullinger has over 27 years experience as a children's book illustrator and professional tutor, best known for her books Snakes Wear Socks and…read more >",https://www.activityhero.com/biz/16839-art-bash-studios-san-jose-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5, 63",347,"m,f",STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,65.19,48.97
600,Jeanette Airen Performing Arts Studio,Multiple Locations,Music Theory Voice Music,https://images.activityhero.com/provider_photo/134872/tile/1b65cf72-876e-4397-ac44-5ff9d133a112.jpg,"Jeanette Airen Performing Arts Studio offers Singing, Acting, Piano, Guitar and Ukulele lessons and much more, including group classes and musical theater…read more >",https://www.activityhero.com/biz/jeanette-airen-performing-arts-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,",64",567,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,80.89,20.92
601,Dallas Magic Academy,Multiple Locations,Social Skills Drama/Theater Performing Arts,https://images.activityhero.com/provider_photo/144994/tile/3587930b-5f85-4071-b148-42533660bf5d.jpg,"The Discover Magic course is an educational program specifically designed to teach not just magic, but how to interact successfully with other people. In…read more >",https://www.activityhero.com/biz/dallas-magic-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,64",3026,"m,f",STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,65.4,61.9
602,Ascendly,Multiple Locations,Engineering Lego,https://images.activityhero.com/provider_photo/144989/tile/6ece2eec-deb3-4e26-8b78-1e2c6ba3fa5c.jpg,"Starting with curious kids, we give them the desire, the skills, the confidence, the competence, and the resources to build cool stuff. Kids graduate…read more >",https://www.activityhero.com/biz/ascendly,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5, 63",217,"m,f",STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,95.24,80.83
603,Hall That Fun,Multiple Locations,Family Party Entertainers Birthday Parties,https://images.activityhero.com/provider_photo/144760/tile/000e8fa5-02f1-4cbf-acb2-7bd7d78574e6.PNG,"At Hall That Fun, we offer a variety of classes to keep your kids engaged, learning and most importantly, having fun. We focus on keeping your kids…read more >",https://www.activityhero.com/biz/hall-that-fun-73378,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,",64",52,m,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,77.85,54.12
604,NYC Guitar School,Multiple Locations,Online Course Guitar Music,https://images.activityhero.com/provider_photo/143419/tile/5800a22c-fc9d-45e3-8f89-30bff1e10f60.jpg,"NYC Guitar School is New York's largest guitar school, with over 3,000 students and 50 teachers in 5 metro locations. But now, we are global—teaching…read more >",https://www.activityhero.com/biz/nyc-guitar-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"12,65",39,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,68.89,47.01
605,Bay Area Mandarin,Multiple Locations,Music Theory Music Language,https://images.activityhero.com/provider_photo/144648/tile/990a5788-c120-4377-8c67-e0c08c48d756.jpg,Bay Area Mandarin partners with schools and community leaders to offer high-quality Mandarin Immersion program that features innovative curriculum and…read more >,https://www.activityhero.com/biz/bay-area-mandarin,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,64",43,f,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,91.52,18.4
606,Michelle Danner Acting School,Multiple Locations,Acting Drama/Theater Dance,https://images.activityhero.com/provider_photo/120026/tile/9046c573-9849-48e8-84d8-e223ae7325af.jpg,Students will develop a solid acting technique and foundation. Working on fun improvisational games & exercises. Students will also work on auditioning…read more >,https://www.activityhero.com/biz/michelle-danner-acting-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,71",35,f,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,96.76,41.76
607,Spring Down Equestrian Center,"Spring Down Equestrian Center - Portola Valley, CA",Adventure/Outdoors Horseback Riding Animals,https://images.activityhero.com/provider_photo/100505/tile/5700c2e9-ac1e-47ce-bb06-d0cce7544b90.jpg,"Spring Down Equestrian Center offers three different horsemanship camps. Spring, Summer and Winter Camps- Our spring, summer, and winter camps are one or…read more >",https://www.activityhero.com/biz/2951-spring-down-equestrian-center-portola-valley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,63",147,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,77.56,30.84
608,Find Joy In Food,Multiple Locations,Flexible Booking Online Course Cooking Visual Arts,https://images.activityhero.com/provider_photo/99401/tile/d93ef2d8-4e68-467b-9b1e-0b978eb15310.png,Looking for a camp or cooking class full of fun and yummy food? Plus gaining the lifelong skill of empowerment and independence in the kitchen? Want your…read more >,https://www.activityhero.com/biz/56752-find-joy-in-food-kids-cooking-camp-menlo-park-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,63",2026,m,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Computer Science,40.89,35.49
609,Septien Entertainment Group,Multiple Locations,Best of ActivityHero 2016 Online Course Music Performing Arts,https://images.activityhero.com/provider_photo/95431/tile/b4240373-59fa-4cb3-bb04-811bcc64dc94.jpg,"Are you ready for the #1 Summer Music Camp Experience in Dallas? Septien Summer Music Camp programs are music based (voice, instruments, performance and…read more >",https://www.activityhero.com/biz/8284-septien-school-of-music-carrollton-tx,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,63",52,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,32.86,68.51
610,Spur IQ,Multiple Locations,Coding Online Course Programming,https://images.activityhero.com/provider_photo/110584/tile/c9d599b8-5550-4658-84b0-f14944d45765.jpg,"Backed by our parent company, Collaaj, Inc., Spur IQ’s curriculum is built by real entrepreneurs, real engineers, and real marketers with several decades of…read more >",https://www.activityhero.com/biz/spuriq,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,63",39,m,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Math & Logic,67.92,65.53
611,Cindy Art Studio,Multiple Locations,Online Course Cartooning Drawing and Painting,https://images.activityhero.com/provider_photo/100014/tile/63a3a392-813a-4322-83bc-ee24746c7671.JPG,"Located in San Jose's Almaden Valley, Cindy Art Studio offers on-going art classes for children and adults alike. We are committed to developing…read more >",https://www.activityhero.com/biz/374-cindy-art-studio-san-jose-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 64",43,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,69,11.58
612,Best In Class Education Center Palo Alto,Multiple Locations,Academic Writing Reading Math,https://images.activityhero.com/provider_photo/112042/tile/8e3b3f0a-49a4-4c29-90d1-f443d35c5468.jpg,"We help students develop the skills and knowledge they need for a bright future. Best in Class students benefit from individual attention, active…read more >",https://www.activityhero.com/biz/best-in-class-education-center-palo-alto,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5, 64",35,m,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Math & Logic,54.94,17.79
613,Got Game Camp,Multiple Locations,Homeschool After School Care Academics,https://images.activityhero.com/provider_photo/145844/tile/489cfc60-d4f1-4016-999a-fc104618d9b2.JPG,"Got Game Camp® is the premier Los Angeles camp destination for kids ages 4-14, and now we're virtual! Got Game provides a one-of-a-kind camp experience by…read more >",https://www.activityhero.com/biz/20601-got-game-camp-los-angeles-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,",65",147,f,STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Math & Logic,67.18,47.45
614,Julia Lee Activities,Multiple Locations,Online Course Korean Cooking,https://images.activityhero.com/provider_photo/145703/tile/f718a8ee-6951-46fa-b13e-7b0050bb0dfa.jpg,Julia Lee Activities welcomes you to the world of being creative!Opportunities to learn Adobe Apps from beginner level to advance level!Opportunities to…read more >,https://www.activityhero.com/biz/choi-graphic-design-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,65",4026,"m,f",STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,90.43,22.81
615,BayAreaChess,Multiple Locations,Flexible Booking Online Course Chess Gaming,https://images.activityhero.com/provider_photo/96579/tile/575669ed-ee3b-4500-bdba-a788d7f813a7.jpg,"BayAreaChess provides chess and strategy games classes, camps, clubs and teams both in person and ONLINE! Chess and Strategy Games help develop…read more >",https://www.activityhero.com/biz/bayareachess,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5, 64",6026,"m,f",Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,92.88,84.53
616,Little Loudspeakers Academy LLC,Multiple Locations,Online Course Leadership Public Speaking,https://images.activityhero.com/provider_photo/133283/tile/8815c7bb-9b68-4bcc-b464-6dde424e0549.jpg,"Little Loudspeakers Academy provides specialized enrichment courses in the San Francisco Bay Area. We offer Public Speaking, Debate, Writing, Reading,…read more >",https://www.activityhero.com/biz/little-loudspeakers-academy-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,",65",168,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,68.91,59.9
617,Digital Media Academy Tech Camps,Multiple Locations,Science & Technology Photography and Video Programming,https://images.activityhero.com/provider_photo/134527/tile/768559b9-ce0c-461d-a1ca-1176794f447d.jpg,Digital Media Academy delivers the best project-based cutting edge technology education through summer camps and more for ages 9-18 at prestigious…read more >,https://www.activityhero.com/biz/digital-media-academy-summer-computer-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"12,66",28,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,73.19,17.13
618,Best in Class Education Center - South San Jose,Multiple Locations,Academics Academic Writing Math,https://images.activityhero.com/provider_photo/135207/tile/97f46e83-2f13-41cf-b1fe-558afd59a803.jpg,"At Best in Class, our mission is twofold: build better teachers; build successful students. Best in Class Education provides math and English enrichment…read more >",https://www.activityhero.com/biz/best-in-class-education-center-70634,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,65",128,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Math & Logic,34.32,21.33
619,GIGIL - Play Learn Grow,Multiple Locations,Engineering Science & Technology Math,https://images.activityhero.com/provider_photo/120511/tile/e8ec3ea7-857a-4d97-8241-fb751646d96f.jpg,GIGIL is designed to be a community resource for parents and caregivers. We are creating a place where diversity is not only welcome but encouraged. At…read more >,https://www.activityhero.com/biz/gigil-play-learn-grow,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5,72",73,"m,f",STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,36.44,39.98
620,Yu Xin Ballet School,Multiple Locations,Dance Ballet Performing Arts,https://images.activityhero.com/provider_photo/145946/tile/aa9d4f17-ed0f-4b27-9375-a68464fe5810.jpg,"Yu Xin Ballet School is Proud to include the American Ballet Theater National Training Curriculum, a breakthrough 8-level program that combines high quality…read more >",https://www.activityhero.com/biz/yu-xin-ballet-school-74030,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5,64",138,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,64.59,79.24
621,Journey to Broadway,Multiple Locations,Audition skills Drama/Theater Performing Arts,https://images.activityhero.com/provider_photo/146057/tile/d94b6d66-9cab-423b-8e72-6eb5cc2bbc53.JPG,We believe that everything in life is a journey! Journey to Broadway is a BRAND NEW unique ONE-WEEK only performing arts learning experience for young…read more >,https://www.activityhero.com/biz/journey-to-broadway,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,64",348,m,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,70.64,29.73
622,Sanga,Multiple Locations,Academics Dance Drawing and Painting,https://images.activityhero.com/provider_photo/145820/tile/f8609575-0e69-43c7-aaaf-9d3fd3e7dcc8.png,"Sanga provides fun and engaging online classes for kids. We teach painting, yoga, science, geography and more!",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,64",568,m,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,64.76,72.6
623,Los Angeles Academy of Figurative Art,Multiple Locations,Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/109823/tile/6936dd5d-164a-41ec-b928-57fadb700225.jpg,The Los Angeles Academy of Figurative Art (LAAFA) is an accredited institution providing BFA Degrees and Certificates in Fine Art and Entertainment Art.…read more >,https://www.activityhero.com/biz/20036-los-angeles-academy-of-figurative-art-los-angeles-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,64",3027,f,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,31.92,8.79
624,Pinecone Active Learning,Multiple Locations,Academics Online Course Academic Writing,https://images.activityhero.com/provider_photo/145118/tile/3039009e-c0e6-47d5-af30-c6f8fc890c23.JPG,"Pinecone Active Learning provides after-school programs in Math, Reading, and Writing for students from three years old through high school. The younger…read more >",https://www.activityhero.com/biz/pinecone-learning,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5, 65",218,f,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Math & Logic,45.53,97.36
625,Seattle Cucina,Multiple Locations,Cooking,https://images.activityhero.com/provider_photo/144942/tile/c4f583ee-4373-442e-9708-372069b850fe.png,"Hands-on and unique cooking classes for people of all ages and experience levels! We offer family friendly classes, kids classes, and adult classes. These…read more >",https://www.activityhero.com/biz/seattle-cucina,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5, 65",53,m,STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Math & Logic,37.29,16.63
626,Talentz (DBA ALOHA),Multiple Locations,Creative Writing Academic Writing Reading,https://images.activityhero.com/provider_photo/142204/tile/a2e92524-af4d-40c4-8653-bc7ed51e30ce.png,Inside your child lies an unrealized capacity for learning. Our mission is to unleash this potential so that your child can get ahead – and stay ahead –…read more >,https://www.activityhero.com/biz/talentz-dba-aloha,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,",66",40,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,84.17,42.4
627,Shoreline Golf Links,Multiple Locations,Best of ActivityHero 2016 Play/Outdoor Sports Golf,https://images.activityhero.com/provider_photo/95560/tile/6989a579-918e-4c61-aa5e-5de73f445134.jpg,"All classes are taught by golf professional Roy Day, PGA. Roy has been awarded US Kids Top 50 Junior Instructors 2006, 2007, 2008. Roy has been awarded US…read more >",https://www.activityhero.com/biz/1895-shoreline-golf-links-mountain-view-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,66",44,m,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,79.69,49.44
628,Art And Soul,Multiple Locations,Yoga Cooking Visual Arts,https://images.activityhero.com/provider_photo/94031/tile/05974eac-2e5a-4480-8681-ee9f3afc60aa.jpg,Our acclaimed programs strive to help students find their own voice & confidence.With a uniquely low student-adult ratio and highly experienced professional…read more >,https://www.activityhero.com/biz/art-and-soul,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5, 65",36,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,63.76,59.69
629,Chess King,Multiple Locations,Chess Online Course Academics,https://images.activityhero.com/provider_photo/6283/tile/children-chess.jpg,Do you wonder how to get kids excited about chess? This is our specialty. Children in our program will reap all the many benefits of chess participation…read more >,https://www.activityhero.com/biz/19698-chess-king-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,",66",148,"m,f",Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,92.42,58.09
630,Camp Super Duper,Multiple Locations,Flexible Booking ActivityHero Business Grant 2019 Best of ActivityHero 2019 Sports Science Cooking,https://images.activityhero.com/provider_photo/107252/tile/ff580169-3337-48c0-af5a-8de5a73acd9d.jpg,"Camp Super Duper began 10 short years ago as, what was then called Super Duper Arts Camp. It began in one room, with 10 kids and 2 Super Duper folks with a…read more >",https://www.activityhero.com/biz/camp-super-duper,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"12,67",2027,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,74.29,94.87
631,American Dance Training Camps,Multiple Locations,Drama/Theater Dance Performing Arts,https://images.activityhero.com/provider_photo/16077/tile/41b900bb-6592-45bd-a0c1-545021b42356.,"Welcome to ADTC - the ULTIMATE overnight dance camp!
We believe you have to do what you love. And we believe the world needs strong & inspired girls like…read more >",https://www.activityhero.com/biz/22275-american-school-of-dance-and-training-camp-olympic-valley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,66",53,f,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,52.88,47.19
632,Swann School of Protocol,Multiple Locations,Best of ActivityHero 2019 Mindfulness Online Course Free Activities,https://images.activityhero.com/provider_photo/111728/tile/938d0f72-e547-401e-b486-6c1c7e3c886e.jpg,"Founded by Elaine Swann, one of the leading and most nationally recognized lifestyle and etiquette experts in the USA, the Swann School of Protocol is a…read more >",https://www.activityhero.com/biz/swann-school-of-protocol,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,73",40,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,41.38,39.36
633,"Bottom Of The Box, LLC","Online - Palo Alto, CA",Public Speaking College Preparation/Counseling Leadership,https://images.activityhero.com/provider_photo/143859/tile/61ef3e51-7bec-4568-94a4-4f3e8316a767.jpg,"Our core premise is that we are all resilient. It is in each of us from day one. Sometimes we lose touch with our resilience, but it never goes away. It…read more >",https://www.activityhero.com/biz/bottom-of-the-box-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,65",44,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,48.83,41.11
634,Vinings School of Art,Multiple Locations,Online Course Spanish Tutoring,https://images.activityhero.com/provider_photo/110889/tile/fb019e9f-f3ef-4caf-89d8-ea65ebdaaa12.JPG,"The Vinings School of ART has offered these types of classes for more than 13 years!-FINE ARTS (draw, paint, sculpture, clay) -SPANISH LANGUAGE Arts /…read more >",https://www.activityhero.com/biz/47870-vinings-school-of-art-smyrna-ga,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,65",36,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,67.35,71.92
635,Top Gun Batting Cages,Multiple Locations,Sports Baseball Softball,https://images.activityhero.com/provider_photo/111128/tile/05f32d89-067c-4ee1-b915-7acf94a4f275.jpg,Top Gun Batting Cages is a Veteran-Owned Small Business dedicated to providing Central Maryland with the very best indoor baseball/softball training…read more >,https://www.activityhero.com/biz/top-gun-baseball-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,65",148,"m,f",Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,69.53,68.09
636,"Challenge Island - Cherokee, Forsyth & Milton",Multiple Locations,Social Skills Business Engineering,https://images.activityhero.com/provider_photo/130706/tile/ae05c1e7-aab8-43fa-8546-f8784669b7a2.jpg,"Challenge Island offers a wide array of exhilarating, collaborative STEMtastic programming for kids ages 4 to 14+ (including senior adults). Our…read more >",https://www.activityhero.com/biz/challenge-island-cherokee-forsyth-milton,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,65",4027,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,43.9,98.96
637,AIClub,Multiple Locations,Robotics Programming Science & Technology,https://images.activityhero.com/provider_photo/121492/tile/e3da3d92-1061-47f5-8ad3-aac5fb541853.jpg,"What is AI?Artificial Intelligence is how computers learn data patterns and build models to do intelligent tasks. Google search, auto-correct, speech…read more >",https://www.activityhero.com/biz/aiclub,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5, 66",6027,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,44.42,68.8
638,Aimee Art Productions,"Online - Palo Alto, CA",Music Theory Music Performing Arts,https://images.activityhero.com/provider_photo/144519/tile/6cf3185c-5096-4719-9279-006c46f67cee.jpg,"Our company is comprised of teaching artists who are passionate about learning and arts, and who strive to bring quality arts instruction to a variety of…read more >",https://www.activityhero.com/biz/aimee-art-productions-73253,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5, 66",169,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,70.27,66.85
639,Tandez Academy of Martial Arts,Multiple Locations,Martial Arts,https://images.activityhero.com/provider_photo/145568/tile/69a510ee-022f-4ffe-84f5-5db6cd2067ea.jpg,"Tandez Academy has been the leader in street self-defense training in the San Francisco Bay Area. We offer group classes, personal training and seminars for…read more >",https://www.activityhero.com/biz/tandez-academy-of-martial-arts-71264,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,",67",29,m,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,96.6,98.26
640,The Paintbrush,Multiple Locations,Drawing and Painting Yoga Visual Arts,https://images.activityhero.com/provider_photo/110287/tile/aa09740b-4969-42ca-bc68-ddfb9c6a6004.jpg,"At The Paintbrush, kids do more than just paint! At The Paintbrush, kids ages 1-12 ages learn about artists through hands-on artist-inspired projects…read more >",https://www.activityhero.com/biz/8013-the-paintbrush-chicago-il,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,67",129,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,85.21,42.1
641,"Funky Divas & Dudes, LLC",Multiple Locations,Hip Hop Performing Arts Dance,https://images.activityhero.com/provider_photo/145702/tile/57d21f7c-9db7-413c-81e1-8c0147691730.jpg,Funky Divas & Dudes have created a magical world where children can let their personalities shine! Founded in 2002 by two friends with a passion for…read more >,https://www.activityhero.com/biz/funky-divas-dudes-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5, 66",74,f,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,48.52,30.17
642,Wolf Camp & School of Natural Science,Multiple Locations,Gardening Environmental Animals,https://images.activityhero.com/provider_photo/145538/tile/edc66ba4-a6de-4b93-a9ab-70bf1a110161.jpg,"We are an earth skills educational camp offering physical and virtual camps and classes for kids, youth, adults and families during the summer and…read more >",https://www.activityhero.com/biz/3400-wolf-camp-and-the-wolf-college-puyallup-wa,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,",67",139,f,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,41.41,71.49
643,Action Karate,Multiple Locations,Fitness Martial Arts Free Activities,https://images.activityhero.com/provider_photo/145313/tile/805c6226-ae6d-4bc5-9fb6-c82a71501258.jpg,"You might naturally associate martial arts with Hollywood stunts and kicks and punches, but the self-defense aspect of martial arts is just part of it.…read more >",https://www.activityhero.com/biz/action-karate-73745,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"12,68",349,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,68.58,82.3
644,Expression8 Art Gallery,Multiple Locations,Crafts Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/109460/tile/e46aa656-4bb6-4120-a90d-7071e9e2a292.JPG,"Fine Art Institute where Fun, Creativity, and learning happens all at one place. We do have summer camps for kids and Art classes through out the…read more >",https://www.activityhero.com/biz/19217-prashanti-art-inc-fremont-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,67",569,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,88.21,37.76
645,Chance Theatre,Multiple Locations,Social Skills Autism Drama/Theater,https://images.activityhero.com/provider_photo/114827/tile/02882573-a9d2-407e-90f5-7c4db8cf46a4.jpg,"Chance Theatre is located in Anaheim, California and is offering summer camps for kids age 7-12 years old. Our programs are designed to enrich and…read more >",https://www.activityhero.com/biz/chance-theatre,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,74",3028,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,69.06,27.68
646,Rubik's Cube Teaching,Multiple Locations,Gaming Sports Math,https://images.activityhero.com/provider_photo/145879/tile/4b8413e3-e514-44a1-b122-51ad31630b99.jpg,"I am a 6th grade student that teaches students of all ages how to solve puzzles, including the Rubik's cube, 2x2, 3x3, 4x4, 5x5, pyraminx, and megaminx.10…read more >",https://www.activityhero.com/biz/rubik-s-cube-teaching-74047,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,66",219,m,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,37.98,21.87
647,"Fun Chefs, LLC",Multiple Locations,Online Course Birthday Parties Cooking,https://images.activityhero.com/provider_photo/145877/tile/3b5f8da6-c560-47d6-8d65-a2179c6c613f.jpg,Fun Chefs is a company geared toward exploring and practicing the culinary arts for today's busy and active families. Children's classes can be held in a…read more >,https://www.activityhero.com/biz/fun-chefs-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5,66",54,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,42.33,6.51
648,Total Learning Education,Multiple Locations,Academics Math Language,https://images.activityhero.com/provider_photo/145750/tile/680d1079-0a75-4db1-9c1e-0fcbcece7f0c.JPG,Total Learning Education has been helping students from Walnut Valley Unified School District and neighboring school districts for over a decade. We…read more >,https://www.activityhero.com/biz/total-learning-education,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,66",41,m,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,87.22,89.49
649,Waiting For The Weekends,Multiple Locations,Engineering Science & Technology Crafts,https://images.activityhero.com/provider_photo/146024/tile/1311ecd3-2e69-465d-93ff-3dabfda59376.jpg,"During this crazy time, it can be hard for busy parents to keep up with everything. With everyone at home, things can get quite hectic. We're here to help…read more >",https://www.activityhero.com/biz/waiting-for-the-weekends,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5,66",45,f,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Math & Logic,83.04,26.07
650,The Daydreamer's Academy,Multiple Locations,Creative Writing Photography and Video Performing Arts,https://images.activityhero.com/provider_photo/145539/tile/0a8dda3c-1037-4f37-960f-bb79a7f158c9.JPG,THE DAYDREAMER'S ACADEMY is an innovative collective dedicated to bringing online project based arts education to kids around the globe. By linking…read more >,https://www.activityhero.com/biz/the-daydreamer-s-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5, 67",37,"m,f",STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,42.22,58.39
651,STEM to the Future,Multiple Locations,Digital Media Biology Science & Technology,https://images.activityhero.com/provider_photo/105911/tile/828689ac-a474-4452-b160-93e0d8bdf3d3.png,Our mission is to create an extended learning experience for South LA students in grades K-5 that uses STEM to develop 21st century skills such as…read more >,https://www.activityhero.com/biz/stem-to-the-future,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5, 67",149,"m,f",STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Computer Science,60.25,82.32
652,Challenge Island Santa Cruz/San Jose,Multiple Locations,Engineering Crafts Online Course,https://images.activityhero.com/provider_photo/111643/tile/f52999df-4165-4125-87d0-e6cf8278a6ef.jpg,"Challenge Island is an international educational franchise on the forefront of S.T.E.A.M. (Science, Technology, Engineering, Art, and Math) Education and…read more >",https://www.activityhero.com/biz/challenge-island-santa-cruz-san-jose,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,",68",2028,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Math & Logic,81.75,28.55
653,Solaris Pediatric Therapy,Multiple Locations,Online Course Yoga Academic Writing,https://images.activityhero.com/provider_photo/120017/tile/1b46702f-c534-4d30-baf3-0c7a4df585f6.jpg,We help children develop the skills they need to engage in day to day activities and to be comfortable in typical social environments. The child’s…read more >,https://www.activityhero.com/biz/solaris-pediatric-therapy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,68",54,"m,f",Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,65.58,7.58
654,Code2Discover,Multiple Locations,Coding Science & Technology Computers,https://images.activityhero.com/provider_photo/145455/tile/0814a1b6-9023-48d3-9f2f-6f5691713474.jpg,"At Code2Discover, we teach kids ages 7-14 through live online classes to use coding to discover their creativity, their ability, and maybe even their…read more >",https://www.activityhero.com/biz/code2discover,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5, 67",41,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,52.78,42.89
655,Tribeca Language,Multiple Locations,Spanish French Chinese,https://images.activityhero.com/provider_photo/145508/tile/149fb4d8-b8b6-4564-95b0-49d8dd7a6e44.jpg,"TriBeCa Language has been empowering hundreds of language learners with the gift of languages for over 13 years. NYC-based, our center offers live,…read more >",https://www.activityhero.com/biz/tribeca-language,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,",68",45,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,87.45,73.48
656,Bennett Academy of the Performing Arts,Multiple Locations,Acting Performing Arts Music Theory,https://images.activityhero.com/provider_photo/100089/tile/367803cc-fd22-48bf-8652-081c43072c1e.JPG,"For twenty years Bennett Academy Of The Performing Arts, has been the source of music education for the aspiring professional and the avid hobbyist. The…read more >",https://www.activityhero.com/biz/53686-bennett-academy-of-the-performing-arts-new-rochelle-ny,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"12,69",37,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,89.88,17.19
657,Twice Gifted,Multiple Locations,Environmental Public Speaking Leadership,https://images.activityhero.com/provider_photo/139564/tile/a3095688-c226-467b-a12c-95be7d3fe585.jpg,Twice Gifted is an organization started by a group of parents and educators in the SFBay Area that wanted to provide challenging science labs and social…read more >,https://www.activityhero.com/biz/twice-gifted,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,68",149,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,73.23,75.28
658,Charlotte Chess Center & Scholastic Academy,Multiple Locations,Academics Chess Visual Arts,https://images.activityhero.com/provider_photo/145469/tile/49817329-aa31-42c9-9f59-0643df73cd46.jpg,"The CCCSA serves as an educational hub for chess in the Charlotte area; offering camps, classes and lectures year round.The CCCSA runs weekly and monthly…read more >",https://www.activityhero.com/biz/charlotte-chess-center-scholastic-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5,75",4028,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,43.44,85.47
659,Thinkertales,Multiple Locations,Play/Outdoor Dance Reading,https://images.activityhero.com/provider_photo/144845/tile/e032e34c-e1b6-4c9b-8bf3-ae4f7e11a38e.jpg,"Little ones will love the programs from Thinkertales in Manhattan's TriBeCa neighborhood. Thinkertales offers creative, specialized classes for children…read more >",https://www.activityhero.com/biz/thinkertales,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5,67",6028,f,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,62.23,51.56
660,Mi Casita de Español,Multiple Locations,Best of ActivityHero 2019 Preschool Adventure/Outdoors Spanish,https://images.activityhero.com/provider_photo/133473/tile/dfdd5a15-a09e-4dcb-b773-c999360ea581.jpg,"¡Bienvenidos! Welcome to ""Mi Casita de Español""Spanish Immersion Preschool in Palo Alto.We are a licensed, home-based preschool providing a supportive…read more >",https://www.activityhero.com/biz/mi-casita-de-espanol,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,67",170,f,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,56.8,82.06
661,Young Builders Palo Alto,"Main Location - Palo Alto, CA",Best of ActivityHero 2015 Science Industrial Arts Visual Arts,https://images.activityhero.com/provider_photo/3216/tile/P1060432.JPG,"Young Builders is a way to get your child to build a plane, boat or electric motor among many things while building self-esteem and confidence. Working with…read more >",https://www.activityhero.com/biz/1897-young-builders-palo-alto-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,67",30,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,54.83,83.17
662,Global Art Dublin,"Main Location - Dublin, CA",Flexible Booking Clay Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/111258/tile/4e919b81-beee-4de2-b096-6785a515a952.jpeg,"Since 1999, Global Art has been promoting art & creativity to our young learners to explore and develop their artistic skills and creative thinking. Our…read more >",https://www.activityhero.com/biz/global-art-dublin,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,67",130,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,97.99,18.04
663,Fremont Christian School,"Main Location - Fremont, CA",Academics Rock Music,https://images.activityhero.com/provider_photo/98122/tile/7fa4eb97-c23b-40e0-9691-be6037dfbf4e.jpg,"The Summer Enrichment Program (SEP) is directed by Melanie Williams. For Summer 2020, FCS is hosting Summer Adventures Around the World (grades 1-8), Summer…read more >",https://www.activityhero.com/biz/fremont-christian-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5, 68",75,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,63.06,54.93
664,ActivityHero Camp & Activity Fairs,Multiple Locations,Free Activities General Recreation Online Course,https://images.activityhero.com/provider_photo/110562/tile/5a1e17b7-1484-4f50-ac4b-1994fb116d6e.jpg,"ActivityHero is proud to host local & virtual camp and activity fairs.At each fair, the kids will get a chance to try fun hands-on activities -- and parents…read more >",https://www.activityhero.com/biz/activityhero-camp-and-activity-fair,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5, 68",140,m,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Computer Science,96.95,87.73
665,Ohlone Art Camp,"Ohlone Art Camp - Palo Alto, CA",Play/Outdoor Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/101286/tile/edc62401-5661-4348-ba04-5c51597826d8.jpg,I'm afraid that I have now made the decision to cancel my camp for this year. I am heartbroken. This was to be my 24th year of teaching. I was really…read more >,https://www.activityhero.com/biz/2792-ohlone-art-camp-palo-alto-ca,,28.2,",69",350,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,71.26,85.55
666,Chaparral at Woodside,"Folgers Stable - Woodside, CA",Horseback Riding Adventure/Outdoors Sports,https://images.activityhero.com/provider_photo/97367/tile/dae4ce95-cd80-4370-bc09-0745d0b22b02.png,"The spirit of the West meets Silicon Valley at Chaparral Ranch. Surrounded by natural trails and open space preserves, the ranch overlooks stunning Bay…read more >",https://www.activityhero.com/biz/chaparral-horse-ranch,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,69",570,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,30.04,87.67
667,EmpowerandHelp,Multiple Locations,Grant winner 2018 Best of ActivityHero 2018 Social Skills Building Creative Writing,https://images.activityhero.com/provider_photo/145694/tile/a7600c5d-ea75-475a-bc70-f57597dcb7f1.png,At Empower and Help we create future leaders with integrity that make this world a better place for themselves and others. Our social and emotional…read more >,https://www.activityhero.com/biz/empowerandhelp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5, 68",3029,f,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,86.51,71.25
668,Gorilla Art Studio,Multiple Locations,Best of ActivityHero 2016 Best of ActivityHero 2017 Visual Arts Birthday Parties Crafts,https://images.activityhero.com/provider_photo/100803/tile/a3427b59-6ad5-4864-a26b-521d807a1dd6.jpg,"Gorilla Art was founded by Tiffany Bakas. While her kids were young, searching for arts and crafts programs locally became challenging. As an artist,…read more >",https://www.activityhero.com/biz/gorilla-art-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,",69",220,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,66.46,27.09
669,Marshmallow Minds,Multiple Locations,Coding Science & Technology Yoga,https://images.activityhero.com/provider_photo/109323/tile/610ead10-5661-449d-b414-b02e3b2d52ef.jpeg,"At Marshmallow Minds, we partner with schools (and parents) and introduce students to well known real-world problems. We teach the students how…read more >",https://www.activityhero.com/biz/marshmallow-minds,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"12,70",55,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,74.46,13.26
670,Camp Ruwá,Multiple Locations,Best of ActivityHero 2018 Visual Arts Religious Play/Outdoor,https://images.activityhero.com/provider_photo/102825/tile/6dd1d160-e6ba-4b8d-bef1-eb84af539343.jpg,"Camp Ruwá is a year round camp bringing adventure, love, and connection to your local community through the adventures of camp! BEST SUMMER EVER!At Camp…read more >",https://www.activityhero.com/biz/camp-ruwa,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,69",42,"m,f",Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,51.63,70.78
671,Jardin de Mariposas School,Multiple Locations,Preschool Animals Spanish,https://images.activityhero.com/provider_photo/109344/tile/287947fb-86b8-46e5-b293-f8008972cab1.jpg,Jardín de mariposas is a Spanish immersion School serving children 2-7 years old. We offer morning and after school programs during the school year and…read more >,https://www.activityhero.com/biz/jardin-de-mariposas-preschool,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,76",46,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,95.65,66.95
672,Camp MAC,Multiple Locations,Digital Media Journalism Academics,https://images.activityhero.com/provider_photo/136846/tile/2146e346-dd4f-45ca-b3e0-e6813718f2b5.png,"Camp MAC is transitioning completely virtual! Campers will still learn the stylistic nuances of journalistic writing through engaging, interactive…read more >",https://www.activityhero.com/biz/53231-camp-mac-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,68",38,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,70.9,6.97
673,Right Brain Curriculum,Multiple Locations,Online Course America Academics,https://images.activityhero.com/provider_photo/145565/tile/26f4a2e9-393b-41e1-a845-37ee6d2433bf.PNG,"Right Brain Curriculum is a Boston-based education company offering engaging, project-based grade 2-8 learning programs throughout Eastern Massachusetts and…read more >",https://www.activityhero.com/biz/right-brain-curriculum,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,68",150,"m,f",STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Math & Logic,70.39,58.19
674,Colorado STEAM Academy,Multiple Locations,Coding Robotics Academics,https://images.activityhero.com/provider_photo/111458/tile/df810170-d553-475a-a0fe-3bb7385cfc81.jpg,"STEAM ACADEMY offers a challenging curriculum for students with hands-on projects and career exploration to inspire students in science, technology,…read more >",https://www.activityhero.com/biz/steam-academy-co,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,68",2029,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,62.89,34.15
675,Vision Martial Arts Center,Multiple Locations,Martial Arts College Preparation/Counseling Date Night,https://images.activityhero.com/provider_photo/5624/tile/IntroSpecial.jpg,Family centered martial arts school. We specialize in character development and self-defense for kids of all ages and their families. Children become…read more >,https://www.activityhero.com/biz/19274-vision-martial-arts-center-plano-tx,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,68",55,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,99.27,91.31
676,Robinson's Taekwondo,Multiple Locations,Fitness Martial Arts Sports,https://images.activityhero.com/provider_photo/94959/tile/274dd222-dca8-4c97-9774-85ca927c9e81.jpg,"At Robinson’s Taekwondo, we provide training in martial arts to both adults and children. Martial arts are not just ways to defend oneself. Its focus also…read more >",https://www.activityhero.com/biz/robinson-s-taekwondo,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5, 69",42,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,66.69,16.27
677,Vibras Meditation,Multiple Locations,Flexible Booking Yoga Free Activities Mindfulness,https://images.activityhero.com/provider_photo/126796/tile/8f68d974-dee7-4e57-b690-339d10f18b25.jpg,"Our mission: To create a new generation that is more loving, compassionate, and grateful by making meditation a core part of every child’s daily life.Vibras…read more >",https://www.activityhero.com/biz/vibras-meditation,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5, 69",46,f,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,60.47,49.34
678,Young Intellects,Multiple Locations,ActivityHero Business Grant 2019 Best of ActivityHero 2019 Academics Academic Writing Math,https://images.activityhero.com/provider_photo/112395/tile/aa2ca5d6-3fb8-4cd3-a418-9e29e6a29152.jpg,"Young Intellects offers programs designed to provide secure, affordable and efficient options for parents who are in a lookout for childcare services…read more >",https://www.activityhero.com/biz/young-intellects,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,",70",38,f,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,47.38,40.48
679,Social Detective Academy,Multiple Locations,Online Course Social Skills Leadership,https://images.activityhero.com/provider_photo/98056/tile/150a8f44-d817-4b1a-b125-a8e03f6ca10c.jpg,"Social Detective Academy is an educational organization whose mission is to provide engaging, effective, personalized social skills education through camps,…read more >",https://www.activityhero.com/biz/social-detective-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5,70",150,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,41.57,20.52
680,Snapology of West Chester Twp,Multiple Locations,Engineering Science & Technology Lego,https://images.activityhero.com/provider_photo/144557/tile/658bc41d-4e0f-4b7f-bdf0-fe159acad04a.jpg,"Snapology activities encourage social skills and teamwork, while teaching science, technology, engineering, art, math and literacy concepts.Our approach…read more >",https://www.activityhero.com/biz/snapology-of-west-chester-twp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5, 69",4029,m,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,94.66,8.96
681,Atwater Photo Workshops,Multiple Locations,Online Course Photography and Video,https://images.activityhero.com/provider_photo/113890/tile/bcaca7bb-43aa-4aa9-9e3b-4018ce5255c5.jpg,COVID-19 Update:Atwater Photo Camp is currently offering weekly online adventures in photography: Virtual Photo Camp via Zoom. We’ve had to modify a lot…read more >,https://www.activityhero.com/biz/atwater-photo-workshops,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,",70",6029,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,75.65,47.99
682,Girls’ Leadership & Athletics Movement,Multiple Locations,Girls Only Leadership Sports,https://images.activityhero.com/provider_photo/145918/tile/4b418d91-d853-4738-8b8d-7eaa9cba8588.jpeg,"This program will be split into 3 different segments. For the first 15-20 minutes, we will be engaging in discussions surrounding new topics each day…read more >",https://www.activityhero.com/biz/girls-leadership-athletics-movement,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"12,71",171,m,STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Computer Science,72.62,40.84
683,Chandler Children's Choir,Multiple Locations,Voice Performing Arts Music,https://images.activityhero.com/provider_photo/145900/tile/a699e44d-31b9-4f5e-9729-7e7ed29fa2af.jpg,The Chandler Children's Choir advocates for children in the community by creating an inclusive environment where students from diverse backgrounds can…read more >,https://www.activityhero.com/biz/chandler-children-s-choir-73993,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,70",31,"m,f",Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,83.56,77.11
684,Script School,Multiple Locations,Social Skills Creative Writing Reading,https://images.activityhero.com/provider_photo/116398/tile/56651694-64f2-4a3a-93cb-eb032820a000.jpg,"SCRIPT SCHOOL educates students in skills needed to write and develop professional written material, through one-to-one mentorship or group sessions with…read more >",https://www.activityhero.com/biz/script-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,77",131,m,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,68.14,89.15
685,Baby in Tune,Multiple Locations,Music,https://images.activityhero.com/provider_photo/145564/tile/cbd6e235-b09b-41e9-a7c7-ca6bd31da9af.jpg,Baby in Tune is a class for parents who want to make life easier and more fun with our babies. This class gives you musical tools that ACTUALLY WORK to take…read more >,https://www.activityhero.com/biz/baby-in-tune-73895,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5,69",76,f,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,32.32,9.68
686,TechGirlz,Multiple Locations,Girls Only Free Activities Science & Technology,https://images.activityhero.com/provider_photo/135067/tile/a08cf07b-58e4-4079-852d-6b3f62b10e7d.jpg,"TechGirlz is a 501(c)3 organization that was founded in 2010 by Tracey Welson-Rossman, CMO of Chariot Solutions. TechGirlz is accomplishing its mission…read more >",https://www.activityhero.com/biz/techgirlz-70604,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,69",141,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,35.52,13.52
687,"Way to Go Programs...Strong Minds, Hearts & Souls!",Multiple Locations,Best of ActivityHero 2017 Spanish After School Care French,https://images.activityhero.com/provider_photo/43864/tile/d3b69d9f-5023-4b20-9b21-1c78711f60d4.jpg,Our goal has always been to provide kids with wonderful and memorable year around camp experiences. Our program offers a stronger emphasis on building…read more >,https://www.activityhero.com/biz/way-to-go-programs-strong-minds-hearts-souls,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,69",351,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,94.12,92.81
688,FUTURE BYTES TECH,Multiple Locations,Flexible Booking Best of ActivityHero 2019 Coding Online Course Computers,https://images.activityhero.com/provider_photo/112149/tile/1d8e2325-a7ce-47ec-a88f-d1f9ebe78ed6.jpeg,"Future Bytes Tech is transforming creative young minds into Innovators and Makers by offering Compendious coding curriculum for Grades k-8, specialized in…read more >",https://www.activityhero.com/biz/future-bytes-tech,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5,69",571,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,97.38,55.39
689,Summer on the Hill,Multiple Locations,Online Course Christian Crafts,https://images.activityhero.com/provider_photo/100902/tile/de06ca9f-4249-49a8-8b34-fdf900a78652.jpg,"Summer on the Hill is a fun and exciting summer program with Jesus at the center! With 3 playgrounds, 2 soccer fields, 2 pools, a dozen classrooms, a…read more >",https://www.activityhero.com/biz/53254-summer-on-the-hill-san-jose-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5, 70",3030,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,93.93,95.16
690,Valley Sports Camp After School Enrichment Classes,Multiple Locations,Sports Drawing and Painting Academic Writing,https://images.activityhero.com/provider_photo/105490/tile/c707341b-5065-4eda-92d4-4c16f2343038.jpg,"Our After School Enrichment Classes are an active, high-energy program for boys and girls grades TK/Kinder through 5th Grade focusing on sportsmanship,…read more >",https://www.activityhero.com/biz/valley-sports-camp-after-school-enrichment-classes,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5, 70",221,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,79.41,15.29
691,Pinnacle Intellect,Multiple Locations,Creative Writing Reading Math,https://images.activityhero.com/provider_photo/140323/tile/29e2a729-7ab8-454c-9f6f-ab56f730f430.jpg,Pinnacle Intellect is a learning center where we focus on a holistic approach to learning. We engage students in activities which guides them to building…read more >,https://www.activityhero.com/biz/pinnacle-intellect,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,",71",56,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,63.27,38.16
692,Crafty Mindz,Multiple Locations,Drawing and Painting Visual Arts Play/Outdoor,https://images.activityhero.com/provider_photo/141424/tile/313bdb14-8f18-4877-9bb5-57386bd799bc.jpg,"Crafty Mindz is designed keeping in mind how kids can build their creativity, confidence, patience, fine motor skills, focus and lot more.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,71",43,"m,f",STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,96.58,56.45
693,Fit Financial Academy,Multiple Locations,Math Finance Academics,https://images.activityhero.com/provider_photo/145181/tile/79acf323-adda-49f3-a31c-d55ddf859b63.jpg,"We teach kids about money through a program called Camp Millionaire, which is an academic program developed in 2002 to empower children and young adults…read more >",https://www.activityhero.com/biz/fit-financial-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5, 70",47,m,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Computer Science,76.79,64.41
694,SMAcademy of Integrated Arts,Multiple Locations,Math Online Course Creative Writing,https://images.activityhero.com/provider_photo/116644/tile/9e1c1fb2-ece1-4c82-90c6-0f7ccf80fc55.jpg,"SMAcademy of Integrated Arts is a multi-cultural arts school for creative learners. It offers student-centered, passion driven, art infused and musically…read more >",https://www.activityhero.com/biz/smacademy-of-integrated-arts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,",71",39,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,86.39,1.04
695,ActivityHero,Multiple Locations,General Recreation Academics Sports,https://assets.activityhero.com/images/featured/tile/placeholder-2.jpg,Invitation-only events,,,28.2,"12,72",151,f,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,55.31,91.83
696,InnoED,"Main Location - Palo Alto, CA",Online Course Science & Technology Chinese,https://images.activityhero.com/provider_photo/145931/tile/50ffa61d-df86-4adf-bc87-c68a28dcc256.png,"InnoED devotes to provide quality education programs to schools, companies, groups, and individuals. With high demand learning needs of STEM/STEAM,…read more >",https://www.activityhero.com/biz/innoed,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,71",2030,f,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,53.19,99.48
697,The ZenTotz Program: Mindfulness & Yoga for Youth!,Multiple Locations,Visual Arts Mindfulness Yoga,https://images.activityhero.com/provider_photo/130088/tile/4c015260-482d-4315-bbee-a2c4885485dd.png,"The ZenTotz After School and Summer Camp Program presents the building blocks of mindfulness and meditation. During our time together, participants will…read more >",https://www.activityhero.com/biz/zentotz-after-school-camp-program,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,78",56,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,48.67,90.74
698,Teacher Mayra,Multiple Locations,French Language Cooking,https://images.activityhero.com/provider_photo/146050/tile/88ebe61b-8dd1-481a-aaec-27d8b98e3219.jpeg,"My name is Teacher Mayra. I am a TEFL/TESOL certified teacher. I have experience teaching English, Spanish, and Basic French. I have experience teaching…read more >",https://www.activityhero.com/biz/teacher-mayra,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,70",43,m,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,97.31,56.24
699,TechLab Education,Multiple Locations,Coding Academics Online Course,https://images.activityhero.com/provider_photo/98333/tile/aeef95a2-6152-453c-9e32-4183c9fbaa1c.jpeg,Techlab Education provides coding and data/tech skills through a learning platform and programs for kids (grades 6-12) who aspire to be global leaders in…read more >,https://www.activityhero.com/biz/56071-techlab-education-saratoga-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5,70",47,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,88.06,97.64
700,Mobile Art Academy,Multiple Locations,Digital Media Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/105780/tile/585e534d-3cb9-4c50-8957-27a859fb2b91.JPG,We love Art & Technology and believe in knowledge sharing! Founded in 2013 by tech visionary Sumit Vishwakarma and traditional British artist Caroline…read more >,https://www.activityhero.com/biz/mobile-art-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5,70",39,m,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Math & Logic,97.82,4.91
701,Language Success Superior Language Training,Multiple Locations,Spanish French Chinese,https://images.activityhero.com/provider_photo/145903/tile/065625a9-a78f-4d63-9cee-fd2ba05f004d.jpg,"Language School for all ages. We teach English as a second language, Spanish, French, German, Japanese, Portuguese, Mandarin Chinese, and American Sign…read more >",https://www.activityhero.com/biz/27791-language-success-mcallen-tx,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,70",151,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,99.74,80.6
702,SMARTS Club LLC,Multiple Locations,Creative Writing Academics Math,https://images.activityhero.com/provider_photo/102128/tile/9213a431-4590-409f-bd47-d7f1981cc521.jpg,"How SMARTS Club is Different: Unlike traditional tutoring and education, our Frisco educational facility offers enrichment classes that attack the root…read more >",https://www.activityhero.com/biz/smarts-club-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5, 71",4030,m,STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Math & Logic,44.44,2.15
703,"the Coder School Mission Viejo, CA",Multiple Locations,Coding Computers Academics,https://images.activityhero.com/provider_photo/146012/tile/967262a1-09fb-465b-b1f7-59adee70d8fc.jpg,"Learn to Code, Change the World. We're the #1 after-school coding program in Silicon Valley, and we are now teaching the new innovators of Mission Viejo and…read more >",https://www.activityhero.com/biz/the-coder-school-72064,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5, 71",6030,f,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,95.21,61.81
704,Navigation Games,Multiple Locations,Online Course Do-Together General Recreation,https://images.activityhero.com/provider_photo/145995/tile/5ecfb67b-a17f-4ca1-bd5f-6907bac1a1d3.JPG,Navigation Games is a non-profit organization whose mission is to develop orienteering-based education. We teach map navigation through games. With…read more >,https://www.activityhero.com/biz/navigation-games,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,",72",172,"m,f",STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,84.92,94.25
705,Sunshine International Association,Multiple Locations,Acrobatics Fitness Gymnastics,https://images.activityhero.com/provider_photo/145990/tile/95ecb5af-b241-4859-a865-c6dedfacb36d.jpg,"We are a non-profit organization based in West Los Angeles, California. Our goal is to provide educational opportunities to children in the community and…read more >",https://www.activityhero.com/biz/sunshine-international-association,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,72",32,"m,f",STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,61.05,79.98
706,Teen Trial Skills,Multiple Locations,Public Speaking Online Course,https://images.activityhero.com/provider_photo/145986/tile/4af361a8-2576-40ee-97b9-9bc487f36f47.jpg,"Teen Trial Skills is an interactive online workshop that provides teen with real life scenarios. We teach basic trial skills such as court room decorum,…read more >",https://www.activityhero.com/biz/teen-trial-skills,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5, 71",132,"m,f",Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,98.92,38.78
707,EnActe Arts Inc.,Multiple Locations,Online Course Science & Technology Photography and Video,https://images.activityhero.com/provider_photo/102710/tile/74359e65-cdf2-4d44-b9de-a2517b18094b.JPG,"At Enacte Academy, we offer workshops, camps and classes for kids. Campers learn acting and production techniques while developing their unique play…read more >",https://www.activityhero.com/biz/enacte-arts-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,",72",77,"m,f",Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,58.81,37.02
708,Pandas Karate,Multiple Locations,Online Course Fitness Martial Arts,https://images.activityhero.com/provider_photo/145970/tile/c5df98ae-8f53-4fd1-99b7-a563f1c48b09.png,"Pandas Karate is Derwood, MD #1 spot for karate & fitness! We aim to give our customers great service on instruction and in office management. We focus on…read more >",https://www.activityhero.com/biz/8871-pandas-karate-derwood-md,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"12,73",142,"m,f",Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,54.63,41.01
709,HybridATX,Multiple Locations,Gaming Fitness Sports,https://images.activityhero.com/provider_photo/145958/tile/026cd983-9a6e-4d7c-a1c8-3f458eaf3760.JPG,"At HybridATX, we're building better gamers. We see a lot of potential in the gaming industry, and we know from experience that it's a powerful tool when…read more >",https://www.activityhero.com/biz/hybridatx,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5,72",352,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,60.1,84.24
710,Broadway Clay,Multiple Locations,Girls Only Clay Visual Arts,https://images.activityhero.com/provider_photo/145956/tile/dd59f50b-94ff-4de6-8226-7245b23ba3c3.jpeg,"We are a homegrown pottery studio offering classes, summer camps, memberships, and experiences for tourists. Our gallery is stocked with local pottery and…read more >",https://www.activityhero.com/biz/broadway-clay,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5,79",572,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,76.26,54.74
711,Gallagher Clarinet Studio,Multiple Locations,Online Course Clarinet Music,https://images.activityhero.com/provider_photo/145714/tile/830f8c6e-7931-496d-845e-73fe1601a768.JPG,Our goal is to cultivate a lifelong love for and interest in playing and listening to music as a means of personal expression and enjoyment. Some of our…read more >,https://www.activityhero.com/biz/gallagher-clarinet-studio-73975,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,71",3031,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,60.56,27.82
712,DanceWithJoyNYC,Multiple Locations,Birthday Parties Ballet,https://images.activityhero.com/provider_photo/145941/tile/bd6aa16d-1083-4670-8264-89e06750fda3.jpg,"DanceWithJoyNYC is a ballet inspired program using storytelling, imagination based exercises and fun songs.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,71",222,m,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Math & Logic,84.97,56.27
713,Kidscapades LLC,Multiple Locations,Party Entertainers Birthday Parties Science,https://images.activityhero.com/provider_photo/145939/tile/3559d216-239b-4967-83cf-20526470fc6f.JPG,"The fun starts here with our innovative children’s activities for ages 3 and up! From processed based art, hands on science and sensory exploration , pop-up…read more >",https://www.activityhero.com/biz/kidscapades-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,71",57,f,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,74.76,83.5
714,Best-In-Class Education Center-Torrance,Multiple Locations,Academics Tutoring Math,https://images.activityhero.com/provider_photo/145908/tile/80067462-2754-4eac-ab6e-add0597ae30b.jpg,"We help students develop the skills and knowledge they need for a bright future. Best in Class students benefit from individual attention, active…read more >",https://www.activityhero.com/biz/best-in-class-education-center-torrance,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,71",44,f,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Computer Science,38.4,59.06
715,Karen Paul Studio,Multiple Locations,Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/145906/tile/ad060237-eda8-4e8a-bb57-2fc8c062c54a.jpg,"Classes and Camps at Karen Paul Studio are designed to teach young artists how to create and learn skills in a encouraging , fun filled environment.We…read more >",https://www.activityhero.com/biz/karen-paul-studio,,94.1,"5, 72",48,m,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Computer Science,68.4,89.78
716,Creative Writing Camp,Multiple Locations,Creative Writing Academic Writing,https://images.activityhero.com/provider_photo/145899/tile/b8ad7096-ef5d-4b26-ba63-e38898926faf.jpg,Summer Creative Writing Programs for Kids and Teens,,,10,"5, 72",40,m,Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,30.42,1.72
717,Challenge Island Cleveland East,Multiple Locations,Science & Technology Building General Recreation,https://images.activityhero.com/provider_photo/145873/tile/1954db56-7e04-476f-a569-4613e8b58abb.jpg,"Challenge Island is an internationally acclaimed enrichment program, aligned with academic standards, that provides cross-curricular STEAM experiences to…read more >",https://www.activityhero.com/biz/challenge-island-cleveland-east,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,",73",152,m,STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,65.79,30.94
718,Your Lifetime Coach,Multiple Locations,Social Skills Mindfulness Family,https://images.activityhero.com/provider_photo/145864/tile/7f3d66ea-2790-4377-87c8-5e32d9e8e2e5.jpg,"Thanks for checking out my summer program for teens. I am a transformation coach; helping people to build their self-confidence, overcome past trauma,…read more >",https://www.activityhero.com/biz/your-lifetime-coach,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5,73",2031,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,63.82,87.84
719,Discover Talent Education,Multiple Locations,Public Speaking Programming Computers,https://images.activityhero.com/provider_photo/98707/tile/42ad523a-e99e-4e9b-817e-b1c7267ab292.jpg,"Founded 2014, Discover Talent Education is committed to the education of children and adolescents, the development of the great potential of the child,…read more >",https://www.activityhero.com/biz/dte,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5, 72",57,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,53.44,72.58
720,Open Call Performing Arts,Multiple Locations,Acting Drama/Theater Music,https://images.activityhero.com/provider_photo/106855/tile/545d72c0-38a2-4aee-bf84-7ac45ed9faed.jpeg,Open Call Performing Arts is a performing arts studio that welcomes kids of all levels. We instill confidence and encourage excellence while embracing…read more >,https://www.activityhero.com/biz/open-call-performing-arts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,",73",44,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,33.87,89.98
721,Lighthouse / Start Something! Programs,Multiple Locations,College Preparation/Counseling Computers Business,https://images.activityhero.com/provider_photo/101707/tile/74b26c0e-c98a-46ef-a621-37b97597070a.jpg,"Lighthouse Programs help high school students figure out what they want to be when they grow up. Lighthouse was founded in 2017 in Menlo Park, California.…read more >",https://www.activityhero.com/biz/lighthouse-programs,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"12,74",48,f,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,33.72,84.39
722,"Improv Theater LLC (AKA EIGHT IS NEVER ENOUGH, IMPROV 4 KIDS/TEENS)",Multiple Locations,Acting Creative Writing Comedy,https://images.activityhero.com/provider_photo/111803/tile/09a383b8-016c-4a73-b118-6ef2994083c8.png,"IMPROV THEATER LLC is the business entity behind EIGHT IS NEVER ENOUGH (AKA Improv 4 Kids, LMAO Off Broadway, Corporate Comedy of America etc). You can find…read more >",https://www.activityhero.com/biz/13301-improv-4-kids-new-york-ny,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,73",40,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,70.87,92.53
723,Animal Assisted Happiness,Multiple Locations,Farm Animals Adventure/Outdoors,https://images.activityhero.com/provider_photo/145764/tile/3e57663d-374a-4fe5-aef3-12e8dcc8b584.jpg,"Animal Assisted Happiness (AAH) provides Barnyard Animal interactions for youth with needs through mobile barnyard visits, private and group visits at the…read more >",https://www.activityhero.com/biz/animal-assisted-happiness,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,80",152,"m,f",Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,76.06,72.4
724,Make Waves Retreat - Girls Empowerment,Multiple Locations,Yoga Girls Only Leadership,https://images.activityhero.com/provider_photo/145736/tile/fe0ba7a8-df1f-46e1-b083-700a30af9eee.jpg,Make Waves is a retreat with the purpose of empowering young women 13-18 years old to “Make Waves” and “Move Mountains”. Throughout the days we will…read more >,https://www.activityhero.com/biz/make-waves-retreat,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5,72",4031,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,67.28,62.01
725,Budo Mountain Family Movement Center,Multiple Locations,Online Course Nature Programs Leadership,https://images.activityhero.com/provider_photo/145684/tile/2cf84520-93e1-4315-b19c-39f92d5ea4f7.jpg,Our mission is to provide a healthy and challenging community where students are supported to develop their best selves. Our family-run school offers…read more >,https://www.activityhero.com/biz/budo-mountain-family-movement-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5,72",6031,"m,f",Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,59.13,45.5
726,BoomWriter,Multiple Locations,Creative Writing Academic Writing,https://images.activityhero.com/provider_photo/145725/tile/10088fa6-eb26-4476-a1fc-e27325cbf188.jpeg,BoomWriter is a writing app that helps teachers inspire and engage students in writing. It offers a variety of tools and resources that lets teachers…read more >,https://www.activityhero.com/biz/boomwriter,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,"5,72",173,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,95.84,94.41
727,theCoderSchool Westerville,Multiple Locations,Robotics Computers Tutoring,https://images.activityhero.com/provider_photo/112132/tile/18ae6d94-c23c-4489-9c00-b0c9b383e93e.png,"We are an after-school drop-off program for kids learning to code - a coding school! There's after-school kung fu. There's after-school music lessons,…read more >",https://www.activityhero.com/biz/thecoderschool-westerville,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,72",33,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,82.73,88.16
728,Golden Acorn Music LLC,Multiple Locations,Homeschool Family Music,https://images.activityhero.com/provider_photo/145690/tile/5de6f179-23dc-4b6e-b15d-6f458d310b6f.jpg,"Children have three fundamental desires: To feel safe, to feel capable, and to be listened to. In every song, every activity, we respect these desires and…read more >",https://www.activityhero.com/biz/golden-acorn-music-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5, 73",133,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,95.43,77.35
729,Challenge Island,Multiple Locations,Engineering Academics Science,https://images.activityhero.com/provider_photo/145530/tile/3747e83d-91a4-4107-b2a3-c65daa3e5c92.jpg,"Challenge Island® is a high-energy, hands-on STEAM adventure built around pop culture themes kids love. Kids embark on fantastical themed STEAM journeys…read more >",https://www.activityhero.com/biz/challenge-island-73826,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,"5, 73",78,m,STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Math & Logic,80.97,33.38
730,ZUMBINI WITH CHARLOTTE,Multiple Locations,Preschool Dance Music,https://images.activityhero.com/provider_photo/145681/tile/1e324d0d-87df-421a-b858-0ffc8dfbcd4d.jpg,".Zumbini is not only a dance class or a music class. Our unique curriculum, which leverages a carefully-calculated balance of movement and seated…read more >",https://www.activityhero.com/biz/zumbini-with-charlotte,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,",74",143,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,62.88,6.04
731,"Best in Class Education Center (Seattle, WA)",Multiple Locations,Free Activities Crafts Academics,https://images.activityhero.com/provider_photo/145679/tile/36fdf95b-c3ff-4d3c-8de6-38adeb35cca3.png,Best in Class Education Center's mission is to empower student to change their world through a quality education. We offer math and English enrichment and…read more >,https://www.activityhero.com/biz/best-in-class-education-center-73954,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,74",353,f,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Math & Logic,99.48,51.65
732,"Bach to Rock - Nanuet, NY",Multiple Locations,Music Theory Guitar Music,https://images.activityhero.com/provider_photo/98065/tile/35389301-d070-4ed8-9f0c-5a14bb25e4f1.jpg,"Bach to Rock in Nanuet, NY provides music lessons for students of all ages and skill levels living in Nanuet, New City, Clarkstown & West Nyack. Instruments…read more >",https://www.activityhero.com/biz/bach-to-rock-58633,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5, 73",573,f,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,99.09,56.16
733,enCode Create,Multiple Locations,Coding Computers,https://images.activityhero.com/provider_photo/145662/tile/bf3bb2d1-51cc-47ea-835a-b9e1f0d328e6.PNG,"EnCode Create teaches children and teenagers how to write code. We offer a wide variety of resources, from self-paced online courses to live online…read more >",https://www.activityhero.com/biz/encode-create,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,",74",3032,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,88.31,74.25
734,Code Ninjas Scottsdale,Multiple Locations,Programming Gaming Computers,https://images.activityhero.com/provider_photo/106675/tile/36250ab5-310e-4c65-9b94-10d87a79e5c2.jpg,"Thank you for your interest in Code Ninjas Scottsdale! Here at Code Ninjas, we fuse education and entertainment, what we call ""edu-tainment"", to teach our…read more >",https://www.activityhero.com/biz/code-ninjas-scottsdale,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"12,75",223,m,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,39.33,43.44
735,Gold Attitude Dance Team,Multiple Locations,Hip Hop Dance Jazz,https://images.activityhero.com/provider_photo/145623/tile/c0e991ea-7491-4c2f-9f89-baa67343690a.JPG,"Independent, non-profit dance team open to boys and girls in Waukesha County, ages 4-15+. Excellent opportunity for dancers who want to enhance their skills…read more >",https://www.activityhero.com/biz/gold-attitude-dance-team,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,74",58,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,76.64,24.04
736,American English College,Multiple Locations,Language ESL Test Prep,https://images.activityhero.com/provider_photo/145638/tile/d3b3d03a-385d-4371-a37c-f0afd4cf81f7.png,American English College is an ACCET accredited + SEVIS approved language program. We specialize in English language program and test preparation for…read more >,https://www.activityhero.com/biz/american-english-college,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,81",45,m,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,59.68,36.47
737,Erinn Crane Piano,Multiple Locations,Piano Music,https://images.activityhero.com/provider_photo/145579/tile/b5bd4710-790f-47c6-9b69-4d33cc75fd16.jpeg,Experienced Music teacher with ability to teach piano or woodwinds at all levels. I do individual half hour weekly lessons by appointment.,,,27,"5,73",49,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,54.4,52.84
738,Academy of Ballet and Etiquette,Multiple Locations,Preschool Ballet Performing Arts,https://images.activityhero.com/provider_photo/145560/tile/29f53bf5-0655-403f-9f52-86097dccb7ad.png,The Academy of Ballet and Etiquette brings ballet and etiquette classes to venues all around the Bay Area. We help children build physical confidence and…read more >,https://www.activityhero.com/biz/academy-of-ballet-and-etiquette,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,73",41,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,54.12,47.01
739,Manhattan Fencing Center,Multiple Locations,Fitness Fencing Sports,https://images.activityhero.com/provider_photo/145556/tile/5a66aa54-42d9-47e7-b263-dacc5f3fddfa.jpg,"Located in Midtown Manhattan, the Manhattan Fencing Center was started in 2007 by U.S. Fencing Hall of Fame Maestro Yury Gelman. We believe that fencing…read more >",https://www.activityhero.com/biz/manhattan-fencing-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5,73",153,f,Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,96.2,21.37
740,The Etiquette Factory by Miss Kim llc,Multiple Locations,Family Social Skills Mindfulness,https://images.activityhero.com/provider_photo/145567/tile/1ca529a1-1c91-46f2-b1b0-e051b8667426.jpeg,"We offer Etiquette and Manners programs to Business Professionals, Adults, Teens, and Children. Online Programs on Activityhero:- Perfectly Polite Dining…read more >",https://www.activityhero.com/biz/the-etiquette-factory-by-miss-kin,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5,73",2032,"m,f",Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,68.6,56.05
741,Smart Mind Robotics,Multiple Locations,Coding Robotics Lego,https://images.activityhero.com/provider_photo/117694/tile/503932d9-1205-47d0-9499-9161ebac59fd.jpeg,Our robots for kids after school program curriculum is tailored to younger students but can be varied very easily. A mixed class with younger and older…read more >,https://www.activityhero.com/biz/smart-mind-robotics,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5, 74",58,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,85.66,58.53
742,Sylvan Learning of La Mesa,Multiple Locations,Academic Writing Reading Math,https://images.activityhero.com/provider_photo/142033/tile/a2cc8b14-5129-4d97-8cd1-757267b893a1.jpg,"At Sylvan Learning of La Mesa, we're focused on building academic confidence, igniting intellectual curiosity and inspiring a love for learning -- all of…read more >",https://www.activityhero.com/biz/sylvan-learning-of-la-mesa-72436,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5, 74",45,"m,f",STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,56.12,50.47
743,Wizzy Esports,Multiple Locations,Programming Gaming Science & Technology,https://images.activityhero.com/provider_photo/145546/tile/9201b639-944f-4e88-a170-c4fc1b1eb369.png,We are proud to be one of the emerging leaders in the youth esports industry. Wizzy is unique in that we are devoted exclusively to providing children and…read more >,https://www.activityhero.com/biz/wizzy-esports,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,",75",49,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,91.59,39.5
744,Hi-Five Sports Franchising,Multiple Locations,Science & Technology Music Multisport,https://images.activityhero.com/provider_photo/120846/tile/79a96a7c-3d12-4868-a9ee-d5f251ac8828.jpg,This is the culmination of nearly 30 years of experience in youth sports. The first Hi-Five Sports Zone opened its doors in San Francisco in 2014. Our…read more >,https://www.activityhero.com/biz/hi-five-sports-franchising,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,75",41,"m,f",Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,81.45,44.17
745,Creative Talent Network,Multiple Locations,Voice Acting Drawing and Painting,https://images.activityhero.com/provider_photo/142198/tile/a5fde769-6deb-49ad-abee-4c6c7e29a9ef.jpg,"CTN is a very rich creative environment. A place to promote the values, talent and skill of a group of artists we know as visual storytellers.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5, 74",153,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,70.94,98.61
746,Art Academy,Multiple Locations,Online Course Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/145470/tile/a75375a1-78e1-416b-979a-14d76dffeabe.jpg,"The mission of Art Academy is to inspire, educate, and build confidence in children and adults through the core fundamentals and elements of visual art.…read more >",https://www.activityhero.com/biz/art-academy-73801,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,",75",4032,"m,f",STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Computer Science,65.13,100
747,Insights Intervention,Multiple Locations,For Grown-Ups Online Course,https://images.activityhero.com/provider_photo/145467/tile/d97970e4-5caf-4296-9393-659160e0bb58.jpg,"INSIGHTS Intervention envisions a world where every child is cherished as a unique individual and supported to reach his or her optimal social, emotional,…read more >",https://www.activityhero.com/biz/insights-intervention,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"12,76",6032,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,50.63,37.52
748,"Little Explorers, LLC",Multiple Locations,Online Course Science & Technology Academics,https://images.activityhero.com/provider_photo/113127/tile/13e01990-8306-4539-834b-e838bf7352e4.jpg,"Little Explorers LLC, Enrichment Learning Program provides hands-on learning activities and summer camp for elementary, middle & high school-age students…read more >",https://www.activityhero.com/biz/little-explorers-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5,75",174,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,89.31,71.29
749,Code Camp Kidz,Multiple Locations,Coding Computers Science & Technology,https://images.activityhero.com/provider_photo/145241/tile/4caad141-72df-4125-80de-4eb839fbad79.jpg,"Our unique, easy to use, eLearning platform was designed to introduce students to coding in a fun and achievable way. You will have fun building projects…read more >",https://www.activityhero.com/biz/code-camp-kidz,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5,82",34,f,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,76.61,54.38
750,Parallelogram Institute,Multiple Locations,Coding Engineering Science & Technology,https://images.activityhero.com/provider_photo/145490/tile/4d7ad5ae-43fe-411c-84f5-9e79ed56e7c1.jpg,"Our company was formed to help educators, parents, and students reach the next academic level without losing any time. As a small business own by…read more >",https://www.activityhero.com/biz/parallelogram-institute,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",8,"5,74",134,f,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,51.95,81.19
751,The Queens Gambit Chess Inc.,Multiple Locations,Gaming Academics Chess,https://images.activityhero.com/provider_photo/145039/tile/3d0bab1a-d09a-4df2-ab6c-e824bef0aad8.jpg,The Center is the main center of Queen's Gambit where the benefits of chess are used to spark innovation and collaboration. We support organizations and…read more >,https://www.activityhero.com/biz/the-queens-gambit-chess-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",13.9,"5,74",79,m,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,33.45,54.36
752,Long Island & Queens Music for Aarvarks,Multiple Locations,Music,https://images.activityhero.com/provider_photo/145133/tile/c29d875d-d2ef-4159-881c-8d823ca00a4b.jpg,"Music for Aardvarks is not your run of the mill children’s music class, it’s a program for toddlers, kids and their grownups to come “rock out” and have…read more >",https://www.activityhero.com/biz/long-island-queens-music-for-aarvarks,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",24.9,"5,74",144,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,92.11,18.67
753,Little Medical School - Honolulu,Multiple Locations,Biology Science & Technology Science,https://images.activityhero.com/provider_photo/145113/tile/e12f7efe-97d6-4488-b47d-139b516dbd8d.jpg,"Little Veterinarian School (Age 4-12)Does your child love animals? Little Veterinarian School teaches kids all about ANIMAL Care in a FUN, Engaging and…read more >",https://www.activityhero.com/biz/little-medical-school-73634,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.6,"5,74",354,m,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,52.52,94.14
754,Vesper School of Music,Multiple Locations,Violin Piano Music,https://images.activityhero.com/provider_photo/145069/tile/645dd2f1-b542-4d9f-9025-a54ec7ae9e5c.JPG,"At Vesper School of Music, we offer students of all ages personalized one-on-one virtual instruction in piano, violin, guitar, voice, ukulele, music…read more >",https://www.activityhero.com/biz/vesper-school-of-music,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26,"5, 75",574,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,31.82,87.2
755,Ni Hao Chinese,Multiple Locations,Online Course Language Visual Arts,https://images.activityhero.com/provider_photo/145033/tile/86ddbc7c-bd8d-4854-81a5-cde927e6f659.png,"Ni Hao Chinese has educational opportunities for children of all ages, from Parent and Me classes for toddlers, preschool program for 2-6 yrs old, and…read more >",https://www.activityhero.com/biz/ni-hao-chinese-73576,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.2,"5, 75",3033,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,31.4,27.21
756,Be A Maker Club,"Online - Palo Alto, CA",Engineering Computers Science & Technology,https://images.activityhero.com/provider_photo/105494/tile/4e7e397f-d682-4117-91b0-35b028ba4145.jpg,We are makers that help you makeWe started teaching children computer aided design and manufacturing (CAD & CAM) in our makerspace lab in 2018. Our focus…read more >,https://www.activityhero.com/biz/be-a-maker-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",32.1,",76",224,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,90.27,17.81
757,"Inspirit AI, Inc.",Multiple Locations,Science & Technology College Preparation/Counseling Programming,https://images.activityhero.com/provider_photo/144834/tile/30c06c8f-a0ed-4b32-87d9-d0ad4810f313.jpeg,Inspirit AI is a pre-college Artificial Intelligence education program developed and taught by a team of graduate students from Stanford University. The…read more >,https://www.activityhero.com/biz/inspirit-ai-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",48.4,"5,76",59,f,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,73.96,28.06
758,STEM Kids NYC,Multiple Locations,Coding Engineering Science & Technology,https://images.activityhero.com/provider_photo/144779/tile/1165d54e-50ab-4a2d-b6f8-8c5f1dfc74ff.jpg,We’re an education company that bridges the gap between the current curriculum in schools and the immediate need for schools to prepare students for…read more >,https://www.activityhero.com/biz/stem-kids-nyc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"5, 75",46,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Math & Logic,85.36,33
759,Dr. Barbara Seniors Harkins Foundation,Multiple Locations,Photography and Video Community Service Free Activities,https://images.activityhero.com/provider_photo/103234/tile/52aa891a-63af-4570-8d54-60b09d325928.JPG,We’re a non-profit foundation that strives to motivate children to pursue education beyond high school. We believe the way to achieve this is by combining…read more >,https://www.activityhero.com/biz/dr-barbara-seniors-harkins-foundation,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",67.3,",76",50,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,81.2,18.51
760,Yes Class MATH /Reading & Writing,Multiple Locations,Tutoring Reading Math,https://images.activityhero.com/provider_photo/144839/tile/0887f27b-f893-4071-99fa-b6ca2d46b3ff.jpg,Your Educational Success K-12Global Education company for After School program.,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",63.3,"12,77",42,"m,f",Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,60.39,41.33
761,"N’spire After School Program, LLC",Multiple Locations,Hip Hop Dance After School Care,https://images.activityhero.com/provider_photo/144565/tile/ad04ef79-b493-44f9-b3c2-2d834329b061.png,N’spire After School Program LLC is a mobile dance program dedicated to the advancement for dance and the high quality of performance. N’spire After…read more >,https://www.activityhero.com/biz/n-spire-after-school-program-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",75,"5,76",154,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,48.01,13.62
762,Yoga Ed,Multiple Locations,Free Activities Mindfulness Yoga,https://images.activityhero.com/provider_photo/144538/tile/8e1dab3d-8acf-4933-9a19-3c5002951f4a.jpg,Our children’s yoga and mindfulness programs provide a variety of tools for anyone who works with children. Whether you want to learn how to teach fun and…read more >,https://www.activityhero.com/biz/yoga-ed,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",93.1,"5,83",2033,"m,f",STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Math & Logic,81.07,18.88
763,"Super Soccer Stars - Washington, DC",Multiple Locations,Online Course Soccer Sports,https://images.activityhero.com/provider_photo/118020/tile/675cbad7-a300-4f64-86ee-f06ccf1206a0.jpg,"At Super Soccer Stars, it is our goal to teach soccer skills in a fun, non-competitive, educational environment. Our philosophy is to use soccer to nurture,…read more >",https://www.activityhero.com/biz/super-soccer-stars-washington-dc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,75",59,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,69.11,14.38
764,UCode Inc,Multiple Locations,Coding Online Course Programming,https://images.activityhero.com/provider_photo/144016/tile/d1ad322c-1593-4508-b4c5-76c14d82a611.jpg,UCode builds strong computational thinking abilities with students ages 6 to 16 through teaching coding. In an economy driven by information and…read more >,https://www.activityhero.com/biz/ucode-inc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,75",46,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,39.6,91.28
765,Chess Guru,Multiple Locations,Online Course Chess After School Care,https://images.activityhero.com/provider_photo/144927/tile/b47c6207-4e8a-45a2-aaca-ae8bdf15454e.jpg,"Simone Sobel wants to share her passion and experience as a chess player with her students. Through the magical of the game, children will develop…read more >",https://www.activityhero.com/biz/chess-guru,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,75",50,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,58.76,59.14
766,Chico's House Youth Development Center,Multiple Locations,Online Course General Recreation Academics,https://images.activityhero.com/provider_photo/112826/tile/52551040-0462-4ebf-9b78-940acdf76a9b.jpeg,"Chico’s House Youth Development Center is a for-profit LLC focused on providing a safe haven for youth 11-17 during Out of School Time (OST) hours, and…read more >",https://www.activityhero.com/biz/chico-s-house-youth-development-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,75",42,m,STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Computer Science,81.94,58.92
767,Best in Class Education Center - Louisville SE,Multiple Locations,Academics Reading Math,https://images.activityhero.com/provider_photo/137882/tile/dbda445b-6971-438c-a06b-2e95356d654a.jpg,Best in Class Education Centers are institutions specialized in tutoring Mathematics and English for both enrichment and remedial purposes. Opened in…read more >,https://www.activityhero.com/biz/best-in-class-education-center-louisville-se,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5, 76",154,f,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,49.01,56.23
768,MINDWORX Enrichment Programs & Camps,Multiple Locations,Coding Gaming Science & Technology,https://images.activityhero.com/provider_photo/145966/tile/0a8f1fdd-f1a7-48b6-8763-5a50b757b4d5.jpg,"Mindworx STEM Enrichment Programs & Camps are designed to ignite imagination, inspire creativity, and keep kids & teens ahead of the curve! BOTH Virtual &…read more >",https://www.activityhero.com/biz/mindworx-enrichment-programs-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5, 76",4033,f,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,78.85,60.64
769,Lingo Rainbow Academy,Multiple Locations,Chinese Language,https://images.activityhero.com/provider_photo/145917/tile/466acc46-622e-45bd-8006-2de9180cfa07.PNG,"Lingo Rainbow Academy Offers Unique and Personalized Language and Culture Learning Experiences to All, Anywhere and Anytime. To Open The Door to A World…read more >",https://www.activityhero.com/biz/lingo-rainbow-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,",77",6033,m,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,60.13,64.55
770,After School Brilliance,Multiple Locations,Coding Online Course Programming,https://images.activityhero.com/provider_photo/112869/tile/3c8db38c-8d5f-4aeb-a60c-fa6345e9feb7.png,After School Brilliance is an after school and day camp enrichment program serving North Carolina's Triad.After School Brilliance offers enriching and…read more >,https://www.activityhero.com/biz/after-school-brilliance,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5,77",175,m,STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,86.34,92.05
771,Kendu Films,Multiple Locations,Drawing and Painting Tutoring Visual Arts,https://images.activityhero.com/provider_photo/145628/tile/53f5c724-60eb-4fef-9bff-b9cfa1878ac2.jpg,Kids ages 8+ are invited to participate in this unique creative hands-on experience. Discover the secret behind how stories are developed in Disney and…read more >,https://www.activityhero.com/biz/kendu-films-73910,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5, 76",35,m,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Computer Science,61.5,1.04
772,Virtual Sarasota Film Camps,Multiple Locations,Acting Photography and Video Digital Media,https://images.activityhero.com/provider_photo/145667/tile/bc40c117-bd58-4ddc-8832-53fe35f4cc91.jpg,"Online film camps for kids 7-14 from the Sarasota Film Festival, an annual cinema celebration on Florida's beautiful Suncoast that has thrilled thousands of…read more >",https://www.activityhero.com/biz/sarasota-film-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,",77",135,m,STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Computer Science,79.76,62.02
773,Jammin' with Jared,Multiple Locations,Free Activities Party Entertainers Music,https://images.activityhero.com/provider_photo/145544/tile/bd05e271-73ba-4957-88e9-1a1ef0121d49.png,"Children’s Music Classes that the whole family can enjoy! Sing alongs, games, and instruments from around the studio! Tuesdays/Thursdays, 2:30pm (PST) on FB…read more >",https://www.activityhero.com/biz/jammin-with-jared-73882,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"12,78",80,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,68.5,73.48
774,Hi-Five Sports Club Tri Valley,Multiple Locations,Fitness Sports,https://images.activityhero.com/provider_photo/145142/tile/59d26a21-f1fb-4938-8fa3-0d4c50b990e7.jpg,"Hi-Five Sports @ Home are online interactive classes that focus on in-home PE Enrichment and most importantly, entertainment. Our goal is to keep your…read more >",https://www.activityhero.com/biz/hi-five-sports-club-tri-valley,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,77",145,m,Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,47.76,84.79
775,NECS,Multiple Locations,Coding Digital Media Academics,https://images.activityhero.com/provider_photo/145070/tile/845dc02b-3972-4a74-948d-8c1d5732e12d.jpg,NECS offers virtual chess & coding classes for ages 6-12. Our certified instructors will introduce a new concepts and students will apply the concept…read more >,https://www.activityhero.com/biz/new-england-chess-school-73601,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5,84",355,f,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,86.2,64.68
776,Anna Starkova Art Studio,Multiple Locations,Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/144917/tile/954e694f-894b-400d-bac7-03c6d7fdf429.jpg,"Anna Starkova Art Studio offers online art lessons in painting and drawing.Materials we use: watercolors, acrylic and tempera paints, watercolor and…read more >",https://www.activityhero.com/biz/anna-starkova-art-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,76",575,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,86.56,85.65
777,Springs French Music Lingua,Multiple Locations,Language Online Course French,https://images.activityhero.com/provider_photo/145014/tile/c610988c-363d-4490-9f3e-f8e8bd052638.JPG,Our program features the Music Lingua method. Since 2001 the Music Lingua children's program has helped thousands of kids learn French. Filled with fun…read more >,https://www.activityhero.com/biz/springs-french-music-lingia,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,76",3034,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,53.12,40.31
778,How To Hockey,Multiple Locations,Free Activities Online Course Hockey,https://images.activityhero.com/provider_photo/144436/tile/33ec77a6-de5b-4887-8bd7-b26734a09c05.jpg,"I'm a hockey dad, coach, and player creating new videos every week! Whether you're a young player trying to improve your hockey skills, a parent looking for…read more >",https://www.activityhero.com/biz/how-to-hockey,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5,76",225,"m,f",Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,54.14,23.92
779,VoicED,Multiple Locations,Academic Writing Public Speaking Language,https://images.activityhero.com/provider_photo/111683/tile/b4f02d87-e877-4dab-aac0-acd9ae94370e.jpg,"After School, Camps, and Workshops. Stage fright? No more! Speak and Debate like a pro and get the skills to persuade for life. Many offer Speech and…read more >",https://www.activityhero.com/biz/write-speak-debate,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5,76",60,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,69.4,65.08
780,Camp Imagineerz,Multiple Locations,Building Visual Arts After School Care,https://images.activityhero.com/provider_photo/2513/tile/1.jpg,"Camp Imagineerz is a unique Bay Area camp whose mission is to help children become a generation of ""I can"" no matter the situation. Our camp uses child…read more >",https://www.activityhero.com/biz/9467-camp-imagineerz-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5, 77",47,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,52.69,50.06
781,The Decathlon Sports Club of Los Altos,Multiple Locations,Play/Outdoor Swimming Sports,https://images.activityhero.com/provider_photo/98178/tile/9a2fdfee-8c12-4b55-bab2-8454dc297052.jpg,The Decathlon Sports Club was founded in 1981 by Scott Berridge and Rich Wohlstadter. They grew up in neighborhoods where the kids came outside after dinner…read more >,https://www.activityhero.com/biz/the-decathlon-sports-club-of-los-altos,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5, 77",51,"m,f",Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,92.24,25.41
782,Rose Institute,Multiple Locations,Leadership Academics Public Speaking,https://images.activityhero.com/provider_photo/96882/tile/cf7647b3-b6ab-418d-b2d2-4442c003d228.jpg,For eight years Rose Debate has shared the world of speech and debate with middle and high school students in Silicon Valley. We are committed to growing…read more >,https://www.activityhero.com/biz/rose-debate-institute,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,",78",43,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,52.51,80.97
783,Kuk Sool Won of Menlo Park Martial Arts,"Arrillaga Family Recreation Center - Menlo Park, CA",Martial Arts Leadership Sports,https://images.activityhero.com/provider_photo/99500/tile/7834d962-2634-456f-9eea-1315f960a7a9.jpg,"We are a year around Martial Arts program for kids ages 3.5 and up through adults.At our academy, we strive to be much more than just a kick-and-punch…read more >",https://www.activityhero.com/biz/4507-kuk-sool-won-of-menlo-park-martial-arts-menlo-park-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,78",155,m,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,31.68,34.94
784,Andy Harader Tennis Camp,"Tennis Courts at Palo Alto High School (behind PAUSD building) - Palo Alto, CA",Play/Outdoor Sports Tennis,https://images.activityhero.com/provider_photo/2532/tile/bcb5f386-c1a8-4794-88d8-49aa29def87d.jpg,"Andy Harader is Head Coach at Palo Alto High School for both girls and boys tennis teams. Also, for 10 years he was chairman of the Santa Clara Valley…read more >",https://www.activityhero.com/biz/3257-andy-harader-tennis-camp-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5, 77",2034,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,97.82,24.12
785,Kim Grant Tennis Academy,Multiple Locations,Tennis Sports Play/Outdoor,https://images.activityhero.com/provider_photo/102189/tile/ed7c85fa-2055-49f1-9231-e91bd7ee7390.jpg,"At Kim Grant Tennis Academy we nurture and guide each player to achieve their individual goals, whether it be learning to play tennis just for fun and…read more >",https://www.activityhero.com/biz/2748-kim-grant-tennis-academy-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,",78",60,f,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,46.87,57.9
786,Midpen Media Center,"South Palo Alto - Palo Alto, CA",Science & Technology Photography and Video Visual Arts,https://images.activityhero.com/provider_photo/3664/tile/production_truck.jpg,The Midpen Media Center is THE resource for getting your voice and story on TV! With the Media Center you can learn to make TV shows and video in-studio…read more >,https://www.activityhero.com/biz/13484-midpen-media-center-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"12,79",47,f,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,47.27,35.01
787,Henriette's Studio,"Henriette's Studio - Palo Alto, CA",Ceramics Pottery Visual Arts,https://images.activityhero.com/provider_photo/6199/tile/DSC_0005.jpg,"My Ceramic studio has two purposes: Making ceramics works (functional and decorative) for sale, and teaching clay classes - for kids and adults. Both are as…read more >",https://www.activityhero.com/biz/13284-henriette-s-studio-palo-alto-ca,,49.4,"5,78",51,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,97.8,66.63
788,Let's Go Crafting,"Let's Go Crafting Art Studio - Palo Alto, CA",Jewelry Making Sewing Knitting,https://images.activityhero.com/provider_photo/101324/tile/3b8e4589-5dd6-468b-95b6-e036dce39977.jpg,"My art school offers camps and classes in sewing, knitting, crochet, macrame and weaving. With small class sizes and hands on instruction, children are…read more >",https://www.activityhero.com/biz/12672-let-s-go-crafting-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,85",43,m,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,90.94,18.47
789,Kids Coding Dojo,"Main Location - Newark, CA",Robotics Programming Science & Technology,https://images.activityhero.com/provider_photo/139742/tile/5c4c8493-9698-44fc-a84a-e94bb58587cf.png,"Who we are:We are Kids Code Dojo, offering coding program for kids during after school and weekend time. We offer programs to teach coding and logical…read more >",https://www.activityhero.com/biz/kids-coding-dojo,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,77",155,m,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,88.47,63.66
790,Woodside Vaulters,"Horse Park Woodside Vaulters - Redwood City, CA",Animals Birthday Parties Gymnastics,https://images.activityhero.com/provider_photo/109748/tile/5b406a64-a48b-40ff-817f-9f21bd3b82da.png,"Woodside Vaulters, founded in 1990, is one of the largest and most successful vaulting clubs in the United States. The club emphasizes horsemanship, safety,…read more >",https://www.activityhero.com/biz/woodside-vaulters-63117,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,77",4034,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,67.91,46.49
791,Peng Piano Academy,"First Baptist Church of Palo Alto - Palo Alto, CA",Piano Music Performing Arts,https://images.activityhero.com/provider_photo/95036/tile/df7449f0-a826-4f81-8f11-c6cf3e8be062.jpg,"Peng Piano Academy is a summer day camp for young piano students age 9~18, intermediate to advanced playing levels to engage in a week-long program of…read more >",https://www.activityhero.com/biz/52663-peng-piano-academy-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,77",6034,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,60.51,73.68
792,Summer Fun Camps at Palo Alto Community Child Care (PACCC),Multiple Locations,Field Trips Adventure/Outdoors Leadership,https://images.activityhero.com/provider_photo/94892/tile/d2936510-2aa4-48c7-bd32-1f281601fd4d.jpg,"PACCC provides quality care and education individually tailored for your child's development. As a community based nonprofit, we serve children in the Palo…read more >",https://www.activityhero.com/biz/summer-fun-camps-at-palo-alto-community-child-care-paccc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5,77",176,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,93.59,70.35
793,Hope Musical Theatre (HMT),"Palo Alto High School - Palo Alto, CA",Dance Music Performing Arts,https://images.activityhero.com/provider_photo/143306/tile/051954b9-e1f4-407d-9ea7-57718cc9ec3e.jpg,"“This is a unique program with high energy, high expectations and amazing results!”This summer….Come explore the world of singing, dancing and acting!!…read more >",https://www.activityhero.com/biz/hope-musical-theatre-hmt,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5, 78",36,f,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,35.27,66.28
794,CalColor Academy,Multiple Locations,Clay Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/101369/tile/b81f4d11-3bc1-4336-aa6e-5f940f54d764.JPG,"CalColor Academy is the largest Art School in Bay Area, with 3 campuses at Fremont, Mountain View and Cupertino. More than 1100 students attend our weekly…read more >",https://www.activityhero.com/biz/calcolor-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5, 78",136,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,76.74,43.52
795,Adventure & Sports Camps,Multiple Locations,Online Course Free Activities Fitness,https://images.activityhero.com/provider_photo/100857/tile/83db4de9-6a85-445b-bb04-c999c804ff46.jpg,We at Run for Fun Camps believe in providing creative and engaging play for all youth by getting kids active in an inclusive community centered around…read more >,https://www.activityhero.com/biz/adventure-sports-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,",79",81,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,57.95,79.1
796,Cooking Fun for Kids of all Ages,Multiple Locations,Flexible Booking Cooking Field Trips Family,https://images.activityhero.com/provider_photo/4709/tile/Cindy_pizz.jpg,Le Toque de Cindy welcomes your tween or teen to summer camp!We'll have a blast in these courses modified from Cindy's Palo Alto Adult School curriculum. …read more >,https://www.activityhero.com/biz/13254-cooking-camp-for-tweens-and-teens-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5,79",146,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Math & Logic,50.95,21.18
797,Music with Erica,Multiple Locations,Drama/Theater Dance Music,https://images.activityhero.com/provider_photo/101047/tile/7822aec4-ac77-4d2b-9a9d-20c760e5275b.jpg,Provider of Private Piano and voice lessons and group singing and choir classes,,,28,"5, 78",356,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,60.15,57.99
798,Camp Cardinal at Stanford,Multiple Locations,Sports Leadership Robotics,https://images.activityhero.com/provider_photo/97762/tile/e7913a0a-700d-462b-8d38-97f5be88b7eb.jpg,Youth Programs is a new division to the Recreation and Wellness Department and we are thrilled to provide children the opportunity to ENJOY their youth!…read more >,https://www.activityhero.com/biz/stanford-recreation-and-wellness,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",30.2,",79",576,"m,f",Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,59.84,73.41
799,Coach Ken Soccer Academy,Multiple Locations,Best of ActivityHero 2019 Best of ActivityHero 2018 Best of ActivityHero 2015 Soccer Sports Birthday Parties,https://images.activityhero.com/provider_photo/140383/tile/6e398e6f-55ed-433f-b7da-ffe7f2de6d31.JPG,"Coach Ken Soccer offers after-school soccer classes, summer camps and school holiday camps.* Focus on skill development and fun!* Adult professional…read more >",https://www.activityhero.com/biz/coach-ken-soccer-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",34.1,"12,80",3035,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,62.19,4.9
800,Camp Marco Polo,Multiple Locations,Play/Outdoor History Visual Arts,https://images.activityhero.com/provider_photo/67401/tile/9f698c93-40e3-4fd9-b82e-275b27a88b17.jpg,Explore Beyond STEM into the History of Technology & Trade to Discover Interconnections of Modern RelevanceCome Join Our Caravan at Camp Marco Polo: …read more >,https://www.activityhero.com/biz/56199-journeys-across-time-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",50.4,"5,79",226,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,74.31,20.83
801,Bricks 4 Kidz Camps MV-PA,Multiple Locations,Birthday Parties Science & Technology Lego,https://images.activityhero.com/provider_photo/32674/tile/ff5508d1-c6ee-4c5d-add3-43ce16924b8d.jpg,"At Bricks 4 Kidz classes and camps, we learn, we build, we play… with LEGO® bricks. Programs are built around our proprietary model plans, designed by…read more >",https://www.activityhero.com/biz/bricks-4-kidz-camps-mv-pa,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",65.3,"5,86",61,m,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,46.49,46.35
802,Paly Cheer & Dance Camp and Clinics,Multiple Locations,Cheerleading Dance After School Care,https://images.activityhero.com/provider_photo/96008/tile/21b895c5-e63e-4c6d-9b1f-9858a036354c.jpg,"Campers will be taught cheerleading motions and technique, cheer jumps, stunts, gymnastics, sideline cheers, dance technique and a dance routine. Thank…read more >",https://www.activityhero.com/biz/paly-cheer-dance-little-vikes-summer-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",69.3,"5,78",48,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,49.4,68.64
803,Camp Sparkiverse,"Duveneck Elementary - Palo Alto, CA",Best of ActivityHero 2017 Robotics Programming Science & Technology,https://images.activityhero.com/provider_photo/99047/tile/926dcd73-185a-4187-81eb-e58903bb0645.jpeg,Where Fun Meets Tech! The most innovative and fun tech curriculum in the Bay area!We think that kids learn best when they are intellectually…read more >,https://www.activityhero.com/biz/camp-sparkiverse-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,"5,78",52,f,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Math & Logic,84.56,81.3
804,Medaka no Gakko,"Main Location - Palo Alto, CA",Language Cooking Crafts,https://images.activityhero.com/provider_photo/101089/tile/e262559d-9274-4318-8b54-94d56197e7ab.JPG,"A 3 week Japanese-American cultural experience for children who have completed grades K-6. A dedicated team of teachers provides a curriculum rich, hands-on…read more >",https://www.activityhero.com/biz/66794-medaka-no-gakko-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,"5,78",44,f,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Computer Science,42.5,20.16
805,Mona Khan Company,Multiple Locations,Bollywood Dance Visual Arts,https://images.activityhero.com/provider_photo/99471/tile/b53226ce-2a5f-4a3d-b91d-a0e466b87f54.jpg,"The Mona Khan Company is North America's premiere Bollywood dance company. They offer dance classes for kids, teens and adults in fourteen cities in and…read more >",https://www.activityhero.com/biz/mona-khan-dance-company-summer-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",95.1,"5,78",156,m,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,61.18,91.39
806,HeadsUp!® WriteNow! Programs & Camps,Multiple Locations,Academic Writing Academics Public Speaking,https://images.activityhero.com/provider_photo/107868/tile/94b9f742-c592-424c-b773-86bbd9da70e9.JPG,"Write Now Writing Camp is a writing course designed to improve student’s skills in formal, informal, and creative writing. The goal of the camp is to…read more >",https://www.activityhero.com/biz/writenow-writing-camps,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",11,"5, 79",2035,m,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,35.03,83.42
807,BrainMatterZ,Multiple Locations,Academics Test Prep,https://images.activityhero.com/provider_photo/100538/tile/4ec48486-ef02-4d3c-afde-d96128873078.jpg,"At BrainMatterZ, we make smart kids smarter! The brain can be trained and strengthened just as the other muscles in the body can be trained and…read more >",https://www.activityhero.com/biz/brainmatterz,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",16.9,"5, 79",61,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,53.87,94.1
808,Christina's Art Adventure Camp,"Herbert Hoover Elementary - Palo Alto, CA",Drawing and Painting Crafts Drama/Theater,https://images.activityhero.com/provider_photo/3303/tile/AAC_1.jpg,"The mission of Christina's Art Adventure Camp is to empower girls to dream big, set goals, and explore their limitless possibilities. Experimenting in…read more >",https://www.activityhero.com/biz/christina-s-art-adventure-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.9,",80",48,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,97.8,61.42
809,Webb Ranch Riding School,"Webb Ranch Riding School - Portola Valley, CA",Gymnastics Sports Horseback Riding,https://images.activityhero.com/provider_photo/449/tile/open-uri20130516-2-u98z1t,Webb Ranch Riding School Camp and Classes offers English and Western riding sessions for children age 7-18 years old. Beginning or intermediate riders…read more >,https://www.activityhero.com/biz/2927-webb-ranch-riding-school-camps-and-classes-portola-valley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.6,"5,80",52,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,60.31,65.56
810,StemChef,"Main Location - Blackhawk, CA",Science & Technology Math Cooking,https://images.activityhero.com/provider_photo/115000/tile/4b8c7cd0-e9c0-42a0-945d-a867b72e2349.jpg,StemChef is a philosophy of teaching science through cooking to young children. It combines hands-on experimentation with practical application to…read more >,https://www.activityhero.com/biz/stemchef,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5, 79",44,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,89.2,97.47
811,Paly Arts & Crafts Camp,Multiple Locations,Sports Crafts Visual Arts,https://images.activityhero.com/provider_photo/141940/tile/689d7d06-cc7a-455a-90a9-6681fe2ec372.jpg,Paly Arts & Crafts Camp is run by the Paly ECD staff and students and helps raise funds for the program.,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,",80",156,f,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,56.93,19.29
812,The Coder School Fremont,"Main Location - Fremont, CA",Programming Gaming Computers,https://images.activityhero.com/provider_photo/98554/tile/a390b36b-0fb5-43a7-823d-3db33abe9cfb.jpg,The Coder School is a year-round after-school coding school for kids ages 8-18. We combine collaboration and immersion with direct instruction by our…read more >,https://www.activityhero.com/biz/thecoderschool-fremont,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"12,81",4035,"m,f",STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,35.4,89.17
813,Castilleja Summer Camp,"Castilleja School - Palo Alto, CA",Visual Arts Sports Crafts,https://images.activityhero.com/provider_photo/4450/tile/CastiCamp2012-14a.jpg,"For more than 55 years, Casti Camp at Castilleja School has provided girls an all-day camp where fun, learning, and friendships have been the focus. Casti…read more >",https://www.activityhero.com/biz/4264-castilleja-summer-day-camp-for-girls-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,80",6035,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,83.17,73.21
814,Twisters Sports Center,Multiple Locations,Martial Arts Gymnastics Dance,https://images.activityhero.com/provider_photo/100240/tile/69b6924f-f337-4057-b4e6-3c8b438b8088.jpg,"Twisters Sports Center offers children the opportunity to increase strength, balance and social and cognitive skills that are vital to their growth. Half-…read more >",https://www.activityhero.com/biz/twisters-sports-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5,87",177,"m,f",STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,49.02,7.9
815,Bald Eagle Sports Camps,Multiple Locations,Flexible Booking Multisport Leadership Sports,https://images.activityhero.com/provider_photo/98264/tile/2c16a03b-9a09-4c77-b8db-5e832f4915af.jpg,"Based On The Principles Of Positive Coaching Alliance, this is the ULTIMATE YOUTH SPORTS PROGRAM. Your kids have never been to a sports camp like Bald Eagle…read more >",https://www.activityhero.com/biz/bald-eagle-sports-camps-and-go-games,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,79",37,"m,f",STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,85.37,99.48
816,Mountain Camp Woodside,"Woodside Priory School - Portola Valley, CA",Horseback Riding Sports Swimming,https://images.activityhero.com/provider_photo/3553/tile/MCW-2.jpg,Mountain Camp Woodside is a summer camp that offers both a Day Camp (for ages 5-14) and sleep-away Resident Camp (for ages 7-14) programs and is nestled in…read more >,https://www.activityhero.com/biz/3738-mountain-camp-woodside-portola-valley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5,79",137,"m,f",STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,48.92,39.38
817,NurtureKids Learning Center,Multiple Locations,Fitness Yoga Academics,https://images.activityhero.com/provider_photo/3745/tile/NK.jpg,"At NURTURE KIDS, we wish to prepare the children for not only their academic success, but for an all-round development. Activities may include homework…read more >",https://www.activityhero.com/biz/nurturekids-learning-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5,79",82,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,65.79,12.65
818,STEM4kids,Multiple Locations,Flexible Booking Robotics Programming Science & Technology,https://images.activityhero.com/provider_photo/101320/tile/d919608c-483b-45e8-8550-1cfa3f087afb.gif,STEM4kids has been providing technology-focused Camps and Classes for students and we have loved and achieved every moment of it. Our offerings include…read more >,https://www.activityhero.com/biz/68289-stem4kids-san-jose-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,79",147,"m,f",STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Math & Logic,70.26,83.68
819,Glitter Kids,"Glitter Kids Dublin - Dublin, CA",Photography and Video Academics Engineering,https://images.activityhero.com/provider_photo/99092/tile/93ddcce7-0db3-4233-8a39-9003ca2eadbd.JPG,"Glitter Kids offers quality preschool, after school care and summer camps. Our program is a unique combination of fun, academics, and exciting…read more >",https://www.activityhero.com/biz/56276-glitter-kids-dublin-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5, 80",357,m,STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Computer Science,32.64,97.01
820,TaeKwon Tigers Palo Alto,"Main Location - Palo Alto, CA",Cooking Asia Fitness,https://images.activityhero.com/provider_photo/109888/tile/0e71d20e-aa32-432d-ab72-fbba6d6002c3.jpeg,"Everyone has different strengths, weaknesses, and characteristics. Through the discipline of mind, body, and spirit, taekwondo will help students to explore…read more >",https://www.activityhero.com/biz/taekwon-tigers-palo-alto,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5, 80",577,m,STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Computer Science,46.23,7.04
821,Isola Riding Academy,"Main Location - Portola Valley, CA",Horseback Riding,https://images.activityhero.com/provider_photo/109367/tile/c3d3399a-dabc-4a3c-b168-37de346296ee.jpg,Make some wonderful memories at Isola Riding Academy Horse Camp! Learn riding and horsemanship. Have fun with mounted Games while you learn. Our popular…read more >,https://www.activityhero.com/biz/isola-riding-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,",81",3036,f,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,46.94,88.78
822,School of Rock San Ramon,"Main Location - San Ramon, CA",Rock Music Performing Arts,https://images.activityhero.com/provider_photo/108406/tile/1e94a467-1e51-4827-a6b1-b0af05d1843a.jpg,"School of Rock is a music school for all skill levels, ages, and musical aspirations. With students ranging from age 5 to adults, School of Rock is where…read more >",https://www.activityhero.com/biz/66224-school-of-rock-san-ramon-san-ramon-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5,81",227,f,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,85.55,25.14
823,"the Coder School, San Ramon","Main Location - San Ramon, CA",Programming Gaming Computers,https://images.activityhero.com/provider_photo/102349/tile/67e1baad-8034-4c05-a451-998401392fac.jpg,"The top after-school technology program in Silicon Valley is finally here in San Ramon! Our core offering, CodeCoaching, has a low 2 students to 1 coach…read more >",https://www.activityhero.com/biz/the-coder-school-san-ramon,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5, 80",62,m,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,64.93,51.76
824,Portola Valley Theatre Conservatory,"Portola Valley Theatre - Portola Valley, CA",Drama/Theater Performing Arts Acting,https://images.activityhero.com/provider_photo/94724/tile/beca2d3e-9003-48de-a622-6aaf4a0e03e3.png,"Located in the serene redwoods of northern California, Portola Valley Theatre Conservatory strives to create quality theatrical experiences for audiences…read more >",https://www.activityhero.com/biz/65632-portola-valley-theatre-conservatory-portola-valley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,",81",49,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,73.37,53.34
825,Abbey Neurodynamic Center,Multiple Locations,Online Course Social Skills Learning Disabilities,https://images.activityhero.com/provider_photo/143383/tile/bd8b0035-b737-4cc2-8072-d50d885d64d1.jpg,Your child will learn the following skills:Eye Tracking FundamentalsIncreasing Mental StaminaBalance & Coordination TechniquesHow to Increase Your Depth…read more >,https://www.activityhero.com/biz/abbey-neurodynamic-center,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"12,82",53,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,52.85,20.12
826,Prajna Bay Area - Sanjose Evergreen,Multiple Locations,Social Skills Mindfulness Yoga,https://images.activityhero.com/provider_photo/120299/tile/175fd89f-2598-4f87-9303-2a9346ec2538.jpg,An All Round Personality Development Curriculum based on Vedic Wisdom Prajna is personally designed by HH Sri Chinna Jeeyar Swamiji to promote moral…read more >,https://www.activityhero.com/biz/prajna-bay-area-66813,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5,81",45,m,Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,46.6,58.68
827,Palo Alto MTG Camp,"Main Location - Palo Alto, CA",Gaming,https://images.activityhero.com/provider_photo/112262/tile/ac45b8b4-513d-43e4-9061-4ab8d231f008.PNG,We run a summer camp catered towards children who like to play the strategy card game Magic: The Gathering. We will play many formats over the course of the…read more >,https://www.activityhero.com/biz/palo-alto-mtg-camp,,28,"5,88",157,"m,f",STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,75.87,66.93
828,Foothills Tennis and Swimming Club,"Foothills Tennis & Swimming Club - Palo Alto, CA",Lego Swimming Tennis,https://images.activityhero.com/provider_photo/2743/tile/TennisActionChildHorz.jpg,"The family-oriented Foothill Tennis and Swimming Club provides opportunities for swimming, tennis, and social activities with swimming and/or tennis clinics…read more >",https://www.activityhero.com/biz/4696-foothills-tennis-and-swimming-club-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",30.2,"5,80",2036,m,Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,95.47,4.67
829,SF CalHeat,"Main Location - Fremont, CA",,https://images.activityhero.com/provider_photo/112034/tile/d60cdf20-f33b-45ae-ae2a-be2ca5cc6fb5.jpg,"SF CalHeat offers camps to teens ages 10 and up, during the summer in Fremont, California. During the camp, players of all levels will learn the…read more >",https://www.activityhero.com/biz/sf-calheat,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",34.1,"5,80",62,f,STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Computer Science,84.44,9.04
830,Fremont Spartans Lacrosse,Multiple Locations,Lacrosse,https://images.activityhero.com/provider_photo/109647/tile/2fddec34-05e7-402d-966b-0005a4ff5e59.png,"Fremont Spartans Lacrosse in Fremont, California offers lacrosse camps, clinics, and teams for boys and girls throughout the year. We offer both…read more >",https://www.activityhero.com/biz/fremont-spartans-lacrosse,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",50.4,"5,80",49,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,99.95,64.27
831,JulieArt Lessons,"Main Location - Palo Alto, CA",Drawing and Painting,https://images.activityhero.com/provider_photo/109385/tile/5a74b22b-f222-4c99-9630-c1f637eb9e90.jpg,JulieArt offers classes and summer workshops where classes are set up with no more than five students. Instructor places an early emphasis on the…read more >,https://www.activityhero.com/biz/julieart-lessons,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",65.3,"5,80",53,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,59.89,41.35
832,Mission Valley Track Club,"Main Location - Union City, CA",Track and Field Fitness Sports,https://images.activityhero.com/provider_photo/108288/tile/3171829b-ae1e-47ea-8edf-06cd5ce3d347.jpeg,"Mission Valley Track and Field Club, a non-profit organization, that holds practice at James Logan High School in Union City, CA, for young people between 6…read more >",https://www.activityhero.com/biz/mission-valley-track-club,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",69.3,"5, 81",45,"m,f",Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,47.87,27.35
833,Suburban Thunder Improv Company,"Main Location - San Ramon, CA",Comedy Drama/Theater Performing Arts,https://images.activityhero.com/provider_photo/107864/tile/5e46c194-196a-4c22-bcad-c80ac9f6e9ac.jpg,Suburban Thunder Improv Company is dedicated to creating one of a kind improvisational theater that strikes the funny bone of suburbia!We offer Tween…read more >,https://www.activityhero.com/biz/suburban-thunder-improv-company,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,"5, 81",157,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,77.52,54.21
834,Brilliant Minds Academy,"Main Location - San Ramon, CA",Public Speaking Engineering Creative Writing,https://images.activityhero.com/provider_photo/107666/tile/658e20b3-2f8f-499d-9700-f881b43b990b.png,"With Brilliant Minds Academy, you can ensure that elementary and middle school students accelerate academically with tutoring in private school level math…read more >",https://www.activityhero.com/biz/brilliant-minds-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,",82",4036,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Math & Logic,82.06,40.1
835,TinkerKamp,"Ichen Art Academy - Pleasanton, CA",Programming Computers Science & Technology,https://assets.activityhero.com/images/featured/tile/placeholder-1.jpg,"Tinkerkamp offers robotics, coding and tinkering classes for kids ages 6 to 16. We provide a collaborative environment for kids to learn to solve real…read more >",https://www.activityhero.com/biz/tinkerkamp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",95.1,"5,82",6036,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,68.8,50.96
836,The Coder School - Palo Alto,"Main Location - Palo Alto, CA",Programming Computers Science & Technology,https://images.activityhero.com/provider_photo/107334/tile/25e4773b-2773-453a-b2a0-366de5e6f8ad.jpg,"Coder School is a new kind of after school coding program that focuses on the individuality of each student, customizing our teachings depending on their…read more >",https://www.activityhero.com/biz/the-coder-school-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",11,"5, 81",178,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,38.13,74.09
837,42 Silicon Valley,"Main Location - Fremont, CA",Computers Programming,https://images.activityhero.com/provider_photo/101522/tile/98b7dc81-2bfc-4d20-a378-8310abe0f705.jpg,"42 Silicon Valley is a nonprofit, no-cost computer science school for young adults and teens. We provide a peer to peer, independent learning environment…read more >",https://www.activityhero.com/biz/42-silicon-valley,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",16.9,",82",38,m,STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,57.11,33.28
838,Open Mind School,"Main Location - Menlo Park, CA",Developmental Disabilities Autism Special Needs,https://images.activityhero.com/provider_photo/101172/tile/590ad858-d694-47d6-9f31-09581fba36fc.jpg,OMS is redefining education. We take best practices from learning and the brain and couple them with innovative project-based experiential learning. We meet…read more >,https://www.activityhero.com/biz/open-mind-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.9,"12,83",138,m,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,63.87,42.24
839,Master Kim's Taekwondo Academy,"Main Location - Dublin, CA",Korean Martial Arts Sports,https://images.activityhero.com/provider_photo/115443/tile/3f7d5ae9-25f7-4ceb-b90e-95cd780327fc.jpg,"Master Kim's Taekwondo Academy is the premier provider of Martial Arts instruction for children, adults, and families in the Tri-Valley (Dublin, Pleasanton,…read more >",https://www.activityhero.com/biz/master-kim-s-taekwondo-academy-59205,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.6,"5,82",83,f,Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,46.89,91
840,The Mindful Kids,Multiple Locations,Mindfulness Yoga Visual Arts,https://images.activityhero.com/provider_photo/99907/tile/40c82919-1942-4846-8a1b-44a26bb0943e.jpg,"Mindful Kids provides young people with access to mindfulness skills and practices that can help them not only succeed, but also flourish in school and in…read more >",https://www.activityhero.com/biz/the-mindful-kids,,9,"5,89",148,f,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,66.42,93.24
841,Art Process,"Main Location - Dublin, CA",Visual Arts,https://images.activityhero.com/provider_photo/112966/tile/e140e2b4-0271-45c2-addb-23391d3e40af.jpg,Studio Art Lessons. We add steAm to stem learning. Art lessons taught by professional Architectural designer & lifelong Artist. Art learning experience…read more >,https://www.activityhero.com/biz/art-process,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,81",358,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,96.88,66.63
842,Glenoaks Riding Stables,"Glenoaks Stables - Portola Valley, CA",Horseback Riding,https://images.activityhero.com/provider_photo/102649/tile/36525cc9-570d-41f4-a89d-b6eeb6a6d7c8.jpg,The Glenoaks Equestrian Center sits on approximately 1000 beautiful acres and is a state-of-the-art facility that offers horseback riding lessons and…read more >,https://www.activityhero.com/biz/6199-glenoaks-equestrian-center-portola-valley-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,81",578,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,79.65,17.26
843,Bay Area Speech and Debate Academy,Multiple Locations,Online Course Public Speaking Language,https://images.activityhero.com/provider_photo/114313/tile/19a2ab31-3e99-4484-83ea-e25c2f04c080.jpg,Bay Area Speech and Debate Academy is an accredited by Western Association School and Collages (WASC) educational institution which focuses on developing…read more >,https://www.activityhero.com/biz/bay-area-speech-and-debate-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,81",3037,m,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,69.28,93.88
844,Touyou No Chie,"Main Location - Concord, CA",Fitness Wrestling Martial Arts,https://images.activityhero.com/provider_photo/142112/tile/4c398636-37a3-41b2-affb-8b5c4f1e8d4c.jpg,We started out in April 2010 in the studio of Sylvan Martial Arts. Originally we were just a group of martial artists that needed a place where we could…read more >,https://www.activityhero.com/biz/touyou-no-chie,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5,81",228,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,44.1,72.69
845,StealthSports Center,"Main Location - Concord, CA",Breakdance Basketball,https://images.activityhero.com/provider_photo/141775/tile/4c4b4041-cb77-44ce-a834-4ba35024ae21.jpeg,Stealth Sports Center is a basketball training facility that focuses on teaching fundamental skills of basketball. Our trainers are passionate on…read more >,https://www.activityhero.com/biz/stealth-sports-center-72529,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5, 82",63,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,81.23,82.98
846,Academic Trainers,"Main Location - Menlo Park, CA",Test Prep Academics Tutoring,https://images.activityhero.com/provider_photo/124840/tile/a057a20e-3a0c-4455-9bd6-d5818dd81d03.jpg,"Academic Trainers (A.T.) is a community-based, educational, family-owned company, founded 15 years ago. Our new, athletic-themed website and message send…read more >",https://www.activityhero.com/biz/academic-trainers,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5, 82",50,m,STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Math & Logic,40.84,43.49
847,Dance Camp,"Woodside High School - Woodside, CA",Hip Hop Contemporary Dance,https://images.activityhero.com/provider_photo/114984/tile/7187bc1e-10b9-4ff0-8a08-dd3811e4b480.jpg,Kids will learn all the hottest dance moves and integrate their new skills in a last-day performance to parents. Each day will begin with stretching and…read more >,https://www.activityhero.com/biz/dance-camp-65450,,49.4,",83",54,f,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,83.98,69.63
848,Silicon Valley Basketball Academy,Multiple Locations,Basketball,https://images.activityhero.com/provider_photo/112977/tile/85d62dc6-3ed3-43a9-94da-5996094f34c8.jpg,"Silicon Valley Basketball Academy offers a variety of training, including classes and skills development individually or as a group, clinics, camps, …read more >",https://www.activityhero.com/biz/silicon-valley-basketball-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,83",46,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,75.86,82.64
849,TechDev Academy,Multiple Locations,Coding Programming Gaming,https://images.activityhero.com/provider_photo/112136/tile/d619a624-217f-4ee8-8bf0-5d1483c3c46e.jpg,"TechDev Academy offers educational services including workshops, summer camps, tutoring, and after-school programs for the rising 2nd-8th grader. We offer…read more >",https://www.activityhero.com/biz/techdev-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5, 82",158,"m,f",STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Math & Logic,77.51,97.18
850,Victoria Ballet & Beyond,"Main Location - Palo Alto, CA",Dance Ballet,https://images.activityhero.com/provider_photo/112197/tile/25cceec6-a086-4369-aaac-05e65fc539aa.JPG,Victoria Ballet & Beyond is not only classical ballet education but also creative movement method training studio .,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,",83",2037,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,91.5,9.78
851,Mark Ballas Dance and Performing Arts Studio,"Main Location - Pleasanton, CA",Ballroom Latin Dance,https://images.activityhero.com/provider_photo/99934/tile/e00dd1b8-0821-42f2-bd8e-44a83c4e443e.jpg,Mark Ballas Dance offers a fun safe and informative environment for both adults and kids alike to experience the joys of dance. We love what we do and we…read more >,https://www.activityhero.com/biz/mark-ballas-dance-and-performing-arts-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"12,84",63,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,32.79,29.38
852,Futsal Without Borders,Multiple Locations,Soccer Sports,https://images.activityhero.com/provider_photo/98777/tile/841ab407-798a-4b67-a0f4-6e3a391337ff.jpg,We are a non-profit futsal community that promotes the sport of futsal and enable players to reach their highest potential in life. With training and…read more >,https://www.activityhero.com/biz/futsal-without-borders,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5,83",50,"m,f",Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,77.8,32.08
853,Little Scholar,Multiple Locations,Audition skills Creative Writing Digital Media,https://images.activityhero.com/provider_photo/98509/tile/179af33a-c924-4201-8db9-786937e34017.png,Prepare your child for the 21st global economy We believe in creativity and ability to persevere . Research indicates that children who have these skills…read more >,https://www.activityhero.com/biz/little-scholar-chinese-immersion-program,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,90",54,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,36.7,66.83
854,Building Kidz of Menlo Park,"Main Location - Menlo Park, CA",Preschool Academics Dance,https://images.activityhero.com/provider_photo/97692/tile/c3364995-56a4-45ce-b356-0b45fabe6100.JPG,"Building Kidz of Menlo Park is a wonderful preschool located in the Willow Oaks Park. Currently, we are enrolling children ages 2 years - 6 years old. Our…read more >",https://www.activityhero.com/biz/building-kidz-of-menlo-park,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,82",46,"m,f",STEM,"[['year', 36.17], ['teaching', 13.48], ['inspire', 9.93], ['teen', 8.51], ['theater', 7.09], ['kind', 6.38], ['positive', 4.96], ['method', 4.96], ['mindfulness', 4.26], ['broadway', 4.26]]",Computer Science,55.02,93.38
855,GASPA - German Summer School Camp,"ALTO International School - Menlo Park, CA",German Language,https://images.activityhero.com/provider_photo/109834/tile/9c5979f7-09d5-4078-8e09-07cbceb626d7.JPG,"Sprechen Sie Deutsch? Do you speak German? We do, and we would love for you to join us!We, the German-American School of Palo Alto are excited to once…read more >",https://www.activityhero.com/biz/4783-gaspa-german-summer-school-camp-menlo-park-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5,82",158,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Math & Logic,59.98,42.78
856,Kids Artistic Sense,Multiple Locations,Visual Arts Music Drawing and Painting,https://images.activityhero.com/provider_photo/6650/tile/aefec56f-c69c-4e56-8b47-c22bb7547c9c.jpg,Kids Artistic Sense is an innovative program that focuses on the process of learning vs. the product. We serve children ages 18 months–10 years with…read more >,https://www.activityhero.com/biz/kids-artistic-sense,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5,82",4037,m,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,81.2,68.42
857,Camp Fashionista,Multiple Locations,Sewing Fashion Design Knitting,https://images.activityhero.com/provider_photo/125625/tile/e6434908-5782-4811-8f42-3b7c4558a44e.jpg,"Camp Fashionista is a unique fashion design school for children and adults founded by Dori Gladden in 2010, offering beginning sewing and fashion…read more >",https://www.activityhero.com/biz/6136-camp-fashionista-san-jose-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28,"5,82",6037,f,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,34.48,13.63
858,AcmeEntrepreneur Summer,Multiple Locations,Social Skills Business,https://images.activityhero.com/provider_photo/109557/tile/0b2584f6-bf2c-4190-9fb4-dac6d0b493da.jpg,"Your hub to learning entrepreneurship. The program was founded by Stanford Entrepreneur Aditya Mittal, and hopes to make the world a more entrepreneurial…read more >",https://www.activityhero.com/biz/52230-stanford-entrepreneurship-camp-stanford-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",30.2,"5, 83",179,f,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Computer Science,41.99,4.63
859,American Acrobats Performing Arts and Fitness,Multiple Locations,Fitness Acrobatics Gymnastics,https://images.activityhero.com/provider_photo/143432/tile/a7acfd95-5c01-4a96-86ad-75cc653364e7.png,"Our Motto…… ""For Anybody With Any Body ""American Acrobats Performing Arts & Fitness is a studio / gym that offers beginning to elite level performance…read more >",https://www.activityhero.com/biz/american-acrobats-performing-arts-and-fitness,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",34.1,"5, 83",39,m,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,56.67,72.79
860,New York Society of Play,Multiple Locations,Online Course Gaming Chess,https://images.activityhero.com/provider_photo/144558/tile/d3a8d0dd-7fee-41f6-b4e7-3c2f66d400a7.jpg,"Welcome to the New York Society of Play!New York Society of Play is a game studio that runs events and workshops to inform social skills through physical,…read more >",https://www.activityhero.com/biz/new-york-society-of-play,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",50.4,",84",139,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,30.93,68.14
861,Los Angeles School of Gymnastics & Cheer,Multiple Locations,Sports Play/Outdoor Gymnastics,https://images.activityhero.com/provider_photo/101817/tile/cc284ad0-771a-46c5-a4a2-bce40a6be144.jpg,"The Los Angeles School of Gymnastics has been providing gymnastics classes since 1975. The school has served over 1,000,000 families with quality gymnastics…read more >",https://www.activityhero.com/biz/7658-los-angeles-school-of-gymnastics-cheer-culver-city-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",65.3,"5,84",84,m,Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,37.97,72.92
862,Coach Ballgame Baseball,Multiple Locations,Baseball Sports Free Activities,https://images.activityhero.com/provider_photo/103959/tile/3ad40f8b-2175-4193-a6d6-6f63796838f6.JPG,Recently voted Best Baseball Camp in the OC by Parenting OC Magazine!!Coach Ballgame is known for his playful and unique approach to making kids fall in…read more >,https://www.activityhero.com/biz/coach-ballgame,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",69.3,"5, 83",149,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,69.96,15.19
863,Bollywood Groove,Multiple Locations,Hindi Dance Bollywood,https://images.activityhero.com/provider_photo/145454/tile/1df112ef-21a9-4136-8b9b-9cb232b5ee0a.png,"Bollywood Groove is an award-winning Bollywood Dance & Fitness company with 20+ classes/week for both kids and adults in Chicago.With a mission of ""Raise…read more >",https://www.activityhero.com/biz/bollywood-groove,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,",84",359,"m,f",Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,38.18,68.33
864,PonyCody,Multiple Locations,Online Course Coding Programming,https://images.activityhero.com/provider_photo/144299/tile/9e9064b0-8055-4369-97e4-46531758935d.jpg,PonyCody is an innovative educational non-profit organization focusing on providing technology enrichment for K-12 students. We provide multiple-level…read more >,https://www.activityhero.com/biz/ponycody,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,"12,85",579,m,Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,75.49,96.79
865,De L’or Cakery Corporation,Multiple Locations,Online Course Cooking Birthday Parties,https://images.activityhero.com/provider_photo/144598/tile/a583718b-09bb-4f4f-aac8-71c7dd5d35a3.jpeg,"De L’or Cakery Corporation is a 5 Star Cake Catering company. Kayisha Thompson is the Cake Executive Officer, she creates tantalizing joy and connections…read more >",https://www.activityhero.com/biz/de-l-or-cakery-corporation,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",95.1,"5,84",3038,f,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,70.33,84.83
866,The Art Studio NY,Multiple Locations,Drawing and Painting Online Course Visual Arts,https://images.activityhero.com/provider_photo/2097/tile/open-uri20130516-2-1ic2ooo,"The Art Studio NY offers creative, nurturing Children's Art Classes, Teen Art Classes, and art lessons in New York City for all ages and levels. Geared…read more >",https://www.activityhero.com/biz/8006-the-art-studio-ny-new-york-ny,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",11,"5,91",229,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,69.24,16.18
867,AFreeMind Academy,Multiple Locations,Engineering Science & Technology Visual Arts,https://images.activityhero.com/provider_photo/141596/tile/7481310e-1fbe-42e0-a82d-a1bf56c847b3.PNG,"We believe in “All life is an experiment. The more experiments you make the better.” AFreeMind wants to create value by bringing fun and quality programs,…read more >",https://www.activityhero.com/biz/afreemind-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",16.9,"5,83",64,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,62.92,49.17
868,LEGO Home Learning by Young Engineers,Multiple Locations,Coding Online Course Robotics,https://images.activityhero.com/provider_photo/112092/tile/453e7923-c23d-468e-8a0e-5f45401884bd.jpg,We are offering a variety of STEM LEGO® based after-school programs that combine Education + Entertainment (Edutainment) in over 45 countries and 147…read more >,https://www.activityhero.com/biz/e2-young-engineers-64432,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.9,"5,83",51,"m,f",STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Math & Logic,52.53,39.6
869,Archery Only,"Main Location - Newark, CA",Archery Sports,https://images.activityhero.com/provider_photo/108682/tile/638bff1d-678f-49d3-b05e-2e42f6158d33.jpg,Archery Only offers a comprehensive array of instructional courses for students at all levels of proficiency. We also deliver a wide range of programs…read more >,https://www.activityhero.com/biz/archery-only,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.6,"5,83",55,"m,f",STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,59.95,55.81
870,Tikiland Daycare & Preschool,"Main Location - Palo Alto, CA",Play/Outdoor Nature Programs Spanish,https://images.activityhero.com/provider_photo/128055/tile/feb6b952-4064-4598-9348-59bc5e6df581.jpg,"Tiki-Land Daycare & Preschool was born from the dream of a daycare that should reflect 21st-century values and qualities, and be a place that can be enjoyed…read more >",https://www.activityhero.com/biz/tikiland-daycare-preschool,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,83",47,"m,f",STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,95.43,77.22
871,Palo Alto Writing Academy,"Palo Alto High School - Palo Alto, CA",Creative Writing Academic Writing Reading,https://images.activityhero.com/provider_photo/143364/tile/045086a0-69cf-4384-8c98-e77d96c675eb.JPG,"Too many students arrive to high school unable to write basic, clear, analytical essays. In most cases, these students are underprepared for the rigorous…read more >",https://www.activityhero.com/biz/53468-palo-alto-writing-academy-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5, 84",159,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Math & Logic,73.08,36.9
872,Mission Hills Racquet and Swim Club Summer Camp,"Main Location - Fremont, CA",Fitness Tennis Sports,https://images.activityhero.com/provider_photo/145252/tile/fe502bd8-dd15-4b35-a157-31743d273a82.jpg,We are devoted to providing an unforgettable and exclusive family country club experience that is tailored to meet your every need. We are dreamseekers…read more >,https://www.activityhero.com/biz/mission-hills-racquet-and-swim-club-summer-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5, 84",2038,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,32.81,77.89
873,STANFORD MENS SOCCER,Multiple Locations,Soccer,https://images.activityhero.com/provider_photo/140306/tile/dfc6b5de-57fd-41d6-a61a-f9aafc78d607.jpg,"The Youth Academy is for grades K-5. You may select either a Half Day Option (9am-12pm) or Full Day (9am-3pm & 9am-12pm Friday), Monday through Friday. …read more >",https://www.activityhero.com/biz/stanford-mens-soccer,,26.6,",85",64,m,STEM,"[['youth', 35.09], ['day', 24.56], ['safe', 9.36], ['oakland', 7.6], ['junior', 5.26], ['grow', 4.68], ['traditional', 4.09], ['locally', 3.51], ['offer', 2.92], ['mind', 2.92]]",Math & Logic,57.83,67.9
874,Brain-O-Magic Fremont/Newark,Multiple Locations,Creative Writing Math,https://images.activityhero.com/provider_photo/111413/tile/4ec80db5-016a-4542-88fe-c8e6020695f4.jpeg,Our mission is to unleash the true potential of your child using mental math as a tool. We strive to prepare your children for success in all walks of…read more >,https://www.activityhero.com/biz/brain-o-magic-64017,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5,85",51,m,STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,75.06,79.18
875,Camp Gan Israel,Multiple Locations,Jewish Field Trips Crafts,https://images.activityhero.com/provider_photo/111221/tile/f24d6452-4f3d-4c12-80f9-a5a81d895dd8.jpg,"CGI enjoys a well-earned reputation as a trendsetter with innovative ideas, creative programs and new activities. Our campers enjoy a wide range of exciting…read more >",https://www.activityhero.com/biz/camp-gan-israel,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5, 84",55,f,Sports,"[['activity', 20.12], ['include', 15.98], ['fitness', 15.98], ['performing_arts', 9.47], ['week', 8.88], ['field', 8.88], ['park', 8.88], ['exciting', 4.73], ['cultural', 4.14], ['theme', 2.96]]",Personal Development,31.15,74.06
876,Needles Studio,"Main Location - Palo Alto, CA",Sewing Crafts,https://images.activityhero.com/provider_photo/111204/tile/343aa941-30e5-4c34-8bdc-e28bceba6514.jpeg,"Needles Studio is a small, locally owned business in Palo Alto. We specialize in sewing classes and workshops for individuals and small groups.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,",85",47,f,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,77.17,36.91
877,Palo Alto Stanford Aquatics - Rinconada,"Main Location - Palo Alto, CA",Swimming,https://images.activityhero.com/provider_photo/110974/tile/9df38d28-c683-4fe0-b50c-4a56e0b344fa.jpg,Our club is a USA Swimming year round competitive swim team offering high quality professional coaching and technique instruction for all ages and…read more >,https://www.activityhero.com/biz/palo-alto-stanford-aquatics-rinconada,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"12,86",159,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,66.83,52.69
878,Peninsula Flyers,Multiple Locations,Track and Field Fitness Sports,https://images.activityhero.com/provider_photo/109891/tile/9f5471a3-8504-427b-beb4-511471cd179b.JPG,Its purpose is to create an environment that allows each member of our team the opportunity to develop their greatest potential. Each child is encouraged…read more >,https://www.activityhero.com/biz/peninsula-flyers-63218,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,85",4038,m,STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,73.12,97.26
879,Racing Hearts,Multiple Locations,Family Track and Field Fitness,https://images.activityhero.com/provider_photo/109738/tile/e6d1b5c3-422c-49cb-9ed0-bec2f0dd087e.jpg,Racing Hearts is a nonprofit based in Palo Alto which advocates and funds life saving heart defibrillators (AEDs). Since 2013 we have deployed over 800…read more >,https://www.activityhero.com/biz/racing-hearts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,92",6038,m,STEM,"[['center', 32.79], ['company', 19.13], ['empower', 8.2], ['curriculum', 7.1], ['palo_alto', 6.56], ['real', 6.01], ['bring', 6.01], ['heart', 5.46], ['passionate', 4.37], ['city', 4.37]]",Computer Science,85.61,21.1
880,Blu Sky Kids,Multiple Locations,Science & Technology Spanish Chinese,https://images.activityhero.com/provider_photo/110117/tile/ea5116d7-8d81-4c65-b0c9-9b7245d2ddf7.JPG,"Blu Sky Kids provides educational programs that combine art, science, engineering and language to enhance students' critical thinking skills, creativity and…read more >",https://www.activityhero.com/biz/blu-sky-kids,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,84",180,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,43.54,82.05
881,Abilities United,Multiple Locations,Social Skills Developmental Disabilities Autism,https://images.activityhero.com/provider_photo/109504/tile/4b310679-8525-4b8e-a82b-4f5abb68771f.jpg,"Abilities United advances advocacy, inclusion, and independence for children and adults with developmental disabilities. We provide a lifetime of services…read more >",https://www.activityhero.com/biz/abilities-united,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,84",40,"m,f",STEM,"[['kid', 64.4], ['california', 7.85], ['offer', 7.85], ['state', 4.19], ['bay', 3.66], ['paddle', 3.14], ['learn', 2.62], ['clay', 2.09], ['stage', 2.09], ['trip', 2.09]]",Math & Logic,64.38,37.66
882,Palo Alto Babe Ruth,Multiple Locations,Baseball,https://images.activityhero.com/provider_photo/108470/tile/1d351e24-3438-4ed6-a733-f7c836916c17.jpg,"Palo Alto Babe Ruth Baseball is a community-based league on a mission to drive quality youth baseball. We offer 4 Seasons: Fall Academy, Spring Prep League,…read more >",https://www.activityhero.com/biz/palo-alto-babe-ruth,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5,84",140,m,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Computer Science,96.29,84.42
883,IHSD @ Ravenswood,"Main Location - East Palo Alto, CA",Preschool,https://images.activityhero.com/provider_photo/109197/tile/53295e0c-99ac-4163-8680-bee373cadd08.jpg,"IHSD provides a developmentally-appropriate curriculum that emphasizes language, cognitive, physical development, social skills, and creativity for young…read more >",https://www.activityhero.com/biz/ihsd-ravenswood,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,84",85,f,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,63.21,28.67
884,The Scooter Academy,Multiple Locations,Adventure/Outdoors Skateboarding Birthday Parties,https://images.activityhero.com/provider_photo/107612/tile/d2361699-d8cb-4d77-9361-4696cbd60391.JPG,Our goal is to motivate kids to do what they love and reach their full potential. The Scooter Academy provides opportunities for any scooter rider to…read more >,https://www.activityhero.com/biz/the-scooter-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5, 85",150,"m,f",Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,48.34,24.22
885,Stanford Soccer Club,"Main Location - Palo Alto, CA",Soccer,https://images.activityhero.com/provider_photo/143809/tile/8c3acd62-624b-478a-8e29-151007ef7eb5.jpg,The Stanford Soccer Club* is a competitive youth soccer club serving Palo Alto and neighboring communities. Our teams compete in the Cal North – Cal…read more >,https://www.activityhero.com/biz/stanford-soccer-club,,26.9,"5, 85",360,"m,f",Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,38.35,18.94
886,Xtreme Baseball Camps,"Main Location - Menlo Park, CA",Baseball Sports,https://images.activityhero.com/provider_photo/103163/tile/1f40b728-a3a6-407f-9ca6-0dfe17905871.jpg,Xtreme baseball camps offers camps and clinics for ages 9-12.,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,",86",580,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,36.68,27.01
887,San Jose Museum of Art,Multiple Locations,Online Course Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/107441/tile/0018cc1a-a594-437a-a412-1ac1a1e55ee0.jpg,"SJMA is the largest provider of arts education in Santa Clara County. Our education programs help school children, families, and adults investigate the…read more >",https://www.activityhero.com/biz/san-jose-museum-of-art,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28,"5,86",3039,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,48.55,92.94
888,Little Medical School - National,Multiple Locations,,https://images.activityhero.com/provider_photo/145882/tile/dd4132f3-7589-483f-8930-7425196907ba.jpg,Little Medical School is about engaging students ages 4-14 in an inspirational journey which not only allows them to “look” like a healthcare…read more >,https://www.activityhero.com/biz/little-medical-school-national,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",30.2,"5, 85",230,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,70.71,20.51
889,"Future Hearts, Minds & Dreamers",Multiple Locations,Acting Dance Visual Arts,https://images.activityhero.com/provider_photo/145850/tile/d0e61a31-07db-4325-a866-d7056a6ac096.jpg,"Future Hearts, Minds & Dreamers (FHMD) is proud to be operating as an on-sight preschool through 12th grade after school/in school content-rich…read more >",https://www.activityhero.com/biz/future-hearts-minds-dreamers,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",34.1,",86",65,"m,f",Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,85.75,21.97
890,Monster Mandarin,Multiple Locations,Language Online Course Free Activities,https://images.activityhero.com/provider_photo/144825/tile/b1e2c673-a61e-44f1-8f7e-a228d7f28790.jpg,Monster Mandarin is the best platform for learning Mandarin Chinese whether it's for kids or adults. We offer both play-based and structured format…read more >,https://www.activityhero.com/biz/monster-mandarin,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",50.4,"12,87",52,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,32.62,93.11
891,The Whole Child Learning Company,Multiple Locations,Lego Engineering Science & Technology,https://images.activityhero.com/provider_photo/145685/tile/c784c236-5b06-4f3a-b633-4980ce3a75a3.JPG,The Whole Child Learning Company believes in teaching important STEAM concepts through fun hands-on learning. We've been teaching kids ages 3-13 for over…read more >,https://www.activityhero.com/biz/the-whole-child-learning-company,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",65.3,"5,86",56,m,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,92.87,53.7
892,Science Mom,Multiple Locations,Engineering Science Math,https://images.activityhero.com/provider_photo/145597/tile/ec8ed116-4715-4076-a801-86f36119f0a5.jpg,"Our mission is to inspire future scientists by sharing hands-on projects. Our math and science videos feature interactive doodle notes, art prompts, and a…read more >",https://www.activityhero.com/biz/science-mom-73908,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",69.3,"5,93",48,m,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Math & Logic,83.72,90.46
893,Prettyummy Bakery,Multiple Locations,Cooking,https://images.activityhero.com/provider_photo/145666/tile/219c5877-bf69-436b-b05c-1e706fd8b7f6.jpg,"PrettYummy Bakery is located in San Jose, California and offers classes and camps for kids age 8 years old and up. We specialize in Homemade Eggless Cakes …read more >",https://www.activityhero.com/biz/prettyummy-bakery,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,"5,85",160,f,Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,46.98,12.41
894,Online Indian flute classes,Multiple Locations,Flute Music Indian Classical,https://images.activityhero.com/provider_photo/145545/tile/e6fee1cf-f1e5-416b-8515-9e3bfbbca313.jpeg,Our teacher will teach you Indian classical music and basic techniques of all genres of Indian music.,,,77,"5,85",2039,f,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Math & Logic,49.15,55.5
895,"All About Animals, LLC",Multiple Locations,Nature Programs Animals Science,https://images.activityhero.com/provider_photo/145522/tile/46cf0298-0abc-4317-9789-db082dbaa17b.jpg,"All About Animals, LLC traditionally travels throughout the Dallas and Fort Worth area to visit locations with their animals. Since March those programs…read more >",https://www.activityhero.com/biz/all-about-animals-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",95.1,"5,85",65,m,Sports,"[['love', 22.54], ['adventure', 19.01], ['camper', 11.97], ['outdoor', 10.56], ['dedicate', 8.45], ['american', 7.75], ['area', 7.04], ['mobile', 4.93], ['learn', 4.23], ['animal', 3.52]]",Personal Development,36.62,45.92
896,Snapology Summit NJ,Multiple Locations,Online Course Engineering Lego,https://images.activityhero.com/provider_photo/145521/tile/ec513a86-2c49-426c-bb42-9cbbb034b7f3.png,"Snapology of Summit offers Camps, Workshops, After-School Enrichment, Scouting Events, Field Trips, Homeschool Programs, and Birthday parties that introduce…read more >",https://www.activityhero.com/biz/snapology-summit-nj,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",11,"5,85",52,m,Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,89.8,7.65
897,Ramblin' Dan,Multiple Locations,Birthday Parties Dance Music,https://images.activityhero.com/provider_photo/145517/tile/947fa5fc-c40a-48e0-ab16-1359016709a2.jpg,"At a Ramblin’ Dan music class, party or concert you'll hear everything from Rock ‘n’ Roll, Reggae, Funk, Hip Hop, Folk and Bluegrass. The music pulls from…read more >",https://www.activityhero.com/biz/ramblin-dan,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",16.9,"5, 86",56,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,85.24,87.07
898,My Coding Place,Multiple Locations,Online Course Computer Animation Science & Technology,https://images.activityhero.com/provider_photo/120038/tile/141a5eb9-8e6e-4f1e-a535-53dd352444ba.jpg,We get kids excited about coding so they can have fun as they learn critical thinking skills in our after-school program. We offer different programs…read more >,https://www.activityhero.com/biz/the-coder-school-61619,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.9,"5, 86",48,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,38.09,31.62
899,Twinkling Toes Dance,Multiple Locations,Preschool Dance Ballet,https://images.activityhero.com/provider_photo/145484/tile/e828f66e-a88e-48bd-8d04-9fecda352f83.JPG,Do you have a toddler at home with boundless energy and in need of a fun activity? We are excited to announce TTD is now offering online dance classes…read more >,https://www.activityhero.com/biz/twinkling-toes-dance,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.6,",87",160,"m,f",Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,97.8,84.06
900,Lil Beast Ninjas,Multiple Locations,Fitness,https://images.activityhero.com/provider_photo/145441/tile/a18d42d0-46a2-4643-86dc-d707614162e8.jpg,"We are Megan and Melissa…two athletes and mom, who love working with children, coming to you with our combined backgrounds in Elementary Education,…read more >",https://www.activityhero.com/biz/lil-beast-ninjas,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,87",4039,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,49.35,56.88
901,RosaBlanca Ltd,Multiple Locations,Spanish Cooking,https://images.activityhero.com/provider_photo/145420/tile/7b2a8011-096f-4bc0-b370-2257f9c61e54.jpeg,"Regardless of age group, all programs begin with an informal and fun introduction to the course topic so the learners have context for the day’s subject. An…read more >",https://www.activityhero.com/biz/rosablanca-ltd,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5, 86",6039,f,Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,37.3,74.09
902,Action Karate Cinnaminson,Multiple Locations,Fitness Martial Arts,https://images.activityhero.com/provider_photo/145407/tile/7bce4f4a-809e-4723-9171-96c41268eb25.jpg,We're a Martial Arts schools that's focused on helping families learn self defense in a fun and friendly environment.,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,",87",181,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,50.87,58.8
903,Action Karate Jamison,Multiple Locations,Fitness Martial Arts,https://images.activityhero.com/provider_photo/145406/tile/fa0e0e48-5a9c-4b6d-8da2-697db8ca801b.jpg,"Families who participate in our classes love how active and motivational they are. The goal is to keep our families moving, learning, and growing.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"12,88",41,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,58.24,99.53
904,Creating Me,Multiple Locations,Acting Drama/Theater Dance,https://images.activityhero.com/provider_photo/145345/tile/4c1cb9c0-21a6-4b75-838a-b273b3a4fc75.jpg,"Our programming is designed to develop children physically, socially, emotionally, and cognitively. We guide children to discover their innate talents and…read more >",https://www.activityhero.com/biz/creating-me,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5,87",141,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Math & Logic,93.45,77.59
905,The Jewelry Instructor,Multiple Locations,Jewelry Making Crafts Birthday Parties,https://images.activityhero.com/provider_photo/145330/tile/05eb6b7b-c056-49d5-9c4f-5ef853b5ec8b.jpeg,"We teach you how to make Beautiful Jewelry via Classes, Workshops, & Parties. The Jewelry Instructor is here to take you to Jewelry class and to share…read more >",https://www.activityhero.com/biz/the-jewelry-instructor,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,94",86,"m,f",STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Math & Logic,51.21,40.94
906,Camp Tournesol,Multiple Locations,Academics Drama/Theater Language,https://images.activityhero.com/provider_photo/145299/tile/d0221d1c-acad-4ded-8f6c-9f5c2d68b94f.jpg,Academic support to students in French immersion or French schools for students in grades 1 to 6 offered through our Zoom platform. Fun and engaging…read more >,https://www.activityhero.com/biz/camp-tournesol,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5,86",151,"m,f",Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,90.17,49.85
907,"Vantage Point Farm, LLC",Multiple Locations,Adventure/Outdoors Horseback Riding Animals,https://images.activityhero.com/provider_photo/102662/tile/aedf8c3b-7aab-4f4d-ae7b-fdaf9637f072.jpg,"Vantage Point Farm is a multi-award winning, family-owned stable that offers riding lessons, day camps & horse training. Located in NE Tomball, our…read more >",https://www.activityhero.com/biz/vantage-point-farm-llc-59927,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5,86",361,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,49.86,34.67
908,Kids Teach Tech,Multiple Locations,Coding Free Activities Programming,https://images.activityhero.com/provider_photo/145124/tile/458b7e7a-61a2-4562-a148-5b2b96503dba.jpg,Kids Teach Tech is a non-profit organization that empowers youth to seize the technology opportunities of their future. We enable students to become…read more >,https://www.activityhero.com/biz/kids-teach-tech,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,86",581,"m,f",STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Computer Science,73.39,7.38
909,Creative Play for Kids,Multiple Locations,Free Activities Music,https://images.activityhero.com/provider_photo/145267/tile/8986cbf1-7150-485a-874d-b1bc840b2e13.jpg,Creative Play for Kids is an interactive and fun music and movement class now being offered online at no cost for babies and toddlers.,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,86",3040,m,Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,48.62,11.08
910,Mindy Flexer Art School,Multiple Locations,Visual Arts,https://images.activityhero.com/provider_photo/145248/tile/9d0d8d8f-9937-4de3-9313-d17ab748f3eb.jpg,"I’m Mindy Flexer, a professional artist and certified art teacher. I teach art classes at my live-work loft and art studio, the home of Mindy Flexer Art…read more >",https://www.activityhero.com/biz/mindy-flexer-art-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5, 87",231,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,96.19,63.36
911,"Gymboree Play & Music, Thousand Oaks",Multiple Locations,Family Crafts Music,https://images.activityhero.com/provider_photo/125663/tile/7f6f4aa2-2a62-4034-8279-3f8269907053.jpg,"We offer a wide range of play-based classes for infants to experience and explore with mom and dad. Our dynamic classes support social, physical and…read more >",https://www.activityhero.com/biz/gymboree-play-music-thousand-oaks,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5, 87",66,f,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,91,14.71
912,Art History for Kids,Multiple Locations,Drawing and Painting Academic Writing Visual Arts,https://images.activityhero.com/provider_photo/145201/tile/e99d6fe0-97f9-47ad-a791-7a2fd5e787b6.JPG,Activities center around mentor artists . Students learn about famous artists throughout history. Students do reading and writing activities about artists…read more >,https://www.activityhero.com/biz/art-history-for-kids,,94.1,",88",53,f,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,83.32,41.48
913,Look Who's Talking,Multiple Locations,Music Language,https://images.activityhero.com/provider_photo/145194/tile/036b70cd-a6c7-43c1-b813-972e94c5a996.jpeg,"Get an early start exposing your child to language through songs, play, and language development techniques with certified speech-language pathologists! Use…read more >",https://www.activityhero.com/biz/look-who-s-talking,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,88",57,m,Arts,"[['language', 17.11], ['school', 13.16], ['development', 12.5], ['preschool', 12.5], ['teach', 8.55], ['immersion', 8.55], ['spanish', 8.55], ['english', 6.58], ['skill', 6.58], ['valley', 5.92]]",Arts and Design,38.55,4.63
914,Dance Dreams,Multiple Locations,Family Dance,https://images.activityhero.com/provider_photo/145351/tile/146e7c1c-77e9-4cc8-a507-f5f8056403f8.png,"Dance Dreams has been a proud part of Granbury since 2002. At Dance Dreams, our mission is to create a dance-education program to promote strength,…read more >",https://www.activityhero.com/biz/dance-dreams,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5, 87",49,m,Arts,"[['dance', 36.9], ['training', 12.83], ['ballet', 9.63], ['open', 8.56], ['space', 8.02], ['meet', 5.88], ['natural', 5.35], ['toddler', 4.81], ['joy', 4.81], ['west', 3.21]]",Arts and Design,72.57,93.24
915,Chess4Life,Multiple Locations,Gaming Chess,https://images.activityhero.com/provider_photo/144943/tile/6752492c-da32-4d3f-a293-d7731425e47d.jpg,"Parents, are you trying to get some FOCUS time at home to WORK? We have you covered! With our virtual programs, your students can build confidence, learn…read more >",https://www.activityhero.com/biz/chess4life,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,",88",161,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,45.24,23.34
916,Portal Languages - Costa Mesa,Multiple Locations,Language,https://images.activityhero.com/provider_photo/110722/tile/d9ef2e47-825e-4e21-9333-238844a3e42a.jpg,Portal Languages Enrichment program provides a unique opportunity for your children to enjoy a FULL Language Immersion class series and associated foreign…read more >,https://www.activityhero.com/biz/portal-languages-costa-mesa,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"12,89",2040,m,Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,90.72,7.06
917,Jazzylicious Dishez LLC,Multiple Locations,Family Cooking,https://images.activityhero.com/provider_photo/145076/tile/95d1e908-e392-43a9-92d3-ec2f1863119b.jpg,"Jazzylicious Dishez is small catering boutique offering small catered events, personal chef services and teaching events.",,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28,"5,88",66,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,67.99,94.17
918,IMPACT LC,Multiple Locations,General Recreation Online Course Free Activities,https://images.activityhero.com/provider_photo/145064/tile/50115df7-d4af-4fb0-b0be-cd609a4fa7ff.jpg,IMPACT LC is a newly formed nonprofit that organizes FUN!,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",30.2,"5,95",53,m,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,79.83,21.53
919,Hi-Five Sports Chicago,Multiple Locations,Fitness Basketball Sports,https://images.activityhero.com/provider_photo/145060/tile/811cc13d-d377-4666-8e5f-1b6bbc0725ce.JPG,"Our mission is to provide the finest Youth Sports Programs in the Chicagoland area. Although we focus on developing skills, at Hi-Five its more important to…read more >",https://www.activityhero.com/biz/hi-five-sports-chicago-73600,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",34.1,"5,87",57,f,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,52.83,16.68
920,Best In Class Education Center Beaverton,Multiple Locations,Academics Academic Writing Math,https://images.activityhero.com/provider_photo/145025/tile/dd6d4e9c-ae5f-48e5-b73c-38a534e11d7f.JPG,"To help our students stay on track during the coronavirus outbreak, we have launched innovative distance-learning tools.Every student has unique…read more >",https://www.activityhero.com/biz/best-in-class-education-center-73571,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",50.4,"5,87",49,"m,f",STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Math & Logic,63.44,80.17
921,Active Art & Science,Multiple Locations,Online Course Crafts Science,https://images.activityhero.com/provider_photo/145022/tile/da38de8e-c1e0-4868-8430-fe31e1612259.JPG,"Curiosity Club S.T.E.A.M. Fun LabsJoin us online for hands-on fun where you will explore the curious worlds of science, technology, engineering, art and…read more >",https://www.activityhero.com/biz/active-art-science,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",65.3,"5,87",161,"m,f",STEM,"[['fun', 48.56], ['environment', 12.5], ['engage', 11.54], ['hand', 7.21], ['great', 5.29], ['local', 4.81], ['year', 3.85], ['personal', 2.4], ['perfect', 1.92], ['fill', 1.92]]",Math & Logic,94.99,14.23
922,It's A Potsick Education,Multiple Locations,Social Skills Homeschool Crafts,https://images.activityhero.com/provider_photo/143811/tile/5c385dd4-8a20-4d25-9187-f0c503aca0f4.jpg,It’s A Potsick Education is about creating engaging learning experiences that build up curiosity and creative problem solving in all learners. We are…read more >,https://www.activityhero.com/biz/it-s-a-potsick-education,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",69.3,"5,87",4040,"m,f",Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,35.47,94.51
923,Mindful Start Yoga,Multiple Locations,Mindfulness Fitness Yoga,https://images.activityhero.com/provider_photo/145013/tile/812f7e73-da0b-4c2d-ba94-3b8c14c527c5.jpg,"Mindful Start Yoga is a healthy exercise and mind-body movement class, that teaches mindfulness, breathing, kindness, gratitude, patience, curiosity,…read more >",https://www.activityhero.com/biz/mindful-start-yoga,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,"5, 88",6040,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,75.05,4.27
924,SPARK!,Multiple Locations,Free Activities Crafts Computers,https://images.activityhero.com/provider_photo/135129/tile/980c4de1-6213-4b4d-9d49-e4d11c362b84.jpg,OverviewThe SPARK! teaching philosophy is grounded in the mission to ignite the spark of creativity inherent in all children.At SPARK! creativity is defined…read more >,https://www.activityhero.com/biz/spark-70630,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,"5, 88",182,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,40.05,64.57
925,UCSC SWE,Multiple Locations,Coding Programming Science & Technology,https://images.activityhero.com/provider_photo/145065/tile/2512d411-8e7a-481c-b4af-d430690b134a.jpg,"The Society of Women Engineers (SWE) section at the University of California, Santa Cruz is an educational and service organization that empowers women to…read more >",https://www.activityhero.com/biz/ucsc-swe,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",95.1,",89",42,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Computer Science,78.84,1.1
926,EC Kids Fitness & Nutrition,Multiple Locations,Sports Music Cooking,https://images.activityhero.com/provider_photo/145445/tile/db8e2a11-79e0-4e44-8e3f-a34fbc7200c8.PNG,"Join the fun with EC Fitness & Nutrition and help your child reach their infinite potential. If you believe Everything Counts for kids, then you are…read more >",https://www.activityhero.com/biz/ec-kids-fitness-nutrition,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",11,"5,89",142,"m,f",STEM,"[['child', 26.13], ['make', 23.62], ['life', 15.08], ['strive', 9.05], ['potential', 6.03], ['tool', 5.53], ['prepare', 5.03], ['unique', 4.02], ['speak', 3.02], ['tutor', 2.51]]",Computer Science,43.97,59.91
927,"Challenge Island - Katy, TX",Multiple Locations,Engineering Science & Technology Field Trips,https://images.activityhero.com/provider_photo/107925/tile/4c0d56bf-05b7-4c4d-a3a2-05f7662660f6.png,"Challenge Island is an international educational franchise on the forefront of S.T.E.A.M. (Science, Technology, Engineering, Art, and Math) Education and…read more >",https://www.activityhero.com/biz/challenge-island,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",16.9,"5, 88",87,m,STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Math & Logic,88.76,84.96
928,Hi-Five Sports - Littleton,Multiple Locations,Online Course Fitness Sports,https://images.activityhero.com/provider_photo/142445/tile/3aea757d-57c4-4e51-ab4a-ed08f6660962.jpg,"Hi-Five Sports - Littleton is located in Littleton, Colorado and is offering summer camp for kids age 5-8 years old. Hi-Five Sports Camp is dedicated to…read more >",https://www.activityhero.com/biz/hi-five-sports-littleton,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.9,",89",152,m,Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,57.15,4.49
929,Snapology of Gig Harbor,Multiple Locations,Lego Science Preschool,https://images.activityhero.com/provider_photo/133803/tile/ae0c87dd-c745-49fb-9c6f-c6df9979362b.png,"Snapology offers the best STEAM enrichment in the area. We offer camps and workshops year-round, including spring break camps, summer camps, holiday break…read more >",https://www.activityhero.com/biz/snapology-of-gig-harbor,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.6,"12,90",362,f,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,48.89,51.02
930,Color Your World Design Studio,Multiple Locations,Online Course Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/144631/tile/8b84a96e-24ce-47bc-88a2-859fa9dff480.jpg,Color Your World Design Studio offers a variety of youth & adult art education experiences. We thrive on creating opportunities for youth & adults to…read more >,https://www.activityhero.com/biz/color-your-world,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,89",582,f,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,96.59,91.57
931,Taste Buds Kitchen,Multiple Locations,Free Activities Family Cooking,https://images.activityhero.com/provider_photo/144506/tile/c719e8fd-c21a-4051-94b3-b559e2092813.jpg,"Taste Buds Kitchen is a custom-designed Kitchen Event Studio. Taste Buds Kitchen’s mission is to be the top culinary entertainment experience for kids,…read more >",https://www.activityhero.com/biz/taste-buds-kitchen-corporate,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,96",3041,m,Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,64.01,54.45
932,InoBotics,Multiple Locations,Programming Robotics,https://images.activityhero.com/provider_photo/144586/tile/3bf0b180-3ff5-48da-9f89-106d53962240.jpeg,"InoBotics is an elementary, middle and high school robotics program that participates in the VEX Robotics Competition. Our teams are highly competitive…read more >",https://www.activityhero.com/biz/inobotics,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5,88",232,m,STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,30.78,80.73
933,The Cathay School,Multiple Locations,Social Skills Chinese Language,https://images.activityhero.com/provider_photo/110105/tile/05e9f729-d32f-44dd-935c-8fc47c43d252.png,"The Cathay School, formally Washington Cathay Future Center (WCFC) is an internationally recognized educational enrichment center that provides year round…read more >",https://www.activityhero.com/biz/the-cathay-school,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5,88",67,m,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Computer Science,81.25,35
934,Snapology of Wendell,Multiple Locations,Lego Engineering Robotics,https://images.activityhero.com/provider_photo/123599/tile/fdfa46c2-a9d7-48af-bdb6-ae19863c3830.jpg,"At Snapology we believe that children are meant to learn through play. When children are engaged in interactive, hands-on learning activities, their…read more >",https://www.activityhero.com/biz/snapology-of-wendell-67609,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,"5,88",54,m,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,32.25,97.06
935,Mith Factory,Multiple Locations,Mindfulness Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/144549/tile/bcc2252d-fdee-4f16-ad13-75f7ff08b213.jpg,"Mith Factory is an art & wellness studio offering products, workshops and classes to improve and empower creative wellness in our society. I believe... With…read more >",https://www.activityhero.com/biz/mith-factory,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,88",58,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,54.84,26.1
936,Castle Chess,Multiple Locations,Academics Chess Online Course,https://images.activityhero.com/provider_photo/144520/tile/d91c51eb-e7fd-400d-b9d3-a2d955d4429d.jpg,We are Castle Chess. We are the opinionated chess teaching company in the Bay Area with over 50+ locations including some of the most celebrated schools in…read more >,https://www.activityhero.com/biz/castle-chess-73254,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5, 89",50,m,Sports,"[['skill', 32.8], ['develop', 18.52], ['creativity', 14.81], ['social', 7.94], ['chess', 7.94], ['approach', 4.76], ['thinking', 3.7], ['global', 3.7], ['problem', 3.17], ['passion', 2.65]]",Personal Development,60.58,79.78
937,Bach to Rock - Mamaroneck NY,Multiple Locations,Online Course Music Performing Arts,https://images.activityhero.com/provider_photo/102432/tile/7a67cbec-158a-4216-9b14-3cff50009f1b.JPG,Bach To Rock is the Music School for students of all ages. B2R’s unique method is based on the knowledge that students learn best when they join together to…read more >,https://www.activityhero.com/biz/bach-to-rock-59863,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,"5, 89",162,f,STEM,"[['good', 21.43], ['world', 15.08], ['future', 12.7], ['individual', 10.32], ['active', 9.52], ['knowledge', 7.14], ['feature', 6.35], ['change', 6.35], ['improve', 5.56], ['benefit', 5.56]]",Math & Logic,67.83,28.93
938,After School Life,Multiple Locations,Online Course Public Speaking Cartooning,https://images.activityhero.com/provider_photo/144448/tile/8b1baf5f-6935-4cd6-8fd6-d0ff6dc50314.jpg,After School Life is a state non-profit organization that provide varieties of enrichment classes for After School Program and Summer Camp which include but…read more >,https://www.activityhero.com/biz/after-school-life-73229,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,",90",2041,"m,f",STEM,"[['enrichment', 27.84], ['math', 27.84], ['explore', 17.05], ['discover', 6.82], ['summer', 4.55], ['resource', 3.98], ['present', 3.41], ['visual', 2.84], ['choose', 2.84], ['water', 2.84]]",Computer Science,60.1,62.1
939,Neera Dave,Multiple Locations,Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/144481/tile/7d46e0ab-2189-4d73-aca8-47cbb7c04191.jpg,"I am self learnt artist. and since childhood had affinity towards drawing and sketching. My passion for art has motivated me to do oil, acrylic and water…read more >",https://www.activityhero.com/biz/neera-dave-73228,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,90",67,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,44.81,45.56
940,The Coder School La Jolla,Multiple Locations,Coding Online Course Science & Technology,https://images.activityhero.com/provider_photo/130210/tile/10f094af-876f-4461-9bb9-fff001f23600.jpg,Hey super-parent! We're happy you're looking for options to get your kids learning to code. It's SUCH an amazing skill to learn and will help your kids in…read more >,https://www.activityhero.com/biz/the-coder-school-la-jolla,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5, 89",54,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,85.31,71.97
941,Snapology of Arcadia,Multiple Locations,Online Course Lego,https://images.activityhero.com/provider_photo/136396/tile/0a759b14-6787-43a3-9d28-c219b12c922f.jpg,"At Snapology we believe that children are meant to learn through play. When children are engaged in interactive, hands-on learning activities, their…read more >",https://www.activityhero.com/biz/snapology-of-arcadia,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,",90",58,"m,f",STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Computer Science,70.98,53.94
942,Zera Music Company,Multiple Locations,Online Course Guitar Piano,https://images.activityhero.com/provider_photo/144025/tile/b3654579-c52c-464c-9833-077858e7b3a7.jpg,Zera Music Company provides in-home and online music lessons aged 5-95 all over the Dallas-Fort Worth Metroplex. We have instructors ranging in experience…read more >,https://www.activityhero.com/biz/zera-music-company,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"12,91",50,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,88.74,43.06
943,Anahid Syourapian Piano Studio,Multiple Locations,Online Course Piano Music,https://images.activityhero.com/provider_photo/145103/tile/139ea45b-3520-4bb8-b105-85d648f3fbb2.jpeg,"At Anahid Syourapian Piano Studio, students are inspired to love music and are encouraged to pursue excellence in every area of their piano studies. The…read more >",https://www.activityhero.com/biz/anahid-syourapian-piano-studios,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,90",162,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,88.59,12.83
944,Creatively Wild Art Studio,Multiple Locations,Drawing and Painting Visual Arts Cartooning,https://images.activityhero.com/provider_photo/131029/tile/d753ce4d-ada3-41a5-b267-809aa33ea5d0.jpg,"Creatively WILD Art Studio was founded in 2009 by acclaimed international artist DM Wilding, celebrating 10 years in the heart of Dumbo's vibrant creative…read more >",https://www.activityhero.com/biz/creatively-wild-art-studio,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,97",4041,"m,f",Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,56.31,57.93
945,"Jacquelyn M. Johnson, LLC",Multiple Locations,Music Performing Arts,https://images.activityhero.com/provider_photo/111235/tile/e9f52e5c-f26b-42f4-a8fd-87cbf04e6858.jpg,"In these changing times, we need to adjust to not only helping each other, but helping the growing string student. So many times, I have heard from students…read more >",https://www.activityhero.com/biz/jacquelyn-m-johnson-llc,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5,89",6041,m,STEM,"[['build', 22.54], ['focus', 16.18], ['confidence', 11.56], ['time', 10.4], ['start', 8.67], ['technique', 8.67], ['encourage', 6.94], ['fundamental', 5.78], ['commit', 5.78], ['house', 3.47]]",Math & Logic,64.88,12.4
946,The SLP Guide,Multiple Locations,Online Course Learning Disabilities Special Needs,https://images.activityhero.com/provider_photo/110594/tile/51b02c81-397a-4a7f-9ea4-445932fbfc2a.JPG,The SLP Guide is now enrolling for our Online Summer Speech Therapy Classes that advance your child's speech and language skills by focusing on Social Skill…read more >,https://www.activityhero.com/biz/the-slp-guide,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5,89",183,m,STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Math & Logic,54.24,68.35
947,Dr Owl Academy,Multiple Locations,Online Course Academics Math,https://images.activityhero.com/provider_photo/115354/tile/445666f7-9523-4c47-a68d-88f782f9f182.jpg,"Welcome to Dr Owl Academy - a place for kids to explore, learn and grow. We are a community of educators, parents, and students focused on academic…read more >",https://www.activityhero.com/biz/dr-owl-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28,"5,89",43,f,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Math & Logic,95.55,79.34
948,Ednora,Multiple Locations,Online Course Programming,https://images.activityhero.com/provider_photo/109419/tile/421d811f-400e-4f65-9a29-5fd89338b3ad.jpg,"Structured Live Hands-on Online Coding Classes and Camps for Kids Taught by Students and Grads of Top Tier Universities (such as MIT, Cal). Learn coding…read more >",https://www.activityhero.com/biz/ednora,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",30.2,"5,89",143,f,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Computer Science,96.74,45.7
949,Acting with Alisha,Multiple Locations,Dance Performing Arts After School Care,https://images.activityhero.com/provider_photo/103976/tile/3be9a3ec-5271-4a56-9068-c3539716b2be.jpg,Is your child struggling with their confidence?Is it hard for them to be excited about their auditions?Are they super excited when they have a callback or…read more >,https://www.activityhero.com/biz/acting-with-alisha,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",34.1,"5, 90",88,m,STEM,"[['educational', 21.05], ['provide', 15.79], ['engineering', 11.84], ['science_technology', 9.87], ['international', 8.55], ['challenge', 8.55], ['steam', 7.89], ['service', 5.92], ['tutoring', 5.26], ['people', 5.26]]",Math & Logic,43.38,93.19
950,Food Explorers Club,Multiple Locations,Science Cooking,https://images.activityhero.com/provider_photo/101237/tile/0f2dd96b-987b-495a-99bb-2e8164885d8f.JPG,"Real Food Cooking and Baking classes have never been more enjoyable, informative, and nutritious! Our after-school cooking class provides a perfect blend of…read more >",https://www.activityhero.com/biz/diets-and-life,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",50.4,"5, 90",153,m,STEM,"[['kid', 47.29], ['tech', 9.36], ['technology', 8.87], ['teen', 8.37], ['parent', 8.37], ['robotic', 6.4], ['call', 3.45], ['business', 2.96], ['matter', 2.46], ['unique', 2.46]]",Math & Logic,66.22,63.31
951,Theatre 360,Multiple Locations,Voice Drama/Theater Dance,https://images.activityhero.com/provider_photo/145209/tile/f5c267a0-ccdd-4c5d-aba9-498c69da2a55.png,Theatre 360 is a children's theatre group that is dedicated to providing theatre arts education and performance opportunities to children and teens of all…read more >,https://www.activityhero.com/biz/8027-theatre-360-pasadena-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",65.3,",91",363,m,Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,56.95,23.86
952,Bodhi Kid,"Online - Menlo Park, CA",Mindfulness Family Yoga,https://images.activityhero.com/provider_photo/144529/tile/163b5e80-4dec-4357-b75d-c400255be094.jpg,"A Bodhi Kid knows how to be their Best-Self. From cultivating resilience and courage to sparking kindness and joy, our evidence-based yoga classes help…read more >",https://www.activityhero.com/biz/bodhi-kid,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",69.3,"5,91",583,m,STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Computer Science,50.89,30.06
953,M & M Arts,"Oak Knoll Elementary, Menlo Park - Menlo Park, CA",Dance Music Martial Arts,https://images.activityhero.com/provider_photo/135033/tile/d9967b54-c038-4c8b-82b9-e9ea52ff817d.jpg,"Hi, my name is Megha. I founded Music & Movement Arts in order to share my passion for music and movement through education and performance. In 2017, I…read more >",https://www.activityhero.com/biz/m-m-arts,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,"5, 90",3042,"m,f",Arts,"[['music', 38.76], ['lesson', 17.7], ['rock', 8.13], ['group', 6.7], ['private', 6.7], ['piano', 5.74], ['movement', 5.26], ['voice', 4.78], ['give', 3.35], ['act', 2.87]]",Arts and Design,38.08,14.25
954,Association for India's Development,Multiple Locations,Mindfulness Environmental,https://images.activityhero.com/provider_photo/132749/tile/6b5a760d-9c34-4ed9-8ba9-c7492d715c58.png,"Association for India's Development (AID) is a volunteer movement committed to promoting sustainable, equitable and just development. In solidarity with…read more >",https://www.activityhero.com/biz/association-for-india-s-development,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",77,",91",233,m,Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,92.44,12.75
955,Training Space,"Main Location - Palo Alto, CA",Fitness Gymnastics Sports,https://images.activityhero.com/provider_photo/122951/tile/13fc1f16-47a7-4de5-8a74-c18ef4eac72c.jpg,OUR PERSONAL TRAINERS ARE SELECTED AND DEVELOPED SPECIFICALLY TO PROVIDE THE BEST PROGRAMS THAT ARE DESIGNED TO ADAPT TO YOUR LIFE AND YOUR GOALS. WE…read more >,https://www.activityhero.com/biz/training-space,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",95.1,"12,92",68,f,STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,70.42,0.49
956,Huntington Learning Center,"Main Location - Pleasanton, CA",Math Academics Tutoring,https://images.activityhero.com/provider_photo/119648/tile/4e2dabd9-5971-42be-aa06-635b55c37570.jpg,Huntington Learning Center is the nation’s longest-running supplemental education services provider. They have been providing Premier education services for…read more >,https://www.activityhero.com/biz/huntington-learning-center-66693,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",11,"5,91",55,"m,f",Sports,"[['provide', 45.0], ['opportunity', 15.5], ['full', 9.0], ['studio', 8.0], ['service', 6.5], ['enjoy', 5.5], ['group', 4.0], ['karate', 3.5], ['game', 1.5], ['court', 1.5]]",Personal Development,39.84,19.41
957,Happy Bear Learning,"Main Location - Fremont, CA",Preschool Academics After School Care,https://images.activityhero.com/provider_photo/118408/tile/58df7d98-653c-4418-8e70-5e1693ecdfa2.jpg,"Our preschool specializes in providing a unique learning experience for children with individualized approach based on each child's abilities, skills &…read more >",https://www.activityhero.com/biz/happy-bear-learning,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",16.9,"5,98",59,"m,f",STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Math & Logic,62.04,18.35
958,Sparkiverse Labs,Multiple Locations,Robotics Programming Science & Technology,https://images.activityhero.com/provider_photo/115707/tile/a93db3a5-f819-48d8-8ca0-45e2e37e28bc.jpg,"Sparkiverse Labs is an education company committed to providing hands-on, engaging lessons to immerse young girls and boys in the worlds of Science,…read more >",https://www.activityhero.com/biz/sparkiverse-labs,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.9,"5,90",51,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,86.46,26.1
959,Tekhkids,"Main Location - Concord, CA",Programming Computers Science & Technology,https://images.activityhero.com/provider_photo/112656/tile/9bb988e2-d882-48fa-8784-a96508f21a99.JPG,TEKHKIDS was started with the main goal of helping kids develop an interest in computer software and hardware engineering areas. We have developed…read more >,https://www.activityhero.com/biz/tekhkids,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28.6,"5,90",163,"m,f",STEM,"[['community', 26.09], ['organization', 16.91], ['found', 12.56], ['goal', 8.7], ['serve', 8.21], ['work', 7.73], ['train', 6.28], ['nonprofit', 6.28], ['design', 4.35], ['league', 2.9]]",Math & Logic,39.45,72.83
960,Best Coast Showcase,Multiple Locations,Adventure/Outdoors Football Sports,https://images.activityhero.com/provider_photo/111992/tile/92bea562-e1d1-4cc0-9971-8eeb4b917671.png,Non-contact youth and high school football camps run by former collegiate and professional athletes.,,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",9,"5,90",2042,"m,f",STEM,"[['student', 34.39], ['high', 22.75], ['quality', 19.05], ['elementary', 6.88], ['middle', 6.35], ['rich', 2.65], ['development', 2.65], ['care', 2.12], ['teenager', 1.59], ['expert', 1.59]]",Computer Science,40.81,54.71
961,Holy Redeemer Lutheran Church,"Main Location - Newark, CA",Lutheran Christian Religious,https://images.activityhero.com/provider_photo/99823/tile/6ac567c3-31cb-4f37-9ae6-bf55bcfd7351.jpg,"HRLC VBS 2017: Maker Fun Factory Invites Children to Maker Fun Factory VBS: Created by God, Built for a Purpose. Holy Redeemer Lutheran Church is proud to…read more >",https://www.activityhero.com/biz/holy-redeemer-lutheran-church,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",14.9,"5,90",68,"m,f",STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Computer Science,50.65,64.1
962,KOPA BASKETBALL,Multiple Locations,Basketball Sports,https://assets.activityhero.com/images/featured/tile/placeholder-2.jpg,"K.O.P.A. BASKETBALL CAMP is a summertime sports program that targets young “ballers,” from grades 2 thru 5th and 6th thru 10th grades teaching the…read more >",https://www.activityhero.com/biz/kopa-basketball,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",25.9,"5, 91",55,"m,f",STEM,"[['young', 23.33], ['science', 17.14], ['girl', 15.24], ['grade', 11.43], ['provide', 10.0], ['boy', 9.52], ['lab', 3.81], ['woman', 3.81], ['spark', 3.33], ['exceptional', 2.38]]",Math & Logic,59.04,85.26
963,Menlo College Wrestling,"Main Location - Atherton, CA",Sports Wrestling,https://images.activityhero.com/provider_photo/98850/tile/7c3f81d9-9c65-47c5-8cbf-86844ef08a80.PNG,"Menlo College Wrestling is a varsity sport at Menlo College. We have a men's and women's team, both of which have a consistent record of placing highly at…read more >",https://www.activityhero.com/biz/menlo-college-wrestling,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.6,"5, 91",59,m,Sports,"[['sport', 28.24], ['offer', 24.12], ['variety', 11.76], ['facility', 8.24], ['place', 5.88], ['fence', 4.71], ['staff', 4.71], ['craft', 4.12], ['entertainment', 4.12], ['wide', 4.12]]",Personal Development,86.95,83.53
964,Studio Desi,"Main Location - Fremont, CA",Crafts Drawing and Painting Visual Arts,https://images.activityhero.com/provider_photo/98834/tile/9f5f7ee3-e662-44c6-9b85-eec2db41e251.JPG,Studio Desi offers various types of classes for children (age 3-11) like - Basic shapes and forms- Water Color paintings- Crafting and model making-…read more >,https://www.activityhero.com/biz/studio-desi,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27,",92",51,m,Arts,"[['art', 53.8], ['studio', 14.85], ['creative', 9.24], ['artist', 7.92], ['paint', 3.3], ['draw', 2.97], ['learner', 2.64], ['fine', 2.31], ['wellness', 1.65], ['technical', 1.32]]",Arts and Design,73.68,9.49
965,Gallant Academy,"Main Location - Palo Alto, CA",Science & Technology Leadership Business,https://images.activityhero.com/provider_photo/98631/tile/f2b5e87d-ff10-417e-8550-167365558c22.jpg,"This summer, we crafted three sessions of two-week long summer camps that will allow students to structure their camp to include both STEM subjects, as well…read more >",https://www.activityhero.com/biz/gallant-academy-tech-business-leadership-summer-camp,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",29.2,"5,92",163,f,Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,63.83,32.07
966,Action Karate Quakertown,Multiple Locations,Martial Arts,https://images.activityhero.com/provider_photo/257/tile/open-uri20130516-2-13jl0rg,Action Karate offers age-specific martial arts classes. Our professionally trained instructors provide the ultimate martial arts learning experience to all…read more >,https://www.activityhero.com/biz/action-karate,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",33.1,"5, 91",4042,f,STEM,"[['experience', 28.51], ['learning', 14.91], ['stem', 12.28], ['hand', 9.65], ['unique', 8.33], ['combine', 7.89], ['age', 6.58], ['develop', 4.39], ['imagination', 3.95], ['dynamic', 3.51]]",Computer Science,34.32,38.62
967,Community School of Music and Arts (CSMA),"Community School of Music and Arts (CSMA) at Finn Center - Mountain View, CA",Visual Arts Drawing and Painting Sculpture,https://images.activityhero.com/provider_photo/97072/tile/8b111f63-4205-4c63-9f45-44b10e17e352.jpg,Every day we see the power of the arts to inspire people to discover their passions and become fully engaged in the world around them.CSMA offers year-round…read more >,https://www.activityhero.com/biz/community-school-of-music-and-arts-csma,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",49.4,",92",6042,m,STEM,"[['age', 46.46], ['offer', 18.69], ['level', 15.66], ['beginner', 4.55], ['inspire', 4.04], ['foundation', 2.53], ['garden', 2.02], ['daily', 2.02], ['elite', 2.02], ['gain', 2.02]]",Math & Logic,65.5,19.39
968,Maker Nexus,"Maker Nexus - Sunnyvale, CA",Virtual Camp Fair Flexible Booking Woodworking Industrial Arts Crafts,https://images.activityhero.com/provider_photo/125000/tile/bae57535-dc48-4d1f-83fc-9c97111635fb.jpg,"We grow makers through education, practical experience, and fostering innovation.Maker Nexus is a 501(c)3 nonprofit makerspace working to increase the…read more >",https://www.activityhero.com/biz/maker-nexus,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"12,93",184,m,STEM,"[['create', 30.54], ['online', 19.76], ['world', 13.77], ['live', 9.58], ['weekly', 5.39], ['maker', 4.79], ['leader', 4.79], ['curiosity', 4.19], ['free', 3.59], ['culture', 3.59]]",Math & Logic,43.36,90.98
969,Silicon Valley Fencing Center,"Los Altos - Los Altos, CA",Sports Fencing,https://images.activityhero.com/provider_photo/99679/tile/90d94a63-9017-4726-9461-0b3e6584d06c.jpg,Silicon Valley Fencing Center is the San Francisco Bay Area's newest fencing club. SVF offers classes and programs in modern Olympic foil fencing for…read more >,https://www.activityhero.com/biz/52863-silicon-valley-fencing-center-los-altos-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",68.3,"5,92",44,m,Sports,"[['club', 24.2], ['soccer', 17.83], ['team', 14.65], ['year_round', 10.19], ['basketball', 7.01], ['ca', 6.37], ['dedicate', 5.73], ['north', 5.1], ['clinic', 5.1], ['swim', 3.82]]",Personal Development,51.92,67.46
970,Learning Center,Multiple Locations,Flexible Booking Academics Programming Science & Technology,https://images.activityhero.com/provider_photo/136843/tile/eca9821e-a016-4345-842b-a1c6652ea404.png,"Learning Center offers year-round individualized tutoring in a small-group setting in English and Math. We offer SAT/HSPT prep, year-round coding,…read more >",https://www.activityhero.com/biz/learning-center-64739,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",64.3,"5,99",144,m,STEM,"[['learn', 54.17], ['code', 22.69], ['interactive', 7.87], ['goal', 3.24], ['peninsula', 2.31], ['concept', 2.31], ['engage', 1.85], ['curious', 1.85], ['balance', 1.85], ['snapology', 1.85]]",Math & Logic,71.75,24.04
971,Athena Academy,"Main Location - Palo Alto, CA",Dyslexia Academics Drums,https://images.activityhero.com/provider_photo/98236/tile/ee44c658-1e93-45ff-8550-32f6b4349ed3.jpg,"Summer at Athena Academy is proud to offer a week long skills program for dyslexic students entering grades 1 – 8. This program is specifically designed,…read more >",https://www.activityhero.com/biz/athena-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",76,"5,91",89,"m,f",STEM,"[['student', 41.94], ['academic', 12.9], ['debate', 7.74], ['support', 7.1], ['speech', 6.45], ['modern', 5.81], ['public', 5.81], ['offer', 4.52], ['week_long', 3.87], ['impact', 3.87]]",Computer Science,87.28,23.95
972,Kids Dojo,Multiple Locations,Best of ActivityHero 2018 Best of ActivityHero 2016 Best of ActivityHero 2017 Sports Biking Adventure/Outdoors,https://images.activityhero.com/provider_photo/124388/tile/fa4be9d0-8b12-4798-b3e8-f5a5386ff77d.JPG,"Kids Dojo is dedicated to building confidence through mountain biking. Our mission is to help kids be active, confident and healthy. We believe that…read more >",https://www.activityhero.com/biz/kids-dojo,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",94.1,"5,91",154,m,Arts,"[['mission', 39.26], ['theatre', 9.82], ['promote', 9.2], ['performance', 7.36], ['gymnastic', 7.36], ['healthy', 6.75], ['offer', 6.13], ['training', 4.91], ['lead', 4.91], ['chef', 4.29]]",Arts and Design,37.13,65.41
973,KMVT,Multiple Locations,Digital Media Photography and Video Computer Animation,https://images.activityhero.com/provider_photo/100120/tile/0b9f758a-8332-4cce-88d5-091dc5fe84b1.jpg,"KMVT 15 is a non-profit public access station that provides coverage for Mountain View, Cupertino, Los Altos and Sunnyvale. Throughout the year, KMVT 15…read more >",https://www.activityhero.com/biz/4770-kmvt-video-claymation-camps-mountain-view-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",10,"5,91",364,f,STEM,"[['teach', 37.89], ['professional', 13.68], ['teacher', 10.53], ['instruction', 10.0], ['run', 6.84], ['coach', 5.26], ['parent', 4.21], ['background', 4.21], ['basic', 3.68], ['video', 3.68]]",Computer Science,75.32,34.18
974,DesignX,Multiple Locations,Sewing Industrial Arts Fashion Design,https://images.activityhero.com/provider_photo/100978/tile/5c53392f-5668-44a0-b3f2-10c68b0e2db4.jpg,"DesignX offer one-of-a-kind programs in design to unleash and nurture creativity in kids ages 7y-16y in Los Altos, CA. Their programs are offered year…read more >",https://www.activityhero.com/biz/designx,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",15.9,"5,91",584,"m,f",Arts,"[['program', 29.17], ['focus', 14.88], ['creative', 9.52], ['workshop', 9.52], ['home', 7.14], ['nurture', 7.14], ['people', 6.55], ['session', 5.36], ['children', 5.36], ['lego', 5.36]]",Arts and Design,78.28,40.47
975,Academy of Fencing Masters,Multiple Locations,Martial Arts Sports Fencing,https://images.activityhero.com/provider_photo/23639/tile/26486292-e8e3-402b-b88c-582c3a526f99.jpg,We believe in training that combines intensive workouts and exercise with the incredible joy of learning and fun of the game. Our camps and classes engage…read more >,https://www.activityhero.com/biz/18626-fencing-camps-and-classes-campbell-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",26.9,"5, 92",3043,"m,f",STEM,"[['design', 29.56], ['game', 18.87], ['age', 17.61], ['programming', 8.18], ['computer', 6.92], ['offering', 5.66], ['virtual', 4.4], ['kid', 3.77], ['provide', 2.52], ['support', 2.52]]",Computer Science,33.19,24.29
976,Studio Kicks Palo Alto,Multiple Locations,Fitness Sports Martial Arts,https://images.activityhero.com/provider_photo/112028/tile/f6d8d7ec-d5e0-4de1-bce6-888f9ac39415.jpeg,"Going on 16 years, Studio Kicks is a local community favorite!We are a family fitness training center offering Martial Arts instruction for children 4 years…read more >",https://www.activityhero.com/biz/2148-studiokicks-palo-alto-ca,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",27.6,"5, 92",234,"m,f",Sports,"[['adult', 27.78], ['family', 26.11], ['martial_art', 15.0], ['large', 6.67], ['self_defense', 5.56], ['part', 5.56], ['passion', 3.33], ['baby', 3.33], ['core', 3.33], ['mountain', 3.33]]",Personal Development,91.11,28.18
977,Table Tennis America,"Main Location - Fremont, CA",Table Tennis Sports,https://images.activityhero.com/provider_photo/100206/tile/33169308-c9b2-4034-bede-a29d5290415d.JPG,"Table Tennis America is a full service table tennis facility in Fremont, CA that was founded with the goal of making table tennis a mainstream sport in…read more >",https://www.activityhero.com/biz/table-tennis-america,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",28,",93",69,"m,f",Sports,"[['play', 28.39], ['tennis', 14.19], ['player', 12.26], ['place', 12.26], ['group', 8.39], ['top', 7.1], ['berkeley', 6.45], ['bring', 4.52], ['st', 3.23], ['visit', 3.23]]",Personal Development,35.35,33.23
978,Mission Hoops Academy,"Main Location - Fremont, CA",Party Places Basketball Sports,https://images.activityhero.com/provider_photo/111359/tile/7643c726-6cb8-4c93-91fa-f74df8848a4d.png,"Mission Hoops Academy offers camps to kids, during the summer break in Fremont, California. We provide a week long basketball camp focusing on fundamentals,…read more >",https://www.activityhero.com/biz/mission-hoops-academy,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",30.2,"5,93",56,"m,f",Sports,"[['summer', 43.31], ['camp', 37.58], ['break', 4.78], ['baseball', 4.14], ['spring', 3.18], ['california', 2.23], ['holiday', 1.27], ['enrich', 1.27], ['winter', 1.27], ['custom', 0.96]]",Personal Development,65.53,71.81
979,Hello World,"Main Location - Mountain View, CA",Engineering Programming Computers,https://images.activityhero.com/provider_photo/109596/tile/4206130e-4b6a-42b0-a9c7-3676ab29f54a.jpg,Hello World offers a rigorous catalog of project-based learning experiences centered on students mastering concepts in emerging technology fields. Our…read more >,https://www.activityhero.com/biz/hello-world,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",34.1,"5, 92",60,"m,f",STEM,"[['base', 30.29], ['program', 21.14], ['project', 13.71], ['yoga', 9.14], ['lead', 5.71], ['innovative', 4.57], ['nature', 4.57], ['develop', 4.0], ['teach', 4.0], ['workshop', 2.86]]",Math & Logic,79.09,8.18
980,First Focus Learning Centers,"Main Location - Mountain View, CA",Academics Reading Creative Writing,https://images.activityhero.com/provider_photo/106084/tile/35db3263-54a5-4d08-b6c2-9d60cc7808bd.png,"First Focus specializes in Reading, Writing and Math for students from Kindergarten through the 6th grade. We teach Reading, Writing, and Math in a small…read more >",https://www.activityhero.com/biz/first-focus-learning-centers,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC",50.4,",93",52,"m,f",Arts,"[['offer', 27.5], ['locate', 20.62], ['small', 10.62], ['write', 9.38], ['writing', 6.25], ['begin', 5.62], ['specialize', 5.62], ['fashion', 5.0], ['kindergarten', 5.0], ['read', 4.38]]",Arts and Design,32.08,68.27