Block crawlers with UFW

A quick tip on how to use UFW to block all IP adresses used by Google and by AI-related crawlers.

  1. If you have yet to install UFW, please refer to this tutorial on how to install UFW or this other tutorial on initial server setup on Digital Ocean for instructions.

  2. Run following Python code to get a list of UFW commands. You can comment out the sources you don’t wish to block.

import urllib.request
import json

sources = [
		r"https://developers.google.com/search/apis/ipranges/googlebot.json",
		r"https://developers.google.com/static/search/apis/ipranges/special-crawlers.json", 
		r"https://www.gstatic.com/ipranges/goog.json", 
		r"https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json",
		r"https://openai.com/gptbot.json",
		] 

for source in sources: 
	with urllib.request.urlopen(source) as url: 
		data = json.load(url) 
		for ip_dict in data['prefixes']: 
			ip = ip_dict.get('ipv4Prefix', None) 
			if not ip: 
				ip = ip_dict.get('ipv6Prefix', None) 
			print(f"ufw deny from {ip} to any comment '{source}'")

The list in this script will be updated once I find more IP tables for crawlers.

  1. Copy the output list of commands.

  2. Open the commandline for your Debian VPS.

  3. Write ( and click enter.

  4. Paste in the commands and click enter.

  5. Write ) and click enter. The commands will execute. Be patient.

If you are unable or unwilling to run the Python script, here’s the full output generated on 2023-12-13:

