Travelport / travelport-uapi-tutorial-php

The travelport-uapi-tutorial-php is a PHP project for Universal API that will help you connect and code a standard workflow including Air, Vehicle, and Hotel.
35 stars 47 forks source link

Grid form with all details #68

Open officialsunny opened 7 years ago

officialsunny commented 7 years ago

How to form grid from xml using php for multi user b2b portal kindly guide with php code if i convert it to array the complete response so how can i get an array in logical form so i can generate grid using loop for one way, two way , single leg, multi leg national or international flights

vivekjyotipramanik commented 7 years ago

Hi officialsunny,

Could you please explain a bit more about how you are expecting the results. Thanks.

officialsunny commented 7 years ago

image

vivekjyotipramanik commented 7 years ago

Hi officialsunny,

We already have a PHP sample which actually provides the data. Please find below the code and the results produced by the code. Please let us know how it goes. Thanks.

Code : https://github.com/Travelport/travelport-uapi-tutorial-php/blob/master/Air/phpSample_Air_LFS.php

Results: https://github.com/Travelport/travelport-uapi-tutorial-php/blob/master/Air/flights.txt

officialsunny commented 7 years ago

Dear Vivek ,

          I want some more details kindly help me out in forming such an array by which i can show multi leg flights as well as return flight with multi leg in such format 
vivekjyotipramanik commented 7 years ago

Hi officialsunny,

We will work on the code to extend it, but it might take sometime to add the sample to github. We will provide an update as soon as the code is updated. Thanks.

marcadde23 commented 6 years ago

@vivekjyotipramanik How to display correct flight number, it displays less number than what i see in the demo page. Thanks

vivekjyotipramanik commented 6 years ago

Hi marcadde23,

Please share both the request and response and we will analyze. Thanks.

marcadde23 commented 6 years ago

Here is request

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
  <soapenv:Header/>
  <soapenv:Body>
    <air:LowFareSearchReq xmlns:air="http://www.travelport.com/schema/air_v42_0" TraceId="trace" AuthorizedBy="user" TargetBranch="P105370" SolutionResult="true">
      <com:BillingPointOfSaleInfo xmlns:com="http://www.travelport.com/schema/common_v42_0" OriginApplication="UAPI"/>
      <air:SearchAirLeg>
        <air:SearchOrigin>
          <com:Airport xmlns:com="http://www.travelport.com/schema/common_v42_0" Code="NBO"/>
        </air:SearchOrigin>
        <air:SearchDestination>
          <com:Airport xmlns:com="http://www.travelport.com/schema/common_v42_0" Code="DXB"/>
        </air:SearchDestination>
        <air:SearchDepTime PreferredTime="2018-03-15"/>
      </air:SearchAirLeg>
      <air:AirSearchModifiers IncludeFlightDetails="true">
        <air:PreferredProviders>
          <com:Provider xmlns:com="http://www.travelport.com/schema/common_v42_0" Code="1G"/>
        </air:PreferredProviders>
        <air:PermittedCabins>
          <com:CabinClass xmlns:com="http://www.travelport.com/schema/common_v42_0" Type="Economy"/>
        </air:PermittedCabins>
      </air:AirSearchModifiers>
      <com:SearchPassenger xmlns:com="http://www.travelport.com/schema/common_v42_0" Code="ADT"/>
      <air:AirPricingModifiers CurrencyType="USD" FaresIndicator="AllFares"/>
    </air:LowFareSearchReq>
  </soapenv:Body>
</soapenv:Envelope>

Because of using PHP, i don't create response file, so I retrieve required values using loop. And the following code return less info

<?xml version="1.0"?>
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
  <SOAP:Body>
    <air:LowFareSearchRsp xmlns:air="http://www.travelport.com/schema/air_v42_0" TraceId="trace" TransactionId="25EBEBCC0A07643B81B89E4F426DEE16" ResponseTime="13096" DistanceUnits="MI" CurrencyType="USD">
      <air:FlightDetailsList>
        <air:FlightDetails Key="1NwhlI7Q2BKAkMfCAAAAAA==" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T18:55:00.000+03:00" ArrivalTime="2018-03-17T01:00:00.000+04:00" FlightTime="305" TravelTime="305" Equipment="788" OriginTerminal="1A" DestinationTerminal="1"/>
        <air:FlightDetails Key="1NwhlI7Q2BKAzMfCAAAAAA==" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T23:10:00.000+03:00" ArrivalTime="2018-03-17T05:25:00.000+04:00" FlightTime="315" TravelTime="315" Equipment="738" OriginTerminal="1A" DestinationTerminal="1"/>
        .
        .
        .
      </air:FlightDetailsList>
      <air:AirSegmentList>
        <air:AirSegment Key="1NwhlI7Q2BKAjMfCAAAAAA==" Group="0" Carrier="KQ" FlightNumber="310" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T18:55:00.000+03:00" ArrivalTime="2018-03-17T01:00:00.000+04:00" FlightTime="305" Distance="2200" ETicketability="Yes" Equipment="788" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="1NwhlI7Q2BKAkMfCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="1NwhlI7Q2BKAyMfCAAAAAA==" Group="0" Carrier="KQ" FlightNumber="304" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T23:10:00.000+03:00" ArrivalTime="2018-03-17T05:25:00.000+04:00" FlightTime="315" Distance="2200" ETicketability="Yes" Equipment="738" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="1NwhlI7Q2BKAzMfCAAAAAA=="/>
        </air:AirSegment>
        .
        .
        .
      </air:AirSegmentList>
      <air:FareInfoList>
        <air:FareInfo Key="1NwhlI7Q2BKArMfCAAAAAA==" FareBasis="NWLSRWKE" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:10:00.000+00:00" DepartureDate="2018-03-16" Amount="USD155.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="1NwhlI7Q2BKArMfCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA/m1DMNbyjhJM3ExqSoG051W8N+Siiit9fIBIJ8gJ1jqQu0ZscBMSQ6+D+xE0kCoxMS/my0mBm4fo15buX/ifFZN12ptZCGezcCIbRqMTJch6v9tEaRJgF5C/YIEuJEelt8Q9iB9lG5IXxRrdxIeBUBW8vSBNa8ZUmwC02UUzMsnBLH+tC+80Qkzhb9JYI6ANc85JzK1owZHir5wkVQHOuKXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8DnnUuWXdZ/ivzOoqKdr8JoSJ/HJ9mjemgwECQs8xOHMnum0cvMghL2Hr8cs07iIj0LlSpbmPDf77cNwlgz+iXbOVuG0bsK6zw</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="1NwhlI7Q2BKACNfCAAAAAA==" FareBasis="NVEOWKE" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:10:00.000+00:00" DepartureDate="2018-03-16" Amount="USD96.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:FareSurcharge Key="1NwhlI7Q2BKAONfCAAAAAA==" Type="Other" Amount="NUC5.00"/>
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="1NwhlI7Q2BKACNfCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAxmyschz/qZvM3ExqSoG051W8N+Siiit9bATznfNbKWDVCulqMwbpNZHDnuVxMyBUlPCOJ0c7oN5avKbw5zMEzu+c4NL8FZWf8siOHFaFMf8hf6E18cRejGVqfCTByZWB3Xs5531mirX6STZDo2E3i3qkp0FEw0raOCbZ1nsUQQBahyv2SLPtoJrB+inJupKADQsVF2Q7Xpfy5YV9dV3U4CXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAzzD4Wdjal2fNB7k5cLzH1XA2bCATsypC7RIcMMSasiujvvSYkcYnwz7RvoI0uVdCDV28ByIyvhptEhwwxJqyK5zDAoMboM9N+RsBfJKkIog</air:FareRuleKey>
        </air:FareInfo>
        .
        .
        .
      </air:FareInfoList>
      <air:RouteList>
        <air:Route Key="1NwhlI7Q2BKAfRfCAAAAAA==">
          <air:Leg Key="1NwhlI7Q2BKAlMfCAAAAAA==" Group="0" Origin="NBO" Destination="DXB"/>
        </air:Route>
      </air:RouteList>
      <air:AirPricingSolution Key="1NwhlI7Q2BKAiMfCAAAAAA==" TotalPrice="USD283.40" BasePrice="USD155.00" ApproximateTotalPrice="USD283.40" ApproximateBasePrice="USD155.00" Taxes="USD128.40" ApproximateTaxes="USD128.40">
        <air:Journey TravelTime="P0DT5H5M0S">
          <air:AirSegmentRef Key="1NwhlI7Q2BKAjMfCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="1NwhlI7Q2BKAlMfCAAAAAA=="/>
        <air:AirPricingInfo Key="1NwhlI7Q2BKAmMfCAAAAAA==" TotalPrice="USD283.40" BasePrice="USD155.00" ApproximateTotalPrice="USD283.40" ApproximateBasePrice="USD155.00" Taxes="USD128.40" ApproximateTaxes="USD128.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" ETicketability="Yes" PlatingCarrier="KQ" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="1NwhlI7Q2BKArMfCAAAAAA=="/>
          <air:BookingInfo BookingCode="N" BookingCount="9" CabinClass="Economy" FareInfoRef="1NwhlI7Q2BKArMfCAAAAAA==" SegmentRef="1NwhlI7Q2BKAjMfCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="1NwhlI7Q2BKAnMfCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="1NwhlI7Q2BKAoMfCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD2.00" Key="1NwhlI7Q2BKApMfCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD75.00" Key="1NwhlI7Q2BKAqMfCAAAAAAAA"/>
          <air:FareCalc>NBO KQ DXB 155.00NWLSRWKE NUC155.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD75.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Percentage>100.00</air:Percentage>
          </air:CancelPenalty>
        </air:AirPricingInfo>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="1NwhlI7Q2BKA1MfCAAAAAA==" TotalPrice="USD283.40" BasePrice="USD155.00" ApproximateTotalPrice="USD283.40" ApproximateBasePrice="USD155.00" Taxes="USD128.40" ApproximateTaxes="USD128.40">
        <air:Journey TravelTime="P0DT5H15M0S">
          <air:AirSegmentRef Key="1NwhlI7Q2BKAyMfCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="1NwhlI7Q2BKAlMfCAAAAAA=="/>
        <air:AirPricingInfo Key="1NwhlI7Q2BKAsMfCAAAAAA==" TotalPrice="USD283.40" BasePrice="USD155.00" ApproximateTotalPrice="USD283.40" ApproximateBasePrice="USD155.00" Taxes="USD128.40" ApproximateTaxes="USD128.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" ETicketability="Yes" PlatingCarrier="KQ" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="1NwhlI7Q2BKArMfCAAAAAA=="/>
          <air:BookingInfo BookingCode="N" BookingCount="9" CabinClass="Economy" FareInfoRef="1NwhlI7Q2BKArMfCAAAAAA==" SegmentRef="1NwhlI7Q2BKAyMfCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="1NwhlI7Q2BKAtMfCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="1NwhlI7Q2BKAuMfCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD2.00" Key="1NwhlI7Q2BKAvMfCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD75.00" Key="1NwhlI7Q2BKAwMfCAAAAAAAA"/>
          <air:FareCalc>NBO KQ DXB 155.00NWLSRWKE NUC155.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD75.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Percentage>100.00</air:Percentage>
          </air:CancelPenalty>
        </air:AirPricingInfo>
      </air:AirPricingSolution>
      .
      .
      .
      <air:BrandList>
        <air:Brand Key="1NwhlI7Q2BKAvRfCAAAAAA==" BrandID="27786" Name="Economy Flex" BrandedDetailsAvailable="true" Carrier="EK">
          <air:Title Type="External" LanguageCode="EN">Economy Flex</air:Title>
          <air:Title Type="Short" LanguageCode="EN">EF</air:Title>
          <air:Text Type="Upsell" LanguageCode="EN">Economy Flex offers FREE SEATING, additional flexibility and mileage accrual.</air:Text>
          <air:Text Type="MarketingAgent" LanguageCode="EN">EMIRATES PAID SEATS NOW BOOKABLE WITH TRAVELPORT

Economy Flex includes:

&#x2022; Free seat assignment
&#x2022; Changes permitted at a fee 
&#x2022; Refunds permitted at a fee
&#x2022; 70% flown miles earned
&#x2022; Mileage upgrade eligibility
&#x2022; Checked baggage included *
&#x2022; Hand luggage x 1 bag 7 KG
&#x2022; Complimentary Wi-Fi
&#x2022; Soft and Alcoholic refreshments
&#x2022; ICE entertainment

* Please refer to fare rules for full conditions</air:Text>
          <air:Text Type="Strapline" LanguageCode="EN">Welcome to Emirates Economy Class</air:Text>
          <air:ImageLocation Type="Agent" ImageWidth="150" ImageHeight="150">https://merchandisingmanagement.pp.travelport.com/documents/10431/12427/Economy%20seats_400x300_tcm275-685076.jpg</air:ImageLocation>
          <air:ImageLocation Type="Consumer" ImageWidth="150" ImageHeight="150">https://merchandisingmanagement.pp.travelport.com/documents/10431/12427/Economy%20seats_400x300_tcm275-685076.jpg</air:ImageLocation>
        </air:Brand>
        <air:Brand Key="1NwhlI7Q2BKAxRfCAAAAAA==" BrandID="32167" Name="Economy Semi Flex" BrandedDetailsAvailable="true" Carrier="ET">
          <air:Title Type="External" LanguageCode="EN">Economy Semi Flex</air:Title>
          <air:Title Type="Short" LanguageCode="EN">Eco S Flex</air:Title>
          <air:Text Type="Upsell" LanguageCode="EN">Upgrade to Economy Semi Flex for the option to amend your booking for an additional fee</air:Text>
          <air:Text Type="MarketingAgent" LanguageCode="EN">ECONOMY SEMI FLEX fare - 

