{{- range $g := split .Inner "\n" -}}
{{- if hasPrefix $g "{t}" -}}
{{- substr $g 3 -}}
{{- else if hasPrefix $g "{m}" -}}
{{- range (split (substr $g 3) "|") -}}
{{- with . -}}
{{- range (split . "," ) -}}
{{- . -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- else if hasPrefix $g "{b}" -}}
{{- substr $g 3 -}}
{{- end -}}
{{- end -}}