It would be awesome if we could add back the bitwise operators for Soulver 2. This is the primary feature that is preventing me from upgrading. Attached is a picture showing that the bitwise & operator does not work in Soulver 3
```shell
$ python
>>> 255 & 0xAA
170
```
Operations that are missing in Soulver 3 and are present in Soulver 2.
* & (bitwise AND)
* | (bitwise OR)
* ^ (bitwise XOR)
* << (left shift)
* >> (right shift)
* ~ (bitwise NOT)