private String get_NV_Value(int paramInt1, int paramInt2) {
   FtUtil.log_d("FactoryTestNVView", "get_NV_Value", null);
   String str = "";
   while (paramInt1 <= paramInt2) {
     byte b = NVAccessor.getNV((byte) paramInt1);
     FtUtil.log_d("FactoryTestNVView", "get_NV_Value", "key: " + paramInt1 + "NV: " + b);
     str = str + "" + paramInt1 + " / " + Change_NV_Value(b);
     if (paramInt1 < paramInt2) {
       str = str + "\n";
     }
     paramInt1++;
   }
   return str;
 }
 private void set_NV_Value(byte paramByte) {
   NVAccessor.setNV(paramByte, (byte) 80);
   FtUtil.log_d("FactoryTestNVView", "set_NV_Value", "key: " + paramByte);
 }