1 - Checked Baggage: 1 Bag, Max 23kg. USA flights 2 Bags, Max 23kg each.  
2 - Carry On / Hand Baggage: 1 Bag, Max 7kg. USA flights 2 Bags, Max 7kg each. 
3 - Flight and/or Travel Date Changes (Rebooking): At a fee. 
4 - Refund: At a fee. 
5 - Pre Reserved Seating: Free. 
6 - Meals and Beverages on board: Complimentary premium meals and drinks on board. 
7 - On board WiFi connectivity: Boeing 787 Dreamliner aircraft only. At a fee. 

If the flight is operated by another airline, the on-board product and/or service may be different. 

GDS/NS8

Fly in the Ethiopian Airlines modern and technologically advanced Boeing 787 Dreamliner. 
Recliner Economy Class seats with more legroom and space. State of the art audio and video services with seat back screens offering entertainment for all ages.</air:Text>
          <air:Text Type="Strapline" LanguageCode="EN">Some additional flexibility when required</air:Text>
          <air:ImageLocation Type="Agent" ImageWidth="150" ImageHeight="150">https://merchandisingmanagement.pp.travelport.com/documents/10431/70021/ET%20semi%20flex.jpg</air:ImageLocation>
          <air:ImageLocation Type="Consumer" ImageWidth="150" ImageHeight="150">https://merchandisingmanagement.pp.travelport.com/documents/10431/70021/ET%20semi%20flex.jpg</air:ImageLocation>
        </air:Brand>
      </air:BrandList>
    </air:LowFareSearchRsp>
  </SOAP:Body>
</SOAP:Envelope>
vivekjyotipramanik commented 6 years ago

Hi marcadde23,

Please share the response you are getting as well, so that we can compare the same with demosite. Thanks.

marcadde23 commented 6 years ago

@vivekjyotipramanik

I changed the response part, see above comment. Thank you

vivekjyotipramanik commented 6 years ago

Hi marcadde23,

Looks like you have removed the AirSegment part from the response. When you said, the the number of segmetn is less in the response you are receiving that the demosite response, we need to compare the complete response side by side. Please share the full, unedited response you are receiving. Thanks.

marcadde23 commented 6 years ago

@vivekjyotipramanik Here it is

