sub get ($) { my $response = $ua->get(shift); return $response->decoded_content if $response->is_success; return undef; }