}
+ // Process the data from TRANSP.
+
+ DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "TRANSP");
+
+ if (DataReceived.begin() != DataReceived.end()){
+
+ try {
+ TimeTransparencyDataTokens = DataReceived.begin()->first.substr(7);
+ }
+
+ catch(const out_of_range &oor){
+ // Do nothing as there is no data.
+ }
+
+ TimeTransparencyData = DataReceived.begin()->second;
+
+ }
+
+ // Process the data from URL.
+
+ DataReceived = ProcessTextVectors(&ObjectName, &ObjectData, false, "URL");
+
+ if (DataReceived.begin() != DataReceived.end()){
+
+ try {
+ URLDataTokens = DataReceived.begin()->first.substr(4);
+ }
+
+ catch(const out_of_range &oor){
+ // Do nothing as there is no data.
+ }
+
+ URLData = DataReceived.begin()->second;
+
+ }
+
}