问题

Please convert the Input Table from HTML format to JSONL format. Please respond only with the table.
Input Table: <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>id</th>
<th>report_number</th>
<th>origin</th>
<th>filer_id</th>
<th>filer_name</th>
<th>type</th>
<th>funding_source_id</th>
<th>funding_source</th>
</tr>
</thead>
<tbody>
<tr>
<td>107243-26595</td>
<td>107243</td>
<td>FE</td>
<td>26595</td>
<td>STEVEN SCHULTZ</td>
<td>Lobbyist</td>
<td>26595</td>
<td>STEVEN SCHULTZ (Self</td>
</tr>
<tr>
<td>107333-18369</td>
<td>107333</td>
<td>FE</td>
<td>17432</td>
<td>CAPITOL STRATEGIES C</td>
<td>Employer</td>
<td>18369</td>
<td>SPOKANE TRANSIT AUTH</td>
</tr>
<tr>
<td>107287-19110</td>
<td>107287</td>
<td>FE</td>
<td>17723</td>
<td>THOMAS W KWIECIAK</td>
<td>Employer</td>
<td>19110</td>
<td>NATL RIFLE ASSN OF A</td>
</tr>
<tr>
<td>107220-18281</td>
<td>107220</td>
<td>FE</td>
<td>17397</td>
<td>PATRICK S BOSS (Casc</td>
<td>Employer</td>
<td>18281</td>
<td>PORT OF GRANT CO DIS</td>
</tr>
<tr>
<td>107377-17576</td>
<td>107377</td>
<td>FE</td>
<td>17576</td>
<td>ADAM GLICKMAN</td>
<td>Lobbyist</td>
<td>17576</td>
<td>ADAM GLICKMAN (Self)</td>
</tr>
<tr>
<td>107242-95286</td>
<td>107242</td>
<td>FE</td>
<td>95285</td>
<td>Adam Zarrin</td>
<td>Employer</td>
<td>95286</td>
<td>LEUKEMIA &amp; LYMPHOMA</td>
</tr>
</tbody>
</table>
Output:

答案

模型 模型答案 正确答案
金声玉亮2.0 Here is the table in JSONL format:

```
{"id": "107243-26595", "report_number": "107243", "origin": "FE", "filer_id": "26595", "filer_name": "STEVEN SCHULTZ", "type": "Lobbyist", "funding_source_id": "26595", "funding_source": "STEVEN SCHULTZ (Self"}
{"id": "107333-18369", "report_number": "107333", "origin": "FE", "filer_id": "17432", "filer_name": "CAPITOL STRATEGIES C", "type": "Employer", "funding_source_id": "18369", "funding_source": "SPOKANE TRANSIT AUTH"}
{"id": "107287-19110", "report_number": "107287", "origin": "FE", "filer_id": "17723", "filer_name": "THOMAS W KWIECIAK", "type": "Employer", "funding_source_id": "19110", "funding_source": "NATL RIFLE ASSN OF A"}
{"id": "107220-18281", "report_number": "107220", "origin": "FE", "filer_id": "17397", "filer_name": "PATRICK S BOSS (Casc", "type": "Employer", "funding_source_id": "18281", "funding_source": "PORT OF GRANT CO DIS"}
{"id": "107377-17576", "report_number": "107377", "origin": "FE", "filer_id": "17576", "filer_name": "ADAM GLICKMAN", "type": "Lobbyist", "funding_source_id": "17576", "funding_source": "ADAM GLICKMAN (Self)"}
{"id": "107242-95286", "report_number": "107242", "origin": "FE", "filer_id": "95285", "filer_name": "Adam Zarrin", "type": "Employer", "funding_source_id": "95286", "funding_source": "LEUKEMIA & LYMPHOMA"}
```
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
deepseek-r1

{"id": "107243-26595", "report_number": "107243", "origin": "FE", "filer_id": "26595", "filer_name": "STEVEN SCHULTZ", "type": "Lobbyist", "funding_source_id": "26595", "funding_source": "STEVEN SCHULTZ (Self"}
{"id": "107333-18369", "report_number": "107333", "origin": "FE", "filer_id": "17432", "filer_name": "CAPITOL STRATEGIES C", "type": "Employer", "funding_source_id": "18369", "funding_source": "SPOKANE TRANSIT AUTH"}
{"id": "107287-19110", "report_number": "107287", "origin": "FE", "filer_id": "17723", "filer_name": "THOMAS W KWIECIAK", "type": "Employer", "funding_source_id": "19110", "funding_source": "NATL RIFLE ASSN OF A"}
{"id": "107220-18281", "report_number": "107220", "origin": "FE", "filer_id": "17397", "filer_name": "PATRICK S BOSS (Casc", "type": "Employer", "funding_source_id": "18281", "funding_source": "PORT OF GRANT CO DIS"}
{"id": "107377-17576", "report_number": "107377", "origin": "FE", "filer_id": "17576", "filer_name": "ADAM GLICKMAN", "type": "Lobbyist", "funding_source_id": "17576", "funding_source": "ADAM GLICKMAN (Self)"}
{"id": "107242-95286", "report_number": "107242", "origin": "FE", "filer_id": "95285", "filer_name": "Adam Zarrin", "type": "Employer", "funding_source_id": "95286", "funding_source": "LEUKEMIA & LYMPHOMA"}
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
gpto1 {"id": "107243-26595", "report_number": "107243", "origin": "FE", "filer_id": "26595", "filer_name": "STEVEN SCHULTZ", "type": "Lobbyist", "funding_source_id": "26595", "funding_source": "STEVEN SCHULTZ (Self)"}
{"id": "107333-18369", "report_number": "107333", "origin": "FE", "filer_id": "17432", "filer_name": "CAPITOL STRATEGIES C", "type": "Employer", "funding_source_id": "18369", "funding_source": "SPOKANE TRANSIT AUTH"}
{"id": "107287-19110", "report_number": "107287", "origin": "FE", "filer_id": "17723", "filer_name": "THOMAS W KWIECIAK", "type": "Employer", "funding_source_id": "19110", "funding_source": "NATL RIFLE ASSN OF A"}
{"id": "107220-18281", "report_number": "107220", "origin": "FE", "filer_id": "17397", "filer_name": "PATRICK S BOSS (Casc", "type": "Employer", "funding_source_id": "18281", "funding_source": "PORT OF GRANT CO DIS"}
{"id": "107377-17576", "report_number": "107377", "origin": "FE", "filer_id": "17576", "filer_name": "ADAM GLICKMAN", "type": "Lobbyist", "funding_source_id": "17576", "funding_source": "ADAM GLICKMAN (Self)"}
{"id": "107242-95286", "report_number": "107242", "origin": "FE", "filer_id": "95285", "filer_name": "Adam Zarrin", "type": "Employer", "funding_source_id": "95286", "funding_source": "LEUKEMIA & LYMPHOMA"}
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
gpt-4o-2024-08-06 ```jsonl
{"id": "107243-26595", "report_number": "107243", "origin": "FE", "filer_id": "26595", "filer_name": "STEVEN SCHULTZ", "type": "Lobbyist", "funding_source_id": "26595", "funding_source": "STEVEN SCHULTZ (Self"}
{"id": "107333-18369", "report_number": "107333", "origin": "FE", "filer_id": "17432", "filer_name": "CAPITOL STRATEGIES C", "type": "Employer", "funding_source_id": "18369", "funding_source": "SPOKANE TRANSIT AUTH"}
{"id": "107287-19110", "report_number": "107287", "origin": "FE", "filer_id": "17723", "filer_name": "THOMAS W KWIECIAK", "type": "Employer", "funding_source_id": "19110", "funding_source": "NATL RIFLE ASSN OF A"}
{"id": "107220-18281", "report_number": "107220", "origin": "FE", "filer_id": "17397", "filer_name": "PATRICK S BOSS (Casc", "type": "Employer", "funding_source_id": "18281", "funding_source": "PORT OF GRANT CO DIS"}
{"id": "107377-17576", "report_number": "107377", "origin": "FE", "filer_id": "17576", "filer_name": "ADAM GLICKMAN", "type": "Lobbyist", "funding_source_id": "17576", "funding_source": "ADAM GLICKMAN (Self)"}
{"id": "107242-95286", "report_number": "107242", "origin": "FE", "filer_id": "95285", "filer_name": "Adam Zarrin", "type": "Employer", "funding_source_id": "95286", "funding_source": "LEUKEMIA & LYMPHOMA"}
```
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
DeepSeek-Coder-V2-Lite-Instruct ```
{
"id": "107243-26595",
"report_number": "107243",
"origin": "FE",
"filer_id": "26595",
"filer_name": "STEVEN SCHULTZ",
"type": "Lobbyist",
"funding_source_id": "26595",
"funding_source": "STEVEN SCHULTZ (Self"
}
{
"id": "107333-18369",
"report_number": "107333",
"origin": "FE",
"filer_id": "17432",
"filer_name": "CAPITOL STRATEGIES C",
"type": "Employer",
"funding_source_id": "18369",
"funding_source": "SPOKANE TRANSIT AUTH"
}
{
"id": "107287-19110",
"report_number": "107287",
"origin": "FE",
"filer_id": "17723",
"filer_name": "THOMAS W KWIECIAK",
"type": "Employer",
"funding_source_id": "19110",
"funding_source": "NATL RIFLE ASSN OF A"
}
{
"id": "107220-18281",
"report_number": "107220",
"origin": "FE",
"filer_id": "17397",
"filer_name": "PATRICK S BOSS (Casc",
"type": "Employer",
"funding_source_id": "18281",
"funding_source": "PORT OF GRANT CO DIS"
}
{
"id": "107377-17576",
"report_number": "107377",
"origin": "FE",
"filer_id": "17576",
"filer_name": "ADAM GLICKMAN",
"type": "Lobbyist",
"funding_source_id": "17576",
"funding_source": "ADAM GLICKMAN (Self)"
}
{
"id": "107242-95286",
"report_number": "107242",
"origin": "FE",
"filer_id": "95285",
"filer_name": "Adam Zarrin",
"type": "Employer",
"funding_source_id": "95286",
"funding_source": "LEUKEMIA & LYMPHOMA"
}
```
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
Meta-Llama-3.1-405B-Instruct-Turbo Here is the table in JSONL format:

```
{"id": "107243-26595", "report_number": "107243", "origin": "FE", "filer_id": "26595", "filer_name": "STEVEN SCHULTZ", "type": "Lobbyist", "funding_source_id": "26595", "funding_source": "STEVEN SCHULTZ (Self"}
{"id": "107333-18369", "report_number": "107333", "origin": "FE", "filer_id": "17432", "filer_name": "CAPITOL STRATEGIES C", "type": "Employer", "funding_source_id": "18369", "funding_source": "SPOKANE TRANSIT AUTH"}
{"id": "107287-19110", "report_number": "107287", "origin": "FE", "filer_id": "17723", "filer_name": "THOMAS W KWIECIAK", "type": "Employer", "funding_source_id": "19110", "funding_source": "NATL RIFLE ASSN OF A"}
{"id": "107220-18281", "report_number": "107220", "origin": "FE", "filer_id": "17397", "filer_name": "PATRICK S BOSS (Casc", "type": "Employer", "funding_source_id": "18281", "funding_source": "PORT OF GRANT CO DIS"}
{"id": "107377-17576", "report_number": "107377", "origin": "FE", "filer_id": "17576", "filer_name": "ADAM GLICKMAN", "type": "Lobbyist", "funding_source_id": "17576", "funding_source": "ADAM GLICKMAN (Self)"}
{"id": "107242-95286", "report_number": "107242", "origin": "FE", "filer_id": "95285", "filer_name": "Adam Zarrin", "type": "Employer", "funding_source_id": "95286", "funding_source": "LEUKEMIA & LYMPHOMA"}
```
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
Meta-Llama-3.1-70B-Instruct-Turbo {"id": "107243-26595", "report_number": "107243", "origin": "FE", "filer_id": "26595", "filer_name": "STEVEN SCHULTZ", "type": "Lobbyist", "funding_source_id": "26595", "funding_source": "STEVEN SCHULTZ (Self"}
{"id": "107333-18369", "report_number": "107333", "origin": "FE", "filer_id": "17432", "filer_name": "CAPITOL STRATEGIES C", "type": "Employer", "funding_source_id": "18369", "funding_source": "SPOKANE TRANSIT AUTH"}
{"id": "107287-19110", "report_number": "107287", "origin": "FE", "filer_id": "17723", "filer_name": "THOMAS W KWIECIAK", "type": "Employer", "funding_source_id": "19110", "funding_source": "NATL RIFLE ASSN OF A"}
{"id": "107220-18281", "report_number": "107220", "origin": "FE", "filer_id": "17397", "filer_name": "PATRICK S BOSS (Casc", "type": "Employer", "funding_source_id": "18281", "funding_source": "PORT OF GRANT CO DIS"}
{"id": "107377-17576", "report_number": "107377", "origin": "FE", "filer_id": "17576", "filer_name": "ADAM GLICKMAN", "type": "Lobbyist", "funding_source_id": "17576", "funding_source": "ADAM GLICKMAN (Self)"}
{"id": "107242-95286", "report_number": "107242", "origin": "FE", "filer_id": "95285", "filer_name": "Adam Zarrin", "type": "Employer", "funding_source_id": "95286", "funding_source": "LEUKEMIA & LYMPHOMA"}
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
Qwen2-72B-Instruct [
{
"id": "107243-26595",
"report_number": "107243",
"origin": "FE",
"filer_id": "26595",
"filer_name": "STEVEN SCHULTZ",
"type": "Lobbyist",
"funding_source_id": "26595",
"funding_source": "STEVEN SCHULTZ (Self"
},
{
"id": "107333-18369",
"report_number": "107333",
"origin": "FE",
"filer_id": "17432",
"filer_name": "CAPITOL STRATEGIES C",
"type": "Employer",
"funding_source_id": "18369",
"funding_source": "SPOKANE TRANSIT AUTH"
},
{
"id": "107287-19110",
"report_number": "107287",
"origin": "FE",
"filer_id": "17723",
"filer_name": "THOMAS W KWIECIAK",
"type": "Employer",
"funding_source_id": "19110",
"funding_source": "NATL RIFLE ASSN OF A"
},
{
"id": "107220-18281",
"report_number": "107220",
"origin": "FE",
"filer_id": "17397",
"filer_name": "PATRICK S BOSS (Casc",
"type": "Employer",
"funding_source_id": "18281",
"funding_source": "PORT OF GRANT CO DIS"
},
{
"id": "107377-17576",
"report_number": "107377",
"origin": "FE",
"filer_id": "17576",
"filer_name": "ADAM GLICKMAN",
"type": "Lobbyist",
"funding_source_id": "17576",
"funding_source": "ADAM GLICKMAN (Self)"
},
{
"id": "107242-95286",
"report_number": "107242",
"origin": "FE",
"filer_id": "95285",
"filer_name": "Adam Zarrin",
"type": "Employer",
"funding_source_id": "95286",
"funding_source": "LEUKEMIA & LYMPHOMA"
}
]
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
baichuan4 ```jsonl
{"id": "107243-26595", "report_number": "107243", "origin": "FE", "filer_id": "26595", "filer_name": "STEVEN SCHULTZ", "type": "Lobbyist", "funding_source_id": "26595", "funding_source": "STEVEN SCHULTZ (Self)"}
{"id": "107333-18369", "report_number": "107333", "origin": "FE", "filer_id": "17432", "filer_name": "CAPITOL STRATEGIES C", "type": "Employer", "funding_source_id": "18369", "funding_source": "SPOKANE TRANSIT AUTH"}
{"id": "107287-19110", "report_number": "107287", "origin": "FE", "filer_id": "17723", "filer_name": "THOMAS W KWIECIAK", "type": "Employer", "funding_source_id": "19110", "funding_source": "NATL RIFLE ASSN OF A"}
{"id": "107220-18281", "report_number": "107220", "origin": "FE", "filer_id": "17397", "filer_name": "PATRICK S BOSS (Casc", "type": "Employer", "funding_source_id": "18281", "funding_source": "PORT OF GRANT CO DIS"}
{"id": "107377-17576", "report_number": "107377", "origin": "FE", "filer_id": "17576", "filer_name": "ADAM GLICKMAN", "type": "Lobbyist", "funding_source_id": "17576", "funding_source": "ADAM GLICKMAN (Self)"}
{"id": "107242-95286", "report_number": "107242", "origin": "FE", "filer_id": "95285", "filer_name": "Adam Zarrin", "type": "Employer", "funding_source_id": "95286", "funding_source": "LEUKEMIA & LYMPHOMA"}
```
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
doubao {"id":"107243-26595","report_number":"107243","origin":"FE","filer_id":"26595","filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":"26595","funding_source":"STEVEN SCHULTZ (Self)"}
{"id":"107333-18369","report_number":"107333","origin":"FE","filer_id":"17432","filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":"18369","funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":"107287","origin":"FE","filer_id":"17723","filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":"19110","funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":"107220","origin":"FE","filer_id":"17397","filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":"18281","funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":"107377","origin":"FE","filer_id":"17576","filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":"17576","funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":"107242","origin":"FE","filer_id":"95285","filer_name":"Adam Zarrin","type":"Employer","funding_source_id":"95286","funding_source":"LEUKEMIA & LYMPHOMA"}
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
gpto1 {"id": "107243-26595", "report_number": "107243", "origin": "FE", "filer_id": "26595", "filer_name": "STEVEN SCHULTZ", "type": "Lobbyist", "funding_source_id": "26595", "funding_source": "STEVEN SCHULTZ (Self)"}
{"id": "107333-18369", "report_number": "107333", "origin": "FE", "filer_id": "17432", "filer_name": "CAPITOL STRATEGIES C", "type": "Employer", "funding_source_id": "18369", "funding_source": "SPOKANE TRANSIT AUTH"}
{"id": "107287-19110", "report_number": "107287", "origin": "FE", "filer_id": "17723", "filer_name": "THOMAS W KWIECIAK", "type": "Employer", "funding_source_id": "19110", "funding_source": "NATL RIFLE ASSN OF A"}
{"id": "107220-18281", "report_number": "107220", "origin": "FE", "filer_id": "17397", "filer_name": "PATRICK S BOSS (Casc", "type": "Employer", "funding_source_id": "18281", "funding_source": "PORT OF GRANT CO DIS"}
{"id": "107377-17576", "report_number": "107377", "origin": "FE", "filer_id": "17576", "filer_name": "ADAM GLICKMAN", "type": "Lobbyist", "funding_source_id": "17576", "funding_source": "ADAM GLICKMAN (Self)"}
{"id": "107242-95286", "report_number": "107242", "origin": "FE", "filer_id": "95285", "filer_name": "Adam Zarrin", "type": "Employer", "funding_source_id": "95286", "funding_source": "LEUKEMIA & LYMPHOMA"}
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
kimi {"id":"107243-26595","report_number":"107243","origin":"FE","filer_id":"26595","filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":"26595","funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":"107333","origin":"FE","filer_id":"17432","filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":"18369","funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":"107287","origin":"FE","filer_id":"17723","filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":"19110","funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":"107220","origin":"FE","filer_id":"17397","filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":"18281","funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":"107377","origin":"FE","filer_id":"17576","filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":"17576","funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":"107242","origin":"FE","filer_id":"95285","filer_name":"Adam Zarrin","type":"Employer","funding_source_id":"95286","funding_source":"LEUKEMIA & LYMPHOMA"}
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
minimax ```
{"id":"107243-26595","report_number":"107243","origin":"FE","filer_id":"26595","filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":"26595","funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":"107333","origin":"FE","filer_id":"17432","filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":"18369","funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":"107287","origin":"FE","filer_id":"17723","filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":"19110","funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
wenxinyiyan ```json
{"id": "107243-26595", "report_number": "107243", "origin": "FE", "filer_id": "26595", "filer_name": "STEVEN SCHULTZ", "type": "Lobbyist", "funding_source_id": "26595", "funding_source": "STEVEN SCHULTZ (Self"}
{"id": "107333-18369", "report_number": "107333", "origin": "FE", "filer_id": "17432", "filer_name": "CAPITOL STRATEGIES C", "type": "Employer", "funding_source_id": "18369", "funding_source": "SPOKANE TRANSIT AUTH"}
{"id": "107287-19110", "report_number": "107287", "origin": "FE", "filer_id": "17723", "filer_name": "THOMAS W KWIECIAK", "type": "Employer", "funding_source_id": "19110", "funding_source": "NATL RIFLE ASSN OF A"}
{"id": "107220-18281", "report_number": "107220", "origin": "FE", "filer_id": "17397", "filer_name": "PATRICK S BOSS (Casc", "type": "Employer", "funding_source_id": "18281", "funding_source": "PORT OF GRANT CO DIS"}
{"id": "107377-17576", "report_number": "107377", "origin": "FE", "filer_id": "17576", "filer_name": "ADAM GLICKMAN", "type": "Lobbyist", "funding_source_id": "17576", "funding_source": "ADAM GLICKMAN (Self)"}
{"id": "107242-95286", "report_number": "107242", "origin": "FE", "filer_id": "95285", "filer_name": "Adam Zarrin", "type": "Employer", "funding_source_id": "95286", "funding_source": "LEUKEMIA & LYMPHOMA"}
```
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
zhipu ```jsonl
{"id":"107243-26595","report_number":"107243","origin":"FE","filer_id":"26595","filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":"26595","funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":"107333","origin":"FE","filer_id":"17432","filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":"18369","funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":"107287","origin":"FE","filer_id":"17723","filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":"19110","funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":"107220","origin":"FE","filer_id":"17397","filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":"18281","funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":"107377","origin":"FE","filer_id":"17576","filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":"17576","funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":"107242","origin":"FE","filer_id":"95285","filer_name":"Adam Zarrin","type":"Employer","funding_source_id":"95286","funding_source":"LEUKEMIA & LYMPHOMA"}
```
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}
deepseek-v3 {"id": "107243-26595", "report_number": "107243", "origin": "FE", "filer_id": "26595", "filer_name": "STEVEN SCHULTZ", "type": "Lobbyist", "funding_source_id": "26595", "funding_source": "STEVEN SCHULTZ (Self"}
{"id": "107333-18369", "report_number": "107333", "origin": "FE", "filer_id": "17432", "filer_name": "CAPITOL STRATEGIES C", "type": "Employer", "funding_source_id": "18369", "funding_source": "SPOKANE TRANSIT AUTH"}
{"id": "107287-19110", "report_number": "107287", "origin": "FE", "filer_id": "17723", "filer_name": "THOMAS W KWIECIAK", "type": "Employer", "funding_source_id": "19110", "funding_source": "NATL RIFLE ASSN OF A"}
{"id": "107220-18281", "report_number": "107220", "origin": "FE", "filer_id": "17397", "filer_name": "PATRICK S BOSS (Casc", "type": "Employer", "funding_source_id": "18281", "funding_source": "PORT OF GRANT CO DIS"}
{"id": "107377-17576", "report_number": "107377", "origin": "FE", "filer_id": "17576", "filer_name": "ADAM GLICKMAN", "type": "Lobbyist", "funding_source_id": "17576", "funding_source": "ADAM GLICKMAN (Self)"}
{"id": "107242-95286", "report_number": "107242", "origin": "FE", "filer_id": "95285", "filer_name": "Adam Zarrin", "type": "Employer", "funding_source_id": "95286", "funding_source": "LEUKEMIA & LYMPHOMA"}
{"id":"107243-26595","report_number":107243,"origin":"FE","filer_id":26595,"filer_name":"STEVEN SCHULTZ","type":"Lobbyist","funding_source_id":26595,"funding_source":"STEVEN SCHULTZ (Self"}
{"id":"107333-18369","report_number":107333,"origin":"FE","filer_id":17432,"filer_name":"CAPITOL STRATEGIES C","type":"Employer","funding_source_id":18369,"funding_source":"SPOKANE TRANSIT AUTH"}
{"id":"107287-19110","report_number":107287,"origin":"FE","filer_id":17723,"filer_name":"THOMAS W KWIECIAK","type":"Employer","funding_source_id":19110,"funding_source":"NATL RIFLE ASSN OF A"}
{"id":"107220-18281","report_number":107220,"origin":"FE","filer_id":17397,"filer_name":"PATRICK S BOSS (Casc","type":"Employer","funding_source_id":18281,"funding_source":"PORT OF GRANT CO DIS"}
{"id":"107377-17576","report_number":107377,"origin":"FE","filer_id":17576,"filer_name":"ADAM GLICKMAN","type":"Lobbyist","funding_source_id":17576,"funding_source":"ADAM GLICKMAN (Self)"}
{"id":"107242-95286","report_number":107242,"origin":"FE","filer_id":95285,"filer_name":"Adam Zarrin","type":"Employer","funding_source_id":95286,"funding_source":"LEUKEMIA & LYMPHOMA "}