allow incoming and outgoing traffic on specific ports to certain ip's

hi Team,

could someone please assist me with the firewall rules to allow incoming and outgoing traffic to my ccr 1009 for specific ip addresses on specific port numbers? this is the requirement,

Allow incoming and outgoing on ports 9080/443/80/1812/1813 to the below addresses:
54.xx.xx.107 – TCP + UDP
54.xx.xx.64 – TCP + UDP
54.xx.XX.241 – TCP + UDP
52.xx.xx.51 – TCP + UDP
54.xx.xx.45 – TCP

thanks.

/ip firewall address-list
add address=54.xx.xx.107 list=Allowed_IP_TCP
add address=54.xx.xx.64 list=Allowed_IP_TCP
add address=54.xx.xx.241 list=Allowed_IP_TCP
add address=54.xx.xx.51 list=Allowed_IP_TCP
add address=54.xx.xx.45 list=Allowed_IP_TCP

add address=54.xx.xx.107 list=Allowed_IP_UDP
add address=54.xx.xx.64 list=Allowed_IP_UDP
add address=54.xx.xx.241 list=Allowed_IP_UDP
add address=54.xx.xx.51 list=Allowed_IP_UDP


add action=accept chain=input dst-port=9080,443,80,1812,1813 protocol=tcp src-address-list=Allowed_IP_TCP
add action=accept chain=input dst-port=9080,443,80,1812,1813 protocol=udp src-address-list=Allowed_IP_UDP

add action=accept chain=output src-port=9080,443,80,1812,1813 protocol=tcp dst-address-list=Allowed_IP_TCP
add action=accept chain=output src-port=9080,443,80,1812,1813 protocol=udp dst-address-list=Allowed_IP_UDP