Proposed rule: don't use hashCode in the item key for Lazy* Composables [Item key should be unique](https://developer.android.com/develop/ui/compose/lists#item-keys). `.hashCode()` is not unique. e.g. these all have [the same hash code](https://www.andreinc.net/2022/09/01/patological-input-for-the-java-hash-tables), even on JS, WASM, etc, same hashcode is unlikely, but not impossible in the wild. ```kotlin println("aaaa".hashCode()) println("aabB".hashCode()) println("aac#".hashCode()) println("bBaa".hashCode()) println("bBbB".hashCode()) println("c#aa".hashCode()) println("c#bB".hashCode()) println("c#c#".hashCode()) ```