Velocity Script - Connecting to a SFDC object with brackets in its name
I'm having an issue where I've been unable to google a solution.
I'm trying to set up a script that references a Salesforce Object whose name includes brackets
Is there a way to escape/ encode the brackets in velocity so that I can reference this object? Or is it something else I've got wrong? The token currently returns nothing.
I have pasted where I am below, I want to extract values stored in the Policy (Policy_Sponsor__c) object. I assume I need to name this were I have xxxxxxxxx in place

#foreach ($Policy__cList in $xxxxxxxxxx)
<tr>
<td style="padding: 4px; font-family: arial; border-collapse: collapse !important; border: 1px solid black">
${Policy__cList.get(0).Policy_Status__c} BEN WAS HERE
</td>
<td style="padding: 4px; border-collapse: collapse; border: 1px solid black">
${Policy__cList.get(0).Name}
</td>
</tr>
#end
</table>