\d{4}a digit, repeated exactly 4 times
Non-Capturing Group(?:\-\d\d){2} {2}repeats the group contents below exactly 2 times:
\-the literal - (4510 / 558 / 2D16)
\da digit
\da digit
the literal (3210 / 408 / 2016)
Negated Character Class[^,]+ +matches at least one character outside the set below:
,the literal , (4410 / 548 / 2C16)
,the literal , (4410 / 548 / 2C16)
Negated Character Class[^:]+ +matches at least one character outside the set below:
:the literal : (5810 / 728 / 3A16)