static bool isContains(List<List<int>> a, List<int> part) { for (final i in a) { if (bytesEqual(i, part)) return true; } return false; }