MP3ARH2XKH2HUBTHDF2KLFJX5WPNSOIEUPOMH6GNJRUSPYABBWDQC end.%% Support: "FFAABB.." or <<255,170,187,...>> or base64hex(H) when is_list(H), length(H) == 64 ->hex_binary(list_to_binary(H));hex(B) when is_binary(B), bit_size(B) == 256 ->B;hex(S) when is_list(S); is_binary(S) ->base64_decode_or_hex_binary(S).base64_decode_or_hex_binary(S) ->trybase64:decode(S)catch _:_ ->tryhex_binary(S)catch _:_ ->error({invalid_key_encoding, S})end