A network administrator is configuring an extended IPv4 Access Control List (ACL) named `MGMT_FILTER` to implement sequential top-down filtering on a Cisco router interface. The policy requires four explicit criteria:
1. Permit SSH administrative access (TCP port 22) from source subnet `192.168.50.0/24` to target server `10.10.10.25`.
2. Permit SNMP monitoring queries (UDP port 161) from source subnet `192.168.50.0/24` to target server `10.10.10.25`.
3. Deny and log all other IP traffic from source subnet `192.168.50.0/24` destined to target server `10.10.10.25`.
4. Permit all remaining traffic originating from subnet `192.168.50.0/24` to any other destination, overriding the default implicit deny statement for this subnet.
In what top-down sequential order must these ACL statements be placed to satisfy all policy requirements without shadowing rules?
- 1permit tcp 192.168.50.0 0.0.0.255 host 10.10.10.25 eq 22
- 2permit udp 192.168.50.0 0.0.0.255 host 10.10.10.25 eq 161
- 3deny ip 192.168.50.0 0.0.0.255 host 10.10.10.25 log
- 4permit ip 192.168.50.0 0.0.0.255 any