A long time ago in a basement far far away I created my own operating system. Unfortunately I made a foolish mistake when designing the file system. I choose a single byte for representing file sizes. Since that means that no file can be bigger than 255 bytes I was forced to also invent my own compression algorithm. Just now I came across such an old file called "message" compressed with said algorithm, unfortunately I don't remember how to decompress it.
Can you help me?
Here is a hexdump of the file:
> hexdump -C message
00000000 5f 20 5c 5f 2f 20 7c 0a 2a 2a 22 22 22 2a 22 23 |_ \_/ |.**"""*"#|
00000010 22 0a 29 22 22 22 22 22 09 23 22 23 22 22 22 89 |".)""""".#"#""".|
00000020 30 32 64 64 32 43 41 12 24 42 42 42 42 22 12 24 |02dd2CA.$BBBB".$|
00000030 42 62 32 64 64 42 83 2c 7c 46 7e 24 30 66 7e 39 |Bb2ddB.,|F~$0f~9|
00000040 66 62 7e 46 0a c1 0a 09 29 23 22 22 22 22 2a 22 |fb~F....)#""""*"|
00000050 29 8a 40 63 42 41 12 64 64 32 43 63 c1 49 42 42 |).@cBA.dd2Cc.IBB|
00000060 24 30 46 46 7e 69 24 |$0FF~i$|
Since I never got around to adding any other encoding I am pretty sure the original file was a ASCII encoded "plain" text.
Hint 1:
I remember the first eight bytes to be somehow special.
Hint 2:
The original file contains English text; it however uses none of the following ASCII characters:
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.

