```python import crypto schema Person: a: int aa = Person {a = 1} bb = Person {a = 2} cc = Person {a = 2} aahash = crypto.md5(str(aa)) bbhash = crypto.md5(str(bb)) cchash = crypto.md5(str(cc)) ```