-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1840 lines (1763 loc) · 54.3 KB
/
index.html
File metadata and controls
1840 lines (1763 loc) · 54.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<title>ProPublic Nonprofit Explorer API</title>
<script src="index_files/jquery-1.11.3/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="index_files/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
<script src="index_files/bootstrap-3.3.5/js/bootstrap.min.js"></script>
<script src="index_files/bootstrap-3.3.5/shim/html5shiv.min.js"></script>
<script src="index_files/bootstrap-3.3.5/shim/respond.min.js"></script>
<script src="index_files/navigation-1.1/tabsets.js"></script>
<script src="index_files/accessible-code-block-0.0.1/empty-anchor.js"></script>
<link href="index_files/pagedtable-1.1/css/pagedtable.css" rel="stylesheet" />
<script src="index_files/pagedtable-1.1/js/pagedtable.js"></script>
<style type="text/css">code{white-space: pre;}</style>
<style type="text/css" data-origin="pandoc">
code.sourceCode > span { display: inline-block; line-height: 1.25; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode { white-space: pre; position: relative; }
div.sourceCode { margin: 1em 0; }
pre.sourceCode { margin: 0; }
@media screen {
div.sourceCode { overflow: auto; }
}
@media print {
code.sourceCode { white-space: pre-wrap; }
code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
pre.numberSource code > span
{ position: relative; left: -4em; counter-increment: source-line; }
pre.numberSource code > span > a:first-child::before
{ content: counter(source-line);
position: relative; left: -1em; text-align: right; vertical-align: baseline;
border: none; display: inline-block;
-webkit-touch-callout: none; -webkit-user-select: none;
-khtml-user-select: none; -moz-user-select: none;
-ms-user-select: none; user-select: none;
padding: 0 4px; width: 4em;
color: #aaaaaa;
}
pre.numberSource { margin-left: 3em; border-left: 1px solid #aaaaaa; padding-left: 4px; }
div.sourceCode
{ background-color: #f8f8f8; }
@media screen {
code.sourceCode > span > a:first-child::before { text-decoration: underline; }
}
code span.al { color: #ef2929; } /* Alert */
code span.an { color: #8f5902; font-weight: bold; font-style: italic; } /* Annotation */
code span.at { color: #c4a000; } /* Attribute */
code span.bn { color: #0000cf; } /* BaseN */
code span.cf { color: #204a87; font-weight: bold; } /* ControlFlow */
code span.ch { color: #4e9a06; } /* Char */
code span.cn { color: #000000; } /* Constant */
code span.co { color: #8f5902; font-style: italic; } /* Comment */
code span.cv { color: #8f5902; font-weight: bold; font-style: italic; } /* CommentVar */
code span.do { color: #8f5902; font-weight: bold; font-style: italic; } /* Documentation */
code span.dt { color: #204a87; } /* DataType */
code span.dv { color: #0000cf; } /* DecVal */
code span.er { color: #a40000; font-weight: bold; } /* Error */
code span.ex { } /* Extension */
code span.fl { color: #0000cf; } /* Float */
code span.fu { color: #000000; } /* Function */
code span.im { } /* Import */
code span.in { color: #8f5902; font-weight: bold; font-style: italic; } /* Information */
code span.kw { color: #204a87; font-weight: bold; } /* Keyword */
code span.op { color: #ce5c00; font-weight: bold; } /* Operator */
code span.ot { color: #8f5902; } /* Other */
code span.pp { color: #8f5902; font-style: italic; } /* Preprocessor */
code span.sc { color: #000000; } /* SpecialChar */
code span.ss { color: #4e9a06; } /* SpecialString */
code span.st { color: #4e9a06; } /* String */
code span.va { color: #000000; } /* Variable */
code span.vs { color: #4e9a06; } /* VerbatimString */
code span.wa { color: #8f5902; font-weight: bold; font-style: italic; } /* Warning */
</style>
<script>
// apply pandoc div.sourceCode style to pre.sourceCode instead
(function() {
var sheets = document.styleSheets;
for (var i = 0; i < sheets.length; i++) {
if (sheets[i].ownerNode.dataset["origin"] !== "pandoc") continue;
try { var rules = sheets[i].cssRules; } catch (e) { continue; }
for (var j = 0; j < rules.length; j++) {
var rule = rules[j];
// check if there is a div.sourceCode rule
if (rule.type !== rule.STYLE_RULE || rule.selectorText !== "div.sourceCode") continue;
var style = rule.style.cssText;
// check if color or background-color is set
if (rule.style.color === '' && rule.style.backgroundColor === '') continue;
// replace div.sourceCode by a pre.sourceCode rule
sheets[i].deleteRule(j);
sheets[i].insertRule('pre.sourceCode{' + style + '}', j);
}
}
})();
</script>
<style type="text/css">
pre:not([class]) {
background-color: white;
}
</style>
<style type="text/css">
h1 {
font-size: 34px;
}
h1.title {
font-size: 38px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 16px;
}
h6 {
font-size: 12px;
}
.table th:not([align]) {
text-align: left;
}
</style>
<style type = "text/css">
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
code {
color: inherit;
background-color: rgba(0, 0, 0, 0.04);
}
img {
max-width:100%;
}
.tabbed-pane {
padding-top: 12px;
}
.html-widget {
margin-bottom: 20px;
}
button.code-folding-btn:focus {
outline: none;
}
summary {
display: list-item;
}
</style>
<!-- tabsets -->
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
background: white;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "";
border: none;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
}
.tabset-dropdown > .nav-tabs > li > a,
.tabset-dropdown > .nav-tabs > li > a:focus,
.tabset-dropdown > .nav-tabs > li > a:hover {
border: none;
display: inline-block;
border-radius: 4px;
background-color: transparent;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
}
</style>
<!-- code folding -->
</head>
<body>
<div class="container-fluid main-container">
<div class="fluid-row" id="header">
<h1 class="title toc-ignore">ProPublic Nonprofit Explorer API</h1>
</div>
<div id="TOC">
<ul>
<li><a href="#overview">Overview</a></li>
<li><a href="#api-capability">API Capability</a></li>
<li><a href="#demo">Demo</a></li>
<li><a href="#batch-pdf-download">Batch PDF Download</a></li>
<li><a href="#draft-function">Draft Function</a></li>
<li><a href="#full-api-documentation">Full API Documentation</a></li>
</ul>
</div>
<div id="overview" class="section level2">
<h2>Overview</h2>
<p>Demo functions for working with <a href="https://projects.propublica.org/nonprofits/">ProPublica’s Nonprofit Explorer</a>.</p>
<p><em>Use this database to view summaries of 3 million tax returns from tax-exempt organizations and see financial details such as their executive compensation and revenue and expenses. You can browse IRS data released since 2013 and access more than 14 million tax filing documents going back as far as 2001.</em></p>
<p><strong>From their site:</strong></p>
<p>Nonprofit Explorer includes summary data for nonprofit tax returns and full Form 990 documents, in both PDF and digital formats.</p>
<p>The summary data contains information processed by the IRS during the 2012-2018 calendar years; this generally consists of filings for the 2011-2017 fiscal years, but may include older records. This data release includes only a subset of what can be found in the full Form 990s.</p>
<p>In addition to the raw summary data, we link to PDFs and digital copies of full Form 990 documents wherever possible. This consists of separate releases by the IRS of Form 990 documents processed by the agency, which we update regularly.</p>
<p>We also link to copies of audits nonprofit organizations that spent $750,000 or more in Federal grant money in a single fiscal year since 2016. These audits are copied from the Federal Audit Clearinghouse.</p>
<p><strong>Which Organizations Are Here?</strong></p>
<p>Every organization that has been recognized as tax exempt by the IRS has to file Form 990 every year, unless they make less than $200,000 in revenue and have less than $500,000 in assets, in which case they have to file form 990-EZ. Organizations making less than $50,000 don’t have to file either form but do have to let the IRS they’re still in business via a Form 990N “e-Postcard.”</p>
<p>Nonprofit Explorer has organizations claiming tax exemption in each of the 27 subsections of the 501(c) section of the tax code, and which have filed a Form 990, Form 990EZ or Form 990PF. Taxable trusts and private foundations that are required to file a form 990PF are also included. Small organizations filing a Form 990N “e-Postcard” are not included in this data.</p>
<p><strong>Types of Nonprofits</strong></p>
<p>There are 27 nonprofit designations based on the numbered subsections of section 501(c) of the tax code.</p>
<p><strong>How to Research Tax-Exempt Organizations</strong></p>
<p>We’ve created a guide for investigating nonprofits for those just getting started as well as for seasoned pros.</p>
<p><strong>API</strong></p>
<p>The data powering this website is available programmatically, via an API. Read the API documentation »</p>
<p><strong>Get the Data</strong></p>
<p>For those interested in acquiring the original data from the source, here’s where our data comes from:</p>
<ul>
<li>Raw filing data. Includes EINs and summary financials as structured data.</li>
<li>Exempt Organization profiles. Includes organization names, addresses, etc. You can merge this with the raw filing data using EIN numbers.</li>
<li>Form 990 documents requested and processed by Public.Resource.Org and ProPublica. We post bulk downloads of these documents at the Internet Archive.</li>
<li>Form 990 documents as XML files. Includes complete filing data (financial details, names of officers, tax schedules, etc.) in machine-readable format. Only available for electronically filed documents.</li>
<li>Audits. PDFs of single or program-specific audits for nonprofit organizations that spent $750,000 or more in Federal grant money in a single fiscal year. Available for 2016 and later.</li>
</ul>
</div>
<div id="api-capability" class="section level2">
<h2>API Capability</h2>
<p>There is basic meta-data available for each organization (name, EIN, tax year, total revenue, etc.).</p>
<p>Information for each 990 depends on the type of filing - paper versions or e-files.</p>
<p>The API has some capability to access digitized information, as well as download PDFs of paper filers.</p>
<p>The generic API call will return a list with five tables:</p>
<ul>
<li><strong>organization</strong>: nonprofit org attributes<br />
</li>
<li><strong>filings_with_data</strong>: basic data from tax years where 990 efile data available<br />
</li>
<li><strong>filings_without_data</strong>: tax years where PDFs are available, but no digitized data</li>
<li><strong>data_source</strong>: original sources of data available through the API</li>
<li><strong>api_version</strong>: version of NP Explorer API (currently v2)</li>
</ul>
</div>
<div id="demo" class="section level2">
<h2>Demo</h2>
<p>Grab a table of meta-data available on all returns for one org:</p>
<div class="sourceCode" id="cb1"><pre class="sourceCode r"><code class="sourceCode r"><span id="cb1-1"><a href="#cb1-1"></a><span class="kw">library</span>( RCurl )</span>
<span id="cb1-2"><a href="#cb1-2"></a><span class="kw">library</span>( jsonlite )</span>
<span id="cb1-3"><a href="#cb1-3"></a><span class="kw">library</span>( dplyr )</span>
<span id="cb1-4"><a href="#cb1-4"></a><span class="kw">library</span>( pander )</span>
<span id="cb1-5"><a href="#cb1-5"></a></span>
<span id="cb1-6"><a href="#cb1-6"></a><span class="co"># API CALL</span></span>
<span id="cb1-7"><a href="#cb1-7"></a><span class="co"># https://projects.propublica.org/nonprofits/api/v2/organizations/010165097.json</span></span>
<span id="cb1-8"><a href="#cb1-8"></a></span>
<span id="cb1-9"><a href="#cb1-9"></a>ein <-<span class="st"> "010165097"</span></span>
<span id="cb1-10"><a href="#cb1-10"></a></span>
<span id="cb1-11"><a href="#cb1-11"></a>URL <-<span class="st"> </span><span class="kw">paste0</span>( <span class="st">"https://projects.propublica.org/nonprofits/api/v2/organizations/"</span>, ein, <span class="st">".json"</span> )</span>
<span id="cb1-12"><a href="#cb1-12"></a></span>
<span id="cb1-13"><a href="#cb1-13"></a>results.json <-<span class="st"> </span><span class="kw">getURL</span>( URL, <span class="dt">ssl.verifypeer =</span> <span class="ot">FALSE</span> )</span>
<span id="cb1-14"><a href="#cb1-14"></a></span>
<span id="cb1-15"><a href="#cb1-15"></a>r2 <-<span class="st"> </span><span class="kw">gsub</span>( <span class="st">"</span><span class="ch">\n</span><span class="st">"</span>, <span class="st">""</span>, results.json )</span>
<span id="cb1-16"><a href="#cb1-16"></a></span>
<span id="cb1-17"><a href="#cb1-17"></a>api.tables <-<span class="st"> </span><span class="kw">fromJSON</span>( r2 )</span>
<span id="cb1-18"><a href="#cb1-18"></a></span>
<span id="cb1-19"><a href="#cb1-19"></a><span class="kw">names</span>( api.tables )</span></code></pre></div>
<pre><code>## [1] "organization" "filings_with_data" "filings_without_data"
## [4] "data_source" "api_version"</code></pre>
<div class="sourceCode" id="cb3"><pre class="sourceCode r"><code class="sourceCode r"><span id="cb3-1"><a href="#cb3-1"></a><span class="kw">head</span>( api.tables<span class="op">$</span>organization ) <span class="op">%>%</span><span class="st"> </span><span class="kw">pander</span>()</span></code></pre></div>
<ul>
<li><strong>id</strong>: <em>10165097</em></li>
<li><strong>ein</strong>: <em>10165097</em></li>
<li><strong>name</strong>: MAINE GROCERS & FOOD PRODUCERS ASSOCIATION</li>
<li><strong>careofname</strong>:</li>
<li><strong>address</strong>: PO BOX 5234</li>
<li><strong>city</strong>: AUGUSTA</li>
</ul>
<!-- end of list -->
<div class="sourceCode" id="cb4"><pre class="sourceCode r"><code class="sourceCode r"><span id="cb4-1"><a href="#cb4-1"></a><span class="kw">head</span>( api.tables<span class="op">$</span>filings_with_data ) <span class="op">%>%</span><span class="st"> </span><span class="kw">pander</span>()</span></code></pre></div>
<table style="width:50%;">
<caption>Table continues below</caption>
<colgroup>
<col width="13%" />
<col width="18%" />
<col width="18%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">tax_prd</th>
<th align="center">tax_prd_yr</th>
<th align="center">formtype</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">201712</td>
<td align="center">2017</td>
<td align="center">1</td>
</tr>
<tr class="even">
<td align="center">201512</td>
<td align="center">2015</td>
<td align="center">1</td>
</tr>
<tr class="odd">
<td align="center">201412</td>
<td align="center">2014</td>
<td align="center">1</td>
</tr>
<tr class="even">
<td align="center">201312</td>
<td align="center">2013</td>
<td align="center">0</td>
</tr>
<tr class="odd">
<td align="center">201212</td>
<td align="center">2012</td>
<td align="center">1</td>
</tr>
<tr class="even">
<td align="center">201112</td>
<td align="center">2011</td>
<td align="center">1</td>
</tr>
</tbody>
</table>
<table>
<caption>Table continues below</caption>
<colgroup>
<col width="100%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">pdf_url</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">NA</td>
</tr>
<tr class="even">
<td align="center">NA</td>
</tr>
<tr class="odd">
<td align="center">NA</td>
</tr>
<tr class="even">
<td align="center"><a href="https://projects.propublica.org/nonprofits/download-filing?path=2014_09_EO%2F01-0165097_990O_201312.pdf" class="uri">https://projects.propublica.org/nonprofits/download-filing?path=2014_09_EO%2F01-0165097_990O_201312.pdf</a></td>
</tr>
<tr class="odd">
<td align="center">NA</td>
</tr>
<tr class="even">
<td align="center">NA</td>
</tr>
</tbody>
</table>
<table style="width:97%;">
<caption>Table continues below</caption>
<colgroup>
<col width="37%" />
<col width="18%" />
<col width="20%" />
<col width="20%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">updated</th>
<th align="center">totrevenue</th>
<th align="center">totfuncexpns</th>
<th align="center">totassetsend</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">2019-10-15T18:40:39.744Z</td>
<td align="center">174354</td>
<td align="center">164641</td>
<td align="center">98154</td>
</tr>
<tr class="even">
<td align="center">2017-06-30T00:40:46.710Z</td>
<td align="center">169693</td>
<td align="center">160351</td>
<td align="center">90996</td>
</tr>
<tr class="odd">
<td align="center">2017-06-30T00:24:53.693Z</td>
<td align="center">172126</td>
<td align="center">188041</td>
<td align="center">58127</td>
</tr>
<tr class="even">
<td align="center">2017-06-30T00:05:00.581Z</td>
<td align="center">194073</td>
<td align="center">187045</td>
<td align="center">74014</td>
</tr>
<tr class="odd">
<td align="center">2017-06-29T23:56:02.188Z</td>
<td align="center">171454</td>
<td align="center">164369</td>
<td align="center">65394</td>
</tr>
<tr class="even">
<td align="center">2017-06-29T23:41:38.920Z</td>
<td align="center">180031</td>
<td align="center">171155</td>
<td align="center">60251</td>
</tr>
</tbody>
</table>
<table>
<caption>Table continues below</caption>
<colgroup>
<col width="17%" />
<col width="32%" />
<col width="14%" />
<col width="16%" />
<col width="18%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">totliabend</th>
<th align="center">pct_compnsatncurrofcr</th>
<th align="center">subseccd</th>
<th align="center">totcntrbs</th>
<th align="center">prgmservrev</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">29381</td>
<td align="center">-0.001</td>
<td align="center">6</td>
<td align="center">91145</td>
<td align="center">6075</td>
</tr>
<tr class="even">
<td align="center">45962</td>
<td align="center">-0.001</td>
<td align="center">6</td>
<td align="center">81195</td>
<td align="center">10095</td>
</tr>
<tr class="odd">
<td align="center">30732</td>
<td align="center">-0.001</td>
<td align="center">6</td>
<td align="center">53740</td>
<td align="center">37375</td>
</tr>
<tr class="even">
<td align="center">30704</td>
<td align="center">0</td>
<td align="center">6</td>
<td align="center">NA</td>
<td align="center">NA</td>
</tr>
<tr class="odd">
<td align="center">18167</td>
<td align="center">-0.001</td>
<td align="center">6</td>
<td align="center">78910</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">20109</td>
<td align="center">-0.001</td>
<td align="center">6</td>
<td align="center">89291</td>
<td align="center">0</td>
</tr>
</tbody>
</table>
<table>
<caption>Table continues below</caption>
<colgroup>
<col width="21%" />
<col width="20%" />
<col width="28%" />
<col width="28%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">duesassesmnts</th>
<th align="center">othrinvstinc</th>
<th align="center">grsamtsalesastothr</th>
<th align="center">basisalesexpnsothr</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">75595</td>
<td align="center">84</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">79061</td>
<td align="center">45</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="odd">
<td align="center">73416</td>
<td align="center">33</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">NA</td>
</tr>
<tr class="odd">
<td align="center">59910</td>
<td align="center">62</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">56042</td>
<td align="center">116</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
</tbody>
</table>
<table style="width:100%;">
<caption>Table continues below</caption>
<colgroup>
<col width="22%" />
<col width="18%" />
<col width="24%" />
<col width="13%" />
<col width="20%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">gnsaleofastothr</th>
<th align="center">grsincgaming</th>
<th align="center">grsrevnuefndrsng</th>
<th align="center">direxpns</th>
<th align="center">netincfndrsng</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">8610</td>
<td align="center">7524</td>
<td align="center">1086</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">6007</td>
<td align="center">7030</td>
<td align="center">-1023</td>
</tr>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">14930</td>
<td align="center">7668</td>
<td align="center">7262</td>
</tr>
<tr class="even">
<td align="center">NA</td>
<td align="center">0</td>
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">6543</td>
</tr>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">28708</td>
<td align="center">9627</td>
<td align="center">19081</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">25455</td>
<td align="center">8722</td>
<td align="center">16733</td>
</tr>
</tbody>
</table>
<table>
<caption>Table continues below</caption>
<colgroup>
<col width="22%" />
<col width="18%" />
<col width="12%" />
<col width="15%" />
<col width="15%" />
<col width="15%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">grsalesminusret</th>
<th align="center">costgoodsold</th>
<th align="center">grsprft</th>
<th align="center">othrevnue</th>
<th align="center">totrevnue</th>
<th align="center">totexpns</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">369</td>
<td align="center">174354</td>
<td align="center">164641</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">320</td>
<td align="center">169693</td>
<td align="center">160351</td>
</tr>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">300</td>
<td align="center">172126</td>
<td align="center">188041</td>
</tr>
<tr class="even">
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">NA</td>
</tr>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">13491</td>
<td align="center">171454</td>
<td align="center">164369</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">17849</td>
<td align="center">180031</td>
<td align="center">171155</td>
</tr>
</tbody>
</table>
<table style="width:96%;">
<caption>Table continues below</caption>
<colgroup>
<col width="19%" />
<col width="30%" />
<col width="25%" />
<col width="20%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">totexcessyr</th>
<th align="center">othrchgsnetassetfnd</th>
<th align="center">totnetassetsend</th>
<th align="center">unrelbusincd</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">9713</td>
<td align="center">0</td>
<td align="center">68773</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">9342</td>
<td align="center">8296</td>
<td align="center">45034</td>
<td align="center">0</td>
</tr>
<tr class="odd">
<td align="center">-15915</td>
<td align="center">0</td>
<td align="center">27395</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">NA</td>
</tr>
<tr class="odd">
<td align="center">7085</td>
<td align="center">0</td>
<td align="center">47227</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">8876</td>
<td align="center">0</td>
<td align="center">40142</td>
<td align="center">0</td>
</tr>
</tbody>
</table>
<table>
<caption>Table continues below</caption>
<colgroup>
<col width="19%" />
<col width="20%" />
<col width="13%" />
<col width="20%" />
<col width="24%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">initiationfee</th>
<th align="center">grspublicrcpts</th>
<th align="center">nonpfrea</th>
<th align="center">gftgrntrcvd170</th>
<th align="center">txrevnuelevied170</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">NA</td>
<td align="center">0</td>
</tr>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">0</td>
<td align="center">NA</td>
<td align="center">0</td>
</tr>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">NA</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
</tbody>
</table>
<table style="width:92%;">
<caption>Table continues below</caption>
<colgroup>
<col width="19%" />
<col width="16%" />
<col width="27%" />
<col width="27%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">srvcsval170</th>
<th align="center">grsinc170</th>
<th align="center">grsrcptsrelatd170</th>
<th align="center">totgftgrntrcvd509</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">NA</td>
<td align="center">0</td>
</tr>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">NA</td>
<td align="center">0</td>
</tr>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">NA</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
</tbody>
</table>
<table>
<caption>Table continues below</caption>
<colgroup>
<col width="27%" />
<col width="27%" />
<col width="19%" />
<col width="26%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">grsrcptsadmiss509</th>
<th align="center">txrevnuelevied509</th>
<th align="center">srvcsval509</th>
<th align="center">subtotsuppinc509</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">NA</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="odd">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">NA</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="odd">
<td align="center">NA</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
<td align="center">0</td>
</tr>
</tbody>
</table>
<table style="width:92%;">
<caption>Table continues below</caption>
<colgroup>
<col width="18%" />
<col width="15%" />
<col width="12%" />
<col width="22%" />
<col width="23%" />
</colgroup>
<thead>
<tr class="header">
<th align="center">totsupp509</th>
<th align="center">ein</th>
<th align="center">tax_pd</th>
<th align="center">unrelbusinccd</th>
<th align="center">initiationfees</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td align="center">0</td>
<td align="center">10165097</td>
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">NA</td>
</tr>
<tr class="even">
<td align="center">0</td>
<td align="center">10165097</td>
<td align="center">NA</td>
<td align="center">NA</td>
<td align="center">NA</td>
</tr>
<tr class="odd">
<td align="center">0</td>
<td align="center">10165097</td>
<td align="center">NA</td>