<?xml version="1.0"?>
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
  <SOAP:Body>
    <air:LowFareSearchRsp xmlns:air="http://www.travelport.com/schema/air_v42_0" TraceId="trace" TransactionId="260C3A6B0A076477E9C725DDBE9D1731" ResponseTime="7110" DistanceUnits="MI" CurrencyType="USD">
      <air:FlightDetailsList>
        <air:FlightDetails Key="7kkmlI3R2BKAy/pCAAAAAA==" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T18:55:00.000+03:00" ArrivalTime="2018-03-17T01:00:00.000+04:00" FlightTime="305" TravelTime="305" Equipment="788" OriginTerminal="1A" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKABAqCAAAAAA==" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T23:10:00.000+03:00" ArrivalTime="2018-03-17T05:25:00.000+04:00" FlightTime="315" TravelTime="315" Equipment="738" OriginTerminal="1A" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKAGAqCAAAAAA==" Origin="NBO" Destination="MCT" DepartureTime="2018-03-16T00:15:00.000+03:00" ArrivalTime="2018-03-16T06:25:00.000+04:00" FlightTime="310" TravelTime="515" Equipment="738"/>
        <air:FlightDetails Key="7kkmlI3R2BKAIAqCAAAAAA==" Origin="MCT" Destination="DXB" DepartureTime="2018-03-16T08:40:00.000+04:00" ArrivalTime="2018-03-16T09:50:00.000+04:00" FlightTime="70" TravelTime="515" Equipment="788" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKAbAqCAAAAAA==" Origin="MCT" Destination="DXB" DepartureTime="2018-03-16T14:20:00.000+04:00" ArrivalTime="2018-03-16T15:35:00.000+04:00" FlightTime="75" TravelTime="860" Equipment="738" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKAiAqCAAAAAA==" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T16:50:00.000+03:00" ArrivalTime="2018-03-16T22:50:00.000+04:00" FlightTime="300" TravelTime="300" Equipment="77W" OriginTerminal="1B" DestinationTerminal="3"/>
        <air:FlightDetails Key="7kkmlI3R2BKAuAqCAAAAAA==" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T22:45:00.000+03:00" ArrivalTime="2018-03-17T04:45:00.000+04:00" FlightTime="300" TravelTime="300" Equipment="77L" OriginTerminal="1B" DestinationTerminal="3"/>
        <air:FlightDetails Key="7kkmlI3R2BKAzAqCAAAAAA==" Origin="NBO" Destination="KGL" DepartureTime="2018-03-16T21:00:00.000+03:00" ArrivalTime="2018-03-16T21:25:00.000+02:00" FlightTime="85" TravelTime="710" Equipment="CRJ" OriginTerminal="1A"/>
        <air:FlightDetails Key="7kkmlI3R2BKA1AqCAAAAAA==" Origin="KGL" Destination="MBA" DepartureTime="2018-03-16T23:30:00.000+02:00" ArrivalTime="2018-03-17T02:10:00.000+03:00" FlightTime="100" TravelTime="710" Distance="667" Equipment="332" OnTimePerformance="-1" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKA2AqCAAAAAA==" Origin="MBA" Destination="DXB" DepartureTime="2018-03-17T03:20:00.000+03:00" ArrivalTime="2018-03-17T09:50:00.000+04:00" FlightTime="330" TravelTime="710" Distance="2282" Equipment="332" OnTimePerformance="-1" OriginTerminal="1" DestinationTerminal="2"/>
        <air:FlightDetails Key="7kkmlI3R2BKADBqCAAAAAA==" Origin="NBO" Destination="KGL" DepartureTime="2018-03-16T15:35:00.000+03:00" ArrivalTime="2018-03-16T16:00:00.000+02:00" FlightTime="85" TravelTime="1035" Equipment="CRJ" OriginTerminal="1C"/>
        <air:FlightDetails Key="7kkmlI3R2BKAKBqCAAAAAA==" Origin="NBO" Destination="CAI" DepartureTime="2018-03-16T04:20:00.000+03:00" ArrivalTime="2018-03-16T08:10:00.000+02:00" FlightTime="290" TravelTime="580" Equipment="738" OriginTerminal="1C" DestinationTerminal="3"/>
        <air:FlightDetails Key="7kkmlI3R2BKAMBqCAAAAAA==" Origin="CAI" Destination="DXB" DepartureTime="2018-03-16T09:45:00.000+02:00" ArrivalTime="2018-03-16T15:00:00.000+04:00" FlightTime="195" TravelTime="580" Equipment="333" OriginTerminal="3" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKAeBqCAAAAAA==" Origin="CAI" Destination="DXB" DepartureTime="2018-03-16T22:30:00.000+02:00" ArrivalTime="2018-03-17T03:45:00.000+04:00" FlightTime="195" TravelTime="1345" Equipment="333" OriginTerminal="3" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKAkBqCAAAAAA==" Origin="NBO" Destination="ADD" DepartureTime="2018-03-16T05:00:00.000+03:00" ArrivalTime="2018-03-16T07:15:00.000+03:00" FlightTime="135" TravelTime="585" Equipment="738" OriginTerminal="1C" DestinationTerminal="2"/>
        <air:FlightDetails Key="7kkmlI3R2BKAmBqCAAAAAA==" Origin="ADD" Destination="DXB" DepartureTime="2018-03-16T10:30:00.000+03:00" ArrivalTime="2018-03-16T15:45:00.000+04:00" FlightTime="255" TravelTime="585" Equipment="77W" OriginTerminal="2" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKAyBqCAAAAAA==" Origin="NBO" Destination="ADD" DepartureTime="2018-03-16T19:20:00.000+03:00" ArrivalTime="2018-03-16T21:20:00.000+03:00" FlightTime="120" TravelTime="400" Equipment="738" OriginTerminal="1C" DestinationTerminal="2"/>
        <air:FlightDetails Key="7kkmlI3R2BKA1BqCAAAAAA==" Origin="ADD" Destination="DXB" DepartureTime="2018-03-16T22:00:00.000+03:00" ArrivalTime="2018-03-17T03:00:00.000+04:00" FlightTime="240" TravelTime="400" Equipment="77L" OriginTerminal="2" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKA8BqCAAAAAA==" Origin="NBO" Destination="MBA" DepartureTime="2018-03-16T20:30:00.000+03:00" ArrivalTime="2018-03-16T21:40:00.000+03:00" FlightTime="70" TravelTime="740" Equipment="CRJ"/>
        <air:FlightDetails Key="7kkmlI3R2BKAJCqCAAAAAA==" Origin="NBO" Destination="MBA" DepartureTime="2018-03-16T15:00:00.000+03:00" ArrivalTime="2018-03-16T15:50:00.000+03:00" FlightTime="50" TravelTime="1070" Equipment="CRJ"/>
        <air:FlightDetails Key="7kkmlI3R2BKAQCqCAAAAAA==" Origin="NBO" Destination="EBB" DepartureTime="2018-03-16T11:40:00.000+03:00" ArrivalTime="2018-03-16T12:50:00.000+03:00" FlightTime="70" TravelTime="860" Equipment="CRJ" OriginTerminal="1C"/>
        <air:FlightDetails Key="7kkmlI3R2BKASCqCAAAAAA==" Origin="EBB" Destination="ADD" DepartureTime="2018-03-16T18:25:00.000+03:00" ArrivalTime="2018-03-16T20:30:00.000+03:00" FlightTime="125" TravelTime="860" Equipment="738" DestinationTerminal="2"/>
        <air:FlightDetails Key="7kkmlI3R2BKAjCqCAAAAAA==" Origin="EBB" Destination="DXB" DepartureTime="2018-03-16T15:25:00.000+03:00" ArrivalTime="2018-03-16T21:40:00.000+04:00" FlightTime="315" TravelTime="540" Equipment="77W" DestinationTerminal="3"/>
        <air:FlightDetails Key="7kkmlI3R2BKAsCqCAAAAAA==" Origin="CAI" Destination="DXB" DepartureTime="2018-03-16T12:25:00.000+02:00" ArrivalTime="2018-03-16T17:45:00.000+04:00" FlightTime="200" TravelTime="745" Equipment="77W" OriginTerminal="2" DestinationTerminal="3"/>
        <air:FlightDetails Key="7kkmlI3R2BKA9CqCAAAAAA==" Origin="CAI" Destination="DXB" DepartureTime="2018-03-16T19:05:00.000+02:00" ArrivalTime="2018-03-17T00:35:00.000+04:00" FlightTime="210" TravelTime="1155" Equipment="77W" OriginTerminal="2" DestinationTerminal="3"/>
        <air:FlightDetails Key="7kkmlI3R2BKAEDqCAAAAAA==" Origin="NBO" Destination="JNB" DepartureTime="2018-03-16T08:35:00.000+03:00" ArrivalTime="2018-03-16T11:40:00.000+02:00" FlightTime="245" TravelTime="840" Equipment="319" OriginTerminal="1B" DestinationTerminal="A"/>
        <air:FlightDetails Key="7kkmlI3R2BKAGDqCAAAAAA==" Origin="JNB" Destination="DXB" DepartureTime="2018-03-16T13:15:00.000+02:00" ArrivalTime="2018-03-16T23:35:00.000+04:00" FlightTime="500" TravelTime="840" Equipment="77W" OriginTerminal="A" DestinationTerminal="3"/>
        <air:FlightDetails Key="7kkmlI3R2BKATDqCAAAAAA==" Origin="NBO" Destination="DAR" DepartureTime="2018-03-16T20:40:00.000+03:00" ArrivalTime="2018-03-16T22:05:00.000+03:00" FlightTime="85" TravelTime="1430" Distance="415" Equipment="333" OnTimePerformance="-1" OriginTerminal="1C"/>
        <air:FlightDetails Key="7kkmlI3R2BKAUDqCAAAAAA==" Origin="DAR" Destination="ZRH" DepartureTime="2018-03-16T23:20:00.000+03:00" ArrivalTime="2018-03-17T06:15:00.000+01:00" FlightTime="535" TravelTime="1430" Distance="4192" Equipment="333" OnTimePerformance="-1"/>
        <air:FlightDetails Key="7kkmlI3R2BKAWDqCAAAAAA==" Origin="ZRH" Destination="DXB" DepartureTime="2018-03-17T12:25:00.000+01:00" ArrivalTime="2018-03-17T21:30:00.000+04:00" FlightTime="365" TravelTime="1430" Equipment="333" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKAiDqCAAAAAA==" Origin="NBO" Destination="AUH" DepartureTime="2018-03-16T14:05:00.000+03:00" ArrivalTime="2018-03-16T20:15:00.000+04:00" FlightTime="310" TravelTime="1535" Equipment="32A" OriginTerminal="1C" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKAkDqCAAAAAA==" Origin="AUH" Destination="BAH" DepartureTime="2018-03-17T09:15:00.000+04:00" ArrivalTime="2018-03-17T09:30:00.000+03:00" FlightTime="75" TravelTime="1535" Equipment="320" OriginTerminal="3"/>
        <air:FlightDetails Key="7kkmlI3R2BKAmDqCAAAAAA==" Origin="BAH" Destination="DXB" DepartureTime="2018-03-17T14:20:00.000+03:00" ArrivalTime="2018-03-17T16:40:00.000+04:00" FlightTime="80" TravelTime="1535" Equipment="333" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKA2DqCAAAAAA==" Origin="NBO" Destination="CDG" DepartureTime="2018-03-16T23:50:00.000+03:00" ArrivalTime="2018-03-17T06:30:00.000+01:00" FlightTime="520" TravelTime="1355" Equipment="788" OriginTerminal="1A" DestinationTerminal="2E"/>
        <air:FlightDetails Key="7kkmlI3R2BKA4DqCAAAAAA==" Origin="CDG" Destination="DXB" DepartureTime="2018-03-17T13:30:00.000+01:00" ArrivalTime="2018-03-17T23:25:00.000+04:00" FlightTime="415" TravelTime="1355" Equipment="77W" OriginTerminal="2F" DestinationTerminal="1"/>
        <air:FlightDetails Key="7kkmlI3R2BKAEEqCAAAAAA==" Origin="NBO" Destination="ZNZ" DepartureTime="2018-03-16T08:15:00.000+03:00" ArrivalTime="2018-03-16T09:55:00.000+03:00" FlightTime="100" TravelTime="830" Equipment="ATR"/>
        <air:FlightDetails Key="7kkmlI3R2BKAGEqCAAAAAA==" Origin="ZNZ" Destination="DAR" DepartureTime="2018-03-16T11:40:00.000+03:00" ArrivalTime="2018-03-16T12:10:00.000+03:00" FlightTime="30" TravelTime="830" Equipment="ATR"/>
        <air:FlightDetails Key="7kkmlI3R2BKAIEqCAAAAAA==" Origin="DAR" Destination="DXB" DepartureTime="2018-03-16T16:30:00.000+03:00" ArrivalTime="2018-03-16T23:05:00.000+04:00" FlightTime="335" TravelTime="830" Equipment="77W" DestinationTerminal="3"/>
        <air:FlightDetails Key="7kkmlI3R2BKAXEqCAAAAAA==" Origin="NBO" Destination="MRU" DepartureTime="2018-03-16T14:25:00.000+03:00" ArrivalTime="2018-03-16T19:40:00.000+04:00" FlightTime="255" TravelTime="855" Equipment="319" OriginTerminal="1A"/>
        <air:FlightDetails Key="7kkmlI3R2BKAZEqCAAAAAA==" Origin="MRU" Destination="DXB" DepartureTime="2018-03-16T23:00:00.000+04:00" ArrivalTime="2018-03-17T05:40:00.000+04:00" FlightTime="400" TravelTime="855" Equipment="388" DestinationTerminal="3"/>
      </air:FlightDetailsList>
      <air:AirSegmentList>
        <air:AirSegment Key="7kkmlI3R2BKAx/pCAAAAAA==" Group="0" Carrier="KQ" FlightNumber="310" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T18:55:00.000+03:00" ArrivalTime="2018-03-17T01:00:00.000+04:00" FlightTime="305" Distance="2200" ETicketability="Yes" Equipment="788" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAy/pCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAAAqCAAAAAA==" Group="0" Carrier="KQ" FlightNumber="304" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T23:10:00.000+03:00" ArrivalTime="2018-03-17T05:25:00.000+04:00" FlightTime="315" Distance="2200" ETicketability="Yes" Equipment="738" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKABAqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAFAqCAAAAAA==" Group="0" Carrier="WY" FlightNumber="722" Origin="NBO" Destination="MCT" DepartureTime="2018-03-16T00:15:00.000+03:00" ArrivalTime="2018-03-16T06:25:00.000+04:00" FlightTime="310" Distance="2257" ETicketability="Yes" Equipment="738" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAGAqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAHAqCAAAAAA==" Group="0" Carrier="WY" FlightNumber="603" Origin="MCT" Destination="DXB" DepartureTime="2018-03-16T08:40:00.000+04:00" ArrivalTime="2018-03-16T09:50:00.000+04:00" FlightTime="70" Distance="230" ETicketability="Yes" Equipment="788" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAIAqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAaAqCAAAAAA==" Group="0" Carrier="WY" FlightNumber="609" Origin="MCT" Destination="DXB" DepartureTime="2018-03-16T14:20:00.000+04:00" ArrivalTime="2018-03-16T15:35:00.000+04:00" FlightTime="75" Distance="230" ETicketability="Yes" Equipment="738" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAbAqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAhAqCAAAAAA==" Group="0" Carrier="EK" FlightNumber="720" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T16:50:00.000+03:00" ArrivalTime="2018-03-16T22:50:00.000+04:00" FlightTime="300" Distance="2200" ETicketability="Yes" Equipment="77W" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="A" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAiAqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAtAqCAAAAAA==" Group="0" Carrier="EK" FlightNumber="722" Origin="NBO" Destination="DXB" DepartureTime="2018-03-16T22:45:00.000+03:00" ArrivalTime="2018-03-17T04:45:00.000+04:00" FlightTime="300" Distance="2200" ETicketability="Yes" Equipment="77L" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="A" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAuAqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAyAqCAAAAAA==" Group="0" Carrier="WB" FlightNumber="403" Origin="NBO" Destination="KGL" DepartureTime="2018-03-16T21:00:00.000+03:00" ArrivalTime="2018-03-16T21:25:00.000+02:00" FlightTime="85" Distance="468" ETicketability="Yes" Equipment="CRJ" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cache status used. No polled avail exists." OptionalServicesIndicator="false" AvailabilitySource="H" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAzAqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKA0AqCAAAAAA==" Group="0" Carrier="WB" FlightNumber="306" Origin="KGL" Destination="DXB" DepartureTime="2018-03-16T23:30:00.000+02:00" ArrivalTime="2018-03-17T09:50:00.000+04:00" FlightTime="500" Distance="2514" ETicketability="Yes" Equipment="332" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cache status used. No polled avail exists." OptionalServicesIndicator="false" NumberOfStops="1" AvailabilitySource="H" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKA1AqCAAAAAA=="/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKA2AqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKACBqCAAAAAA==" Group="0" Carrier="WB" FlightNumber="453" Origin="NBO" Destination="KGL" DepartureTime="2018-03-16T15:35:00.000+03:00" ArrivalTime="2018-03-16T16:00:00.000+02:00" FlightTime="85" Distance="468" ETicketability="Yes" Equipment="CRJ" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cache status used. No polled avail exists." OptionalServicesIndicator="false" AvailabilitySource="H" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKADBqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAJBqCAAAAAA==" Group="0" Carrier="MS" FlightNumber="850" Origin="NBO" Destination="CAI" DepartureTime="2018-03-16T04:20:00.000+03:00" ArrivalTime="2018-03-16T08:10:00.000+02:00" FlightTime="290" Distance="2203" ETicketability="Yes" Equipment="738" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail used" OptionalServicesIndicator="false" AvailabilitySource="S" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAKBqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKALBqCAAAAAA==" Group="0" Carrier="MS" FlightNumber="912" Origin="CAI" Destination="DXB" DepartureTime="2018-03-16T09:45:00.000+02:00" ArrivalTime="2018-03-16T15:00:00.000+04:00" FlightTime="195" Distance="1499" ETicketability="Yes" Equipment="333" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail used" OptionalServicesIndicator="false" AvailabilitySource="S" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAMBqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAdBqCAAAAAA==" Group="0" Carrier="MS" FlightNumber="910" Origin="CAI" Destination="DXB" DepartureTime="2018-03-16T22:30:00.000+02:00" ArrivalTime="2018-03-17T03:45:00.000+04:00" FlightTime="195" Distance="1499" ETicketability="Yes" Equipment="333" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail used" OptionalServicesIndicator="false" AvailabilitySource="S" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAeBqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAjBqCAAAAAA==" Group="0" Carrier="ET" FlightNumber="309" Origin="NBO" Destination="ADD" DepartureTime="2018-03-16T05:00:00.000+03:00" ArrivalTime="2018-03-16T07:15:00.000+03:00" FlightTime="135" Distance="725" ETicketability="Yes" Equipment="738" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAkBqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAlBqCAAAAAA==" Group="0" Carrier="ET" FlightNumber="602" Origin="ADD" Destination="DXB" DepartureTime="2018-03-16T10:30:00.000+03:00" ArrivalTime="2018-03-16T15:45:00.000+04:00" FlightTime="255" Distance="1552" ETicketability="Yes" Equipment="77W" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAmBqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAxBqCAAAAAA==" Group="0" Carrier="ET" FlightNumber="307" Origin="NBO" Destination="ADD" DepartureTime="2018-03-16T19:20:00.000+03:00" ArrivalTime="2018-03-16T21:20:00.000+03:00" FlightTime="120" Distance="725" ETicketability="Yes" Equipment="738" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAyBqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKA0BqCAAAAAA==" Group="0" Carrier="ET" FlightNumber="600" Origin="ADD" Destination="DXB" DepartureTime="2018-03-16T22:00:00.000+03:00" ArrivalTime="2018-03-17T03:00:00.000+04:00" FlightTime="240" Distance="1552" ETicketability="Yes" Equipment="77L" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKA1BqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKA7BqCAAAAAA==" Group="0" Carrier="5H" FlightNumber="405" Origin="NBO" Destination="MBA" DepartureTime="2018-03-16T20:30:00.000+03:00" ArrivalTime="2018-03-16T21:40:00.000+03:00" FlightTime="70" Distance="266" ETicketability="Yes" Equipment="CRJ" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cache status used. No polled avail exists." OptionalServicesIndicator="false" AvailabilitySource="H" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKA8BqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKA3AqCAAAAAA==" Group="0" Carrier="WB" FlightNumber="306" Origin="MBA" Destination="DXB" DepartureTime="2018-03-17T03:20:00.000+03:00" ArrivalTime="2018-03-17T09:50:00.000+04:00" FlightTime="330" Distance="2270" ETicketability="Yes" Equipment="332" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cache status used. No polled avail exists." OptionalServicesIndicator="false" AvailabilitySource="H" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKA2AqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAICqCAAAAAA==" Group="0" Carrier="5H" FlightNumber="463" Origin="NBO" Destination="MBA" DepartureTime="2018-03-16T15:00:00.000+03:00" ArrivalTime="2018-03-16T15:50:00.000+03:00" FlightTime="50" Distance="266" ETicketability="Yes" Equipment="CRJ" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cache status used. No polled avail exists." OptionalServicesIndicator="false" AvailabilitySource="H" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAJCqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAPCqCAAAAAA==" Group="0" Carrier="WB" FlightNumber="452" Origin="NBO" Destination="EBB" DepartureTime="2018-03-16T11:40:00.000+03:00" ArrivalTime="2018-03-16T12:50:00.000+03:00" FlightTime="70" Distance="319" ETicketability="Yes" Equipment="CRJ" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cache status used. No polled avail exists." OptionalServicesIndicator="false" AvailabilitySource="H" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAQCqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKARCqCAAAAAA==" Group="0" Carrier="ET" FlightNumber="335" Origin="EBB" Destination="ADD" DepartureTime="2018-03-16T18:25:00.000+03:00" ArrivalTime="2018-03-16T20:30:00.000+03:00" FlightTime="125" Distance="757" ETicketability="Yes" Equipment="738" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKASCqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAiCqCAAAAAA==" Group="0" Carrier="EK" FlightNumber="730" Origin="EBB" Destination="DXB" DepartureTime="2018-03-16T15:25:00.000+03:00" ArrivalTime="2018-03-16T21:40:00.000+04:00" FlightTime="315" Distance="2305" ETicketability="Yes" Equipment="77W" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="A" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAjCqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKArCqCAAAAAA==" Group="0" Carrier="EK" FlightNumber="928" Origin="CAI" Destination="DXB" DepartureTime="2018-03-16T12:25:00.000+02:00" ArrivalTime="2018-03-16T17:45:00.000+04:00" FlightTime="200" Distance="1499" ETicketability="Yes" Equipment="77W" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="A" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAsCqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKA8CqCAAAAAA==" Group="0" Carrier="EK" FlightNumber="924" Origin="CAI" Destination="DXB" DepartureTime="2018-03-16T19:05:00.000+02:00" ArrivalTime="2018-03-17T00:35:00.000+04:00" FlightTime="210" Distance="1499" ETicketability="Yes" Equipment="77W" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="A" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKA9CqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKADDqCAAAAAA==" Group="0" Carrier="SA" FlightNumber="181" Origin="NBO" Destination="JNB" DepartureTime="2018-03-16T08:35:00.000+03:00" ArrivalTime="2018-03-16T11:40:00.000+02:00" FlightTime="245" Distance="1806" ETicketability="Yes" Equipment="319" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAEDqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAFDqCAAAAAA==" Group="0" Carrier="SA" FlightNumber="7160" Origin="JNB" Destination="DXB" DepartureTime="2018-03-16T13:15:00.000+02:00" ArrivalTime="2018-03-16T23:35:00.000+04:00" FlightTime="500" Distance="3970" ETicketability="Yes" Equipment="77W" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:CodeshareInfo OperatingCarrier="EK" OperatingFlightNumber="762">EMIRATES AIRLINES</air:CodeshareInfo>
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAGDqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKASDqCAAAAAA==" Group="0" Carrier="LX" FlightNumber="294" Origin="NBO" Destination="ZRH" DepartureTime="2018-03-16T20:40:00.000+03:00" ArrivalTime="2018-03-17T06:15:00.000+01:00" FlightTime="695" Distance="3779" ETicketability="Yes" Equipment="333" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail used" OptionalServicesIndicator="false" NumberOfStops="1" AvailabilitySource="S" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKATDqCAAAAAA=="/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAUDqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAVDqCAAAAAA==" Group="0" Carrier="LX" FlightNumber="242" Origin="ZRH" Destination="DXB" DepartureTime="2018-03-17T12:25:00.000+01:00" ArrivalTime="2018-03-17T21:30:00.000+04:00" FlightTime="365" Distance="2967" ETicketability="Yes" Equipment="333" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail used" OptionalServicesIndicator="false" AvailabilitySource="S" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAWDqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAhDqCAAAAAA==" Group="0" Carrier="EY" FlightNumber="642" Origin="NBO" Destination="AUH" DepartureTime="2018-03-16T14:05:00.000+03:00" ArrivalTime="2018-03-16T20:15:00.000+04:00" FlightTime="310" Distance="2135" ETicketability="Yes" Equipment="32A" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="C" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAiDqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAjDqCAAAAAA==" Group="0" Carrier="EY" FlightNumber="371" Origin="AUH" Destination="BAH" DepartureTime="2018-03-17T09:15:00.000+04:00" ArrivalTime="2018-03-17T09:30:00.000+03:00" FlightTime="75" Distance="271" ETicketability="Yes" Equipment="320" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="C" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAkDqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAlDqCAAAAAA==" Group="0" Carrier="CX" FlightNumber="746" Origin="BAH" Destination="DXB" DepartureTime="2018-03-17T14:20:00.000+03:00" ArrivalTime="2018-03-17T16:40:00.000+04:00" FlightTime="80" Distance="300" ETicketability="Yes" Equipment="333" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail used" OptionalServicesIndicator="false" AvailabilitySource="S" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAmDqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKA1DqCAAAAAA==" Group="0" Carrier="AF" FlightNumber="8003" Origin="NBO" Destination="CDG" DepartureTime="2018-03-16T23:50:00.000+03:00" ArrivalTime="2018-03-17T06:30:00.000+01:00" FlightTime="520" Distance="4031" ETicketability="Yes" Equipment="788" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail used" OptionalServicesIndicator="false" AvailabilitySource="S" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:CodeshareInfo OperatingCarrier="KQ" OperatingFlightNumber="112">KENYA AIRWAYS</air:CodeshareInfo>
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKA2DqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKA3DqCAAAAAA==" Group="0" Carrier="AF" FlightNumber="662" Origin="CDG" Destination="DXB" DepartureTime="2018-03-17T13:30:00.000+01:00" ArrivalTime="2018-03-17T23:25:00.000+04:00" FlightTime="415" Distance="3254" ETicketability="Yes" Equipment="77W" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail used" OptionalServicesIndicator="false" AvailabilitySource="S" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKA4DqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKADEqCAAAAAA==" Group="0" Carrier="PW" FlightNumber="710" Origin="NBO" Destination="ZNZ" DepartureTime="2018-03-16T08:15:00.000+03:00" ArrivalTime="2018-03-16T09:55:00.000+03:00" FlightTime="100" Distance="376" ETicketability="Yes" Equipment="ATR" ChangeOfPlane="false" ParticipantLevel="Secure Sell" PolledAvailabilityOption="No polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="A" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAEEqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAFEqCAAAAAA==" Group="0" Carrier="PW" FlightNumber="431" Origin="ZNZ" Destination="DAR" DepartureTime="2018-03-16T11:40:00.000+03:00" ArrivalTime="2018-03-16T12:10:00.000+03:00" FlightTime="30" Distance="46" ETicketability="Yes" Equipment="ATR" ChangeOfPlane="false" ParticipantLevel="Secure Sell" PolledAvailabilityOption="No polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="A" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAGEqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAHEqCAAAAAA==" Group="0" Carrier="EK" FlightNumber="726" Origin="DAR" Destination="DXB" DepartureTime="2018-03-16T16:30:00.000+03:00" ArrivalTime="2018-03-16T23:05:00.000+04:00" FlightTime="335" Distance="2458" ETicketability="Yes" Equipment="77W" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="A" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAIEqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAWEqCAAAAAA==" Group="0" Carrier="MK" FlightNumber="535" Origin="NBO" Destination="MRU" DepartureTime="2018-03-16T14:25:00.000+03:00" ArrivalTime="2018-03-16T19:40:00.000+04:00" FlightTime="255" Distance="1928" ETicketability="Yes" Equipment="319" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAXEqCAAAAAA=="/>
        </air:AirSegment>
        <air:AirSegment Key="7kkmlI3R2BKAYEqCAAAAAA==" Group="0" Carrier="MK" FlightNumber="912" Origin="MRU" Destination="DXB" DepartureTime="2018-03-16T23:00:00.000+04:00" ArrivalTime="2018-03-17T05:40:00.000+04:00" FlightTime="400" Distance="3149" ETicketability="Yes" Equipment="388" ChangeOfPlane="false" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="Cached status used. Polled avail exists" OptionalServicesIndicator="false" AvailabilitySource="P" AvailabilityDisplayType="Fare Shop/Optimal Shop">
          <air:CodeshareInfo OperatingCarrier="EK" OperatingFlightNumber="704">EMIRATES AIRLINES</air:CodeshareInfo>
          <air:AirAvailInfo ProviderCode="1G"/>
          <air:FlightDetailsRef Key="7kkmlI3R2BKAZEqCAAAAAA=="/>
        </air:AirSegment>
      </air:AirSegmentList>
      <air:FareInfoList>
        <air:FareInfo Key="7kkmlI3R2BKA5/pCAAAAAA==" FareBasis="NWLSRWKE" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD155.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKA5/pCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA/m1DMNbyjhJM3ExqSoG051W8N+Siiit9fIBIJ8gJ1jqQu0ZscBMSQ6+D+xE0kCoxMS/my0mBm4fo15buX/ifFZN12ptZCGezcCIbRqMTJch6v9tEaRJgF5C/YIEuJEelt8Q9iB9lG5IXxRrdxIeBUBW8vSBNa8ZUmwC02UUzMsnBLH+tC+80Qkzhb9JYI6ANc85JzK1owZHir5wkVQHOuKXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8DnnUuWXdZ/ivzOoqKdr8JoSJ/HJ9mjemgwECQs8xOHMnum0cvMghL2Hr8cs07iIj0LlSpbmPDf77cNwlgz+iXbOVuG0bsK6zw</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAQAqCAAAAAA==" FareBasis="NVEOWKE" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD96.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:FareSurcharge Key="7kkmlI3R2BKAcAqCAAAAAA==" Type="Other" Amount="NUC5.00"/>
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAQAqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAxmyschz/qZvM3ExqSoG051W8N+Siiit9bATznfNbKWDVCulqMwbpNZHDnuVxMyBUlPCOJ0c7oN5avKbw5zMEzu+c4NL8FZWf8siOHFaFMf8hf6E18cRejGVqfCTByZWB3Xs5531mirX6STZDo2E3i3qkp0FEw0raOCbZ1nsUQQBahyv2SLPtoJrB+inJupKADQsVF2Q7Xpfy5YV9dV3U4CXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAzzD4Wdjal2fNB7k5cLzH1XA2bCATsypC7RIcMMSasiujvvSYkcYnwz7RvoI0uVdCDV28ByIyvhptEhwwxJqyK5zDAoMboM9N+RsBfJKkIog</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAnAqCAAAAAA==" FareBasis="ULWOSKE1" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD156.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAnAqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5U9GsfIDrTVM3ExqSoG051W8N+Siiit9Sh3g51TPiiLQu0ZscBMSQ6+D+xE0kCoxDeyNR43nc/Lg4ZDvKmGW6dN12ptZCGezcCIbRqMTJch6v9tEaRJgF5C/YIEuJEelhyOEyvTyI/R3oWqMI04Ie1W8vSBNa8ZUmwC02UUzMsnBLH+tC+80QnXdDExfMMA2s85JzK1owZHir5wkVQHOuKXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8DnnUuWXdZ/ivzOoqKdr8JoSJ/HJ9mjemgwECQs8xOHMmqhCLkaZSMNDryVnrBVKYmLlSpbmPDf76Sg4bgzYWM5eVuG0bsK6zw</air:FareRuleKey>
          <air:Brand Key="7kkmlI3R2BKAmEqCAAAAAA==" BrandID="27786"/>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKA8AqCAAAAAA==" FareBasis="UOWKE" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD225.00" NegotiatedFare="false">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKA8AqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA840ziWzGTooM3ExqSoG051W8N+Siiit9acCmCk+qQeAQu0ZscBMSQ6+D+xE0kCoxAj51OEDYyI5z2Y/SgoRbVqF/oTXxxF6MeJYtF79PC3YfoLT9JoAKrMtD5ICYoj/MARdr9hwT7dKIiI34n2+2lvqNbjwzJx7oo0sKBvhNXxa3r9HZ+gRTLWD7cy1USGyQ8869eStP5yQv4Xvb2u1Qx+/he9va7VDH7+F729rtUMfv4Xvb2u1Qx+/he9va7VDHzQapDbCAMr/In8cn2aN6aCXLmrFneovA8mQgAg+GGXS00Tk5BgBtDGzuDmoK/k2Zc86CVjEkx1atEhwwxJqyK4rE6mHQKb8ReRsBfJKkIog</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKATBqCAAAAAA==" FareBasis="VRIKEO" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD195.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKATBqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAwGpwwfyKx8YM3ExqSoG051W8N+Siiit9df7yvz5JL35Qu0ZscBMSQ6+D+xE0kCoxACOW6dDVziYavKbw5zMEzu+c4NL8FZWf8siOHFaFMf8hf6E18cRejGVqfCTByZWB1pEtYK3G9NsnURSPzMLPRPqkp0FEw0raOCbZ1nsUQQBahyv2SLPtoLVJEDWyP0zMzQsVF2Q7Xpfy5YV9dV3U4CXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAzzD4Wdjal2fNB7k5cLzH1XA2bCATsypC7RIcMMSasiujvvSYkcYnwxy9KtOfToIgiJoJZPF0yMWtEhwwxJqyK4u4L03yy1AeORsBfJKkIog</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKArBqCAAAAAA==" FareBasis="QOWKE" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD219.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:FareSurcharge Key="7kkmlI3R2BKA2BqCAAAAAA==" Type="Other" Amount="NUC14.35"/>
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKArBqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA4ym6nMWGQFPM3ExqSoG051W8N+Siiit9WoKlyGzSYkqQu0ZscBMSQ6+D+xE0kCoxH9UU1jUQt8Pz2Y/SgoRbVqF/oTXxxF6MeJYtF79PC3YfoLT9JoAKrO7eP3a4bhHZOa+iVOwLgMfhpeURYztPnjqNbjwzJx7oo0sKBvhNXxa3r9HZ+gRTLWYeL2Uo6JnB8869eStP5yQv4Xvb2u1Qx+/he9va7VDH7+F729rtUMfv4Xvb2u1Qx+/he9va7VDHzQapDbCAMr/In8cn2aN6aCXLmrFneovA8mQgAg+GGXS00Tk5BgBtDH+mFV2tH3y3w5c/FyNrhXCtEhwwxJqyK6zOx3L7l0JreRsBfJKkIog</air:FareRuleKey>
          <air:Brand Key="7kkmlI3R2BKAoEqCAAAAAA==" BrandID="32167"/>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKABCqCAAAAAA==" FareBasis="KOW1" PassengerTypeCode="ADT" Origin="NBO" Destination="MBA" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD97.00" NegotiatedFare="false">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKABCqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA4qBKdee3KSrM3ExqSoG053kkJ5y9AlJSRc+LOInMhy6VCulqMwbpNaoeD9AgiQWj/qjPBKRGqdO3SkNQyxaiDNi4BZ9wfbD3UlPIHnH21hJzFOd+W7w/UzhJjq9VkBLF5SCs6BIUGfP8BzOSyUclnGAdcY0m0a4yk4nKb2G5mOFQPxJKkmnxj3cd9E498NuHYGkFKCj0Ksiv4Xvb2u1Qx+/he9va7VDH7+F729rtUMfv4Xvb2u1Qx+/he9va7VDHzyxauAs+veBtEhwwxJqyK5Emj3m6myRz912+GEjHNuXHZY3gSNhqSpc+jW4ezrRZI9cm4DUeF6PFI9GpmIZHDFjw/O95RdjKA==</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAGCqCAAAAAA==" FareBasis="LOWKE" PassengerTypeCode="ADT" Origin="MBA" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-17" Amount="USD225.00" NegotiatedFare="false">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAGCqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA840ziWzGTooM3ExqSoG051W8N+Siiit9acCmCk+qQeA83f1UwCbb2W+D+xE0kCoxCx8hduc12aUHbwSMbKeSIuF/oTXxxF6MeJYtF79PC3YfoLT9JoAKrMtD5ICYoj/MARdr9hwT7dKIiI34n2+2lvqNbjwzJx7oo0sKBvhNXxapnjxsM4vou2D7cy1USGyQ8869eStP5yQv4Xvb2u1Qx+/he9va7VDH7+F729rtUMfv4Xvb2u1Qx+/he9va7VDHzQapDbCAMr/In8cn2aN6aCXLmrFneovA8mQgAg+GGXS00Tk5BgBtDGzuDmoK/k2Zc86CVjEkx1atEhwwxJqyK4rE6mHQKb8ReRsBfJKkIog</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAYCqCAAAAAA==" FareBasis="UOWKE" PassengerTypeCode="ADT" Origin="NBO" Destination="EBB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD150.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAYCqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA840ziWzGTooM3ExqSoG053vxSPpnfDCubarwJNwPE5sQu0ZscBMSQ5BeYHvIwNfLQj51OEDYyI5z2Y/SgoRbVqF/oTXxxF6MeJYtF79PC3YfoLT9JoAKrMtD5ICYoj/MARdr9hwT7dKIiI34n2+2lvqNbjwzJx7oo0sKBvhNXxa3r9HZ+gRTLUk0QaOAaXJHM869eStP5yQv4Xvb2u1Qx+/he9va7VDH7+F729rtUMfv4Xvb2u1Qx+/he9va7VDHzQapDbCAMr/In8cn2aN6aCXLmrFneovA8mQgAg+GGXS00Tk5BgBtDGzuDmoK/k2ZRILInXIiyf7tEhwwxJqyK4rE6mHQKb8ReRsBfJKkIog</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAkCqCAAAAAA==" FareBasis="HLOWUG" PassengerTypeCode="ADT" Origin="EBB" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD229.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:FareSurcharge Key="7kkmlI3R2BKAlCqCAAAAAA==" Type="Other" Amount="NUC14.98"/>
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAkCqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA4ym6nMWGQFPM3ExqSoG051W8N+Siiit9T68nh1Ve16v83f1UwCbb2W+D+xE0kCoxDHFxBU1IRygavKbw5zMEzu+c4NL8FZWf8siOHFaFMf8hf6E18cRejGVqfCTByZWBwcxnyrPQSbSLFTUP9o/fPfqkp0FEw0raOCbZ1nsUQQBluXeskaI0/BK4Jn9ijRADzQsVF2Q7Xpfy5YV9dV3U4CXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAzzD4Wdjal2fNB7k5cLzH1XA2bCATsypC7RIcMMSasiujvvSYkcYnwwc+UJmWskYVjdi2ic2q+H8OKPuQR7CSeJcfKjdznxGSSgMXr7PMH/A</air:FareRuleKey>
          <air:Brand Key="7kkmlI3R2BKAqEqCAAAAAA==" BrandID="32167"/>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAfCqCAAAAAA==" FareBasis="ULWOSUG1" PassengerTypeCode="ADT" Origin="EBB" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD254.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAfCqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5U9GsfIDrTVM3ExqSoG051W8N+Siiit9TOsVc7duxMo83f1UwCbb2W+D+xE0kCoxPDJSgfWV1jQg4ZDvKmGW6dN12ptZCGezcCIbRqMTJch6v9tEaRJgF5C/YIEuJEeloieGlxRpeqt3oWqMI04Ie1W8vSBNa8ZUmwC02UUzMsnh6ApcMmxqzoddtKYJQs7TM85JzK1owZHir5wkVQHOuKXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8DnnUuWXdZ/ivzOoqKdr8JoSJ/HJ9mjemgwECQs8xOHMlPGHJsB5RodzryVnrBVKYmLlSpbmPDf76Sg4bgzYWM5eVuG0bsK6zw</air:FareRuleKey>
          <air:Brand Key="7kkmlI3R2BKAsEqCAAAAAA==" BrandID="27786"/>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAyCqCAAAAAA==" FareBasis="VRIMSO" PassengerTypeCode="ADT" Origin="NBO" Destination="CAI" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD445.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:FareSurcharge Key="7kkmlI3R2BKA+CqCAAAAAA==" Type="Other" Amount="NUC250.00"/>
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAyCqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAwGpwwfyKx8YM3ExqSoG052UjyxUAOqtrw6V2D1qFi1OQu0ZscBMSQ6+D+xE0kCoxNFOiK2DJewjavKbw5zMEzu+c4NL8FZWf8siOHFaFMf8hf6E18cRejGVqfCTByZWB4pVputLOQURfFM+4vTNcRDqkp0FEw0raOCbZ1nsUQQBahyv2SLPtoIV0RkSwjnOyTQsVF2Q7Xpfy5YV9dV3U4CXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAzzD4Wdjal2fNB7k5cLzH1XA2bCATsypC4/cJATYWtFcjvvSYkcYnwx2Zdk5aqW3pXk5RKouEekwgPkJ1FEzSkFIW/VajsQEbORsBfJKkIog</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKA5CqCAAAAAA==" FareBasis="BLWOSEG1" PassengerTypeCode="ADT" Origin="CAI" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD184.00" NegotiatedFare="false" NotValidBefore="2018-03-16" NotValidAfter="2018-03-16">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKA5CqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5U9GsfIDrTVM3ExqSoG051W8N+Siiit9YZF+/KW6LC/83f1UwCbb2Vil3XLmpnZVcGeiStWMgSzg4ZDvKmGW6dN12ptZCGezcCIbRqMTJch6v9tEaRJgF5C/YIEuJEelsMmd5vIJztN3oWqMI04Ie1W8vSBNa8ZUmwC02UUzMsnU1gpjPEuhqxrcwcT5+iIVdUvz+aamw6pir5wkVQHOuKXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8DnnUuWXdZ/ivzOoqKdr8JoSJ/HJ9mjemgwECQs8xOHMkcPixRIYZEhKVdO3hP91VHLlSpbmPDf76Sg4bgzYWM5eVuG0bsK6zw</air:FareRuleKey>
          <air:Brand Key="7kkmlI3R2BKAuEqCAAAAAA==" BrandID="27786"/>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAODqCAAAAAA==" FareBasis="LOWAE" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD571.00" NegotiatedFare="false">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAODqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5O7KhzGOUpKM3ExqSoG051W8N+Siiit9Wkfhvld0bBlQu0ZscBMSQ6+D+xE0kCoxEXVQn/ae9HWz2Y/SgoRbVqF/oTXxxF6MeJYtF79PC3YfoLT9JoAKrPVW5TpURjX8SiSbzvEbbqBJkgpYRbW/NLqNbjwzJx7oo0sKBvhNXxa3r9HZ+gRTLUBrZmswOJPZM869eStP5yQv4Xvb2u1Qx+/he9va7VDH7+F729rtUMfv4Xvb2u1Qx+/he9va7VDHzQapDbCAMr/In8cn2aN6aCXLmrFneovA8mQgAg+GGXS00Tk5BgBtDFod4sEM0pS14I63DIxUrfDoJJ7EVXf5HIE+kPqkwiSaw==</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAdDqCAAAAAA==" FareBasis="QRCOWKE" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD543.00" NegotiatedFare="false" NotValidBefore="2018-03-17" NotValidAfter="2018-03-17">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAdDqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAyVlafI46WYPM3ExqSoG051W8N+Siiit9UNBrg+8b8gSQu0ZscBMSQ6+D+xE0kCoxPcH3XHtJewqRhG/tzWBqG7SE6fqwbUqcRll6FxyIC6cYuAWfcH2w92IEQfz1U0L7zU4g8nED24aiguXQ4Ih61FJTyB5x9tYSQLWhthMb3jlTsBi7Veg3HqzrCrMAXAhjRmVy+1cB6u+/AFKEXb03hK/he9va7VDH7+F729rtUMfv4Xvb2u1Qx+/he9va7VDHxDGJun84l6GxzgF1uf6zDCXfssXL6DyjDij7kEewkni9pVQCd5zvz9Qo9m2nq66bnTz/BArHLYpOKPuQR7CSeKbU8H4svLVVigMXr7PMH/A</air:FareRuleKey>
          <air:Brand Key="7kkmlI3R2BKAwEqCAAAAAA==" BrandFound="false"/>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAvDqCAAAAAA==" FareBasis="YOW11" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD876.00" NegotiatedFare="false">
          <air:FareTicketDesignator Value="YF"/>
          <air:FareSurcharge Key="7kkmlI3R2BKAwDqCAAAAAA==" Type="Other" Amount="NUC2.50"/>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAvDqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA4mQU42a9TXqM3ExqSoG051W8N+Siiit9fyG/I7x8WwrQu0ZscBMSQ6+D+xE0kCoxBYeoH0/PlhRz2Y/SgoRbVqF/oTXxxF6MeJYtF79PC3YfoLT9JoAKrPVW5TpURjX8Vg9aMgUY1GzxDNRDRq3IvPqNbjwzJx7oo0sKBvhNXxa3r9HZ+gRTLXbAJouqfnTBM869eStP5yQv4Xvb2u1Qx+/he9va7VDH7+F729rtUMfv4Xvb2u1Qx+/he9va7VDH5Iuh+MRJibIrd20K9AmUG8Ptx70apBZhmbvWyDDr1Kj9pVQCd5zvz/XXKfce83UEKnfh/TFFr19oQcwXGkxl9SXz+Sk62TlXygMXr7PMH/A</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKA/DqCAAAAAA==" FareBasis="KLSFWKE" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD847.00" NegotiatedFare="false" NotValidBefore="2018-03-17" NotValidAfter="2018-03-17">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKA/DqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovAzaS4FZstd3pM3ExqSoG051W8N+Siiit9SP0ve2E/G+tQu0ZscBMSQ6+D+xE0kCoxDOudiGjS+Y4RhG/tzWBqG7SE6fqwbUqcRll6FxyIC6cYuAWfcH2w92IEQfz1U0L7xgZ/8NbQ8fciguXQ4Ih61FJTyB5x9tYSQLWhthMb3jlTsBi7Veg3HoqdY79svzlGhmVy+1cB6u+/AFKEXb03hK/he9va7VDH7+F729rtUMfv4Xvb2u1Qx+/he9va7VDHxDGJun84l6GxzgF1uf6zDCXfssXL6DyjDij7kEewkni9pVQCd5zvz87xeALiVW9CvJnaraK6poYOKPuQR7CSeKj83N957ikvigMXr7PMH/A</air:FareRuleKey>
          <air:Brand Key="7kkmlI3R2BKAyEqCAAAAAA==" BrandFound="false"/>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAREqCAAAAAA==" FareBasis="KOWKE7" PassengerTypeCode="ADT" Origin="NBO" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD1829.00" NegotiatedFare="false">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAREqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5U9GsfIDrTVM3ExqSoG051W8N+Siiit9Z11+1DMwfc6JJJkSAQvpY7d34cItqzj742V78pqflmrRhG/tzWBqG7SE6fqwbUqcRll6FxyIC6cYuAWfcH2w92IEQfz1U0L7/4FQ+D/tLLkKEB3dPMHSUxJTyB5x9tYSQLWhthMb3jlTsBi7Veg3HrGthWzydZ+URmVy+1cB6u+/AFKEXb03hK/he9va7VDH7+F729rtUMfv4Xvb2u1Qx+/he9va7VDHxDGJun84l6GxyYrw5Tgn+VhbMRUwMNEReJTTJzl3zjWFLvkAuUP0Pbr/031ikvgtTZCEW2rJm/1c8KMlERuzvxG3F/k9Wu5W2BrcE1wuwS9</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAgEqCAAAAAA==" FareBasis="YIF" PassengerTypeCode="ADT" Origin="NBO" Destination="MRU" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD1257.00" NegotiatedFare="false">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAgEqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA9QRndLAN+3+M3ExqSoG052fahi8O6ndJk+fYvUV5OuyJJJkSAQvpY71xMo+HVH5fSFjNXD73zBOd6oP7+ztBC3q/20RpEmAXlby9IE1rxlSp7GoYpQef1gYmtXMshoI2hAvtNgGjSJM9nCkE/Tk5fjg2BMJ0qOmdTyy/Q52QOiIZf/YUBkBpRdaKUrHhTpVgkRD5kuaXyEyly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA2+QKPIWaRvqOKPuQR7CSeK3EdbqPPDZRlp0KHGcgIA2Rx8muPiRaWicjnIvpin2JWZ4j5OahbwPMOXVRu+nJkWgr65GBy/4xuRsBfJKkIog</air:FareRuleKey>
        </air:FareInfo>
        <air:FareInfo Key="7kkmlI3R2BKAhEqCAAAAAA==" FareBasis="YIF" PassengerTypeCode="ADT" Origin="MRU" Destination="DXB" EffectiveDate="2018-03-14T19:46:00.000+00:00" DepartureDate="2018-03-16" Amount="USD3059.00" NegotiatedFare="false">
          <air:BaggageAllowance>
            <air:NumberOfPieces>2</air:NumberOfPieces>
            <air:MaxWeight/>
          </air:BaggageAllowance>
          <air:FareRuleKey FareInfoRef="7kkmlI3R2BKAhEqCAAAAAA==" ProviderCode="1G">6UUVoSldxwgsMdqF54w53MbKj3F8T9EyxsqPcXxP0TIjSPOlaHfQe5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA9QRndLAN+3+M3ExqSoG051W8N+Siiit9aeMTWvdPEkRScgwocIH/TTd34cItqzj7yFjNXD73zBOd6oP7+ztBC3q/20RpEmAXlby9IE1rxlSp7GoYpQef1gYmtXMshoI2hAvtNgGjSJMLSAKmkTAJT7g2BMJ0qOmdTyy/Q52QOiIy3MgTQ6M/q9QXoezFGVvukRD5kuaXyEyly5qxZ3qLwOXLmrFneovA5cuasWd6i8Dly5qxZ3qLwOXLmrFneovA2+QKPIWaRvqOKPuQR7CSeK3EdbqPPDZRn7Dw2Xd8YEDRx8muPiRaWjLLjL+GTIqKMpeV1GM+CjPiH1F/H/yd3Cgr65GBy/4xuRsBfJKkIog</air:FareRuleKey>
        </air:FareInfo>
      </air:FareInfoList>
      <air:RouteList>
        <air:Route Key="7kkmlI3R2BKAkEqCAAAAAA==">
          <air:Leg Key="7kkmlI3R2BKAz/pCAAAAAA==" Group="0" Origin="NBO" Destination="DXB"/>
        </air:Route>
      </air:RouteList>
      <air:AirPricingSolution Key="7kkmlI3R2BKAw/pCAAAAAA==" TotalPrice="USD283.40" BasePrice="USD155.00" ApproximateTotalPrice="USD283.40" ApproximateBasePrice="USD155.00" Taxes="USD128.40" ApproximateTaxes="USD128.40">
        <air:Journey TravelTime="P0DT5H5M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAx/pCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKA0/pCAAAAAA==" TotalPrice="USD283.40" BasePrice="USD155.00" ApproximateTotalPrice="USD283.40" ApproximateBasePrice="USD155.00" Taxes="USD128.40" ApproximateTaxes="USD128.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" ETicketability="Yes" PlatingCarrier="KQ" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKA5/pCAAAAAA=="/>
          <air:BookingInfo BookingCode="N" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKA5/pCAAAAAA==" SegmentRef="7kkmlI3R2BKAx/pCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKA1/pCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKA2/pCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD2.00" Key="7kkmlI3R2BKA3/pCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD75.00" Key="7kkmlI3R2BKA4/pCAAAAAAAA"/>
          <air:FareCalc>NBO KQ DXB 155.00NWLSRWKE NUC155.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD75.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Percentage>100.00</air:Percentage>
          </air:CancelPenalty>
        </air:AirPricingInfo>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKADAqCAAAAAA==" TotalPrice="USD283.40" BasePrice="USD155.00" ApproximateTotalPrice="USD283.40" ApproximateBasePrice="USD155.00" Taxes="USD128.40" ApproximateTaxes="USD128.40">
        <air:Journey TravelTime="P0DT5H15M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAAAqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKA6/pCAAAAAA==" TotalPrice="USD283.40" BasePrice="USD155.00" ApproximateTotalPrice="USD283.40" ApproximateBasePrice="USD155.00" Taxes="USD128.40" ApproximateTaxes="USD128.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" ETicketability="Yes" PlatingCarrier="KQ" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKA5/pCAAAAAA=="/>
          <air:BookingInfo BookingCode="N" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKA5/pCAAAAAA==" SegmentRef="7kkmlI3R2BKAAAqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKA7/pCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKA8/pCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD2.00" Key="7kkmlI3R2BKA9/pCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD75.00" Key="7kkmlI3R2BKA-/pCAAAAAAAA"/>
          <air:FareCalc>NBO KQ DXB 155.00NWLSRWKE NUC155.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD75.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Percentage>100.00</air:Percentage>
          </air:CancelPenalty>
        </air:AirPricingInfo>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAEAqCAAAAAA==" TotalPrice="USD295.20" BasePrice="USD96.00" ApproximateTotalPrice="USD295.20" ApproximateBasePrice="USD96.00" Taxes="USD199.20" ApproximateTaxes="USD199.20">
        <air:Journey TravelTime="P0DT8H35M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAFAqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAHAqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAJAqCAAAAAA==" TotalPrice="USD295.20" BasePrice="USD96.00" ApproximateTotalPrice="USD295.20" ApproximateBasePrice="USD96.00" Taxes="USD199.20" ApproximateTaxes="USD199.20" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="WY" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAQAqCAAAAAA=="/>
          <air:BookingInfo BookingCode="N" BookingCount="7" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAQAqCAAAAAA==" SegmentRef="7kkmlI3R2BKAFAqCAAAAAA=="/>
          <air:BookingInfo BookingCode="N" BookingCount="7" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAQAqCAAAAAA==" SegmentRef="7kkmlI3R2BKAHAqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAKAqCAAAAAAAA"/>
          <air:TaxInfo Category="I2" Amount="USD2.60" Key="7kkmlI3R2BKALAqCAAAAAAAA"/>
          <air:TaxInfo Category="OM" Amount="USD2.60" Key="7kkmlI3R2BKAMAqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKANAqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD140.00" Key="7kkmlI3R2BKAOAqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD2.60" Key="7kkmlI3R2BKAPAqCAAAAAAAA"/>
          <air:FareCalc>NBO WY X/MCT WY DXB Q NBODXB5.00 91.00NVEOWKE NUC96.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAfAqCAAAAAA==" TotalPrice="USD295.20" BasePrice="USD96.00" ApproximateTotalPrice="USD295.20" ApproximateBasePrice="USD96.00" Taxes="USD199.20" ApproximateTaxes="USD199.20">
        <air:Journey TravelTime="P0DT14H20M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAFAqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAaAqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKARAqCAAAAAA==" TotalPrice="USD295.20" BasePrice="USD96.00" ApproximateTotalPrice="USD295.20" ApproximateBasePrice="USD96.00" Taxes="USD199.20" ApproximateTaxes="USD199.20" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="WY" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAQAqCAAAAAA=="/>
          <air:BookingInfo BookingCode="N" BookingCount="7" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAQAqCAAAAAA==" SegmentRef="7kkmlI3R2BKAFAqCAAAAAA=="/>
          <air:BookingInfo BookingCode="N" BookingCount="7" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAQAqCAAAAAA==" SegmentRef="7kkmlI3R2BKAaAqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKASAqCAAAAAAAA"/>
          <air:TaxInfo Category="I2" Amount="USD2.60" Key="7kkmlI3R2BKATAqCAAAAAAAA"/>
          <air:TaxInfo Category="OM" Amount="USD2.60" Key="7kkmlI3R2BKAUAqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAVAqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD140.00" Key="7kkmlI3R2BKAWAqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD2.60" Key="7kkmlI3R2BKAXAqCAAAAAAAA"/>
          <air:FareCalc>NBO WY X/MCT WY DXB Q NBODXB5.00 91.00NVEOWKE NUC96.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAgAqCAAAAAA==" TotalPrice="USD324.40" BasePrice="USD156.00" ApproximateTotalPrice="USD324.40" ApproximateBasePrice="USD156.00" Taxes="USD168.40" ApproximateTaxes="USD168.40">
        <air:Journey TravelTime="P0DT5H0M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAhAqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAjAqCAAAAAA==" TotalPrice="USD324.40" BasePrice="USD156.00" ApproximateTotalPrice="USD324.40" ApproximateBasePrice="USD156.00" Taxes="USD168.40" ApproximateTaxes="USD168.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="EK" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAnAqCAAAAAA=="/>
          <air:BookingInfo BookingCode="U" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAnAqCAAAAAA==" SegmentRef="7kkmlI3R2BKAhAqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAkAqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAlAqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD117.00" Key="7kkmlI3R2BKAmAqCAAAAAAAA"/>
          <air:FareCalc>NBO EK DXB 156.00ULWOSKE1 NUC156.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD150.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAwAqCAAAAAA==" TotalPrice="USD324.40" BasePrice="USD156.00" ApproximateTotalPrice="USD324.40" ApproximateBasePrice="USD156.00" Taxes="USD168.40" ApproximateTaxes="USD168.40">
        <air:Journey TravelTime="P0DT5H0M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAtAqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAoAqCAAAAAA==" TotalPrice="USD324.40" BasePrice="USD156.00" ApproximateTotalPrice="USD324.40" ApproximateBasePrice="USD156.00" Taxes="USD168.40" ApproximateTaxes="USD168.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="EK" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAnAqCAAAAAA=="/>
          <air:BookingInfo BookingCode="U" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAnAqCAAAAAA==" SegmentRef="7kkmlI3R2BKAtAqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKApAqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAqAqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD117.00" Key="7kkmlI3R2BKArAqCAAAAAAAA"/>
          <air:FareCalc>NBO EK DXB 156.00ULWOSKE1 NUC156.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD150.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAxAqCAAAAAA==" TotalPrice="USD336.40" BasePrice="USD225.00" ApproximateTotalPrice="USD336.40" ApproximateBasePrice="USD225.00" Taxes="USD111.40" ApproximateTaxes="USD111.40">
        <air:Journey TravelTime="P0DT11H50M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAyAqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKA0AqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKA4AqCAAAAAA==" TotalPrice="USD336.40" BasePrice="USD225.00" ApproximateTotalPrice="USD336.40" ApproximateBasePrice="USD225.00" Taxes="USD111.40" ApproximateTaxes="USD111.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="HR" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKA8AqCAAAAAA=="/>
          <air:BookingInfo BookingCode="U" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKA8AqCAAAAAA==" SegmentRef="7kkmlI3R2BKAyAqCAAAAAA=="/>
          <air:BookingInfo BookingCode="U" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKA8AqCAAAAAA==" SegmentRef="7kkmlI3R2BKA0AqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKA5AqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKA6AqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD60.00" Key="7kkmlI3R2BKA7AqCAAAAAAAA"/>
          <air:FareCalc>NBO WB X/KGL WB DXB 225.00UOWKE NUC225.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Percentage>0.00</air:Percentage>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD100.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAHBqCAAAAAA==" TotalPrice="USD336.40" BasePrice="USD225.00" ApproximateTotalPrice="USD336.40" ApproximateBasePrice="USD225.00" Taxes="USD111.40" ApproximateTaxes="USD111.40">
        <air:Journey TravelTime="P0DT17H15M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKACBqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKA0AqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKA9AqCAAAAAA==" TotalPrice="USD336.40" BasePrice="USD225.00" ApproximateTotalPrice="USD336.40" ApproximateBasePrice="USD225.00" Taxes="USD111.40" ApproximateTaxes="USD111.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="HR" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKA8AqCAAAAAA=="/>
          <air:BookingInfo BookingCode="U" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKA8AqCAAAAAA==" SegmentRef="7kkmlI3R2BKACBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="U" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKA8AqCAAAAAA==" SegmentRef="7kkmlI3R2BKA0AqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKA-AqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKA/AqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD60.00" Key="7kkmlI3R2BKAABqCAAAAAAAA"/>
          <air:FareCalc>NBO WB X/KGL WB DXB 225.00UOWKE NUC225.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Percentage>0.00</air:Percentage>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD100.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAIBqCAAAAAA==" TotalPrice="USD351.40" BasePrice="USD195.00" ApproximateTotalPrice="USD351.40" ApproximateBasePrice="USD195.00" Taxes="USD156.40" ApproximateTaxes="USD156.40">
        <air:Journey TravelTime="P0DT9H40M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAJBqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKALBqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKANBqCAAAAAA==" TotalPrice="USD351.40" BasePrice="USD195.00" ApproximateTotalPrice="USD351.40" ApproximateBasePrice="USD195.00" Taxes="USD156.40" ApproximateTaxes="USD156.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="MS" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKATBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="V" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKATBqCAAAAAA==" SegmentRef="7kkmlI3R2BKAJBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="V" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKATBqCAAAAAA==" SegmentRef="7kkmlI3R2BKALBqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAOBqCAAAAAAAA"/>
          <air:TaxInfo Category="EQ" Amount="USD1.00" Key="7kkmlI3R2BKAPBqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAQBqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD15.00" Key="7kkmlI3R2BKARBqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD89.00" Key="7kkmlI3R2BKASBqCAAAAAAAA"/>
          <air:FareCalc>NBO MS X/CAI MS DXB 195.00VRIKEO NUC195.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD75.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAhBqCAAAAAA==" TotalPrice="USD353.10" BasePrice="USD195.00" ApproximateTotalPrice="USD353.10" ApproximateBasePrice="USD195.00" Taxes="USD158.10" ApproximateTaxes="USD158.10">
        <air:Journey TravelTime="P0DT22H25M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAJBqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAdBqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAUBqCAAAAAA==" TotalPrice="USD353.10" BasePrice="USD195.00" ApproximateTotalPrice="USD353.10" ApproximateBasePrice="USD195.00" Taxes="USD158.10" ApproximateTaxes="USD158.10" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="MS" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKATBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="V" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKATBqCAAAAAA==" SegmentRef="7kkmlI3R2BKAJBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="V" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKATBqCAAAAAA==" SegmentRef="7kkmlI3R2BKAdBqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAVBqCAAAAAAAA"/>
          <air:TaxInfo Category="EQ" Amount="USD1.00" Key="7kkmlI3R2BKAWBqCAAAAAAAA"/>
          <air:TaxInfo Category="F7" Amount="USD1.70" Key="7kkmlI3R2BKAXBqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAYBqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD15.00" Key="7kkmlI3R2BKAZBqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD89.00" Key="7kkmlI3R2BKAaBqCAAAAAAAA"/>
          <air:FareCalc>NBO MS X/CAI MS DXB 195.00VRIKEO NUC195.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD75.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAiBqCAAAAAA==" TotalPrice="USD370.40" BasePrice="USD219.00" ApproximateTotalPrice="USD370.40" ApproximateBasePrice="USD219.00" Taxes="USD151.40" ApproximateTaxes="USD151.40">
        <air:Journey TravelTime="P0DT9H45M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAjBqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAlBqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAnBqCAAAAAA==" TotalPrice="USD370.40" BasePrice="USD219.00" ApproximateTotalPrice="USD370.40" ApproximateBasePrice="USD219.00" Taxes="USD151.40" ApproximateTaxes="USD151.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" ETicketability="Yes" PlatingCarrier="ET" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKArBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="Q" BookingCount="7" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKArBqCAAAAAA==" SegmentRef="7kkmlI3R2BKAjBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="Q" BookingCount="7" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKArBqCAAAAAA==" SegmentRef="7kkmlI3R2BKAlBqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAoBqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKApBqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD100.00" Key="7kkmlI3R2BKAqBqCAAAAAAAA"/>
          <air:FareCalc>NBO ET X/ADD ET DXB 205.00QOWKE Q NBODXB14.35NUC219.35END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD150.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Percentage>100.00</air:Percentage>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKA5BqCAAAAAA==" TotalPrice="USD370.40" BasePrice="USD219.00" ApproximateTotalPrice="USD370.40" ApproximateBasePrice="USD219.00" Taxes="USD151.40" ApproximateTaxes="USD151.40">
        <air:Journey TravelTime="P0DT6H40M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAxBqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKA0BqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAsBqCAAAAAA==" TotalPrice="USD370.40" BasePrice="USD219.00" ApproximateTotalPrice="USD370.40" ApproximateBasePrice="USD219.00" Taxes="USD151.40" ApproximateTaxes="USD151.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" ETicketability="Yes" PlatingCarrier="ET" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKArBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="Q" BookingCount="7" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKArBqCAAAAAA==" SegmentRef="7kkmlI3R2BKAxBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="Q" BookingCount="7" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKArBqCAAAAAA==" SegmentRef="7kkmlI3R2BKA0BqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAtBqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAuBqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD100.00" Key="7kkmlI3R2BKAvBqCAAAAAAAA"/>
          <air:FareCalc>NBO ET X/ADD ET DXB 205.00QOWKE Q NBODXB14.35NUC219.35END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD150.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Percentage>100.00</air:Percentage>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKA6BqCAAAAAA==" TotalPrice="USD448.40" BasePrice="USD322.00" ApproximateTotalPrice="USD448.40" ApproximateBasePrice="USD322.00" Taxes="USD126.40" ApproximateTaxes="USD126.40">
        <air:Journey TravelTime="P0DT12H20M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKA7BqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKA3AqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKA9BqCAAAAAA==" TotalPrice="USD448.40" BasePrice="USD322.00" ApproximateTotalPrice="USD448.40" ApproximateBasePrice="USD322.00" Taxes="USD126.40" ApproximateTaxes="USD126.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="HR" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKABCqCAAAAAA=="/>
          <air:FareInfoRef Key="7kkmlI3R2BKAGCqCAAAAAA=="/>
          <air:BookingInfo BookingCode="K" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKABCqCAAAAAA==" SegmentRef="7kkmlI3R2BKA7BqCAAAAAA=="/>
          <air:BookingInfo BookingCode="L" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAGCqCAAAAAA==" SegmentRef="7kkmlI3R2BKA3AqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKA-BqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKA/BqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD75.00" Key="7kkmlI3R2BKAACqCAAAAAAAA"/>
          <air:FareCalc>NBO 5H MBA 97.00KOW1 WB DXB 225.00LOWKE NUC322.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Percentage>0.00</air:Percentage>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD100.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKANCqCAAAAAA==" TotalPrice="USD448.40" BasePrice="USD322.00" ApproximateTotalPrice="USD448.40" ApproximateBasePrice="USD322.00" Taxes="USD126.40" ApproximateTaxes="USD126.40">
        <air:Journey TravelTime="P0DT17H50M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAICqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKA3AqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKACCqCAAAAAA==" TotalPrice="USD448.40" BasePrice="USD322.00" ApproximateTotalPrice="USD448.40" ApproximateBasePrice="USD322.00" Taxes="USD126.40" ApproximateTaxes="USD126.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="HR" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKABCqCAAAAAA=="/>
          <air:FareInfoRef Key="7kkmlI3R2BKAGCqCAAAAAA=="/>
          <air:BookingInfo BookingCode="K" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKABCqCAAAAAA==" SegmentRef="7kkmlI3R2BKAICqCAAAAAA=="/>
          <air:BookingInfo BookingCode="L" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAGCqCAAAAAA==" SegmentRef="7kkmlI3R2BKA3AqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKADCqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAECqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD75.00" Key="7kkmlI3R2BKAFCqCAAAAAAAA"/>
          <air:FareCalc>NBO 5H MBA 97.00KOW1 WB DXB 225.00LOWKE NUC322.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Percentage>0.00</air:Percentage>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD100.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAOCqCAAAAAA==" TotalPrice="USD580.40" BasePrice="USD379.00" ApproximateTotalPrice="USD580.40" ApproximateBasePrice="USD379.00" Taxes="USD201.40" ApproximateTaxes="USD201.40">
        <air:Journey TravelTime="P0DT14H20M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAPCqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKARCqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKA0BqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKATCqCAAAAAA==" TotalPrice="USD580.40" BasePrice="USD379.00" ApproximateTotalPrice="USD580.40" ApproximateBasePrice="USD379.00" Taxes="USD201.40" ApproximateTaxes="USD201.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="ET" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAYCqCAAAAAA=="/>
          <air:FareInfoRef Key="7kkmlI3R2BKAkCqCAAAAAA=="/>
          <air:BookingInfo BookingCode="U" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAYCqCAAAAAA==" SegmentRef="7kkmlI3R2BKAPCqCAAAAAA=="/>
          <air:BookingInfo BookingCode="H" BookingCount="3" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAkCqCAAAAAA==" SegmentRef="7kkmlI3R2BKARCqCAAAAAA=="/>
          <air:BookingInfo BookingCode="H" BookingCount="3" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAkCqCAAAAAA==" SegmentRef="7kkmlI3R2BKA0BqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAUCqCAAAAAAAA"/>
          <air:TaxInfo Category="UG" Amount="USD10.00" Key="7kkmlI3R2BKAVCqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAWCqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD140.00" Key="7kkmlI3R2BKAXCqCAAAAAAAA"/>
          <air:FareCalc>NBO WB EBB 150.00UOWKE ET X/ADD ET DXB 214.00HLOWUG Q NBODXB14.98NUC378.98END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD100.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
        <air:Connection SegmentIndex="1"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKApCqCAAAAAA==" TotalPrice="USD634.80" BasePrice="USD404.00" ApproximateTotalPrice="USD634.80" ApproximateBasePrice="USD404.00" Taxes="USD230.80" ApproximateTaxes="USD230.80">
        <air:Journey TravelTime="P0DT9H0M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAPCqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAiCqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAZCqCAAAAAA==" TotalPrice="USD634.80" BasePrice="USD404.00" ApproximateTotalPrice="USD634.80" ApproximateBasePrice="USD404.00" Taxes="USD230.80" ApproximateTaxes="USD230.80" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="HR" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAYCqCAAAAAA=="/>
          <air:FareInfoRef Key="7kkmlI3R2BKAfCqCAAAAAA=="/>
          <air:BookingInfo BookingCode="U" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAYCqCAAAAAA==" SegmentRef="7kkmlI3R2BKAPCqCAAAAAA=="/>
          <air:BookingInfo BookingCode="U" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAfCqCAAAAAA==" SegmentRef="7kkmlI3R2BKAiCqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAaCqCAAAAAAAA"/>
          <air:TaxInfo Category="UG" Amount="USD10.00" Key="7kkmlI3R2BKAbCqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAcCqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD52.40" Key="7kkmlI3R2BKAdCqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD117.00" Key="7kkmlI3R2BKAeCqCAAAAAAAA"/>
          <air:FareCalc>NBO WB EBB 150.00UOWKE EK DXB 254.00ULWOSUG1 NUC404.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD150.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAqCqCAAAAAA==" TotalPrice="USD694.40" BasePrice="USD629.00" ApproximateTotalPrice="USD694.40" ApproximateBasePrice="USD629.00" Taxes="USD65.40" ApproximateTaxes="USD65.40">
        <air:Journey TravelTime="P0DT12H25M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAJBqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKArCqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAtCqCAAAAAA==" TotalPrice="USD694.40" BasePrice="USD629.00" ApproximateTotalPrice="USD694.40" ApproximateBasePrice="USD629.00" Taxes="USD65.40" ApproximateTaxes="USD65.40" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="EK" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAyCqCAAAAAA=="/>
          <air:FareInfoRef Key="7kkmlI3R2BKA5CqCAAAAAA=="/>
          <air:BookingInfo BookingCode="V" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAyCqCAAAAAA==" SegmentRef="7kkmlI3R2BKAJBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="B" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKA5CqCAAAAAA==" SegmentRef="7kkmlI3R2BKArCqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAuCqCAAAAAAAA"/>
          <air:TaxInfo Category="EQ" Amount="USD1.00" Key="7kkmlI3R2BKAvCqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAwCqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD13.00" Key="7kkmlI3R2BKAxCqCAAAAAAAA"/>
          <air:FareCalc>NBO MS CAI Q250.00 195.00VRIMSO EK DXB 183.59BLWOSEG1 NUC628.59END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD75.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKABDqCAAAAAA==" TotalPrice="USD696.10" BasePrice="USD629.00" ApproximateTotalPrice="USD696.10" ApproximateBasePrice="USD629.00" Taxes="USD67.10" ApproximateTaxes="USD67.10">
        <air:Journey TravelTime="P0DT19H15M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAJBqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKA8CqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAzCqCAAAAAA==" TotalPrice="USD696.10" BasePrice="USD629.00" ApproximateTotalPrice="USD696.10" ApproximateBasePrice="USD629.00" Taxes="USD67.10" ApproximateTaxes="USD67.10" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="EK" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAyCqCAAAAAA=="/>
          <air:FareInfoRef Key="7kkmlI3R2BKA5CqCAAAAAA=="/>
          <air:BookingInfo BookingCode="V" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAyCqCAAAAAA==" SegmentRef="7kkmlI3R2BKAJBqCAAAAAA=="/>
          <air:BookingInfo BookingCode="B" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKA5CqCAAAAAA==" SegmentRef="7kkmlI3R2BKA8CqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKA0CqCAAAAAAAA"/>
          <air:TaxInfo Category="EQ" Amount="USD1.00" Key="7kkmlI3R2BKA1CqCAAAAAAAA"/>
          <air:TaxInfo Category="F7" Amount="USD1.70" Key="7kkmlI3R2BKA2CqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKA3CqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD13.00" Key="7kkmlI3R2BKA4CqCAAAAAAAA"/>
          <air:FareCalc>NBO MS CAI Q250.00 195.00VRIMSO EK DXB 183.59BLWOSEG1 NUC628.59END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD50.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD75.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKACDqCAAAAAA==" TotalPrice="USD810.90" BasePrice="ZAR6810.00" ApproximateTotalPrice="USD810.90" ApproximateBasePrice="USD571.00" EquivalentBasePrice="USD571.00" Taxes="USD239.90" ApproximateTaxes="USD239.90">
        <air:Journey TravelTime="P0DT14H0M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKADDqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAFDqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAHDqCAAAAAA==" TotalPrice="USD810.90" BasePrice="ZAR6810.00" ApproximateTotalPrice="USD810.90" ApproximateBasePrice="USD571.00" EquivalentBasePrice="USD571.00" Taxes="USD239.90" ApproximateTaxes="USD239.90" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="SA" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAODqCAAAAAA=="/>
          <air:BookingInfo BookingCode="H" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAODqCAAAAAA==" SegmentRef="7kkmlI3R2BKADDqCAAAAAA=="/>
          <air:BookingInfo BookingCode="L" BookingCount="5" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAODqCAAAAAA==" SegmentRef="7kkmlI3R2BKAFDqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAIDqCAAAAAAAA"/>
          <air:TaxInfo Category="EV" Amount="USD1.90" Key="7kkmlI3R2BKAJDqCAAAAAAAA"/>
          <air:TaxInfo Category="UM" Amount="USD1.90" Key="7kkmlI3R2BKAKDqCAAAAAAAA"/>
          <air:TaxInfo Category="ZA" Amount="USD18.70" Key="7kkmlI3R2BKALDqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAMDqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD166.00" Key="7kkmlI3R2BKANDqCAAAAAAAA"/>
          <air:FareCalc>NBO SA X/JNB SA DXB 550.55LOWAE NUC550.55END ROE12.361177</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Percentage>0.00</air:Percentage>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Percentage>0.00</air:Percentage>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKARDqCAAAAAA==" TotalPrice="USD990.70" BasePrice="USD543.00" ApproximateTotalPrice="USD990.70" ApproximateBasePrice="USD543.00" Taxes="USD447.70" ApproximateTaxes="USD447.70">
        <air:Journey TravelTime="P0DT23H50M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKASDqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAVDqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAXDqCAAAAAA==" TotalPrice="USD990.70" BasePrice="USD543.00" ApproximateTotalPrice="USD990.70" ApproximateBasePrice="USD543.00" Taxes="USD447.70" ApproximateTaxes="USD447.70" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="LX" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAdDqCAAAAAA=="/>
          <air:BookingInfo BookingCode="Q" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAdDqCAAAAAA==" SegmentRef="7kkmlI3R2BKASDqCAAAAAA=="/>
          <air:BookingInfo BookingCode="Q" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAdDqCAAAAAA==" SegmentRef="7kkmlI3R2BKAVDqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAYDqCAAAAAAAA"/>
          <air:TaxInfo Category="CH" Amount="USD17.10" Key="7kkmlI3R2BKAZDqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAaDqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD359.40" Key="7kkmlI3R2BKAbDqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD19.80" Key="7kkmlI3R2BKAcDqCAAAAAAAA"/>
          <air:FareCalc>NBO LX X/ZRH LX DXB 543.00QRCOWKE NUC543.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD160.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD240.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAgDqCAAAAAA==" TotalPrice="USD1119.80" BasePrice="USD876.00" ApproximateTotalPrice="USD1119.80" ApproximateBasePrice="USD876.00" Taxes="USD243.80" ApproximateTaxes="USD243.80">
        <air:Journey TravelTime="P1DT1H35M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAhDqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAjDqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAlDqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAnDqCAAAAAA==" TotalPrice="USD1119.80" BasePrice="USD876.00" ApproximateTotalPrice="USD1119.80" ApproximateBasePrice="USD876.00" Taxes="USD243.80" ApproximateTaxes="USD243.80" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="EY" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAvDqCAAAAAA=="/>
          <air:BookingInfo BookingCode="Y" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAvDqCAAAAAA==" SegmentRef="7kkmlI3R2BKAhDqCAAAAAA=="/>
          <air:BookingInfo BookingCode="Y" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAvDqCAAAAAA==" SegmentRef="7kkmlI3R2BKAjDqCAAAAAA=="/>
          <air:BookingInfo BookingCode="S" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAvDqCAAAAAA==" SegmentRef="7kkmlI3R2BKAlDqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAoDqCAAAAAAAA"/>
          <air:TaxInfo Category="F6" Amount="USD9.50" Key="7kkmlI3R2BKApDqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD4.20" Key="7kkmlI3R2BKAqDqCAAAAAAAA"/>
          <air:TaxInfo Category="BH" Amount="USD18.60" Key="7kkmlI3R2BKArDqCAAAAAAAA"/>
          <air:TaxInfo Category="HM" Amount="USD0.40" Key="7kkmlI3R2BKAsDqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD145.00" Key="7kkmlI3R2BKAtDqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD16.10" Key="7kkmlI3R2BKAuDqCAAAAAAAA"/>
          <air:FareCalc>NBO EY X/AUH EY X/BAH CX DXB Q NBODXB2.50 5M873.60YOW11/YF NUC876.10END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Percentage>0.00</air:Percentage>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Percentage>0.00</air:Percentage>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
        <air:Connection SegmentIndex="1"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKA0DqCAAAAAA==" TotalPrice="USD1171.80" BasePrice="USD847.00" ApproximateTotalPrice="USD1171.80" ApproximateBasePrice="USD847.00" Taxes="USD324.80" ApproximateTaxes="USD324.80">
        <air:Journey TravelTime="P0DT22H35M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKA1DqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKA3DqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKA5DqCAAAAAA==" TotalPrice="USD1171.80" BasePrice="USD847.00" ApproximateTotalPrice="USD1171.80" ApproximateBasePrice="USD847.00" Taxes="USD324.80" ApproximateTaxes="USD324.80" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="AF" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKA/DqCAAAAAA=="/>
          <air:BookingInfo BookingCode="K" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKA/DqCAAAAAA==" SegmentRef="7kkmlI3R2BKA1DqCAAAAAA=="/>
          <air:BookingInfo BookingCode="K" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKA/DqCAAAAAA==" SegmentRef="7kkmlI3R2BKA3DqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKA6DqCAAAAAAAA"/>
          <air:TaxInfo Category="FR" Amount="USD10.10" Key="7kkmlI3R2BKA7DqCAAAAAAAA"/>
          <air:TaxInfo Category="QX" Amount="USD23.30" Key="7kkmlI3R2BKA8DqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKA9DqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD240.00" Key="7kkmlI3R2BKA-DqCAAAAAAAA"/>
          <air:FareCalc>NBO AF X/PAR AF DXB 847.00KLSFWKE NUC847.00END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
          <air:ChangePenalty>
            <air:Amount>USD120.00</air:Amount>
          </air:ChangePenalty>
          <air:CancelPenalty>
            <air:Amount>USD240.00</air:Amount>
          </air:CancelPenalty>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKACEqCAAAAAA==" TotalPrice="USD2077.10" BasePrice="USD1829.00" ApproximateTotalPrice="USD2077.10" ApproximateBasePrice="USD1829.00" Taxes="USD248.10" ApproximateTaxes="USD248.10">
        <air:Journey TravelTime="P0DT13H50M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKADEqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAFEqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAHEqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAJEqCAAAAAA==" TotalPrice="USD2077.10" BasePrice="USD1829.00" ApproximateTotalPrice="USD2077.10" ApproximateBasePrice="USD1829.00" Taxes="USD248.10" ApproximateTaxes="USD248.10" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="EK" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAREqCAAAAAA=="/>
          <air:BookingInfo BookingCode="E" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAREqCAAAAAA==" SegmentRef="7kkmlI3R2BKADEqCAAAAAA=="/>
          <air:BookingInfo BookingCode="E" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAREqCAAAAAA==" SegmentRef="7kkmlI3R2BKAFEqCAAAAAA=="/>
          <air:BookingInfo BookingCode="K" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAREqCAAAAAA==" SegmentRef="7kkmlI3R2BKAHEqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAKEqCAAAAAAAA"/>
          <air:TaxInfo Category="E4" Amount="USD0.90" Key="7kkmlI3R2BKALEqCAAAAAAAA"/>
          <air:TaxInfo Category="HY" Amount="USD1.30" Key="7kkmlI3R2BKAMEqCAAAAAAAA"/>
          <air:TaxInfo Category="NN" Amount="USD4.50" Key="7kkmlI3R2BKANEqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAOEqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD140.00" Key="7kkmlI3R2BKAPEqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD50.00" Key="7kkmlI3R2BKAQEqCAAAAAAAA"/>
          <air:FareCalc>NBO PW X/ZNZ PW X/DAR EK DXB 10M1829.30KOWKE7 NUC1829.30END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
        <air:Connection SegmentIndex="1"/>
      </air:AirPricingSolution>
      <air:AirPricingSolution Key="7kkmlI3R2BKAVEqCAAAAAA==" TotalPrice="USD4711.90" BasePrice="USD4316.00" ApproximateTotalPrice="USD4711.90" ApproximateBasePrice="USD4316.00" Taxes="USD395.90" ApproximateTaxes="USD395.90">
        <air:Journey TravelTime="P0DT14H15M0S">
          <air:AirSegmentRef Key="7kkmlI3R2BKAWEqCAAAAAA=="/>
          <air:AirSegmentRef Key="7kkmlI3R2BKAYEqCAAAAAA=="/>
        </air:Journey>
        <air:LegRef Key="7kkmlI3R2BKAz/pCAAAAAA=="/>
        <air:AirPricingInfo Key="7kkmlI3R2BKAaEqCAAAAAA==" TotalPrice="USD4711.90" BasePrice="USD4316.00" ApproximateTotalPrice="USD4711.90" ApproximateBasePrice="USD4316.00" Taxes="USD395.90" ApproximateTaxes="USD395.90" LatestTicketingTime="2018-03-16" PricingMethod="Guaranteed" Refundable="true" ETicketability="Yes" PlatingCarrier="MK" ProviderCode="1G" Cat35Indicator="false">
          <air:FareInfoRef Key="7kkmlI3R2BKAgEqCAAAAAA=="/>
          <air:FareInfoRef Key="7kkmlI3R2BKAhEqCAAAAAA=="/>
          <air:BookingInfo BookingCode="Y" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAgEqCAAAAAA==" SegmentRef="7kkmlI3R2BKAWEqCAAAAAA=="/>
          <air:BookingInfo BookingCode="T" BookingCount="9" CabinClass="Economy" FareInfoRef="7kkmlI3R2BKAhEqCAAAAAA==" SegmentRef="7kkmlI3R2BKAYEqCAAAAAA=="/>
          <air:TaxInfo Category="TU" Amount="USD50.00" Key="7kkmlI3R2BKAbEqCAAAAAAAA"/>
          <air:TaxInfo Category="OV" Amount="USD4.80" Key="7kkmlI3R2BKAcEqCAAAAAAAA"/>
          <air:TaxInfo Category="ZR" Amount="USD1.40" Key="7kkmlI3R2BKAdEqCAAAAAAAA"/>
          <air:TaxInfo Category="YQ" Amount="USD329.70" Key="7kkmlI3R2BKAeEqCAAAAAAAA"/>
          <air:TaxInfo Category="YR" Amount="USD10.00" Key="7kkmlI3R2BKAfEqCAAAAAAAA"/>
          <air:FareCalc>NBO MK MRU 1257.00YIF MK DXB 3058.71YIF NUC4315.71END ROE1.0</air:FareCalc>
          <air:PassengerType Code="ADT"/>
        </air:AirPricingInfo>
        <air:Connection SegmentIndex="0"/>
      </air:AirPricingSolution>
      <air:BrandList>
        <air:Brand Key="7kkmlI3R2BKA0EqCAAAAAA==" BrandID="27786" Name="Economy Flex" BrandedDetailsAvailable="true" Carrier="EK">
          <air:Title Type="External" LanguageCode="EN">Economy Flex</air:Title>
          <air:Title Type="Short" LanguageCode="EN">EF</air:Title>
          <air:Text Type="Upsell" LanguageCode="EN">Economy Flex offers FREE SEATING, additional flexibility and mileage accrual.</air:Text>
          <air:Text Type="MarketingAgent" LanguageCode="EN">EMIRATES PAID SEATS NOW BOOKABLE WITH TRAVELPORT

