ts_31_10x: add a class for CardApplicationXSIM

In change Id410489841bb9020ddbf74de9114d808b1d5adb6, the RuntimeState
class automatically adds additional files to the CardApplications for
ISIM and USIM. This works only once. The second time an exception will
be thrown because the added files are already in the CardApplication.
Currently there is no way generate new card applications during
initialization because the card applications are just objects that are
created once in ts_31_10x.py. Lets turn them into classes and create the
objects during initialization. This way we get fresh objects when we
re-initialize.

Change-Id: Ibb4f6242e7a92af84a905daa727b1b87016e7819
diff --git a/pySim/ts_31_103.py b/pySim/ts_31_103.py
index e1f552f..63ef99e 100644
--- a/pySim/ts_31_103.py
+++ b/pySim/ts_31_103.py
@@ -223,4 +223,6 @@
     }
 }
 
-CardApplicationISIM = CardApplication('ISIM', adf=ADF_ISIM(), sw=sw_isim)
+class CardApplicationISIM(CardApplication):
+    def __init__(self):
+	    super().__init__('ISIM', adf=ADF_ISIM(), sw=sw_isim)