Preview script output
ufw deny from 2001:4860:4801:10::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:11::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:12::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:13::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:14::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:15::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:16::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:17::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:18::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:19::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:1a::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:1b::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:1c::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:1d::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:1e::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:20::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:21::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:22::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:23::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:24::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:25::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:26::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:27::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:28::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:29::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:2::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:2a::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:2b::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:2c::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:2d::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:2e::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:2f::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:30::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:31::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:32::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:33::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:34::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:35::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:36::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:37::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:38::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:39::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:3::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:3a::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:3b::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:3c::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:3d::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:3e::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:40::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:41::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:42::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:43::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:44::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:45::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:46::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:47::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:48::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:49::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:4a::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:50::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:51::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:53::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:54::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:55::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:60::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:61::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:62::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:63::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:64::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:65::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:66::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:67::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:68::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:69::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:6a::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:6b::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:6c::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:6d::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:6e::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:6f::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:70::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:71::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:72::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:73::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:74::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:75::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:76::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:77::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:78::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:79::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:80::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:81::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:82::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:83::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:84::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:85::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:86::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:87::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:88::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:90::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:91::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:92::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:93::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:c::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:f::/64 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 192.178.5.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.100.182.96/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.101.50.144/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.118.254.0/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.118.66.0/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.126.178.96/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.146.150.144/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.147.110.144/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.151.74.144/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.152.50.64/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.154.114.144/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.155.98.32/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.165.18.176/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.175.160.64/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.176.130.16/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.22.85.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.64.82.64/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.65.242.112/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.80.50.80/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.88.194.0/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.89.10.80/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.89.198.80/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 34.96.162.48/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 35.247.243.240/28 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.64.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.64.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.64.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.64.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.64.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.64.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.64.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.64.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.65.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.65.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.65.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.65.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.65.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.65.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.65.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.66.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.66.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.66.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.66.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.66.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.66.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.66.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.68.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.68.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.68.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.69.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.69.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.69.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.69.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.69.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.69.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.69.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.69.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.70.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.70.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.70.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.70.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.70.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.70.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.70.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.70.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.71.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.71.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.71.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.71.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.71.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.71.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.71.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.71.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.72.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.72.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.72.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.72.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.72.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.72.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.72.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.72.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.73.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.73.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.73.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.73.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.73.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.73.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.73.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.73.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.74.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.74.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.74.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.74.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.74.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.75.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.75.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.75.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.75.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.75.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.75.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.75.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.75.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.76.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.76.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.76.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.76.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.76.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.76.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.76.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.76.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.77.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.77.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.77.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.77.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.77.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.77.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.77.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.77.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.78.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.78.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.79.0/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.79.128/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.79.160/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.79.192/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.79.224/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.79.32/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.79.64/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 66.249.79.96/27 to any comment 'https://developers.google.com/search/apis/ipranges/googlebot.json'
ufw deny from 2001:4860:4801:2008::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2009::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:200c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:200d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2010::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2011::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2012::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2013::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2014::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2015::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2016::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2017::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2018::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2019::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:201a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:201b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:201c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:201d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:201e::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2020::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2021::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2022::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2023::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2024::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2025::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2026::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2027::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2028::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2029::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:202a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:202b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:202c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:202d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:202e::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:202f::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2030::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2031::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2032::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2033::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2034::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2035::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2036::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2037::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2038::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2039::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:203a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:203b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:203c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:203d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:203e::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2040::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2041::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2042::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2043::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2044::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2045::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2046::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2047::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2048::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2049::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:204a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2050::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2051::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2052::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2053::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2054::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2060::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2061::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2062::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2063::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2064::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2065::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2066::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2067::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2068::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2069::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:206a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:206b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:206c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:206d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:206e::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:206f::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2070::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2071::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2072::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2073::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2074::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2075::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2076::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2077::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2078::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2079::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2080::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2081::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2082::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2083::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2084::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2085::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2086::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2087::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2088::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2090::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2091::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2092::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 2001:4860:4801:2093::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 192.178.17.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 209.85.238.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 209.85.238.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 209.85.238.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 209.85.238.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 209.85.238.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 209.85.238.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 209.85.238.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 209.85.238.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.87.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.87.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.87.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.87.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.87.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.87.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.87.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.87.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.89.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.89.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.89.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.89.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.89.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.89.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.89.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.89.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.90.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.90.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.90.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.90.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.90.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.90.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.90.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.91.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.91.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.91.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.91.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.91.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.91.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.91.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.91.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.92.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.92.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.92.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.92.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.92.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.92.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 66.249.92.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 72.14.199.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 72.14.199.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 72.14.199.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 72.14.199.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 72.14.199.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 72.14.199.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 72.14.199.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 72.14.199.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.148.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.148.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.148.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.148.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.148.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.148.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.148.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.148.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.149.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.149.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.149.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.149.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.149.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.149.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.149.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.149.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.150.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.150.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.150.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.151.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.151.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.151.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.151.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.151.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.151.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.151.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.151.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.216.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.216.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.216.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.216.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.216.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.216.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.216.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.216.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.217.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.217.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.217.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.217.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.217.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.218.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.218.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.218.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.218.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.218.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.218.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.218.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.218.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.219.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 74.125.219.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/special-crawlers.json'
ufw deny from 8.8.4.0/24 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 8.8.8.0/24 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 8.34.208.0/20 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 8.35.192.0/20 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 23.236.48.0/20 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 23.251.128.0/19 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.0.0.0/15 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.2.0.0/16 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.3.0.0/23 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.3.3.0/24 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.3.4.0/24 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.3.8.0/21 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.3.16.0/20 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.3.32.0/19 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.3.64.0/18 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.3.128.0/17 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.4.0.0/14 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.8.0.0/13 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.16.0.0/12 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.32.0.0/11 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.64.0.0/10 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 34.128.0.0/10 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 35.184.0.0/13 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 35.192.0.0/14 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 35.196.0.0/15 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 35.198.0.0/16 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 35.199.0.0/17 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 35.199.128.0/18 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 35.200.0.0/13 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 35.208.0.0/12 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 35.224.0.0/12 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 35.240.0.0/13 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 64.15.112.0/20 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 64.233.160.0/19 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 66.22.228.0/23 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 66.102.0.0/20 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 66.249.64.0/19 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 70.32.128.0/19 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 72.14.192.0/18 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 74.125.0.0/16 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 104.154.0.0/15 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 104.196.0.0/14 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 104.237.160.0/19 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 107.167.160.0/19 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 107.178.192.0/18 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 108.59.80.0/20 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 108.170.192.0/18 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 108.177.0.0/17 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 130.211.0.0/16 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 142.250.0.0/15 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 146.148.0.0/17 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 162.216.148.0/22 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 162.222.176.0/21 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 172.110.32.0/21 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 172.217.0.0/16 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 172.253.0.0/16 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 173.194.0.0/16 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 173.255.112.0/20 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 192.158.28.0/22 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 192.178.0.0/15 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 193.186.4.0/24 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 199.36.154.0/23 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 199.36.156.0/24 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 199.192.112.0/22 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 199.223.232.0/21 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 207.223.160.0/20 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 208.65.152.0/22 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 208.68.108.0/22 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 208.81.188.0/22 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 208.117.224.0/19 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 209.85.128.0/17 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 216.58.192.0/19 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 216.73.80.0/20 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 216.239.32.0/19 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2001:4860::/32 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2404:6800::/32 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2404:f340::/32 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2600:1900::/28 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2606:73c0::/32 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2607:f8b0::/32 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2620:11a:a000::/40 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2620:120:e000::/40 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2800:3f0::/32 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2a00:1450::/32 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2c0f:fb50::/32 to any comment 'https://www.gstatic.com/ipranges/goog.json'
ufw deny from 2404:f340:10:4000::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:10:4001::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:10:4002::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:10:4003::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:10:4004::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:10:4005::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:10:4006::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:4010:4000::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:4010:4001::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:4010:4002::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:4010:4003::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:4010:4004::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:4010:4005::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2404:f340:4010:4006::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:100::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:101::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:102::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:103::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:104::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:105::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:106::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:107::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:108::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:109::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:10::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:10a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:10b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:10c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:10d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:10e::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:10f::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:110::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:111::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:112::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:113::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:114::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:115::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:116::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:118::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:119::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:11a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:11c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:11d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:11e::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:11f::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:120::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:121::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:122::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:130::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:131::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:132::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:133::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:138::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:139::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:13a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:13b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:140::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:141::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:142::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:150::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:151::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:152::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:153::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:154::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:155::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:156::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:157::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:158::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:159::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:15::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:15a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:15b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:160::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:161::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:162::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:163::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:164::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:165::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:166::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:16::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:170::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:171::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:17::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:180::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:181::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:182::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:183::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:184::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:185::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:186::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:187::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:188::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:189::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:18::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:18a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:18b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:18c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:18d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:18e::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:190::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:191::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:192::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1a0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1a1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1a2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1a3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1c0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1c1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1c2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1c3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1c4::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1d0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1e0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1e1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1e2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1e3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1f0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1f1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1f2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1f3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:1f4::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:200::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:201::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:202::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:203::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:20::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:210::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:211::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:212::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:213::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:214::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:21::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:220::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:221::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:222::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:223::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:22::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:230::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:231::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:232::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:233::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:234::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:235::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:236::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:237::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:238::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:239::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:23::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:240::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:241::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:24::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:250::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:251::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:252::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:253::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:254::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:25::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:260::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:261::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:262::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:263::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:26::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:270::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:271::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:272::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:273::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:27::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:280::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:281::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:28::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:290::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:291::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:29::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2a0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2a1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2a2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2a3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2b0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2b1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2c0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2c1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2c2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2c3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2d0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2d1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2d2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2d3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2d4::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2e0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2e1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2e2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2f0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2f1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2f2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:2f3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:300::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:301::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:302::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:303::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:30::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:310::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:311::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:312::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:31::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:320::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:321::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:322::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:32::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:330::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:331::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:332::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:33::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:340::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:34::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:35::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:36::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:40::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:41::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:42::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:43::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:44::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:45::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:46::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:47::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:48::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:49::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:4a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:4b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:4c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:4d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:4e::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:4f::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:50::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:51::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:52::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:53::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:54::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:55::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:56::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:57::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:58::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:59::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:5a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:5b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:5c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:5d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:5e::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:60::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:61::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:62::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:63::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:64::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:65::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:66::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:67::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:68::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:69::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:6a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:70::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:71::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:72::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:73::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:74::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:75::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:76::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:77::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:78::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:79::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:7a::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:7b::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:7c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:80::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:81::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:82::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:83::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:84::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:85::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:86::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:8::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:90::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:91::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:92::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:93::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:94::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:9::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:a0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:a1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:a2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:a3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:a4::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:b0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:b1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:b2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:b3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:b4::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:b5::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:b6::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:b7::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:b8::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:b9::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:c0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:c1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:c2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:c3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:c4::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:c5::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:c6::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:c::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d4::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d5::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d6::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d7::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d8::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d9::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:d::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:da::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:db::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:dc::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:dd::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:de::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:df::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:e0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:e1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:e2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:e3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:e4::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:e5::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:e6::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:e7::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:e8::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:e9::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:ea::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:eb::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:ec::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:ed::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:ee::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:ef::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f0::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f1::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f2::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f3::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f4::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f5::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f6::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f7::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f8::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f9::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:f::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:fa::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:fc::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:fd::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:fe::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 2600:1900:0:ff::/64 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.192.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.192.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.192.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.192.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.192.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.192.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.192.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.193.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.193.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.193.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.193.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.193.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.193.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.193.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.193.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.194.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.194.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.194.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.194.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.194.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.194.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.194.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.194.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.195.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.195.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.195.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.195.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.195.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.195.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.195.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.196.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.196.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.196.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.196.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.196.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.196.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.196.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.196.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.197.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.197.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.197.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.197.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.197.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.197.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.197.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.197.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.198.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.198.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.198.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.198.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.198.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.198.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.198.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.198.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.199.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.199.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.199.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.199.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.199.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.199.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.199.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.199.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.202.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.202.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.202.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.202.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.202.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.202.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.203.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.203.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.203.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.203.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.203.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.203.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.203.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.203.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.224.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.224.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.224.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.224.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.224.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.224.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.224.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.224.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.225.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.225.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.225.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.225.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.225.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.225.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.225.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 107.178.225.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.101.6.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.101.6.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.101.6.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.101.6.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.101.6.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.101.6.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.101.6.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.16.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.16.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.16.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.16.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.16.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.17.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.17.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.17.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.17.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.18.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.18.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.18.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.18.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.19.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.19.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.19.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.19.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.19.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.19.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.19.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.19.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.20.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.20.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.21.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.21.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.22.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.22.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.22.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.22.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.23.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.23.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.29.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.29.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.29.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.29.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.30.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.30.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.30.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.31.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.31.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.31.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.32.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.32.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.32.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.32.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.33.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.33.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.33.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.33.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.33.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.34.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.34.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.34.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.35.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.35.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.35.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.35.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.36.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.36.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.36.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.37.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.40.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.40.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.41.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.41.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.41.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.41.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.41.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.41.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.41.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.41.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.43.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.43.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.43.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.116.43.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.64.6.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.64.6.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.64.6.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.64.6.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.64.6.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.64.6.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.64.6.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.136.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.136.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.136.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.136.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.136.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.136.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.136.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.137.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.137.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.137.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.137.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.138.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.138.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.138.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.138.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.139.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.139.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.139.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.139.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.139.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.140.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.140.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.140.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.140.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.140.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.141.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.141.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.141.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.141.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.141.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.142.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.142.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.142.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.142.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.143.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.143.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.143.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.143.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.143.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.143.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.143.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 34.98.143.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.128.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.128.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.128.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.128.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.128.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.128.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.129.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.129.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.129.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.129.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.129.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.129.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.129.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.129.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.130.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.130.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.130.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.130.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.130.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.130.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.130.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.131.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.131.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.131.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.131.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.131.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.131.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.131.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.131.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.132.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.132.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.132.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.132.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.132.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.132.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.132.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.132.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.133.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.133.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.133.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.133.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.133.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.133.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.133.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.133.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.134.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.134.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.134.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.134.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.134.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.134.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.134.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.134.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.135.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.135.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.135.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.135.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.135.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.136.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.136.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.136.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.136.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.136.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.137.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.137.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.137.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.137.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.138.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.138.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.138.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.138.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.138.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.138.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.138.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.138.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.139.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.139.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.139.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.139.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.139.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.139.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.139.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.139.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.140.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.140.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.140.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.140.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.140.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.140.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.141.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.141.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.141.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.141.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.141.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.141.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.141.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.142.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.142.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.142.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.143.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.143.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.187.143.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.16.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.16.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.16.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.16.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.16.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.17.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.17.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.17.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.18.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.18.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.18.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.19.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.19.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.19.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.19.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.19.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.20.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.20.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.20.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.20.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.20.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.20.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.21.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.21.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.22.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.22.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.22.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.23.0/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.23.128/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.23.160/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.23.192/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.23.224/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.23.32/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.23.64/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 35.243.23.96/27 to any comment 'https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json'
ufw deny from 52.230.152.0/24 to any comment 'https://openai.com/gptbot.json'
ufw deny from 52.233.106.0/24 to any comment 'https://openai.com/gptbot.json'