Economy Flex includes:

&#x2022; Free seat assignment
&#x2022; Changes permitted at a fee 
&#x2022; Refunds permitted at a fee
&#x2022; 70% flown miles earned
&#x2022; Mileage upgrade eligibility
&#x2022; Checked baggage included *
&#x2022; Hand luggage x 1 bag 7 KG
&#x2022; Complimentary Wi-Fi
&#x2022; Soft and Alcoholic refreshments
&#x2022; ICE entertainment

* Please refer to fare rules for full conditions</air:Text>
          <air:Text Type="Strapline" LanguageCode="EN">Welcome to Emirates Economy Class</air:Text>
          <air:ImageLocation Type="Agent" ImageWidth="150" ImageHeight="150">https://merchandisingmanagement.pp.travelport.com/documents/10431/12427/Economy%20seats_400x300_tcm275-685076.jpg</air:ImageLocation>
          <air:ImageLocation Type="Consumer" ImageWidth="150" ImageHeight="150">https://merchandisingmanagement.pp.travelport.com/documents/10431/12427/Economy%20seats_400x300_tcm275-685076.jpg</air:ImageLocation>
        </air:Brand>
        <air:Brand Key="7kkmlI3R2BKA2EqCAAAAAA==" BrandID="32167" Name="Economy Semi Flex" BrandedDetailsAvailable="true" Carrier="ET">
          <air:Title Type="External" LanguageCode="EN">Economy Semi Flex</air:Title>
          <air:Title Type="Short" LanguageCode="EN">Eco S Flex</air:Title>
          <air:Text Type="Upsell" LanguageCode="EN">Upgrade to Economy Semi Flex for the option to amend your booking for an additional fee</air:Text>
          <air:Text Type="MarketingAgent" LanguageCode="EN">ECONOMY SEMI FLEX fare - 

