so i interpret this
scope-token = 1*( %x21 / %x23-5B / %x5D-7E )
seems to say that the scope marker can be 1 or more ascii characters from given character intervals. So basically x21 (!) Is x7E (~), but not allowing x22 (") and x5C (\). See here for a list of characters and their hexadecimal codes.
and
scope = scope-token *( SP scope-token )
, ( ) SP scope-tokens, SP .
, :
scope = i am 5 scopes !!!!
:
scope = "scope1" "scope2" "scope3"
scope = scope1\scope2\scope3