-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5k-filers-financial-activity-2013.json
2079 lines (2079 loc) · 59.1 KB
/
5k-filers-financial-activity-2013.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "ACTION NOW INITAITIVE",
"id": "1370070",
"quarters": [
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 200000,
"pucLobbying": 0,
"lobbiedOn": "Support to organizations educating and advocating for sugary beverage warning lables"
}
]
},
{
"name": "ADP, INC. (ON BEHALF OF ITS TAX CREDIT SERVICES BUSINESS)",
"id": "1338227",
"quarters": [
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 12000,
"pucLobbying": 0,
"lobbiedOn": "FRANCHISE TAX BOARD, BUSINESS TRANSPORTATION AND HOUSING, GOVERNOR'S OFFICE AND STATE LEGISLATURE REGARDING: AB 9, AB 28, AB 576 AND SB 133."
}
]
},
{
"name": "AFFORDABLE HOME CARE AGENCY",
"id": "1315240",
"quarters": [
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 8700,
"pucLobbying": 0,
"lobbiedOn": "AB 1863"
},
{
"quarter": "4th",
"session": "2013-2014",
"paymentsToInfluence": 14000,
"pucLobbying": 0,
"lobbiedOn": "ASSEMBLY MEMBER LOWENTHAL'S OFFICE RE: EMPLOYMENT AGENCY LICENSING"
},
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 10000,
"pucLobbying": 0,
"lobbiedOn": "AB 241, 1217"
}
]
},
{
"name": "AMERICAN BEVERAGE ASSOCIATION",
"id": "1325932",
"quarters": [
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 131466.31,
"pucLobbying": 0,
"lobbiedOn": "SB 622, 1000"
},
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 795415.03,
"pucLobbying": 0,
"lobbiedOn": "SB 622"
},
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 30500,
"pucLobbying": 0,
"lobbiedOn": "SB 622"
}
]
},
{
"name": "ARGYROS, ANASTASIOS",
"id": "1358367",
"quarters": [
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 6500,
"pucLobbying": 0,
"lobbiedOn": "AB 1412; SB 209"
},
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 10000,
"pucLobbying": 0,
"lobbiedOn": "SB 209"
}
]
},
{
"name": "B & H EDUCATION",
"id": "1366165",
"quarters": [
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 10000,
"pucLobbying": 0,
"lobbiedOn": "AB 1153"
}
]
},
{
"name": "BALDWIN & SONS",
"id": "1357564",
"quarters": [
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 5000,
"pucLobbying": 0,
"lobbiedOn": "Check sent to Building Industry Association of San Diego in financial support of the San Diego Regional Water Quality Board Storm Water MS4 permit research and lobbying effort."
}
]
},
{
"name": "BELLUS ACADEMY",
"id": "1366164",
"quarters": [
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 8000,
"pucLobbying": 0,
"lobbiedOn": "AB 1153"
},
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 10000,
"pucLobbying": 0,
"lobbiedOn": "AB 1153"
}
]
},
{
"name": "BETTER LIVING SACRAMENTO",
"id": "1338297",
"quarters": [
{
"quarter": "4th",
"session": "2013-2014",
"paymentsToInfluence": 7000,
"pucLobbying": 0,
"lobbiedOn": "ASSEMBLY MEMBER LOWENTHAL'S OFFICE RE: EMPLOYMENT AGENCY LICENSING"
},
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 8000,
"pucLobbying": 0,
"lobbiedOn": "AB 241, 1217"
},
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 8750,
"pucLobbying": 0,
"lobbiedOn": "AB 241, 322, 1217"
}
]
},
{
"name": "BIKES BELONG FOUNDATION",
"id": "1357402",
"quarters": [
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 3456.33,
"pucLobbying": 0,
"lobbiedOn": "Governor's state budget FY2013-14: Active Transportation Program and Cap-and-trade auction revenue allocation; Policy Bills: AB-1194, AB-1051, AB-1002, AB-1290"
},
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 3537.01,
"pucLobbying": 0,
"lobbiedOn": "Governor's state budget FY2013-14: Active Transportation Program and Cap-and-trade auction revenue allocation Policy Bills: AB-1194, AB-1051, AB-1002, AB-1290"
},
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 0,
"pucLobbying": 0,
"lobbiedOn": "Governor's budget for FY2013-14: section 403 - Active Transportation Program, Cap-and-trade auction revenue allocation Policy bills - AB-1194, AB-1051, AB-1002"
}
]
},
{
"name": "BROOKFIELD DEL MAR BUILDERS, INC.",
"id": "1357352",
"quarters": [
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 5000,
"pucLobbying": 0,
"lobbiedOn": "Indirect payment to influence: Made to San Diego Building Industry Association 'Stormwater Rewrite Coalition 2013' regarding California EPA/San Diego Regional Water Quality Control Board stormwater regulations."
}
]
},
{
"name": "BROTHERTON, TOM",
"id": "1356220",
"quarters": [
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 10000,
"pucLobbying": 0,
"lobbiedOn": "AB 901, 1203; SB 209"
}
]
},
{
"name": "BUILDING INDUSTRY ASSOCIATION OF SAN DIEGO COUNTY",
"id": "1357581",
"quarters": [
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 73500,
"pucLobbying": 0,
"lobbiedOn": "San Diego Regional Water Quality Control Board (Division 9) Municipal Stormwater Permit"
}
]
},
{
"name": "CALGUNS FOUNDATION; THE",
"id": "1361753",
"quarters": [
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 48188.45,
"pucLobbying": 0,
"lobbiedOn": "AB 48 AB 169 AB 170 AB 180 AB 231 AB 500 AB 538 AB 539 AB 711 AB 1131 SB 38 SB 47 SB 53 SB 108 SB 127 SB 293 SB 299 SB 363 SB 374 SB 396 SB 475 SB 567 SB 683 SB 755 SJR 1"
}
]
},
{
"name": "CALIFORNIA CONGRESS OF PARENTS, STUDENTS AND TEACHERS, INC.",
"id": "1299896",
"quarters": [
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 34137.47,
"pucLobbying": 0,
"lobbiedOn": "See attachment 'Part 1'"
},
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 26565.77,
"pucLobbying": 0,
"lobbiedOn": "AB 59, 135, 188, 230, 273, 275, 276, 420, 430, 455, 558, 684, 724, 939, 951, 959, 1076, 1178, 1283, 1338, 1432, 1518, 1764, 2057, 2110, 2111, 2167, 2449; AJR 5, 31; SB 47, 108, 192, 231, 316, 343, 396, 432, 501, 524, 596, 660, 738, 837, 840, 909, 949, 1055, 1082, 1099, 1107, 1165, 1177, 1221"
},
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 28738.53,
"pucLobbying": 0,
"lobbiedOn": "AB 18, 59, 88, 166, 174, 188, 273, 275, 309, 320, 346, 455, 484, 547, 558, 684, 700, 899, 913, 951, 1032, 1041, 1076, 1133, 1152, 1159, 1178, 1186, 1266, 1338; ACR 45; HR 14; SB 69, 126, 158, 177, 192, 231, 330, 343, 344, 368, 430, 488, 501, 505, 528, 555, 596, 696, 738, 768, 800; SCR 29"
},
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 19957.38,
"pucLobbying": 0,
"lobbiedOn": "AB 56, 276, 290, 375, 420, 422, 626, 724, 939, 959, 1283; ABX1 1; AJR 5; SB 47, 49, 108, 201, 247, 300, 316, 396, 432, 524, 571, 660; SBX1 1; SCA 3"
}
]
},
{
"name": "CALIFORNIA ENVIRONMENTAL JUSTICE ALLIANCE",
"id": "1361666",
"quarters": [
{
"quarter": "8th",
"session": "2013-2014",
"paymentsToInfluence": 61809.19,
"pucLobbying": 0,
"lobbiedOn": "See attachment 'Part 1'"
},
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 91461.87,
"pucLobbying": 15739,
"lobbiedOn": "AB 1330, 69, 543, 1763, 2145, 2253; SB 193, 498, 605, 812, 1019, 1121, 1139, 1204, 1275, 1300, 1371, 1414; Environmental Protection Agency: OEHHA CalEnviroScreen development; Public Utilities Commission: Long-Term Procurement Plan, SB 43 green tariff shared renewables proceeding, AB 327 development of successor to existing net metering tariffs, defining disadvantaged communities, rate reform."
},
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 89723.26,
"pucLobbying": 0,
"lobbiedOn": "AB 1330, 1634, 1763, 2145, 543; SB 498, 712, 812, 1121, 1125, 1132, 1156, 1275, 1300, 1371, 1414, 535; Public Utilities Commission: Long-Term Procurement Plan (2014), SB 43 implementation, Green Tariff Shared Renewables Program, San Diego Gas & Electric Procurement Plan; Workforce Investment Board: Proposition 39 implementation; Environmental Protection Agency: OEHHA CalEnviroScreen development."
},
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 52603.68,
"pucLobbying": 0,
"lobbiedOn": "AB 1330, 177, 543; SB 1156, 1132, 1371, 812, 1121, 1019, 1292, 43; Environmental Protection Agency: OEHHA CalEnviroScreen development; Public Utilities Commission: Long-Term Procurement Plan (2012 & 2014), San Diego Gas & Electric peaker plant proceeding."
},
{
"quarter": "4th",
"session": "2013-2014",
"paymentsToInfluence": 5301.29,
"pucLobbying": 0,
"lobbiedOn": "AB 177, 1329, 1330; SB 811; Environmental Protection Agency: OEHHA CalEnviroScreen development; Public Utilities Commission: Long-Term Procurement Plan, San Diego Gas & Electric peaker plant proceeding, SB 43 proceeding."
},
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 42587.24,
"pucLobbying": 0,
"lobbiedOn": "AB 1330, 327, 145, 543, 26, 177, 1014, 7, 1329; SB 4, 43, 54, 605, 804, 811; Environmental Protection Agency: OEHHA CalEnviroScreen development; Public Utilities Commission: Long-Term Procurement Plan, San Diego Gas & Electric peaker plant proceeding, SB 32 proceeding, storage proceeding."
}
]
},
{
"name": "CALIFORNIA HOMELESS AND HOUSING COALITION",
"id": "1357423",
"quarters": [
{
"quarter": "8th",
"session": "2013-2014",
"paymentsToInfluence": 0,
"pucLobbying": 0,
"lobbiedOn": "None this period."
},
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 16336.44,
"pucLobbying": 0,
"lobbiedOn": "SB 391"
},
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 38088.9,
"pucLobbying": 0,
"lobbiedOn": "SB 391"
},
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 33914.07,
"pucLobbying": 0,
"lobbiedOn": "SB 391"
},
{
"quarter": "4th",
"session": "2013-2014",
"paymentsToInfluence": 36165.95,
"pucLobbying": 0,
"lobbiedOn": "SB 391"
},
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 50420.44,
"pucLobbying": 0,
"lobbiedOn": "SB 391"
},
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 43877.9,
"pucLobbying": 0,
"lobbiedOn": "SB 391"
},
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 30414.42,
"pucLobbying": 0,
"lobbiedOn": "SB 391"
}
]
},
{
"name": "CALIFORNIA PUBLIC SAFETY VOTER GUIDE, A PROJECT OF POLICIES ISSUES INSTITUTE",
"id": "1368669",
"quarters": [
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 64815.8,
"pucLobbying": 0,
"lobbiedOn": "SB 1367"
}
]
},
{
"name": "CALIFORNIANS AGAINST HIGHER OIL TAXES",
"id": "1363999",
"quarters": [
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 27180,
"pucLobbying": 0,
"lobbiedOn": "SB 1017"
},
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 99114.51,
"pucLobbying": 0,
"lobbiedOn": "SB 1017"
}
]
},
{
"name": "CALIFORNIANS AGAINST HIGHER TAXES",
"id": "1319860",
"quarters": [
{
"quarter": "8th",
"session": "2013-2014",
"paymentsToInfluence": 5036.33,
"pucLobbying": 0,
"lobbiedOn": "AB 69, 1002, 2014; SB 241, 391, 700, 768; 17 CCR sec. 95851 (b): CALIFORNIA AIR RESOURCES BOARD"
},
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 32494.43,
"pucLobbying": 0,
"lobbiedOn": "AB 69, 1002, 2014, 2293; SB 241, 391, 700, 768; 17 CCR sec. 95851 (b): CALIFORNIA AIR RESOURCES BOARD"
},
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 251686.83,
"pucLobbying": 0,
"lobbiedOn": "AB 69, 1002, 2014; SB 241, 391, 700, 768, 1017, 1156; 17 CCR sec. 95851 (b): CALIFORNIA AIR RESOURCES BOARD"
},
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 92884.29,
"pucLobbying": 0,
"lobbiedOn": "AB 1002, 2014; SB 241, 391, 700, 768, 1017, 1156"
},
{
"quarter": "4th",
"session": "2013-2014",
"paymentsToInfluence": 26950,
"pucLobbying": 0,
"lobbiedOn": "AB 1002; SB 241, 391, 622, 700, 768"
},
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 83809.74,
"pucLobbying": 0,
"lobbiedOn": "AB 1002; SB 241, 622, 700, 768"
},
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 137868.89,
"pucLobbying": 0,
"lobbiedOn": "AB 1002; SB 241, 622, 700, 768 - LEGISLATURE"
},
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 6704.59,
"pucLobbying": 0,
"lobbiedOn": "AB 1002; SB 241, 254, 391, 622, 700 - LEGISLATURE"
}
]
},
{
"name": "CALIFORNIANS FOR ENERGY INDEPENDENCE",
"id": "1368757",
"quarters": [
{
"quarter": "8th",
"session": "2013-2014",
"paymentsToInfluence": 54104,
"pucLobbying": 0,
"lobbiedOn": "NO LEGISLATION ACTIVELY LOBBIED THIS QUARTER"
},
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 350173,
"pucLobbying": 0,
"lobbiedOn": "NO LEGISLATION ACTIVELY LOBBIED THIS QUARTER"
},
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 299472.67,
"pucLobbying": 0,
"lobbiedOn": "AB 2420; SB 1017, 1132"
}
]
},
{
"name": "CALIFORNIANS FOR JUSTICE EDUCATION FUND",
"id": "1318970",
"quarters": [
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 0,
"pucLobbying": 0,
"lobbiedOn": "State Board of Education"
}
]
},
{
"name": "CENTER FOR YOUTH WELLNESS",
"id": "1367799",
"quarters": [
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 7731.06,
"pucLobbying": 0,
"lobbiedOn": "Assembly Concurrent Resolution 155"
}
]
},
{
"name": "CHOYNAKE, BRIAN",
"id": "1356221",
"quarters": [
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 5000,
"pucLobbying": 0,
"lobbiedOn": "AB 901, 1203; SB 209"
}
]
},
{
"name": "CLARK, JONATHAN",
"id": "1360988",
"quarters": [
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 8000,
"pucLobbying": 0,
"lobbiedOn": "AB 1412; SB 209"
}
]
},
{
"name": "CLEAN WATER AND JOBS FOR CALIFORNIA",
"id": "1361473",
"quarters": [
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 43900,
"pucLobbying": 0,
"lobbiedOn": "Legislature: water bond legislation"
}
]
},
{
"name": "COMMON GROUND FOR JOBS AND THE ENVIRONMENT",
"id": "1357140",
"quarters": [
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 65080.48,
"pucLobbying": 0,
"lobbiedOn": "SB 731; Legislature: CEQA Reform"
},
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 54173.8,
"pucLobbying": 0,
"lobbiedOn": "SB 731"
}
]
},
{
"name": "COMMON SENSE MEDIA",
"id": "1368873",
"quarters": [
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 12055,
"pucLobbying": 0,
"lobbiedOn": "SB 837 - Early Childhood Education SB 1177 - Student Privacy AB 1584 - Student Privacy"
}
]
},
{
"name": "COMMONWEALTH OF AUSTRALIA",
"id": "1392896",
"quarters": [
{
"quarter": "8th",
"session": "2013-2014",
"paymentsToInfluence": 56476.2,
"pucLobbying": 0,
"lobbiedOn": "None"
},
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 61531.8,
"pucLobbying": 0,
"lobbiedOn": "None"
}
]
},
{
"name": "COMMUNITY ACTION FUND OF PLANNED PARENTHOOD OF ORANGE AND SAN BERNARDINO COUNTIES",
"id": "1349037",
"quarters": [
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 5419.99,
"pucLobbying": 0,
"lobbiedOn": "AB 154"
}
]
},
{
"name": "CONSTRUCTION INDUSTRY ADVANCEMENT FUND OF SOUTHERN CALIFORNIA (CIAF)",
"id": "P24703",
"quarters": []
},
{
"name": "COURAGE CAMPAIGN",
"id": "1373266",
"quarters": [
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 24951.23,
"pucLobbying": 0,
"lobbiedOn": "Assembly bills: 32, 503, 1014, 1266, 1327, 1522, 1574, 1575, 1951, 2178, 2345; Senate bills: 27, 52, 53, 270, 967, 975, 1010, 1124, 1372"
}
]
},
{
"name": "DAYTON, BIRNEY",
"id": "1356225",
"quarters": [
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 5000,
"pucLobbying": 0,
"lobbiedOn": "AB 901, 1203; SB 209"
}
]
},
{
"name": "DISTRICT COUNCIL OF IRON WORKERS OF STATE OF CALIFORNIA AND VICINITY",
"id": "1358915",
"quarters": [
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 30000,
"pucLobbying": 0,
"lobbiedOn": "None"
}
]
},
{
"name": "DUNKELBERGER, PHILLIP",
"id": "1358366",
"quarters": [
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 6500,
"pucLobbying": 0,
"lobbiedOn": "AB 1412; SB 209"
},
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 7500,
"pucLobbying": 0,
"lobbiedOn": "SB 209"
}
]
},
{
"name": "E&B NATURAL RESOURCES MANAGEMENT CORP.",
"id": "1373106",
"quarters": [
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 5999,
"pucLobbying": 0,
"lobbiedOn": "NONE"
}
]
},
{
"name": "ECOLOGY AUTO PARTS",
"id": "1354858",
"quarters": [
{
"quarter": "8th",
"session": "2013-2014",
"paymentsToInfluence": 10190.38,
"pucLobbying": 0,
"lobbiedOn": "None"
},
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 10745.5,
"pucLobbying": 0,
"lobbiedOn": "Legislature - SB 1249"
},
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 5877.51,
"pucLobbying": 0,
"lobbiedOn": "Department of Toxic Substances Control - Regulation of Auto Shredder Waste."
}
]
},
{
"name": "EDUCATION COALITION; THE",
"id": "1303365",
"quarters": [
{
"quarter": "8th",
"session": "2013-2014",
"paymentsToInfluence": 14153.92,
"pucLobbying": 0,
"lobbiedOn": "Legislature, Governor's Office, State Board of Education and Department of Finance: State Budget"
},
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 11438.02,
"pucLobbying": 0,
"lobbiedOn": "AB 1463, 1464, 1469, 1473, 1476, 1480; Legislature, Governor's Office, State Board of Education and Department of Finance: budget bill and budget trailer bill"
},
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 11843.71,
"pucLobbying": 0,
"lobbiedOn": "AB 1463, 1464, 1465, 1469, 1473; Legislature, Governor's Office, State Board of Education and Department of Finance: budget bill and budget trailer bill"
},
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 11351.63,
"pucLobbying": 0,
"lobbiedOn": "Legislature: state budget; Governor's Office, State Board of Education: budget bill and budget trailer bill."
},
{
"quarter": "4th",
"session": "2013-2014",
"paymentsToInfluence": 10656.15,
"pucLobbying": 0,
"lobbiedOn": "AB 78, 86, 94, 97, 110; SB 73, 81, 88, 91."
},
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 11545.83,
"pucLobbying": 0,
"lobbiedOn": "AB 78, 86, 94, 97, 110; SB 73, 81, 88, 91."
},
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 12131.78,
"pucLobbying": 0,
"lobbiedOn": "AB 78, 86, 94, 97, 110; SB 73, 81, 88, 91; Legislature, Office of the Governor, State Board of Education, Department of Finance."
},
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 11225.98,
"pucLobbying": 0,
"lobbiedOn": "State budget"
}
]
},
{
"name": "ELLIS PARTNERS, LLC",
"id": "1357335",
"quarters": [
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 5000,
"pucLobbying": 0,
"lobbiedOn": "SB 731"
}
]
},
{
"name": "ENERGY FOUNDATION, THE",
"id": "1328927",
"quarters": [
{
"quarter": "8th",
"session": "2013-2014",
"paymentsToInfluence": 874008,
"pucLobbying": 0,
"lobbiedOn": "Consideration of fuel and energy efficiency standards by the California Air Resources Board, the California Energy Commission, and the California Public Utilities Commission. Implementation and defense of California's AB 32"
},
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 403746.25,
"pucLobbying": 0,
"lobbiedOn": "Consideration of fuel and energy efficiency standards by the California Air Resources Board, the California Energy Commission, and the California Public Utilities Commission. Implementation and defense of California's AB 32."
},
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 225491.68,
"pucLobbying": 0,
"lobbiedOn": "Consideration of fuel and energy efficiency standards by the California Air Resources Board , the California Energy Commission, and the California Public Utilities Commission. Implementation and defense of California's AB 32."
},
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 249210.92,
"pucLobbying": 0,
"lobbiedOn": "Consideration of fuel and energy efficiency standards by the California Air Resources Board and the California Public Utilities Commission. Implementation and defense of California's AB 32."
},
{
"quarter": "4th",
"session": "2013-2014",
"paymentsToInfluence": 835161,
"pucLobbying": 0,
"lobbiedOn": "Consideration of fuel and energy efficiency standards by the California Air Resources Board and the California Public Utilities Commission. Implementation and defense of California's AB 32."
},
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 874194.67,
"pucLobbying": 0,
"lobbiedOn": "Consideration of fuel and energy efficiency standards by the California Air Resources Board and the California Public Utilities Commission. Implementation of California's AB 758 by the California Energy Commission."
},
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 1150000,
"pucLobbying": 0,
"lobbiedOn": "Consideration of fuel and energy efficiency standards by the California Air Resources Board and the California Public Utilities Commission. Implementation of California's AB 758 by the California Energy Commission."
},
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 510000,
"pucLobbying": 0,
"lobbiedOn": "Consideration of fuel and energy efficiency standards by the California Air Resources Board and the California Public Utilities Commission. Implementation of California's AB 758 by the California Energy Commission."
}
]
},
{
"name": "ENTERTAINMENT UNION COALITION",
"id": "1366282",
"quarters": [
{
"quarter": "8th",
"session": "2013-2014",
"paymentsToInfluence": 154066.44,
"pucLobbying": 0,
"lobbiedOn": "None"
},
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 94820.53,
"pucLobbying": 0,
"lobbiedOn": "AB 1839"
},
{
"quarter": "6th",
"session": "2013-2014",
"paymentsToInfluence": 66804.02,
"pucLobbying": 0,
"lobbiedOn": "AB 1839"
},
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 90210,
"pucLobbying": 0,
"lobbiedOn": "AB 1839"
}
]
},
{
"name": "ERICKSON, S. OSBORN",
"id": "1357366",
"quarters": [
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 10000,
"pucLobbying": 0,
"lobbiedOn": "SB 731"
}
]
},
{
"name": "FIRST ADVANTAGE TAX CONSULTING SERVICES, LLC",
"id": "1359769",
"quarters": [
{
"quarter": "2nd",
"session": "2013-2014",
"paymentsToInfluence": 15000,
"pucLobbying": 0,
"lobbiedOn": "AB 93 and SB 90 - California Enterprise Zones; Housing & Community Development Agency proposed regulations regarding California Enterprise Zones"
}
]
},
{
"name": "FOUNDATION FOR RESEARCH AND EDUCATION PAC",
"id": "1373303",
"quarters": [
{
"quarter": "7th",
"session": "2013-2014",
"paymentsToInfluence": 30000,
"pucLobbying": 0,
"lobbiedOn": "Internet Communications regarding AB 2145"
}
]
},
{
"name": "FOWLER, JAMES",
"id": "1356223",
"quarters": [
{
"quarter": "3rd",
"session": "2013-2014",
"paymentsToInfluence": 6500,
"pucLobbying": 0,
"lobbiedOn": "AB 1412; SB 209"
},
{
"quarter": "1st",
"session": "2013-2014",
"paymentsToInfluence": 10000,
"pucLobbying": 0,
"lobbiedOn": "AB 901, 1203; SB 209"
}
]
},
{
"name": "FUND FOR CONSTRUCTION INDUSTRY ADVANCEMENT (FCIA)",
"id": "P24704",
"quarters": []
},
{
"name": "GERAWAN FARMING",
"id": "1359097",
"quarters": [
{
"quarter": "5th",
"session": "2013-2014",
"paymentsToInfluence": 26360.14,
"pucLobbying": 0,
"lobbiedOn": "CALIFORNIA STATE LEGISLATURE REGARDING SB 25"
},