1 - Checked Baggage: 1 Bag, Max 23kg. USA flights 2 Bags, Max 23kg each.  
2 - Carry On / Hand Baggage: 1 Bag, Max 7kg. USA flights 2 Bags, Max 7kg each. 
3 - Flight and/or Travel Date Changes (Rebooking): At a fee. 
4 - Refund: At a fee. 
5 - Pre Reserved Seating: Free. 
6 - Meals and Beverages on board: Complimentary premium meals and drinks on board. 
7 - On board WiFi connectivity: Boeing 787 Dreamliner aircraft only. At a fee. 

If the flight is operated by another airline, the on-board product and/or service may be different. 

GDS/NS8

Fly in the Ethiopian Airlines modern and technologically advanced Boeing 787 Dreamliner. 
Recliner Economy Class seats with more legroom and space. State of the art audio and video services with seat back screens offering entertainment for all ages.</air:Text>
          <air:Text Type="Strapline" LanguageCode="EN">Some additional flexibility when required</air:Text>
          <air:ImageLocation Type="Agent" ImageWidth="150" ImageHeight="150">https://merchandisingmanagement.pp.travelport.com/documents/10431/70021/ET%20semi%20flex.jpg</air:ImageLocation>
          <air:ImageLocation Type="Consumer" ImageWidth="150" ImageHeight="150">https://merchandisingmanagement.pp.travelport.com/documents/10431/70021/ET%20semi%20flex.jpg</air:ImageLocation>
        </air:Brand>
      </air:BrandList>
    </air:LowFareSearchRsp>
  </SOAP:Body>
</SOAP:Envelope>
marcadde23 commented 6 years ago

Hi @vivekjyotipramanik Any updates, please inform me if you get something.

vivekjyotipramanik commented 6 years ago

Hi marcadde23,

In LowfareSearch, the number of response is actually the number of AirPricingSolutions or AirPricePoints. In Demosite, we use SolutionResult attribute as false and it always returns the AirPricePoint. In your case, you have used it as true and that is why it returned the AirPricingSolutions and that is the reason the response looks different. Also, you are using IncludeFlightDetails="true" which is not being used in demosite and that might be the reason the difference of AirSegment numbers. Please find below the logs link for demosite to check the request and response. Thanks.

https://demo.travelportuniversalapi.com/Home#LOGS

marcadde23 commented 6 years ago

@vivekjyotipramanik I changed SolutionResult attribute to false and removed IncludeFlightDetails at all, but still the prices are different in demo site and my testing app.

Here are request and response files. Thank you.

001-1G_LowFareSearchReq.txt 001-1G_LowFareSearchRsp.txt

vivekjyotipramanik commented 6 years ago

Hi marcadde23,

I am not seeing any difference between your result and demosite result. Could you please specify the difference you are seeing and we can analyze in depth. Thanks.